commit a7723448a0b4e0588c4a0a09c6bcf4bf68993a94
Author: DazAh <9095216+DazAh@users.noreply.github.com>
Date: Sun Oct 13 01:22:24 2019 +0100
test
diff --git a/dot_gitconfig.tmpl b/dot_gitconfig.tmpl
new file mode 100644
index 0000000..a54f76e
--- /dev/null
+++ b/dot_gitconfig.tmpl
@@ -0,0 +1,3 @@
+[user]
+ email ="{{ .email }}"
+ name ="{{ .name }}"
diff --git a/dot_zfunc/_auto-completion b/dot_zfunc/_auto-completion
new file mode 100644
index 0000000..1c8e158
--- /dev/null
+++ b/dot_zfunc/_auto-completion
@@ -0,0 +1,41 @@
+#compdef chezmoi
+_arguments \
+ '1: :->level1' \
+ '2: :->level2' \
+ '3: :->level3' \
+ '4: :_files'
+case $state in
+ level1)
+ case $words[1] in
+ chezmoi)
+ _arguments '1: :(add apply archive cat cd chattr completion data diff doctor dump edit edit-config forget help import init merge remove secret source source-path unmanaged update upgrade verify)'
+ ;;
+ *)
+ _arguments '*: :_files'
+ ;;
+ esac
+ ;;
+ level2)
+ case $words[2] in
+ secret)
+ _arguments '2: :(bitwarden generic keepassxc keyring lastpass onepassword pass vault)'
+ ;;
+ *)
+ _arguments '*: :_files'
+ ;;
+ esac
+ ;;
+ level3)
+ case $words[3] in
+ keyring)
+ _arguments '3: :(get set)'
+ ;;
+ *)
+ _arguments '*: :_files'
+ ;;
+ esac
+ ;;
+ *)
+ _arguments '*: :_files'
+ ;;
+esac
diff --git a/dot_zfunc/_rustup b/dot_zfunc/_rustup
new file mode 100644
index 0000000..b6879a6
--- /dev/null
+++ b/dot_zfunc/_rustup
@@ -0,0 +1,1048 @@
+#compdef rustup
+
+autoload -U is-at-least
+
+_rustup() {
+ typeset -A opt_args
+ typeset -a _arguments_options
+ local ret=1
+
+ if is-at-least 5.2; then
+ _arguments_options=(-s -S -C)
+ else
+ _arguments_options=(-s -C)
+ fi
+
+ local context curcontext="$curcontext" state line
+ _arguments "${_arguments_options[@]}" \
+'-v[Enable verbose output]' \
+'--verbose[Enable verbose output]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup_commands" \
+"*::: :->rustup" \
+&& ret=0
+ case $state in
+ (rustup)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-command-$line[1]:"
+ case $line[1] in
+ (dump-testament)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(show)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup__show_commands" \
+"*::: :->show" \
+&& ret=0
+case $state in
+ (show)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-show-command-$line[1]:"
+ case $line[1] in
+ (active-toolchain)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(home)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+'--no-self-update[Don'\''t perform self-update when running the `rustup install` command]' \
+'--force[Force an update, even if some components are missing]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(update)
+_arguments "${_arguments_options[@]}" \
+'--no-self-update[Don'\''t perform self update when running the `rustup update` command]' \
+'--force[Force an update, even if some components are missing]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+'::toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(default)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+'::toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(toolchain)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup__toolchain_commands" \
+"*::: :->toolchain" \
+&& ret=0
+case $state in
+ (toolchain)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-toolchain-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(update)
+_arguments "${_arguments_options[@]}" \
+'--no-self-update[Don'\''t perform self update when running the `rustup toolchain install` command]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+'--no-self-update[Don'\''t perform self update when running the `rustup toolchain install` command]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+'--no-self-update[Don'\''t perform self update when running the `rustup toolchain install` command]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(link)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+':path:_files' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(target)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup__target_commands" \
+"*::: :->target" \
+&& ret=0
+case $state in
+ (target)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-target-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'--installed[List only installed targets]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':target -- List of targets to install; "all" installs all available targets:_files' \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':target -- List of targets to install; "all" installs all available targets:_files' \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':target:_files' \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':target:_files' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(component)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup__component_commands" \
+"*::: :->component" \
+&& ret=0
+case $state in
+ (component)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-component-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'--installed[List only installed components]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'--target=[]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':component:_files' \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'--target=[]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':component:_files' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(override)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup__override_commands" \
+"*::: :->override" \
+&& ret=0
+case $state in
+ (override)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-override-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+'--path=[Path to the directory]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(set)
+_arguments "${_arguments_options[@]}" \
+'--path=[Path to the directory]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+'--path=[Path to the directory]' \
+'--nonexistent[Remove override toolchain for all nonexistent directories]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(unset)
+_arguments "${_arguments_options[@]}" \
+'--path=[Path to the directory]' \
+'--nonexistent[Remove override toolchain for all nonexistent directories]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(run)
+_arguments "${_arguments_options[@]}" \
+'--install[Install the requested toolchain if needed]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':toolchain -- Toolchain name, such as 'stable', 'nightly', or '1.8.0'. For more information see `rustup help toolchain`:_files' \
+':command:_files' \
+&& ret=0
+;;
+(which)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':command:_files' \
+&& ret=0
+;;
+(docs)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'--path[Only print the path to the documentation]' \
+'--alloc[The Rust core allocation and collections library]' \
+'--book[The Rust Programming Language book]' \
+'--cargo[The Cargo Book]' \
+'--core[The Rust Core Library]' \
+'--edition-guide[The Rust Edition Guide]' \
+'--nomicon[The Dark Arts of Advanced and Unsafe Rust Programming]' \
+'--proc_macro[A support library for macro authors when defining new macros]' \
+'--reference[The Rust Reference]' \
+'--rust-by-example[A collection of runnable examples that illustrate various Rust concepts and standard libraries]' \
+'--rustc[The compiler for the Rust programming language]' \
+'--rustdoc[Generate documentation for Rust projects]' \
+'--std[Standard library API documentation]' \
+'--test[Support code for rustc'\''s built in unit-test and micro-benchmarking framework]' \
+'--unstable-book[The Unstable Book]' \
+'--embedded-book[The Embedded Rust Book]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(doc)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'--path[Only print the path to the documentation]' \
+'--alloc[The Rust core allocation and collections library]' \
+'--book[The Rust Programming Language book]' \
+'--cargo[The Cargo Book]' \
+'--core[The Rust Core Library]' \
+'--edition-guide[The Rust Edition Guide]' \
+'--nomicon[The Dark Arts of Advanced and Unsafe Rust Programming]' \
+'--proc_macro[A support library for macro authors when defining new macros]' \
+'--reference[The Rust Reference]' \
+'--rust-by-example[A collection of runnable examples that illustrate various Rust concepts and standard libraries]' \
+'--rustc[The compiler for the Rust programming language]' \
+'--rustdoc[Generate documentation for Rust projects]' \
+'--std[Standard library API documentation]' \
+'--test[Support code for rustc'\''s built in unit-test and micro-benchmarking framework]' \
+'--unstable-book[The Unstable Book]' \
+'--embedded-book[The Embedded Rust Book]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(man)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':command:_files' \
+&& ret=0
+;;
+(self)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup__self_commands" \
+"*::: :->self" \
+&& ret=0
+case $state in
+ (self)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-self-command-$line[1]:"
+ case $line[1] in
+ (update)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+'-y[]' \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(upgrade-data)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(set)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+":: :_rustup__set_commands" \
+"*::: :->set" \
+&& ret=0
+case $state in
+ (set)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-set-command-$line[1]:"
+ case $line[1] in
+ (default-host)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+':host_triple:_files' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(completions)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+'::shell:(zsh bash fish powershell elvish)' \
+'::command:(rustup cargo)' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+'-h[Prints help information]' \
+'--help[Prints help information]' \
+'-V[Prints version information]' \
+'--version[Prints version information]' \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+}
+
+(( $+functions[_rustup_commands] )) ||
+_rustup_commands() {
+ local commands; commands=(
+ "dump-testament:Dump information about the build" \
+"show:Show the active and installed toolchains" \
+"install:Update Rust toolchains" \
+"uninstall:Uninstall Rust toolchains" \
+"update:Update Rust toolchains and rustup" \
+"default:Set the default toolchain" \
+"toolchain:Modify or query the installed toolchains" \
+"target:Modify a toolchain's supported targets" \
+"component:Modify a toolchain's installed components" \
+"override:Modify directory toolchain overrides" \
+"run:Run a command with an environment configured for a given toolchain" \
+"which:Display which binary will be run for a given command" \
+"doc:Open the documentation for the current toolchain" \
+"man:View the man page for a given command" \
+"self:Modify the rustup installation" \
+"set:Alter rustup settings" \
+"completions:Generate tab-completion scripts for your shell" \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup commands' commands "$@"
+}
+(( $+functions[_rustup__show__active-toolchain_commands] )) ||
+_rustup__show__active-toolchain_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup show active-toolchain commands' commands "$@"
+}
+(( $+functions[_rustup__add_commands] )) ||
+_rustup__add_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup add commands' commands "$@"
+}
+(( $+functions[_rustup__component__add_commands] )) ||
+_rustup__component__add_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup component add commands' commands "$@"
+}
+(( $+functions[_rustup__override__add_commands] )) ||
+_rustup__override__add_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup override add commands' commands "$@"
+}
+(( $+functions[_rustup__target__add_commands] )) ||
+_rustup__target__add_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup target add commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__add_commands] )) ||
+_rustup__toolchain__add_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain add commands' commands "$@"
+}
+(( $+functions[_rustup__completions_commands] )) ||
+_rustup__completions_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup completions commands' commands "$@"
+}
+(( $+functions[_rustup__component_commands] )) ||
+_rustup__component_commands() {
+ local commands; commands=(
+ "list:List installed and available components" \
+"add:Add a component to a Rust toolchain" \
+"remove:Remove a component from a Rust toolchain" \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup component commands' commands "$@"
+}
+(( $+functions[_rustup__default_commands] )) ||
+_rustup__default_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup default commands' commands "$@"
+}
+(( $+functions[_rustup__set__default-host_commands] )) ||
+_rustup__set__default-host_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup set default-host commands' commands "$@"
+}
+(( $+functions[_rustup__doc_commands] )) ||
+_rustup__doc_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup doc commands' commands "$@"
+}
+(( $+functions[_docs_commands] )) ||
+_docs_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'docs commands' commands "$@"
+}
+(( $+functions[_rustup__docs_commands] )) ||
+_rustup__docs_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup docs commands' commands "$@"
+}
+(( $+functions[_rustup__dump-testament_commands] )) ||
+_rustup__dump-testament_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup dump-testament commands' commands "$@"
+}
+(( $+functions[_rustup__component__help_commands] )) ||
+_rustup__component__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup component help commands' commands "$@"
+}
+(( $+functions[_rustup__help_commands] )) ||
+_rustup__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup help commands' commands "$@"
+}
+(( $+functions[_rustup__override__help_commands] )) ||
+_rustup__override__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup override help commands' commands "$@"
+}
+(( $+functions[_rustup__self__help_commands] )) ||
+_rustup__self__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup self help commands' commands "$@"
+}
+(( $+functions[_rustup__set__help_commands] )) ||
+_rustup__set__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup set help commands' commands "$@"
+}
+(( $+functions[_rustup__show__help_commands] )) ||
+_rustup__show__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup show help commands' commands "$@"
+}
+(( $+functions[_rustup__target__help_commands] )) ||
+_rustup__target__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup target help commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__help_commands] )) ||
+_rustup__toolchain__help_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain help commands' commands "$@"
+}
+(( $+functions[_rustup__show__home_commands] )) ||
+_rustup__show__home_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup show home commands' commands "$@"
+}
+(( $+functions[_rustup__install_commands] )) ||
+_rustup__install_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup install commands' commands "$@"
+}
+(( $+functions[_rustup__target__install_commands] )) ||
+_rustup__target__install_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup target install commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__install_commands] )) ||
+_rustup__toolchain__install_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain install commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__link_commands] )) ||
+_rustup__toolchain__link_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain link commands' commands "$@"
+}
+(( $+functions[_rustup__component__list_commands] )) ||
+_rustup__component__list_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup component list commands' commands "$@"
+}
+(( $+functions[_rustup__override__list_commands] )) ||
+_rustup__override__list_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup override list commands' commands "$@"
+}
+(( $+functions[_rustup__target__list_commands] )) ||
+_rustup__target__list_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup target list commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__list_commands] )) ||
+_rustup__toolchain__list_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain list commands' commands "$@"
+}
+(( $+functions[_rustup__man_commands] )) ||
+_rustup__man_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup man commands' commands "$@"
+}
+(( $+functions[_rustup__override_commands] )) ||
+_rustup__override_commands() {
+ local commands; commands=(
+ "list:List directory toolchain overrides" \
+"set:Set the override toolchain for a directory" \
+"unset:Remove the override toolchain for a directory" \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup override commands' commands "$@"
+}
+(( $+functions[_rustup__component__remove_commands] )) ||
+_rustup__component__remove_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup component remove commands' commands "$@"
+}
+(( $+functions[_rustup__override__remove_commands] )) ||
+_rustup__override__remove_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup override remove commands' commands "$@"
+}
+(( $+functions[_rustup__remove_commands] )) ||
+_rustup__remove_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup remove commands' commands "$@"
+}
+(( $+functions[_rustup__target__remove_commands] )) ||
+_rustup__target__remove_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup target remove commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__remove_commands] )) ||
+_rustup__toolchain__remove_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain remove commands' commands "$@"
+}
+(( $+functions[_rustup__run_commands] )) ||
+_rustup__run_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup run commands' commands "$@"
+}
+(( $+functions[_rustup__self_commands] )) ||
+_rustup__self_commands() {
+ local commands; commands=(
+ "update:Download and install updates to rustup" \
+"uninstall:Uninstall rustup." \
+"upgrade-data:Upgrade the internal data format." \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup self commands' commands "$@"
+}
+(( $+functions[_rustup__override__set_commands] )) ||
+_rustup__override__set_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup override set commands' commands "$@"
+}
+(( $+functions[_rustup__set_commands] )) ||
+_rustup__set_commands() {
+ local commands; commands=(
+ "default-host:The triple used to identify toolchains when not specified" \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup set commands' commands "$@"
+}
+(( $+functions[_rustup__show_commands] )) ||
+_rustup__show_commands() {
+ local commands; commands=(
+ "active-toolchain:Show the active toolchain" \
+"home:Display the computed value of RUSTUP_HOME" \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup show commands' commands "$@"
+}
+(( $+functions[_rustup__target_commands] )) ||
+_rustup__target_commands() {
+ local commands; commands=(
+ "list:List installed and available targets" \
+"add:Add a target to a Rust toolchain" \
+"remove:Remove a target from a Rust toolchain" \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup target commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain_commands] )) ||
+_rustup__toolchain_commands() {
+ local commands; commands=(
+ "list:List installed toolchains" \
+"install:Install or update a given toolchain" \
+"uninstall:Uninstall a toolchain" \
+"link:Create a custom toolchain by symlinking to a directory" \
+"help:Prints this message or the help of the given subcommand(s)" \
+ )
+ _describe -t commands 'rustup toolchain commands' commands "$@"
+}
+(( $+functions[_rustup__self__uninstall_commands] )) ||
+_rustup__self__uninstall_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup self uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__target__uninstall_commands] )) ||
+_rustup__target__uninstall_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup target uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__uninstall_commands] )) ||
+_rustup__toolchain__uninstall_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__uninstall_commands] )) ||
+_rustup__uninstall_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__override__unset_commands] )) ||
+_rustup__override__unset_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup override unset commands' commands "$@"
+}
+(( $+functions[_rustup__self__update_commands] )) ||
+_rustup__self__update_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup self update commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__update_commands] )) ||
+_rustup__toolchain__update_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup toolchain update commands' commands "$@"
+}
+(( $+functions[_rustup__update_commands] )) ||
+_rustup__update_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup update commands' commands "$@"
+}
+(( $+functions[_rustup__self__upgrade-data_commands] )) ||
+_rustup__self__upgrade-data_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup self upgrade-data commands' commands "$@"
+}
+(( $+functions[_rustup__which_commands] )) ||
+_rustup__which_commands() {
+ local commands; commands=(
+
+ )
+ _describe -t commands 'rustup which commands' commands "$@"
+}
+
+_rustup "$@"
\ No newline at end of file
diff --git a/dot_zprofile b/dot_zprofile
new file mode 100644
index 0000000..2e1a93c
--- /dev/null
+++ b/dot_zprofile
@@ -0,0 +1,2 @@
+export PATH="$HOME/.cargo/bin:$PATH"
+export KWIN_DRM_USE_EGL_STREAMS=1
diff --git a/dot_zshrc b/dot_zshrc
new file mode 100644
index 0000000..84e4cc1
--- /dev/null
+++ b/dot_zshrc
@@ -0,0 +1,117 @@
+# If you come from bash you might have to change your $PATH.
+# export PATH=$HOME/bin:/usr/local/bin:$PATH
+#
+# Dev tools export
+export PATH="$HOME/.cargo/bin:$PATH"
+export PATH="$HOME/.dotnet:$PATH"
+
+# Path to your oh-my-zsh installation.
+export ZSH="/home/darren/.oh-my-zsh"
+
+#Dotnet Disable telematry
+export DOTNET_CLI_TELEMETRY_OPTOUT=1
+
+
+# Set name of the theme to load --- if set to "random", it will
+# load a random theme each time oh-my-zsh is loaded, in which case,
+# to know which specific one was loaded, run: echo $RANDOM_THEME
+# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
+ZSH_THEME="agnoster"
+
+# Set list of themes to pick from when loading at random
+# Setting this variable when ZSH_THEME=random will cause zsh to load
+# a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
+# If set to an empty array, this variable will have no effect.
+# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
+
+# Uncomment the following line to use case-sensitive completion.
+# CASE_SENSITIVE="true"
+
+# Uncomment the following line to use hyphen-insensitive completion.
+# Case-sensitive completion must be off. _ and - will be interchangeable.
+# HYPHEN_INSENSITIVE="true"
+
+# Uncomment the following line to disable bi-weekly auto-update checks.
+# DISABLE_AUTO_UPDATE="true"
+
+# Uncomment the following line to change how often to auto-update (in days).
+# export UPDATE_ZSH_DAYS=13
+
+# Uncomment the following line to disable colors in ls.
+# DISABLE_LS_COLORS="true"
+
+# Uncomment the following line to disable auto-setting terminal title.
+# DISABLE_AUTO_TITLE="true"
+
+# Uncomment the following line to enable command auto-correction.
+# ENABLE_CORRECTION="true"
+
+# Uncomment the following line to display red dots whilst waiting for completion.
+# COMPLETION_WAITING_DOTS="true"
+
+# Uncomment the following line if you want to disable marking untracked files
+# under VCS as dirty. This makes repository status check for large repositories
+# much, much faster.
+# DISABLE_UNTRACKED_FILES_DIRTY="true"
+
+# Uncomment the following line if you want to change the command execution time
+# stamp shown in the history command output.
+# You can set one of the optional three formats:
+# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
+# or set a custom format using the strftime function format specifications,
+# see 'man strftime' for details.
+# HIST_STAMPS="mm/dd/yyyy"
+
+# Would you like to use another custom folder than $ZSH/custom?
+# ZSH_CUSTOM=/path/to/new-custom-folder
+
+# Which plugins would you like to load?
+# Standard plugins can be found in ~/.oh-my-zsh/plugins/*
+# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
+# Example format: plugins=(rails git textmate ruby lighthouse)
+# Add wisely, as too many plugins slow down shell startup.
+plugins=(git npm fd docker-compose docker zsh-autosuggestions)
+
+source $ZSH/oh-my-zsh.sh
+# User configuration
+
+# export MANPATH="/usr/local/man:$MANPATH"
+
+# You may need to manually set your language environment
+# export LANG=en_US.UTF-8
+
+# Preferred editor for local and remote sessions
+ if [[ -n $SSH_CONNECTION ]]; then
+ export EDITOR='vim'
+ else
+ export EDITOR='nvim'
+ fi
+
+# Compilation flags
+# export ARCHFLAGS="-arch x86_64"
+
+# ssh
+# export SSH_KEY_PATH="~/.ssh/rsa_id"
+
+# Set personal aliases, overriding those provided by oh-my-zsh libs,
+# plugins, and themes. Aliases can be placed here, though oh-my-zsh
+# users are encouraged to define aliases within the ZSH_CUSTOM folder.
+# For a full list of active aliases, run `alias`.
+#
+
+#Custom Alias
+alias zshconfig="vim ~/.zshrc"
+alias musicsync="~/.musicsync.sh"
+alias ls="exa --group-directories-first --classify --git"
+alias cat="bat"
+alias find="fd"
+alias fv='vim $(fzf --height 40%)'
+alias vim='nvim'
+alias ohmyzsh="vim ~/.oh-my-zsh"
+
+#
+#Completions (rustup, chezmoi?,)
+fpath+=~/.zfunc
+
+#starship rust shell
+eval "$(starship init zsh)"
diff --git a/exact_dot_oh-my-zsh/CODE_OF_CONDUCT.md b/exact_dot_oh-my-zsh/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000..20ad1cc
--- /dev/null
+++ b/exact_dot_oh-my-zsh/CODE_OF_CONDUCT.md
@@ -0,0 +1,76 @@
+# Contributor Covenant Code of Conduct
+
+## Our Pledge
+
+In the interest of fostering an open and welcoming environment, we as
+contributors and maintainers pledge to making participation in our project and
+our community a harassment-free experience for everyone, regardless of age, body
+size, disability, ethnicity, sex characteristics, gender identity and expression,
+level of experience, education, socio-economic status, nationality, personal
+appearance, race, religion, or sexual identity and orientation.
+
+## Our Standards
+
+Examples of behavior that contributes to creating a positive environment
+include:
+
+* Using welcoming and inclusive language
+* Being respectful of differing viewpoints and experiences
+* Gracefully accepting constructive criticism
+* Focusing on what is best for the community
+* Showing empathy towards other community members
+
+Examples of unacceptable behavior by participants include:
+
+* The use of sexualized language or imagery and unwelcome sexual attention or
+ advances
+* Trolling, insulting/derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or electronic
+ address, without explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Our Responsibilities
+
+Project maintainers are responsible for clarifying the standards of acceptable
+behavior and are expected to take appropriate and fair corrective action in
+response to any instances of unacceptable behavior.
+
+Project maintainers have the right and responsibility to remove, edit, or
+reject comments, commits, code, wiki edits, issues, and other contributions
+that are not aligned to this Code of Conduct, or to ban temporarily or
+permanently any contributor for other behaviors that they deem inappropriate,
+threatening, offensive, or harmful.
+
+## Scope
+
+This Code of Conduct applies within all project spaces, and it also applies when
+an individual is representing the project or its community in public spaces.
+Examples of representing a project or community include using an official
+project e-mail address, posting via an official social media account, or acting
+as an appointed representative at an online or offline event. Representation of
+a project may be further defined and clarified by project maintainers.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported by contacting the project team at ohmyzsh@planetargon.com. All
+complaints will be reviewed and investigated and will result in a response that
+is deemed necessary and appropriate to the circumstances. The project team is
+obligated to maintain confidentiality with regard to the reporter of an incident.
+Further details of specific enforcement policies may be posted separately.
+
+Project maintainers who do not follow or enforce the Code of Conduct in good
+faith may face temporary or permanent repercussions as determined by other
+members of the project's leadership.
+
+## Attribution
+
+This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
+available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
+
+[homepage]: https://www.contributor-covenant.org
+
+For answers to common questions about this code of conduct, see
+https://www.contributor-covenant.org/faq
diff --git a/exact_dot_oh-my-zsh/CONTRIBUTING.md b/exact_dot_oh-my-zsh/CONTRIBUTING.md
new file mode 100644
index 0000000..f575157
--- /dev/null
+++ b/exact_dot_oh-my-zsh/CONTRIBUTING.md
@@ -0,0 +1,125 @@
+# CONTRIBUTING GUIDELINES
+
+Oh-My-Zsh is a community-driven project. Contribution is welcome, encouraged, and appreciated.
+It is also essential for the development of the project.
+
+First, please take a moment to review our [code of conduct](CODE_OF_CONDUCT.md).
+
+These guidelines are an attempt at better addressing the huge amount of pending
+issues and pull requests. Please read them closely.
+
+Foremost, be so kind as to [search](#use-the-search-luke). This ensures any contribution
+you would make is not already covered.
+
+* [Issues](#reporting-issues)
+ * [You have a problem](#you-have-a-problem)
+ * [You have a suggestion](#you-have-a-suggestion)
+* [Pull Requests](#submitting-pull-requests)
+ * [Getting started](#getting-started)
+ * [You have a solution](#you-have-a-solution)
+ * [You have an addition](#you-have-an-addition)
+* [Information sources (_aka_ search)](#use-the-search-luke)
+
+**BONUS:** [Volunteering](#you-have-spare-time-to-volunteer)
+
+## Reporting Issues
+
+### You have a problem
+
+Please be so kind as to [search](#use-the-search-luke) for any open issue already covering
+your problem.
+
+If you find one, comment on it so we can know there are more people experiencing it.
+
+If not, look at the [Troubleshooting](https://github.com/robbyrussell/oh-my-zsh/wiki/Troubleshooting)
+page for instructions on how to gather data to better debug your problem.
+
+Then, you can go ahead and create an issue with as much detail as you can provide.
+It should include the data gathered as indicated above, along with:
+
+1. How to reproduce the problem
+2. What the correct behavior should be
+3. What the actual behavior is
+
+Please copy to anyone relevant (_eg_ plugin maintainers) by mentioning their GitHub handle
+(starting with `@`) in your message.
+
+We will do our very best to help you.
+
+### You have a suggestion
+
+Please be so kind as to [search](#use-the-search-luke) for any open issue already covering
+your suggestion.
+
+If you find one, comment on it so we can know there are more people supporting it.
+
+If not, you can go ahead and create an issue. Please copy to anyone relevant (_eg_ plugin
+maintainers) by mentioning their GitHub handle (starting with `@`) in your message.
+
+## Submitting Pull Requests
+
+### Getting started
+
+You should be familiar with the basics of
+[contributing on GitHub](https://help.github.com/articles/using-pull-requests) and have a fork
+[properly set up](https://github.com/robbyrussell/oh-my-zsh/wiki/Contribution-Technical-Practices).
+
+You MUST always create PRs with _a dedicated branch_ based on the latest upstream tree.
+
+If you create your own PR, please make sure you do it right. Also be so kind as to reference
+any issue that would be solved in the PR description body,
+[for instance](https://help.github.com/articles/closing-issues-via-commit-messages/)
+_"Fixes #XXXX"_ for issue number XXXX.
+
+### You have a solution
+
+Please be so kind as to [search](#use-the-search-luke) for any open issue already covering
+your [problem](#you-have-a-problem), and any pending/merged/rejected PR covering your solution.
+
+If the solution is already reported, try it out and +1 the pull request if the
+solution works ok. On the other hand, if you think your solution is better, post
+it with a reference to the other one so we can have both solutions to compare.
+
+If not, then go ahead and submit a PR. Please copy to anyone relevant (e.g. plugin
+maintainers) by mentioning their GitHub handle (starting with `@`) in your message.
+
+### You have an addition
+
+Please [do not](https://github.com/robbyrussell/oh-my-zsh/wiki/Themes#dont-send-us-your-theme-for-now)
+send themes for now.
+
+Please be so kind as to [search](#use-the-search-luke) for any pending, merged or rejected Pull Requests
+covering or related to what you want to add.
+
+If you find one, try it out and work with the author on a common solution.
+
+If not, then go ahead and submit a PR. Please copy to anyone relevant (_eg_ plugin
+maintainers) by mentioning their GitHub handle (starting with `@`) in your message.
+
+For any extensive change, _eg_ a new plugin, you will have to find testers to +1 your PR.
+
+----
+
+## Use the Search, Luke
+
+_May the Force (of past experiences) be with you_
+
+GitHub offers [many search features](https://help.github.com/articles/searching-github/)
+to help you check whether a similar contribution to yours already exists. Please search
+before making any contribution, it avoids duplicates and eases maintenance. Trust me,
+that works 90% of the time.
+
+You can also take a look at the [FAQ](https://github.com/robbyrussell/oh-my-zsh/wiki/FAQ)
+to be sure your contribution has not already come up.
+
+If all fails, your thing has probably not been reported yet, so you can go ahead
+and [create an issue](#reporting-issues) or [submit a PR](#submitting-pull-requests).
+
+----
+
+### You have spare time to volunteer
+
+Very nice!! :)
+
+Please have a look at the [Volunteer](https://github.com/robbyrussell/oh-my-zsh/wiki/Volunteers)
+page for instructions on where to start and more.
diff --git a/exact_dot_oh-my-zsh/LICENSE.txt b/exact_dot_oh-my-zsh/LICENSE.txt
new file mode 100644
index 0000000..4d465b1
--- /dev/null
+++ b/exact_dot_oh-my-zsh/LICENSE.txt
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2009-2019 Robby Russell and contributors
+See the full list at https://github.com/robbyrussell/oh-my-zsh/contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/exact_dot_oh-my-zsh/README.md b/exact_dot_oh-my-zsh/README.md
new file mode 100644
index 0000000..2f23feb
--- /dev/null
+++ b/exact_dot_oh-my-zsh/README.md
@@ -0,0 +1,306 @@
+
+
+
+
+Oh My Zsh is an open source, community-driven framework for managing your [zsh](https://www.zsh.org/) configuration.
+
+Sounds boring. Let's try again.
+
+__Oh My Zsh will not make you a 10x developer...but you may feel like one.__
+
+Once installed, your terminal shell will become the talk of the town _or your money back!_ With each keystroke in your command prompt, you'll take advantage of the hundreds of powerful plugins and beautiful themes. Strangers will come up to you in cafés and ask you, _"that is amazing! are you some sort of genius?"_
+
+Finally, you'll begin to get the sort of attention that you have always felt you deserved. ...or maybe you'll use the time that you're saving to start flossing more often. 😬
+
+To learn more, visit [ohmyz.sh](https://ohmyz.sh) and follow [@ohmyzsh](https://twitter.com/ohmyzsh) on Twitter.
+
+## Getting Started
+
+### Prerequisites
+
+* A Unix-like operating system: macOS, Linux, BSD. On Windows: WSL is preferred, but cygwin or msys also mostly work.
+* [Zsh](https://www.zsh.org) should be installed (v4.3.9 or more recent). If not pre-installed (run `zsh --version` to confirm), check the following instructions here: [Installing ZSH](https://github.com/robbyrussell/oh-my-zsh/wiki/Installing-ZSH)
+* `curl` or `wget` should be installed
+* `git` should be installed
+
+### Basic Installation
+
+Oh My Zsh is installed by running one of the following commands in your terminal. You can install this via the command-line with either `curl` or `wget`.
+
+#### via curl
+
+```shell
+sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
+```
+
+#### via wget
+
+```shell
+sh -c "$(wget -O- https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
+```
+
+#### Manual inspection
+
+It's a good idea to inspect the install script from projects you don't yet know. You can do
+that by downloading the install script first, looking through it so everything looks normal,
+then running it:
+
+```shell
+curl -Lo install.sh https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh
+sh install.sh
+```
+
+## Using Oh My Zsh
+
+### Plugins
+
+Oh My Zsh comes with a shitload of plugins to take advantage of. You can take a look in the [plugins](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins) directory and/or the [wiki](https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins) to see what's currently available.
+
+#### Enabling Plugins
+
+Once you spot a plugin (or several) that you'd like to use with Oh My Zsh, you'll need to enable them in the `.zshrc` file. You'll find the zshrc file in your `$HOME` directory. Open it with your favorite text editor and you'll see a spot to list all the plugins you want to load.
+
+```shell
+vi ~/.zshrc
+```
+
+For example, this might begin to look like this:
+
+```shell
+plugins=(
+ git
+ bundler
+ dotenv
+ osx
+ rake
+ rbenv
+ ruby
+)
+```
+
+_Note that the plugins are separated by whitespace. **Do not** use commas between them._
+
+#### Using Plugins
+
+Most plugins (should! we're working on this) include a __README__, which documents how to use them.
+
+### Themes
+
+We'll admit it. Early in the Oh My Zsh world, we may have gotten a bit too theme happy. We have over one hundred themes now bundled. Most of them have [screenshots](https://github.com/robbyrussell/oh-my-zsh/wiki/Themes) on the wiki. Check them out!
+
+#### Selecting a Theme
+
+_Robby's theme is the default one. It's not the fanciest one. It's not the simplest one. It's just the right one (for him)._
+
+Once you find a theme that you'd like to use, you will need to edit the `~/.zshrc` file. You'll see an environment variable (all caps) in there that looks like:
+
+```shell
+ZSH_THEME="robbyrussell"
+```
+
+To use a different theme, simply change the value to match the name of your desired theme. For example:
+
+```shell
+ZSH_THEME="agnoster" # (this is one of the fancy ones)
+# see https://github.com/robbyrussell/oh-my-zsh/wiki/Themes#agnoster
+```
+
+_Note: many themes require installing the [Powerline Fonts](https://github.com/powerline/fonts) in order to render properly._
+
+Open up a new terminal window and your prompt should look something like this:
+
+
+
+In case you did not find a suitable theme for your needs, please have a look at the wiki for [more of them](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes).
+
+If you're feeling feisty, you can let the computer select one randomly for you each time you open a new terminal window.
+
+
+```shell
+ZSH_THEME="random" # (...please let it be pie... please be some pie..)
+```
+
+And if you want to pick random theme from a list of your favorite themes:
+
+```shell
+ZSH_THEME_RANDOM_CANDIDATES=(
+ "robbyrussell"
+ "agnoster"
+)
+```
+
+## Advanced Topics
+
+If you're the type that likes to get their hands dirty, these sections might resonate.
+
+### Advanced Installation
+
+Some users may want to manually install Oh My Zsh, or change the default path or other settings that
+the installer accepts (these settings are also documented at the top of the install script).
+
+#### Custom Directory
+
+The default location is `~/.oh-my-zsh` (hidden in your home directory)
+
+If you'd like to change the install directory with the `ZSH` environment variable, either by running
+`export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline
+like this:
+
+```shell
+ZSH="$HOME/.dotfiles/oh-my-zsh" sh install.sh
+```
+
+#### Unattended install
+
+If you're running the Oh My Zsh install script as part of an automated install, you can pass the
+flag `--unattended` to the `install.sh` script. This will have the effect of not trying to change
+the default shell, and also won't run `zsh` when the installation has finished.
+
+```shell
+sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" "" --unattended
+```
+
+#### Installing from a forked repository
+
+The install script also accepts these variables to allow installation of a different repository:
+
+- `REPO` (default: `robbyrussell/oh-my-zsh`): this takes the form of `owner/repository`. If you set
+ this variable, the installer will look for a repository at `https://github.com/{owner}/{repository}`.
+
+- `REMOTE` (default: `https://github.com/${REPO}.git`): this is the full URL of the git repository
+ clone. You can use this setting if you want to install from a fork that is not on GitHub (GitLab,
+ Bitbucket...) or if you want to clone with SSH instead of HTTPS (`git@github.com:user/project.git`).
+
+ _NOTE: it's incompatible with setting the `REPO` variable. This setting will take precedence._
+
+- `BRANCH` (default: `master`): you can use this setting if you want to change the default branch to be
+ checked out when cloning the repository. This might be useful for testing a Pull Request, or if you
+ want to use a branch other than `master`.
+
+For example:
+
+```shell
+REPO=apjanke/oh-my-zsh BRANCH=edge sh install.sh
+```
+
+#### Manual Installation
+
+##### 1. Clone the repository:
+
+```shell
+git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
+```
+
+##### 2. *Optionally*, backup your existing `~/.zshrc` file:
+
+```shell
+cp ~/.zshrc ~/.zshrc.orig
+```
+
+##### 3. Create a new zsh configuration file
+
+You can create a new zsh config file by copying the template that we have included for you.
+
+```shell
+cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
+```
+
+##### 4. Change your default shell
+
+```shell
+chsh -s $(which zsh)
+```
+
+You must log out from your user session and log back in to see this change.
+
+##### 5. Initialize your new zsh configuration
+
+Once you open up a new terminal window, it should load zsh with Oh My Zsh's configuration.
+
+### Installation Problems
+
+If you have any hiccups installing, here are a few common fixes.
+
+* You _might_ need to modify your `PATH` in `~/.zshrc` if you're not able to find some commands after
+switching to `oh-my-zsh`.
+* If you installed manually or changed the install location, check the `ZSH` environment variable in
+`~/.zshrc`.
+
+### Custom Plugins and Themes
+
+If you want to override any of the default behaviors, just add a new file (ending in `.zsh`) in the `custom/` directory.
+
+If you have many functions that go well together, you can put them as a `XYZ.plugin.zsh` file in the `custom/plugins/` directory and then enable this plugin.
+
+If you would like to override the functionality of a plugin distributed with Oh My Zsh, create a plugin of the same name in the `custom/plugins/` directory and it will be loaded instead of the one in `plugins/`.
+
+## Getting Updates
+
+By default, you will be prompted to check for upgrades every few weeks. If you would like `oh-my-zsh` to automatically upgrade itself without prompting you, set the following in your `~/.zshrc`:
+
+```shell
+DISABLE_UPDATE_PROMPT=true
+```
+
+To disable automatic upgrades, set the following in your `~/.zshrc`:
+
+```shell
+DISABLE_AUTO_UPDATE=true
+```
+
+### Manual Updates
+
+If you'd like to upgrade at any point in time (maybe someone just released a new plugin and you don't want to wait a week?) you just need to run:
+
+```shell
+upgrade_oh_my_zsh
+```
+
+Magic! 🎉
+
+## Uninstalling Oh My Zsh
+
+Oh My Zsh isn't for everyone. We'll miss you, but we want to make this an easy breakup.
+
+If you want to uninstall `oh-my-zsh`, just run `uninstall_oh_my_zsh` from the command-line. It will remove itself and revert your previous `bash` or `zsh` configuration.
+
+## How do I contribute to Oh My Zsh?
+
+Before you participate in our delightful community, please read the [code of conduct](CODE_OF_CONDUCT.md).
+
+I'm far from being a [Zsh](https://www.zsh.org/) expert and suspect there are many ways to improve – if you have ideas on how to make the configuration easier to maintain (and faster), don't hesitate to fork and send pull requests!
+
+We also need people to test out pull-requests. So take a look through [the open issues](https://github.com/robbyrussell/oh-my-zsh/issues) and help where you can.
+
+See [Contributing](CONTRIBUTING.md) for more details.
+
+### Do NOT send us themes
+
+We have (more than) enough themes for the time being. Please add your theme to the [external themes](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes) wiki page.
+
+## Contributors
+
+Oh My Zsh has a vibrant community of happy users and delightful contributors. Without all the time and help from our contributors, it wouldn't be so awesome.
+
+Thank you so much!
+
+## Follow Us
+
+We're on the social media.
+
+* [@ohmyzsh](https://twitter.com/ohmyzsh) on Twitter. You should follow it.
+* [Oh My Zsh](https://www.facebook.com/Oh-My-Zsh-296616263819290/) on Facebook.
+
+## Merchandise
+
+We have [stickers, shirts, and coffee mugs available](https://shop.planetargon.com/collections/oh-my-zsh?utm_source=github) for you to show off your love of Oh My Zsh. Again, you will become the talk of the town!
+
+## License
+
+Oh My Zsh is released under the [MIT license](LICENSE.txt).
+
+## About Planet Argon
+
+
+
+Oh My Zsh was started by the team at [Planet Argon](https://www.planetargon.com/?utm_source=github), a [Ruby on Rails development agency](https://www.planetargon.com/skills/ruby-on-rails-development?utm_source=github). Check out our [other open source projects](https://www.planetargon.com/open-source?utm_source=github).
diff --git a/exact_dot_oh-my-zsh/dot_editorconfig b/exact_dot_oh-my-zsh/dot_editorconfig
new file mode 100644
index 0000000..aa18e0e
--- /dev/null
+++ b/exact_dot_oh-my-zsh/dot_editorconfig
@@ -0,0 +1,10 @@
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+charset = utf-8
+
+[*.sh]
+indent_size = 4
+indent_style = tab
diff --git a/exact_dot_oh-my-zsh/dot_gitignore b/exact_dot_oh-my-zsh/dot_gitignore
new file mode 100644
index 0000000..87a79cd
--- /dev/null
+++ b/exact_dot_oh-my-zsh/dot_gitignore
@@ -0,0 +1,6 @@
+# custom files
+custom/
+
+# temp files directories
+cache/
+log/
diff --git a/exact_dot_oh-my-zsh/exact_cache/ZYPPER_ALL_RAW b/exact_dot_oh-my-zsh/exact_cache/ZYPPER_ALL_RAW
new file mode 100644
index 0000000..eabe3e6
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_cache/ZYPPER_ALL_RAW
@@ -0,0 +1,41565 @@
+_zypp_all_raw='
+not-installed"0ad
+not-installed"0ad-data
+not-installed"2048-cli
+not-installed"2ManDVD
+not-installed"2ManDVD
+not-installed"2ManDVD-debuginfo
+not-installed"2ManDVD-debugsource
+not-installed"2ping
+not-installed"32bit
+not-installed"389-ds
+not-installed"389-ds-devel
+not-installed"389-ds-snmp
+not-installed"3dsconv
+not-installed"3dsconv
+not-installed"3gpwiz
+not-installed"3gpwiz
+not-installed"3omns
+not-installed"4pane
+not-installed"4pane-lang
+not-installed"4store
+not-installed"4ti2
+not-installed"4ti2-devel
+not-installed"6tunnel
+not-installed"7kaa
+not-installed"7kaa-music
+not-installed"ASL
+not-installed"ASL-devel
+not-installed"ASL-doc
+not-installed"AdobeICCProfiles
+not-installed"AppCSXCAD
+installed"AppStream
+not-installed"AppStream-devel
+not-installed"AppStream-doc
+installed"AppStream-lang
+not-installed"AtomicParsley
+not-installed"AtomicParsley
+not-installed"AtomicParsley-debuginfo
+not-installed"AtomicParsley-debugsource
+not-installed"Bear
+not-installed"BitTorrent
+not-installed"BitTorrent
+not-installed"BitTorrent-curses
+not-installed"BitTorrent-gtk
+not-installed"Botan
+not-installed"Botan-doc
+not-installed"Box2D-doc
+not-installed"CSXCAD-devel
+not-installed"CSXCAD-matlab
+not-installed"CharLS-devel
+not-installed"Coin-devel
+not-installed"ColPack-devel
+not-installed"ColPack-devel-32bit
+not-installed"ColorFull-devel
+not-installed"CorsixTH
+not-installed"Crystalcursors
+not-installed"DVDStyler
+not-installed"DVDStyler-lang
+not-installed"DeepLearningToga-1.5.21a
+not-installed"DeepLearningToga-1.5.21a
+not-installed"DeepLearningToga-1.5.21a-debuginfo
+not-installed"DevIL-devel
+not-installed"DisplayCAL
+not-installed"DisplayCluster
+not-installed"DisplayCluster
+not-installed"DisplayCluster-debuginfo
+not-installed"DisplayCluster-debugsource
+not-installed"DisplayCluster-devel
+not-installed"DisplayCluster-doc
+not-installed"ETL
+not-installed"ETL-devel
+not-installed"FAudio-devel
+not-installed"FAudio-devel-32bit
+not-installed"FastCGI
+not-installed"FastCGI-devel
+not-installed"Field3D
+not-installed"Field3D
+not-installed"Field3D-debuginfo
+not-installed"Field3D-debugsource
+not-installed"Field3D-devel
+not-installed"FirmwareUpdateKit
+not-installed"FlightGear
+not-installed"FlightGear-data
+not-installed"FlightGear-docs
+not-installed"FreeCAD
+not-installed"GeneralUser
+not-installed"GeneralUser
+installed"GeoIP
+installed"GeoIP-data
+not-installed"GraphicsMagick
+not-installed"GraphicsMagick-devel
+not-installed"HSAIL-Tools
+not-installed"HepMC-devel
+not-installed"HepMC2-devel
+not-installed"Herwig-devel
+not-installed"Herwig-libs
+not-installed"IccXML
+installed"ImageMagick
+installed"ImageMagick-config-7-SUSE
+not-installed"ImageMagick-config-7-upstream
+not-installed"ImageMagick-devel
+not-installed"ImageMagick-devel-32bit
+not-installed"ImageMagick-doc
+not-installed"ImageMagick-extra
+not-installed"J7Z
+not-installed"J7Z-kf5
+not-installed"Jamulus
+not-installed"KEALib-devel
+not-installed"LHAPDF-devel
+not-installed"LiE
+not-installed"LiE-doc
+not-installed"LiVES
+not-installed"LiVES
+not-installed"LiVES-debuginfo
+not-installed"LiVES-debugsource
+not-installed"LiVES-lang
+not-installed"LibVNCServer-devel
+not-installed"Lunchbox
+not-installed"Lunchbox-debugsource
+not-installed"Lunchbox-devel
+not-installed"Lunchbox-doc
+not-installed"MLDonkey
+not-installed"MLDonkey
+not-installed"MLDonkey-debuginfo
+not-installed"MLDonkey-debugsource
+not-installed"MLDonkey-gui
+not-installed"MLDonkey-gui-debuginfo
+not-installed"MP4Tools
+not-installed"MP4Tools
+not-installed"MP4Tools-debuginfo
+not-installed"MP4Tools-debugsource
+not-installed"MP4Tools-lang
+not-installed"MPlayer
+not-installed"MPlayer
+not-installed"MPlayer-debuginfo
+not-installed"MPlayer-debugsource
+not-installed"MPlayer-doc
+installed"Mesa
+installed"Mesa-32bit
+not-installed"Mesa-KHR-devel
+not-installed"Mesa-demo
+installed"Mesa-demo-x
+not-installed"Mesa-devel
+installed"Mesa-dri
+installed"Mesa-dri-32bit
+not-installed"Mesa-dri-devel
+installed"Mesa-dri-nouveau
+not-installed"Mesa-dri-nouveau-32bit
+installed"Mesa-gallium
+installed"Mesa-gallium-32bit
+not-installed"Mesa-libEGL-devel
+installed"Mesa-libEGL1
+not-installed"Mesa-libEGL1-32bit
+not-installed"Mesa-libGL-devel
+installed"Mesa-libGL1
+installed"Mesa-libGL1-32bit
+not-installed"Mesa-libGLESv1_CM-devel
+installed"Mesa-libGLESv1_CM1
+installed"Mesa-libGLESv2-2
+not-installed"Mesa-libGLESv2-devel
+not-installed"Mesa-libGLESv3-devel
+not-installed"Mesa-libOpenCL
+not-installed"Mesa-libVulkan-devel
+not-installed"Mesa-libd3d
+not-installed"Mesa-libd3d-32bit
+not-installed"Mesa-libd3d-devel
+not-installed"Mesa-libd3d-devel-32bit
+not-installed"Mesa-libglapi-devel
+not-installed"Mesa-libglapi-devel-32bit
+installed"Mesa-libglapi0
+installed"Mesa-libglapi0-32bit
+installed"Mesa-libva
+installed"ModemManager
+installed"ModemManager-bash-completion
+not-installed"ModemManager-devel
+installed"ModemManager-lang
+not-installed"Modules
+not-installed"Modules-doc
+not-installed"MotionBox
+installed"MozillaFirefox
+installed"MozillaFirefox-branding-openSUSE
+not-installed"MozillaFirefox-branding-upstream
+not-installed"MozillaFirefox-buildsymbols
+not-installed"MozillaFirefox-devel
+not-installed"MozillaFirefox-translations-common
+not-installed"MozillaFirefox-translations-other
+installed"MozillaThunderbird
+not-installed"MozillaThunderbird-buildsymbols
+not-installed"MozillaThunderbird-translations-common
+not-installed"MozillaThunderbird-translations-other
+not-installed"MultiMarkdown-6
+not-installed"MyGUI
+not-installed"MyGUI-demo
+not-installed"MyGUI-devel
+not-installed"MyGUI-devel-doc
+installed"NetworkManager
+not-installed"NetworkManager-applet
+not-installed"NetworkManager-applet-lang
+installed"NetworkManager-branding-openSUSE
+not-installed"NetworkManager-branding-upstream
+not-installed"NetworkManager-connection-editor
+not-installed"NetworkManager-devel
+not-installed"NetworkManager-devel-32bit
+not-installed"NetworkManager-fortisslvpn
+not-installed"NetworkManager-fortisslvpn-gnome
+not-installed"NetworkManager-fortisslvpn-lang
+not-installed"NetworkManager-iodine
+not-installed"NetworkManager-iodine-gnome
+not-installed"NetworkManager-iodine-lang
+installed"NetworkManager-l2tp
+not-installed"NetworkManager-l2tp-gnome
+installed"NetworkManager-l2tp-lang
+installed"NetworkManager-lang
+not-installed"NetworkManager-libreswan
+not-installed"NetworkManager-libreswan-gnome
+not-installed"NetworkManager-libreswan-lang
+installed"NetworkManager-openconnect
+not-installed"NetworkManager-openconnect-gnome
+installed"NetworkManager-openconnect-lang
+installed"NetworkManager-openvpn
+not-installed"NetworkManager-openvpn-gnome
+installed"NetworkManager-openvpn-lang
+installed"NetworkManager-pptp
+not-installed"NetworkManager-pptp-gnome
+installed"NetworkManager-pptp-lang
+not-installed"NetworkManager-strongswan
+not-installed"NetworkManager-strongswan-gnome
+not-installed"NetworkManager-strongswan-lang
+not-installed"NetworkManager-vpnc
+not-installed"NetworkManager-vpnc-gnome
+not-installed"NetworkManager-vpnc-lang
+not-installed"OOKiedokie
+not-installed"OpenColorIO
+not-installed"OpenColorIO-devel
+not-installed"OpenColorIO-doc
+not-installed"OpenIPMI
+not-installed"OpenIPMI-devel
+not-installed"OpenIPMI-python
+not-installed"OpenImageIO
+not-installed"OpenImageIO-devel
+not-installed"OpenLP
+not-installed"OpenOctaveMidi
+not-installed"OpenOctaveMidi
+not-installed"OpenOctaveMidi-debuginfo
+not-installed"OpenOctaveMidi-lang
+not-installed"OpenOctaveMidi-unstable
+not-installed"OpenOctaveMidi-unstable
+not-installed"OpenOctaveMidi-unstable-debuginfo
+not-installed"OpenOctaveMidi-unstable-debugsource
+not-installed"OpenOctaveMidi-unstable-lang
+not-installed"OpenPrintingPPDs
+not-installed"OpenPrintingPPDs-ghostscript
+not-installed"OpenPrintingPPDs-hpijs
+not-installed"OpenPrintingPPDs-postscript
+not-installed"OpenSceneGraph
+not-installed"OpenSceneGraph-examples
+not-installed"OpenSceneGraph-plugins
+not-installed"OpenSceneGraph34
+not-installed"OpenSceneGraph34-examples
+not-installed"OpenSceneGraph34-plugins
+not-installed"OpenShadingLanguage
+not-installed"OpenShadingLanguage-MaterialX-shaders-source
+not-installed"OpenShadingLanguage-common-headers
+not-installed"OpenShadingLanguage-devel
+not-installed"OpenShadingLanguage-doc
+not-installed"OpenShadingLanguage-example-shaders-source
+not-installed"Osmo4
+not-installed"Osmo4-debuginfo
+installed"PackageKit
+not-installed"PackageKit-Qt-devel
+installed"PackageKit-backend-zypp
+installed"PackageKit-branding-openSUSE
+not-installed"PackageKit-branding-upstream
+not-installed"PackageKit-devel
+installed"PackageKit-gstreamer-plugin
+installed"PackageKit-gtk3-module
+installed"PackageKit-lang
+not-installed"PgTcl
+not-installed"Photini
+not-installed"PlayOnLinux
+not-installed"Printrun
+not-installed"Printrun-common
+not-installed"ProjectX
+not-installed"ProjectX
+not-installed"PyGreSQL
+not-installed"PythonQt-devel
+not-installed"QCSXCAD-devel
+not-installed"QGnomePlatform
+not-installed"QGnomePlatform-32bit
+not-installed"QMPlay2
+not-installed"QMPlay2-devel
+not-installed"QtAV
+not-installed"QtAV-devel
+not-installed"QtAV-players
+not-installed"QtAV-qml
+not-installed"QtDMM
+not-installed"R-BH
+not-installed"R-KernSmooth
+not-installed"R-MASS
+not-installed"R-Matrix
+not-installed"R-Matrix-devel
+not-installed"R-PKI
+not-installed"R-R6
+not-installed"R-RCurl
+not-installed"R-RJSONIO
+not-installed"R-Rcpp
+not-installed"R-Rcpp-devel
+not-installed"R-Rcpp-doc
+not-installed"R-base
+not-installed"R-base-devel
+not-installed"R-base64enc
+not-installed"R-bitops
+not-installed"R-boot
+not-installed"R-class
+not-installed"R-cluster
+not-installed"R-codetools
+not-installed"R-compiler
+not-installed"R-core
+not-installed"R-core-devel
+not-installed"R-core-doc
+not-installed"R-core-libs
+not-installed"R-core-packages
+not-installed"R-crayon
+not-installed"R-curl
+not-installed"R-datasets
+not-installed"R-digest
+not-installed"R-digest-devel
+not-installed"R-foreign
+not-installed"R-grDevices
+not-installed"R-graphics
+not-installed"R-grid
+not-installed"R-httpuv
+not-installed"R-jsonlite
+not-installed"R-later
+not-installed"R-lattice
+not-installed"R-magrittr
+not-installed"R-methods
+not-installed"R-mgcv
+not-installed"R-nlme
+not-installed"R-nnet
+not-installed"R-openssl
+not-installed"R-openssl-doc
+not-installed"R-packrat
+not-installed"R-parallel
+not-installed"R-plumber
+not-installed"R-praise
+not-installed"R-promises
+not-installed"R-recommended-packages
+not-installed"R-rlang
+not-installed"R-rpart
+not-installed"R-rsconnect
+not-installed"R-rstudioapi
+not-installed"R-spatial
+not-installed"R-splines
+not-installed"R-stats
+not-installed"R-stats4
+not-installed"R-stringi
+not-installed"R-stringi-devel
+not-installed"R-survival
+not-installed"R-tcltk
+not-installed"R-tools
+not-installed"R-utils
+not-installed"R-yaml
+not-installed"Reaction
+not-installed"Reaction-data
+not-installed"Regina-REXX
+not-installed"Regina-REXX-devel
+not-installed"Regina-REXX-doc
+not-installed"RemoteBox
+not-installed"Rivet-devel
+not-installed"Rivet-plugins
+not-installed"RobboLito0085
+not-installed"RobboLito0085
+not-installed"RobboLito0085-debuginfo
+not-installed"SHERPA-MC-devel
+not-installed"SUSEConnect
+not-installed"SampleICC
+not-installed"ShellCheck
+not-installed"SimGear-devel
+not-installed"SoQt-devel
+not-installed"SoQt-doc
+not-installed"Supybot
+not-installed"THE
+not-installed"THE-doc
+not-installed"ThePEG-devel
+not-installed"ThePEG-libs
+not-installed"UEFITool
+not-installed"VFlib3
+not-installed"VFlib3-devel
+not-installed"Vc-devel
+not-installed"Vc-devel-doc
+not-installed"Vc-devel-static
+not-installed"ViTables
+not-installed"VirtualGL
+not-installed"VirtualGL-32bit
+not-installed"VirtualGL-devel
+not-installed"WindowMaker
+not-installed"WindowMaker-applets
+not-installed"WindowMaker-devel
+not-installed"WindowMaker-themes
+not-installed"WoeUSB
+not-installed"XyGrib
+not-installed"YODA-devel
+not-installed"a2jmidid
+not-installed"a2jmidid
+not-installed"a2jmidid-debuginfo
+not-installed"a2jmidid-debugsource
+not-installed"a2ps
+not-installed"a2ps-devel
+not-installed"a2ps-h
+not-installed"a52dec
+not-installed"aMule
+not-installed"aMule
+not-installed"aMule-debuginfo
+not-installed"aMule-debugsource
+not-installed"aMule-kde4
+not-installed"aMule-kde4-debuginfo
+installed"aaa_base
+installed"aaa_base-extras
+not-installed"aaa_base-malloccheck
+not-installed"aaa_base-wsl
+not-installed"aacsupdater
+not-installed"aacsupdater
+not-installed"aacsupdater-debuginfo
+not-installed"aacsupdater-debugsource
+not-installed"aalib
+not-installed"aalib-devel
+not-installed"aalib-devel-32bit
+not-installed"abcde
+not-installed"abcm2ps
+not-installed"abi-compliance-checker
+not-installed"abi-dumper
+not-installed"abi-monitor
+not-installed"abi-tracker
+not-installed"abiword
+not-installed"abiword-docs
+not-installed"abook
+not-installed"abook-lang
+not-installed"abootimg
+not-installed"abseil-cpp-devel
+not-installed"abxtest
+not-installed"acars-examples
+not-installed"acarsdec
+not-installed"accerciser
+not-installed"accerciser-lang
+not-installed"accerciser-plugin-IPython
+installed"accountsservice
+not-installed"accountsservice-devel
+installed"accountsservice-lang
+not-installed"acct
+not-installed"ack
+installed"acl
+not-installed"acpi
+installed"acpica
+not-installed"acpid
+not-installed"actkbd
+not-installed"adaptec-firmware
+not-installed"adaptx
+not-installed"adaptx-doc
+not-installed"adaptx-javadoc
+not-installed"adcli
+not-installed"adcli-doc
+not-installed"addrwatch
+not-installed"ade-devel
+not-installed"adinatha-fonts
+installed"adjtimex
+not-installed"adlmidi
+not-installed"adlmidi-tools
+not-installed"adminer
+not-installed"adminer-designs
+not-installed"adminer-editor
+not-installed"adminer-firebird
+not-installed"adminer-mysql
+not-installed"adminer-pgsql
+not-installed"adminer-sqlite
+not-installed"adms
+not-installed"adms-devel
+not-installed"adns
+installed"adobe-sourcecodepro-fonts
+not-installed"adobe-sourcehansans-cn-fonts
+not-installed"adobe-sourcehansans-hk-fonts
+not-installed"adobe-sourcehansans-jp-fonts
+not-installed"adobe-sourcehansans-kr-fonts
+not-installed"adobe-sourcehansans-tw-fonts
+not-installed"adobe-sourcehanserif-cn-fonts
+not-installed"adobe-sourcehanserif-jp-fonts
+not-installed"adobe-sourcehanserif-kr-fonts
+not-installed"adobe-sourcehanserif-tw-fonts
+installed"adobe-sourcesanspro-fonts
+installed"adobe-sourceserifpro-fonts
+not-installed"adolc-devel
+not-installed"adolc-devel-32bit
+not-installed"adolc-doc
+not-installed"ads
+installed"adwaita-icon-theme
+not-installed"adwaita-qt5
+not-installed"aegisub
+not-installed"aelfred
+not-installed"aelfred-javadoc
+not-installed"aer-inject
+not-installed"aespipe
+not-installed"afl
+not-installed"aften
+not-installed"aften
+not-installed"aften-debuginfo
+not-installed"agenda
+not-installed"agenda-lang
+not-installed"agrep
+not-installed"aha
+not-installed"aide
+not-installed"aide-test
+not-installed"aircrack-ng
+not-installed"aircrack-ng
+not-installed"aircrack-ng-debuginfo
+not-installed"aircrack-ng-debugsource
+not-installed"airspy
+not-installed"airspy-devel
+not-installed"airspy-udev
+not-installed"airspyhf-devel
+not-installed"airspyhf-udev
+not-installed"aisleriot
+not-installed"aisleriot-lang
+not-installed"aisleriot-themes
+not-installed"akonadi-calendar-devel
+installed"akonadi-calendar-lang
+installed"akonadi-calendar-tools
+installed"akonadi-calendar-tools-lang
+installed"akonadi-contact
+not-installed"akonadi-contact-devel
+installed"akonadi-contact-lang
+installed"akonadi-import-wizard
+not-installed"akonadi-import-wizard-devel
+installed"akonadi-import-wizard-lang
+installed"akonadi-mime
+not-installed"akonadi-mime-devel
+installed"akonadi-mime-lang
+not-installed"akonadi-notes-devel
+installed"akonadi-notes-lang
+installed"akonadi-plugin-calendar
+installed"akonadi-plugin-contacts
+installed"akonadi-plugin-kalarmcal
+installed"akonadi-plugin-mime
+installed"akonadi-search
+not-installed"akonadi-search-devel
+installed"akonadi-search-lang
+installed"akonadi-server
+not-installed"akonadi-server-devel
+installed"akonadi-server-lang
+not-installed"akonadi-server-sqlite
+not-installed"akonadiconsole
+installed"akregator
+installed"akregator-lang
+not-installed"alac
+not-installed"alac-devel
+not-installed"alac_decoder
+not-installed"alac_decoder
+not-installed"alac_decoder-debuginfo
+not-installed"alac_decoder-debugsource
+not-installed"alacarte
+not-installed"alacarte-lang
+installed"alacritty
+installed"alacritty-bash-completion
+not-installed"alacritty-fish-completion
+installed"alacritty-zsh-completion
+not-installed"albert
+not-installed"aldusleaf-crimson-text-fonts
+not-installed"alee-fonts
+not-installed"alevt
+not-installed"alevtd
+not-installed"alex
+not-installed"almanah
+not-installed"almanah-lang
+not-installed"alpine
+not-installed"alpine-branding-openSUSE
+installed"alsa
+installed"alsa-devel
+installed"alsa-devel-32bit
+not-installed"alsa-docs
+not-installed"alsa-firmware
+installed"alsa-oss
+installed"alsa-oss-32bit
+installed"alsa-plugins
+installed"alsa-plugins-32bit
+not-installed"alsa-plugins-a52
+not-installed"alsa-plugins-aaf
+not-installed"alsa-plugins-dca
+not-installed"alsa-plugins-dca-debuginfo
+not-installed"alsa-plugins-jack
+installed"alsa-plugins-jack-32bit
+not-installed"alsa-plugins-lavrate
+not-installed"alsa-plugins-maemo
+not-installed"alsa-plugins-maemo-32bit
+installed"alsa-plugins-pulse
+installed"alsa-plugins-pulse-32bit
+not-installed"alsa-plugins-samplerate
+not-installed"alsa-plugins-samplerate-32bit
+not-installed"alsa-plugins-speex
+installed"alsa-utils
+not-installed"alsabat
+not-installed"alsaequal
+not-installed"alttab
+not-installed"amanda
+not-installed"amarok
+not-installed"amarok-lang
+not-installed"amavisd-new
+not-installed"amavisd-new-docs
+not-installed"amazon-ecs-init
+not-installed"amazon-ssm-agent
+not-installed"amrnb
+not-installed"amrnb
+not-installed"amrnb-debuginfo
+not-installed"amrnb-debugsource
+not-installed"amrwb
+not-installed"amrwb
+not-installed"amrwb-debuginfo
+not-installed"amrwb-debugsource
+not-installed"amsynth
+not-installed"amsynth-lang
+not-installed"amsynth-plugin-dssi
+not-installed"amsynth-plugin-lv2
+not-installed"amsynth-plugin-vst
+not-installed"amtk-5-lang
+not-installed"amtk-devel
+not-installed"amtterm
+not-installed"amtterm-gtk
+not-installed"amtu
+not-installed"analitza
+not-installed"analitza-devel
+not-installed"analitza-lang
+not-installed"analyzeMFT
+not-installed"angelscript
+not-installed"angelscript-devel
+not-installed"anjuta
+not-installed"anjuta-devel
+not-installed"anjuta-extras
+not-installed"anjuta-extras-lang
+not-installed"anjuta-lang
+installed"anki
+not-installed"ansible
+not-installed"ansible-runner
+not-installed"ansifilter
+not-installed"ansifilter-gui
+not-installed"ant
+not-installed"ant-antlr
+not-installed"ant-apache-bcel
+not-installed"ant-apache-bsf
+not-installed"ant-apache-log4j
+not-installed"ant-apache-oro
+not-installed"ant-apache-regexp
+not-installed"ant-apache-resolver
+not-installed"ant-apache-xalan2
+not-installed"ant-commons-logging
+not-installed"ant-commons-net
+not-installed"ant-contrib
+not-installed"ant-contrib-javadoc
+not-installed"ant-contrib-manual
+not-installed"ant-findbugs
+not-installed"ant-javamail
+not-installed"ant-jdepend
+not-installed"ant-jmf
+not-installed"ant-jsch
+not-installed"ant-junit
+not-installed"ant-junit5
+not-installed"ant-manual
+not-installed"ant-phone
+not-installed"ant-scala
+not-installed"ant-scala-bootstrap
+not-installed"ant-scripts
+not-installed"ant-swing
+not-installed"ant-testutil
+not-installed"anthy
+not-installed"anthy-devel
+not-installed"antimicro
+not-installed"antlr
+not-installed"antlr-devel
+not-installed"antlr-java
+not-installed"antlr-manual
+not-installed"antlr-maven-plugin
+not-installed"antlr-maven-plugin-javadoc
+not-installed"antlr3c-devel
+not-installed"antlr4
+not-installed"aom-tools
+not-installed"aop
+not-installed"aopalliance
+not-installed"aopalliance-javadoc
+not-installed"apache-commons-beanutils
+not-installed"apache-commons-beanutils-javadoc
+not-installed"apache-commons-chain
+not-installed"apache-commons-chain-javadoc
+not-installed"apache-commons-cli
+not-installed"apache-commons-cli-javadoc
+not-installed"apache-commons-codec
+not-installed"apache-commons-codec-javadoc
+not-installed"apache-commons-collections
+not-installed"apache-commons-collections-javadoc
+not-installed"apache-commons-collections-testframework
+not-installed"apache-commons-collections4
+not-installed"apache-commons-collections4-javadoc
+not-installed"apache-commons-compress
+not-installed"apache-commons-compress-javadoc
+not-installed"apache-commons-configuration
+not-installed"apache-commons-configuration-javadoc
+not-installed"apache-commons-csv
+not-installed"apache-commons-csv-javadoc
+not-installed"apache-commons-daemon
+not-installed"apache-commons-daemon-javadoc
+not-installed"apache-commons-daemon-jsvc
+not-installed"apache-commons-dbcp
+not-installed"apache-commons-dbcp-javadoc
+not-installed"apache-commons-dbcp1
+not-installed"apache-commons-dbcp1-javadoc
+not-installed"apache-commons-digester
+not-installed"apache-commons-digester-javadoc
+not-installed"apache-commons-el
+not-installed"apache-commons-el-javadoc
+not-installed"apache-commons-email
+not-installed"apache-commons-email-javadoc
+not-installed"apache-commons-exec
+not-installed"apache-commons-exec-javadoc
+not-installed"apache-commons-fileupload
+not-installed"apache-commons-fileupload-javadoc
+not-installed"apache-commons-httpclient
+not-installed"apache-commons-httpclient-demo
+not-installed"apache-commons-httpclient-javadoc
+not-installed"apache-commons-httpclient-manual
+not-installed"apache-commons-io
+not-installed"apache-commons-io-javadoc
+not-installed"apache-commons-jexl
+not-installed"apache-commons-jexl-javadoc
+not-installed"apache-commons-jxpath
+not-installed"apache-commons-jxpath-javadoc
+not-installed"apache-commons-lang
+not-installed"apache-commons-lang-javadoc
+not-installed"apache-commons-lang3
+not-installed"apache-commons-lang3-javadoc
+installed"apache-commons-logging
+not-installed"apache-commons-math
+not-installed"apache-commons-math-javadoc
+not-installed"apache-commons-net
+not-installed"apache-commons-net-javadoc
+not-installed"apache-commons-parent
+not-installed"apache-commons-pool
+not-installed"apache-commons-pool-javadoc
+not-installed"apache-commons-pool2
+not-installed"apache-commons-pool2-javadoc
+not-installed"apache-commons-text
+not-installed"apache-commons-text-javadoc
+not-installed"apache-commons-validator
+not-installed"apache-commons-validator-javadoc
+not-installed"apache-commons-vfs2
+not-installed"apache-commons-vfs2-ant
+not-installed"apache-commons-vfs2-examples
+not-installed"apache-commons-vfs2-javadoc
+not-installed"apache-ivy
+not-installed"apache-ivy-javadoc
+installed"apache-parent
+not-installed"apache-pdfbox
+not-installed"apache-pdfbox-javadoc
+not-installed"apache-portlet-1_0-api
+not-installed"apache-portlet-1_0-api-javadoc
+not-installed"apache-rex
+not-installed"apache-rpm-macros
+not-installed"apache-rpm-macros-control
+not-installed"apache2
+not-installed"apache2-devel
+not-installed"apache2-doc
+not-installed"apache2-event
+not-installed"apache2-example-pages
+not-installed"apache2-icons-oxygen
+not-installed"apache2-mod_apparmor
+not-installed"apache2-mod_auth_openidc
+not-installed"apache2-mod_authn_otp
+not-installed"apache2-mod_dnssd
+not-installed"apache2-mod_encoding
+not-installed"apache2-mod_evasive
+not-installed"apache2-mod_fcgid
+not-installed"apache2-mod_jk
+not-installed"apache2-mod_maxminddb
+not-installed"apache2-mod_mono
+not-installed"apache2-mod_musicindex
+not-installed"apache2-mod_musicindex
+not-installed"apache2-mod_musicindex-debuginfo
+not-installed"apache2-mod_musicindex-debugsource
+not-installed"apache2-mod_nss
+not-installed"apache2-mod_perl
+not-installed"apache2-mod_perl-devel
+not-installed"apache2-mod_php7
+not-installed"apache2-mod_security2
+not-installed"apache2-mod_uwsgi
+not-installed"apache2-mod_wsgi
+not-installed"apache2-mod_wsgi-python3
+not-installed"apache2-prefork
+not-installed"apache2-utils
+not-installed"apache2-worker
+not-installed"apcupsd
+not-installed"apcupsd-cgi
+not-installed"apcupsd-gui
+not-installed"apetag
+not-installed"apetag
+not-installed"apetag-debuginfo
+not-installed"apetag-debugsource
+not-installed"apfel-devel
+not-installed"apfel-doc
+not-installed"apg
+not-installed"apiguardian
+not-installed"apiguardian-javadoc
+installed"apparmor
+installed"apparmor-abstractions
+installed"apparmor-docs
+installed"apparmor-parser
+installed"apparmor-parser-lang
+installed"apparmor-profiles
+not-installed"apparmor-rpm-macros
+installed"apparmor-utils
+installed"apparmor-utils-lang
+not-installed"appeditor
+not-installed"appeditor-lang
+not-installed"appframework
+not-installed"appframework-javadoc
+not-installed"appimaged
+not-installed"appindicator-sharp
+not-installed"appindicator-sharp-devel
+not-installed"applet-window-appmenu
+not-installed"applet-window-buttons
+not-installed"appmenu-gtk-module-common
+not-installed"appmenu-gtk2-module
+not-installed"appmenu-gtk3-module
+not-installed"appmenu-qt
+not-installed"appmenu-registrar
+not-installed"appres
+installed"appstream-glib
+not-installed"appstream-glib-devel
+installed"appstream-glib-lang
+not-installed"apr-devel
+not-installed"apr-util-devel
+not-installed"apt-cacher-ng
+not-installed"apulse
+not-installed"apulse-32bit
+not-installed"aqbanking
+not-installed"aqbanking-devel
+not-installed"aqbanking-doc
+not-installed"aqbanking-ebics
+not-installed"aqbanking-lang
+not-installed"aqbanking-ofx
+not-installed"aqute-bnd
+not-installed"aqute-bnd-javadoc
+not-installed"aqute-bndlib
+not-installed"arabic-ae-fonts
+not-installed"arabic-amiri-fonts
+not-installed"arabic-bitmap-fonts
+not-installed"arabic-fonts
+not-installed"arabic-kacst-fonts
+not-installed"arabic-kacstone-fonts
+not-installed"arabic-naqsh-fonts
+not-installed"aranym
+not-installed"arc
+not-installed"arc-icon-theme
+not-installed"archivemail
+not-installed"archivemount
+not-installed"argon2
+not-installed"argon2-devel
+not-installed"argon2-doc
+not-installed"args4j
+not-installed"args4j-javadoc
+not-installed"argus
+not-installed"argus-client
+not-installed"argus-server
+not-installed"argyllcms
+not-installed"argyllcms-doc
+not-installed"aria2
+not-installed"aria2-devel
+not-installed"aria2-lang
+not-installed"arj
+installed"ark
+installed"ark-lang
+not-installed"armadillo-devel
+not-installed"armadillo-devel-32bit
+not-installed"armadillo-doc
+not-installed"armagetron
+not-installed"arp-scan
+not-installed"arpack-ng-devel
+not-installed"arpack-ng-devel-32bit
+not-installed"arphic-bkai00mp-fonts
+not-installed"arphic-bsmi00lp-fonts
+not-installed"arphic-fonts
+not-installed"arphic-gbsn00lp-fonts
+not-installed"arphic-gkai00mp-fonts
+not-installed"arphic-ukai-fonts
+not-installed"arphic-uming-fonts
+not-installed"arping2
+not-installed"arprec-devel
+not-installed"arptables
+not-installed"arpwatch
+not-installed"arpwatch-ethercodes
+not-installed"arpwatch-ethercodes-build
+not-installed"art-sharp2
+not-installed"artha
+not-installed"artifacts
+not-installed"artifacts-validator
+not-installed"artikulate
+not-installed"artikulate-lang
+not-installed"arts
+not-installed"arts
+not-installed"arts-32bit
+not-installed"arts-32bit-debuginfo
+not-installed"arts-debuginfo
+not-installed"arts-debugsource
+not-installed"arts-devel
+not-installed"arts-devel-debuginfo
+not-installed"arts-gmcop
+not-installed"arts-gmcop-debuginfo
+not-installed"as10k1
+not-installed"asciidoc
+not-installed"asciidoc-examples
+not-installed"asciinema
+not-installed"asclock
+not-installed"asco
+not-installed"asco-doc
+not-installed"aseqview
+not-installed"asio-devel
+not-installed"asl
+not-installed"asm3
+not-installed"asm3-examples
+not-installed"asm3-javadoc
+not-installed"asm5
+not-installed"asm5-examples
+not-installed"asm5-javadoc
+not-installed"asn1c
+not-installed"aspell
+not-installed"aspell-af
+not-installed"aspell-agal
+not-installed"aspell-am
+not-installed"aspell-ar
+not-installed"aspell-ast
+not-installed"aspell-az
+not-installed"aspell-be
+not-installed"aspell-bg
+not-installed"aspell-bn
+not-installed"aspell-br
+not-installed"aspell-ca
+not-installed"aspell-cs
+not-installed"aspell-csb
+not-installed"aspell-cy
+not-installed"aspell-da
+not-installed"aspell-de
+not-installed"aspell-devel
+not-installed"aspell-el
+not-installed"aspell-en
+not-installed"aspell-eo
+not-installed"aspell-es
+not-installed"aspell-et
+not-installed"aspell-fa
+not-installed"aspell-fi
+not-installed"aspell-fo
+not-installed"aspell-fr
+not-installed"aspell-fy
+not-installed"aspell-ga
+not-installed"aspell-gd
+not-installed"aspell-gl
+not-installed"aspell-grc
+not-installed"aspell-gu
+not-installed"aspell-gv
+not-installed"aspell-he
+not-installed"aspell-hi
+not-installed"aspell-hil
+not-installed"aspell-hr
+not-installed"aspell-hsb
+not-installed"aspell-hu
+not-installed"aspell-hus
+not-installed"aspell-hy
+not-installed"aspell-ia
+not-installed"aspell-id
+not-installed"aspell-is
+not-installed"aspell-ispell
+not-installed"aspell-it
+not-installed"aspell-kn
+not-installed"aspell-ku
+not-installed"aspell-ky
+not-installed"aspell-la
+not-installed"aspell-lt
+not-installed"aspell-lv
+not-installed"aspell-mg
+not-installed"aspell-mi
+not-installed"aspell-mk
+not-installed"aspell-ml
+not-installed"aspell-mn
+not-installed"aspell-mr
+not-installed"aspell-ms
+not-installed"aspell-mt
+not-installed"aspell-nb
+not-installed"aspell-nds
+not-installed"aspell-nl
+not-installed"aspell-nn
+not-installed"aspell-ny
+not-installed"aspell-or
+not-installed"aspell-pa
+not-installed"aspell-pl
+not-installed"aspell-pt_BR
+not-installed"aspell-pt_PT
+not-installed"aspell-qu
+not-installed"aspell-ro
+not-installed"aspell-ru
+not-installed"aspell-rw
+not-installed"aspell-sc
+not-installed"aspell-sk
+not-installed"aspell-sl
+not-installed"aspell-spell
+not-installed"aspell-sr
+not-installed"aspell-sv
+not-installed"aspell-sw
+not-installed"aspell-ta
+not-installed"aspell-te
+not-installed"aspell-tet
+not-installed"aspell-tk
+not-installed"aspell-tl
+not-installed"aspell-tn
+not-installed"aspell-tr
+not-installed"aspell-uk
+not-installed"aspell-uz
+not-installed"aspell-vi
+not-installed"aspell-wa
+not-installed"aspell-yi
+not-installed"aspell-zu
+not-installed"assertj-core
+not-installed"assertj-core-javadoc
+not-installed"assimp-devel
+not-installed"asterisk-sounds-devel
+not-installed"asteroid
+not-installed"asteroids3D
+not-installed"astyle
+not-installed"asunder
+not-installed"asunder
+not-installed"asunder-debuginfo
+not-installed"asunder-debugsource
+not-installed"asunder-lang
+not-installed"asusfan
+not-installed"at
+not-installed"at-spi-sharp
+not-installed"at-spi-sharp-devel
+installed"at-spi2-atk-common
+not-installed"at-spi2-atk-devel
+installed"at-spi2-atk-gtk2
+installed"at-spi2-core
+not-installed"at-spi2-core-devel
+not-installed"at-spi2-core-devel-32bit
+installed"at-spi2-core-lang
+not-installed"atftp
+not-installed"atheme
+not-installed"atheme-devel
+not-installed"atinject
+not-installed"atinject-javadoc
+not-installed"atinject-tck
+not-installed"atinout
+not-installed"atk-devel
+not-installed"atk-devel-32bit
+not-installed"atk-doc
+installed"atk-lang
+not-installed"atkmm-devel
+not-installed"atkmm-devel-32bit
+not-installed"atkmm-doc
+not-installed"atkmm1_6-devel
+not-installed"atkmm1_6-devel-32bit
+not-installed"atkmm1_6-doc
+not-installed"atlascpp-devel
+not-installed"atmel-firmware
+not-installed"atomiks
+not-installed"atomix
+not-installed"atomix-lang
+not-installed"atool
+not-installed"atop
+not-installed"atop-daemon
+not-installed"atril
+not-installed"atril-backends
+not-installed"atril-devel
+not-installed"atril-lang
+not-installed"atril-thumbnailer
+installed"attica-qt5
+not-installed"attica-qt5-devel
+not-installed"attica-qt5-devel-32bit
+installed"attr
+not-installed"attractmode
+not-installed"aubio-tools
+not-installed"audacious
+not-installed"audacious-devel
+not-installed"audacious-lang
+not-installed"audacious-plugins
+not-installed"audacious-plugins
+not-installed"audacious-plugins-debuginfo
+not-installed"audacious-plugins-debugsource
+not-installed"audacious-plugins-extra
+not-installed"audacious-plugins-extra-debuginfo
+not-installed"audacious-plugins-lang
+not-installed"audacity
+not-installed"audacity-lang
+not-installed"audaspace
+not-installed"audaspace-devel
+not-installed"audaspace-doc
+not-installed"audaspace-plugins
+not-installed"audenc
+not-installed"audenc
+not-installed"audio-recorder
+not-installed"audio-recorder-lang
+not-installed"audiofile
+not-installed"audiofile-devel
+not-installed"audiofile-devel-32bit
+not-installed"audiofile-doc
+not-installed"audiotools
+not-installed"audiotools
+not-installed"audiotools-debuginfo
+not-installed"audiotools-debugsource
+installed"audit
+not-installed"audit-audispd-plugins
+not-installed"audit-devel
+not-installed"audit-devel-32bit
+not-installed"audit-visualize
+installed"augeas
+not-installed"augeas-devel
+not-installed"augeas-devel-32bit
+not-installed"augeas-lense-tests
+installed"augeas-lenses
+not-installed"authbind
+not-installed"auto
+not-installed"auto-common
+not-installed"auto-factory
+not-installed"auto-javadoc
+not-installed"auto-service
+not-installed"auto-value
+not-installed"autobench
+not-installed"autobuild
+not-installed"autoconf
+not-installed"autoconf-archive
+not-installed"autoconf-el
+not-installed"autoconf213
+not-installed"autocutsel
+not-installed"autofdo
+installed"autofs
+not-installed"autogen
+not-installed"autojump
+not-installed"automake
+not-installed"automoc4
+not-installed"autonym-fonts
+not-installed"autoopts
+not-installed"autopano-sift-C
+not-installed"autopano-sift-C
+not-installed"autopano-sift-C-debuginfo
+not-installed"autopano-sift-C-debugsource
+not-installed"autossh
+not-installed"autotrace
+not-installed"autotrace-devel
+not-installed"autotrash
+installed"autoyast2
+installed"autoyast2-installation
+installed"avahi
+not-installed"avahi-autoipd
+not-installed"avahi-compat-howl-devel
+not-installed"avahi-compat-mDNSResponder-devel
+installed"avahi-lang
+not-installed"avahi-mono
+not-installed"avahi-utils
+not-installed"avahi-utils-gtk
+not-installed"avalon-framework
+not-installed"avalon-framework-javadoc
+not-installed"avalon-logkit
+not-installed"avalon-logkit-javadoc
+not-installed"avesta-fonts
+not-installed"avfs
+not-installed"avfs-devel
+not-installed"avgtime
+not-installed"avidemux
+not-installed"avidemux
+not-installed"avidemux-debuginfo
+not-installed"avidemux-debugsource
+not-installed"avidemux-gtk
+not-installed"avidemux-gtk-debuginfo
+not-installed"avidemux-lang
+not-installed"avidemux-plugin-arts
+not-installed"avidemux-plugin-arts-debuginfo
+not-installed"avidemux-qt
+not-installed"avidemux-qt-debuginfo
+not-installed"avidemux3
+not-installed"avidemux3
+not-installed"avidemux3-cli
+not-installed"avidemux3-cli-debuginfo
+not-installed"avidemux3-debuginfo
+not-installed"avidemux3-debugsource
+not-installed"avidemux3-qt5
+not-installed"avidemux3-qt5-debuginfo
+not-installed"avidemux3-qt5-lang
+not-installed"avifile
+not-installed"avifile
+not-installed"avifile-data
+not-installed"avifile-debuginfo
+not-installed"avifile-debugsource
+not-installed"avifile-win32
+not-installed"avocado-common
+not-installed"avocado-examples
+not-installed"avocado-vt-common
+not-installed"avogadrolibs
+not-installed"avogadrolibs-devel
+not-installed"avr-libc
+not-installed"avrdude
+not-installed"avrdude-devel
+not-installed"avxsynth
+not-installed"avxsynth
+not-installed"avxsynth-debuginfo
+not-installed"avxsynth-debugsource
+not-installed"avxsynth-devel
+not-installed"avxsynth-plugins
+not-installed"avxsynth-plugins-debuginfo
+not-installed"awesfx
+not-installed"awesome
+not-installed"awesome-branding-openSUSE
+not-installed"awesome-branding-upstream
+not-installed"awesome-freedesktop
+not-installed"awesome-shifty
+not-installed"awesome-vicious
+not-installed"aws-cli
+not-installed"aws-efs-utils
+not-installed"ax25-tools
+not-installed"axel
+not-installed"axis
+not-installed"axis-manual
+not-installed"ayatana-appindicator-sharp
+not-installed"ayatana-appindicator-sharp-devel
+not-installed"ayatana-ido-devel
+not-installed"aytests-tests
+not-installed"azove
+not-installed"azure-cli
+not-installed"azure-cli-acr
+not-installed"azure-cli-acs
+not-installed"azure-cli-advisor
+not-installed"azure-cli-ams
+not-installed"azure-cli-appservice
+not-installed"azure-cli-backup
+not-installed"azure-cli-batch
+not-installed"azure-cli-batchai
+not-installed"azure-cli-billing
+not-installed"azure-cli-botservice
+not-installed"azure-cli-cdn
+not-installed"azure-cli-cloud
+not-installed"azure-cli-cognitiveservices
+not-installed"azure-cli-command-modules-nspkg
+not-installed"azure-cli-component
+not-installed"azure-cli-configure
+not-installed"azure-cli-consumption
+not-installed"azure-cli-container
+not-installed"azure-cli-core
+not-installed"azure-cli-cosmosdb
+not-installed"azure-cli-dla
+not-installed"azure-cli-dls
+not-installed"azure-cli-dms
+not-installed"azure-cli-eventgrid
+not-installed"azure-cli-eventhubs
+not-installed"azure-cli-extension
+not-installed"azure-cli-feedback
+not-installed"azure-cli-find
+not-installed"azure-cli-hdinsight
+not-installed"azure-cli-interactive
+not-installed"azure-cli-iot
+not-installed"azure-cli-iotcentral
+not-installed"azure-cli-keyvault
+not-installed"azure-cli-kusto
+not-installed"azure-cli-lab
+not-installed"azure-cli-maps
+not-installed"azure-cli-monitor
+not-installed"azure-cli-network
+not-installed"azure-cli-nspkg
+not-installed"azure-cli-policyinsights
+not-installed"azure-cli-profile
+not-installed"azure-cli-rdbms
+not-installed"azure-cli-redis
+not-installed"azure-cli-relay
+not-installed"azure-cli-reservations
+not-installed"azure-cli-resource
+not-installed"azure-cli-role
+not-installed"azure-cli-search
+not-installed"azure-cli-security
+not-installed"azure-cli-servicebus
+not-installed"azure-cli-servicefabric
+not-installed"azure-cli-signalr
+not-installed"azure-cli-sql
+not-installed"azure-cli-sqlvm
+not-installed"azure-cli-storage
+not-installed"azure-cli-taskhelp
+not-installed"azure-cli-telemetry
+not-installed"azure-cli-test
+not-installed"azure-cli-vm
+not-installed"b43-fwcutter
+not-installed"b43legacy-firmware
+not-installed"b43legacy-firmware
+not-installed"b5i2iso
+not-installed"b5i2iso
+not-installed"b5i2iso-debuginfo
+not-installed"babe
+not-installed"babelstone-han-fonts
+not-installed"babelstone-marchen-fonts
+not-installed"babelstone-modern-fonts
+not-installed"babelstone-ogham-fonts
+not-installed"babelstone-phags-pa-fonts
+not-installed"babelstone-runic-fonts
+not-installed"babeltrace
+not-installed"babeltrace-devel
+not-installed"babl-devel
+not-installed"backintime
+not-installed"backintime-lang
+not-installed"backintime-qt
+not-installed"backward-cpp
+not-installed"backward-cpp-devel
+not-installed"baekmuk-bitmap-fonts
+not-installed"baekmuk-ttf-fonts
+not-installed"baka-mplayer
+not-installed"ballerburg
+not-installed"baloo5-devel
+installed"baloo5-file
+installed"baloo5-file-lang
+installed"baloo5-imports
+installed"baloo5-imports-lang
+installed"baloo5-kioslaves
+installed"baloo5-kioslaves-lang
+installed"baloo5-tools
+installed"baloo5-tools-lang
+installed"baloo5-widgets
+not-installed"baloo5-widgets-devel
+installed"baloo5-widgets-lang
+not-installed"balsa
+not-installed"balsa-lang
+not-installed"bam
+not-installed"bamf-daemon
+not-installed"bamf-devel
+not-installed"bamf-doc
+not-installed"bandwidth
+not-installed"baobab
+not-installed"baobab-lang
+not-installed"barbie_seahorse_adventures
+not-installed"barcode
+not-installed"barcode-devel
+not-installed"bareftp
+installed"base
+not-installed"base64coder
+not-installed"base64coder-javadoc
+installed"bash
+installed"bash-completion
+not-installed"bash-completion-devel
+not-installed"bash-completion-doc
+not-installed"bash-devel
+installed"bash-doc
+installed"bash-lang
+not-installed"bash-loadables
+not-installed"basic_desktop
+not-installed"bat
+not-installed"batctl
+not-installed"bats
+not-installed"bazel
+not-installed"bazel-gazelle
+not-installed"bazel-gazelle-source
+not-installed"bazel-rules-foreign-cc-source
+not-installed"bazel-rules-go-source
+not-installed"bazel-rules-proto-source
+not-installed"bazel-skylib-source
+not-installed"bazel-toolchains-source
+not-installed"bazel0.19
+not-installed"bazel0.24
+not-installed"bazel0.25
+not-installed"bazel0.26
+not-installed"bb
+not-installed"bbe
+not-installed"bbswitch
+not-installed"bbswitch-kmp-default
+not-installed"bbswitch-kmp-pae
+not-installed"bc
+not-installed"bcache-tools
+not-installed"bcal
+not-installed"bcc-devel
+not-installed"bcc-docs
+not-installed"bcc-examples
+not-installed"bcc-lua
+not-installed"bcc-tools
+not-installed"bcel
+not-installed"bcel5_3
+not-installed"bcel5_3-javadoc
+not-installed"bcg729-devel
+not-installed"bchunk
+not-installed"bcm20702a1-firmware
+not-installed"bcm43xx-firmware
+not-installed"bcmatroska2-devel
+not-installed"bctoolbox-devel
+not-installed"bcunit-devel
+not-installed"bcunit-doc
+not-installed"bdfresize
+not-installed"bdftopcf
+not-installed"bea-stax
+not-installed"bea-stax-api
+not-installed"beansbinding
+not-installed"beansbinding-javadoc
+not-installed"beaver
+installed"beets
+not-installed"beforelight
+not-installed"beignet
+not-installed"beignet-devel
+not-installed"belcard-devel
+not-installed"belle-sip-devel
+not-installed"belr-devel
+not-installed"bemenu
+not-installed"bemenu-devel
+not-installed"benchmark-devel
+not-installed"benji
+not-installed"bento4
+not-installed"bento4
+not-installed"bento4-debuginfo
+not-installed"bento4-debugsource
+not-installed"bento4-devel
+not-installed"berkeleydb
+not-installed"berkeleydb-demo
+not-installed"berkeleydb-javadoc
+not-installed"berkeleydb-manual
+not-installed"bestplugins
+not-installed"beust-jcommander
+not-installed"beust-jcommander-javadoc
+not-installed"bff
+not-installed"bff-samples
+not-installed"bff4
+not-installed"biabam
+not-installed"biblesync-devel
+not-installed"bibletime
+not-installed"biboumi
+not-installed"bibtool
+not-installed"bibview
+not-installed"bijiben
+not-installed"bijiben-lang
+not-installed"bin86
+not-installed"bind
+not-installed"bind-chrootenv
+not-installed"bind-devel
+not-installed"bind-devel-32bit
+not-installed"bind-doc
+not-installed"bind-lwresd
+installed"bind-utils
+not-installed"bindfs
+not-installed"bing
+not-installed"bino
+not-installed"bino
+not-installed"bino-debuginfo
+not-installed"bino-debugsource
+not-installed"bino-lang
+installed"binutils
+not-installed"binutils-devel
+not-installed"binutils-devel-32bit
+not-installed"binutils-gold
+not-installed"binwalk
+not-installed"biosdevname
+not-installed"bird
+not-installed"bird-common
+not-installed"bird-doc
+not-installed"bird6
+not-installed"birdie
+not-installed"birdie-lang
+installed"bison
+not-installed"bison-32bit
+installed"bison-lang
+not-installed"bitcoin-qt5
+not-installed"bitcoin-test
+not-installed"bitcoin-utils
+not-installed"bitcoind
+not-installed"bitlbee
+not-installed"bitlbee-devel
+not-installed"bitlbee-discord
+not-installed"bitlbee-doc
+not-installed"bitlbee-facebook
+not-installed"bitlbee-mastodon
+not-installed"bitlbee-steam
+not-installed"bitmap
+not-installed"bitstream-vera-fonts
+not-installed"bittwist
+not-installed"blabel
+not-installed"blabel
+not-installed"blacs-devel-headers
+not-installed"bladeRF
+not-installed"bladeRF-devel
+not-installed"bladeRF-udev
+not-installed"blas-devel
+not-installed"blas-devel-32bit
+not-installed"blas-devel-static
+not-installed"blas-man
+not-installed"blasphemer
+not-installed"bleachbit
+not-installed"bleachbit-lang
+not-installed"blender
+not-installed"blender-cycles-devel
+not-installed"blender-lang
+not-installed"bless
+not-installed"bless-doc
+not-installed"blinken
+not-installed"blinken-lang
+not-installed"bliss
+not-installed"bliss-devel
+not-installed"blktests
+not-installed"blktrace
+not-installed"bloaty
+not-installed"blobAndConquer
+not-installed"blobwars
+not-installed"blobwars-lang
+not-installed"blockout
+installed"blog
+not-installed"blog-devel
+not-installed"blog-plymouth
+not-installed"blogbench
+not-installed"blogc
+not-installed"blosc-devel
+not-installed"blueberry
+not-installed"blueberry-lang
+installed"bluedevil5
+installed"bluedevil5-lang
+not-installed"bluefish
+not-installed"blueman
+not-installed"blueman-lang
+not-installed"bluemoon
+not-installed"blueprint-cursor-theme
+not-installed"blueproximity
+not-installed"blueproximity-lang
+installed"bluez
+not-installed"bluez-auto-enable-devices
+not-installed"bluez-cups
+not-installed"bluez-devel
+not-installed"bluez-devel-32bit
+not-installed"bluez-firmware
+not-installed"bluez-qt-devel
+installed"bluez-qt-imports
+installed"bluez-qt-udev
+not-installed"bluez-test
+not-installed"bluez-tools
+not-installed"bmake
+not-installed"bmon
+not-installed"bnd-maven-plugin
+not-installed"bnd-maven-plugin-javadoc
+not-installed"bogofilter-common
+not-installed"bogofilter-db
+not-installed"bogofilter-doc
+not-installed"bogofilter-kyotocabinet
+not-installed"bogofilter-sqlite3
+not-installed"boinc-client
+not-installed"boinc-client-lang
+not-installed"boinc-manager
+not-installed"boinc-manager-lang
+not-installed"bolt
+not-installed"bolt-tools
+not-installed"bomber
+not-installed"bomber-lang
+not-installed"bombono
+not-installed"bombono
+not-installed"bombono-debuginfo
+not-installed"bombono-debugsource
+not-installed"bombono-lang
+not-installed"bomi
+not-installed"bomi
+not-installed"bomi-debuginfo
+not-installed"bomi-debugsource
+not-installed"bomns
+not-installed"bonk
+not-installed"bonk
+not-installed"bonk-debuginfo
+not-installed"bonnie
+not-installed"bonnie++
+not-installed"boo
+not-installed"boo-2_0_9_3
+not-installed"boo-devel
+not-installed"books
+installed"books
+not-installed"bookworm
+not-installed"bookworm-lang
+not-installed"boomaga
+not-installed"boomaga-lang
+not-installed"boost-devel
+not-installed"boost-gnu-hpc
+not-installed"boost-gnu-hpc-devel
+not-installed"boost-gnu-mvapich2-hpc
+not-installed"boost-gnu-mvapich2-hpc-devel
+not-installed"boost-gnu-mvapich2-hpc-python2
+not-installed"boost-gnu-mvapich2-hpc-python3
+not-installed"boost-gnu-openmpi2-hpc
+not-installed"boost-gnu-openmpi2-hpc-devel
+not-installed"boost-gnu-openmpi2-hpc-python2
+not-installed"boost-gnu-openmpi2-hpc-python3
+not-installed"boost-jam
+installed"boost-license1_69_0
+not-installed"boost1_69_0-doc-html
+not-installed"boost1_69_0-doc-pdf
+not-installed"boost1_69_0-jam
+not-installed"boost1_69_0-quickbook
+not-installed"boost_1_69_0-gnu-hpc
+not-installed"boost_1_69_0-gnu-hpc-devel
+not-installed"boost_1_69_0-gnu-hpc-jam
+not-installed"boost_1_69_0-gnu-mvapich2-hpc
+not-installed"boost_1_69_0-gnu-mvapich2-hpc-devel
+not-installed"boost_1_69_0-gnu-mvapich2-hpc-python2
+not-installed"boost_1_69_0-gnu-mvapich2-hpc-python3
+not-installed"boost_1_69_0-gnu-openmpi2-hpc
+not-installed"boost_1_69_0-gnu-openmpi2-hpc-devel
+not-installed"boost_1_69_0-gnu-openmpi2-hpc-python2
+not-installed"boost_1_69_0-gnu-openmpi2-hpc-python3
+not-installed"bootchart
+not-installed"booth
+not-installed"booth-test
+not-installed"bootsplash-branding-KDE
+not-installed"bootsplash-branding-upstream
+not-installed"borgbackup
+not-installed"borgbackup-bash-completion
+not-installed"borgbackup-doc
+not-installed"borgbackup-fish-completion
+not-installed"borgbackup-zsh-completion
+not-installed"borgmatic
+not-installed"boringssl-devel
+not-installed"bosh
+not-installed"bouncycastle
+not-installed"bouncycastle-javadoc
+not-installed"bovo
+not-installed"bovo-lang
+not-installed"bpftool
+not-installed"bpg-fonts
+not-installed"bpm-tools
+not-installed"bpmdj
+not-installed"bpmdj
+not-installed"bpmdj-debuginfo
+not-installed"bpmdj-debugsource
+not-installed"bpython
+not-installed"bpython-doc
+not-installed"brackets
+not-installed"brackets
+not-installed"brackets-debuginfo
+installed"branding-openSUSE
+not-installed"branding-upstream
+not-installed"brasero
+not-installed"brasero-devel
+not-installed"brasero-lang
+not-installed"brasero-nautilus
+installed"breeze
+installed"breeze4-style
+installed"breeze5-cursors
+installed"breeze5-decoration
+installed"breeze5-icons
+installed"breeze5-style
+installed"breeze5-style-lang
+installed"breeze5-wallpapers
+not-installed"brevity
+not-installed"bridge-utils
+not-installed"bridge-utils-devel
+not-installed"brightnessctl
+not-installed"brise
+not-installed"brisk-menu
+not-installed"brisk-menu-lang
+not-installed"bristol
+not-installed"bristol
+not-installed"bristol-debuginfo
+not-installed"bristol-debugsource
+not-installed"brlapi-devel
+not-installed"brlapi-java
+not-installed"brlemu
+installed"brltty
+installed"brltty-driver-at-spi2
+installed"brltty-driver-brlapi
+not-installed"brltty-driver-espeak
+not-installed"brltty-driver-libbraille
+not-installed"brltty-driver-speech-dispatcher
+installed"brltty-driver-xwindow
+installed"brltty-lang
+not-installed"brltty-utils
+not-installed"broadcom-wl
+not-installed"broadcom-wl
+not-installed"broadcom-wl-debugsource
+not-installed"broadcom-wl-kmp-default
+not-installed"broadcom-wl-kmp-default-debuginfo
+not-installed"broadcom-wl-kmp-pae
+not-installed"broadcom-wl-kmp-pae-debuginfo
+not-installed"brotli
+not-installed"brp-check-suse
+not-installed"brp-extract-appdata
+not-installed"brp-extract-translations
+not-installed"brp-trim-translations
+not-installed"bs
+not-installed"bs-update
+not-installed"bs2b-tools
+not-installed"bsd-games
+installed"bsdiff
+installed"bsdtar
+not-installed"bsf
+not-installed"bsf-javadoc
+not-installed"bsh2
+not-installed"bsh2-bsf
+not-installed"bsh2-classgen
+not-installed"bsh2-demo
+not-installed"bsh2-javadoc
+not-installed"bsh2-manual
+not-installed"bsod
+not-installed"bsod
+not-installed"bsod-debuginfo
+not-installed"bsod-debugsource
+not-installed"bspwm
+not-installed"bspwm-bash-completion
+not-installed"bspwm-fish-completion
+not-installed"bspwm-zsh-completion
+not-installed"bssl_wrapper-devel
+not-installed"bstone
+not-installed"btar
+not-installed"btcflash
+not-installed"btfs
+not-installed"btrfs-extent-same
+installed"btrfsmaintenance
+installed"btrfsprogs
+not-installed"btrfsprogs-static
+installed"btrfsprogs-udev-rules
+installed"bubblewrap
+not-installed"buffer
+not-installed"bugreporter
+not-installed"bugzilla
+not-installed"bugzilla-lang-de
+not-installed"build
+not-installed"build-compare
+not-installed"build-initvm-i586
+not-installed"build-initvm-x86_64
+not-installed"build-mkbaselibs
+not-installed"build-mkdrpms
+not-installed"buildah
+not-installed"buildstream
+not-installed"bumblebee
+not-installed"bumblebee-status
+not-installed"bumblebee-status-module-cmus
+not-installed"bumblebee-status-module-dnf
+not-installed"bumblebee-status-module-mocp
+not-installed"bumblebee-status-module-mpd
+not-installed"bumblebee-status-module-redshift
+not-installed"bumpversion
+not-installed"burn_360
+not-installed"burn_360
+not-installed"burncdda
+not-installed"burncdda
+not-installed"busybox
+installed"busybox-static
+not-installed"butt
+not-installed"butt
+not-installed"butt-debuginfo
+not-installed"butt-debugsource
+not-installed"buzztrax
+not-installed"buzztrax-lang
+not-installed"buzztrax-plugins
+not-installed"bvi
+not-installed"bwbar
+not-installed"bwidget
+not-installed"bwm-ng
+not-installed"byacc
+not-installed"byaccj
+not-installed"byobu
+not-installed"byobu-doc
+not-installed"bytelist
+not-installed"byzanz
+not-installed"byzanz-lang
+not-installed"bzflag
+installed"bzip2
+not-installed"bzip2-doc
+not-installed"bzr
+not-installed"bzr-lang
+not-installed"bzr-test
+not-installed"bzrtp-devel
+not-installed"c-ares-devel
+not-installed"c-toxcore
+not-installed"c-toxcore-daemon
+not-installed"c-toxcore-devel
+not-installed"c3p0
+not-installed"c3p0-javadoc
+not-installed"c_count
+installed"ca-certificates
+not-installed"ca-certificates-cacert
+installed"ca-certificates-mozilla
+not-installed"ca-certificates-steamtricks
+not-installed"caasp-cli
+not-installed"cabal-install
+not-installed"cabal-install-bash-completion
+not-installed"cabal2spec
+installed"cabextract
+not-installed"caca-utils
+not-installed"cachefilesd
+not-installed"cacti
+not-installed"cacti-spine
+not-installed"cadabra2
+not-installed"cadabra2-doc
+not-installed"cadabra2-examples
+not-installed"cadabra2-gui
+not-installed"cadaver
+not-installed"caffe
+not-installed"caffe-devel
+not-installed"caffe-examples
+not-installed"caffe-gnu-hpc
+not-installed"caffe-gnu-hpc-devel
+not-installed"caffe-gnu-hpc-examples
+not-installed"caffe_1_0-gnu-hpc
+not-installed"caffe_1_0-gnu-hpc-devel
+not-installed"caffe_1_0-gnu-hpc-examples
+not-installed"caffeine
+not-installed"cage
+not-installed"cairo-clock
+not-installed"cairo-clock-lang
+not-installed"cairo-devel
+not-installed"cairo-devel-32bit
+not-installed"cairo-tools
+not-installed"cairomm-devel
+not-installed"cairomm-devel-32bit
+not-installed"cairomm-doc
+not-installed"cairomm1_0-devel
+not-installed"cairomm1_0-devel-32bit
+not-installed"cairomm1_0-doc
+not-installed"caja
+not-installed"caja-devel
+not-installed"caja-engrampa
+not-installed"caja-extension-actions
+not-installed"caja-extension-atril
+not-installed"caja-extension-dropbox
+not-installed"caja-extension-eiciel
+not-installed"caja-extension-folder-color
+not-installed"caja-extension-gksu
+not-installed"caja-extension-image-converter
+not-installed"caja-extension-nextcloud
+not-installed"caja-extension-nitroshare
+not-installed"caja-extension-open-terminal
+not-installed"caja-extension-sendto
+not-installed"caja-extension-sendto-devel
+not-installed"caja-extension-sendto-gajim
+not-installed"caja-extension-sendto-pidgin
+not-installed"caja-extension-sendto-upnp
+not-installed"caja-extension-share
+not-installed"caja-extension-terminal
+not-installed"caja-extension-terminal-lang
+not-installed"caja-extension-wallpaper
+not-installed"caja-extension-xattr-tags
+not-installed"caja-extensions-common-lang
+not-installed"caja-gschemas
+not-installed"caja-lang
+not-installed"cal10n
+not-installed"cal10n-javadoc
+not-installed"cal3d
+not-installed"cal3d-devel
+not-installed"cal3d-doc
+not-installed"calamares
+not-installed"calamares-branding-upstream
+not-installed"calamares-webview
+not-installed"calamaris
+not-installed"calc
+not-installed"calc-devel
+not-installed"calcurse
+not-installed"calcurse-lang
+installed"calendarsupport
+not-installed"calendarsupport-devel
+installed"calendarsupport-lang
+installed"calf
+not-installed"calf
+not-installed"calf-bash-completion
+not-installed"calf-debuginfo
+not-installed"calf-debugsource
+not-installed"calibre
+not-installed"calligra
+not-installed"calligra-devel
+not-installed"calligra-doc
+not-installed"calligra-extras-converter
+not-installed"calligra-extras-dolphin
+not-installed"calligra-extras-okular
+not-installed"calligra-gemini
+not-installed"calligra-karbon
+not-installed"calligra-lang
+not-installed"calligra-plan
+not-installed"calligra-plan-lang
+not-installed"calligra-sheets
+not-installed"calligra-stage
+not-installed"calligra-tools
+not-installed"calligra-words
+not-installed"camsource
+not-installed"camsource-devel
+not-installed"canberra-gtk-play
+not-installed"canberra-gtk-play-gnome
+not-installed"canna
+not-installed"canna-devel
+not-installed"canna-libs
+not-installed"canna-libs-32bit
+not-installed"canna-yubin
+not-installed"cannadic
+installed"cantarell-fonts
+installed"cantata
+installed"cantata-lang
+not-installed"cantor
+not-installed"cantor-devel
+not-installed"cantor-lang
+not-installed"canutils
+not-installed"canutils-pengutronix
+not-installed"capi4hylafax
+not-installed"capi4linux
+not-installed"capi4linux-32bit
+not-installed"capi4linux-devel
+not-installed"capi4linux-devel-32bit
+not-installed"capifax
+not-installed"capifax
+not-installed"capifax-debuginfo
+not-installed"capifax-debugsource
+not-installed"capnet-assist
+not-installed"capnet-assist-lang
+not-installed"capnproto
+not-installed"cardpeek
+not-installed"cargo
+not-installed"cargo-doc
+not-installed"cargo-vendor
+not-installed"caribou
+not-installed"caribou-common
+not-installed"caribou-devel
+not-installed"caribou-gtk-module-common
+not-installed"caribou-gtk2-module
+not-installed"caribou-gtk3-module
+not-installed"caribou-lang
+not-installed"carla
+not-installed"carla-devel
+not-installed"carla-vst
+not-installed"caslon-fonts
+not-installed"casync
+installed"catatonit
+not-installed"catcodec
+not-installed"catfish
+not-installed"catfish-lang
+not-installed"caudec
+not-installed"caudec
+not-installed"cava
+not-installed"cblas-devel
+not-installed"cblas-devel-32bit
+not-installed"cblas-devel-static
+not-installed"cc-tool
+not-installed"ccache
+not-installed"ccd2cue
+not-installed"ccd2cue-doc
+not-installed"ccd2iso
+not-installed"ccd2iso
+not-installed"ccd2iso-debuginfo
+not-installed"ccd2iso-debugsource
+not-installed"ccgfs
+not-installed"cclive
+not-installed"cclive
+not-installed"cclive-debuginfo
+not-installed"cclive-debugsource
+not-installed"ccls
+not-installed"ccrtp-devel
+not-installed"ccrtp-doc
+not-installed"ccrypt
+not-installed"ccrypt-emacs
+not-installed"ccrypt-lang
+not-installed"ccze
+not-installed"ccze-devel
+not-installed"cd-discid
+not-installed"cd-paranoia
+not-installed"cdctl
+not-installed"cdctl
+not-installed"cdctl-debuginfo
+not-installed"cdctl-debugsource
+not-installed"cdda2wav
+not-installed"cddlib-devel
+not-installed"cddlib-doc
+not-installed"cdecl
+not-installed"cdemu-client
+not-installed"cdemu-client-lang
+not-installed"cdemu-daemon
+not-installed"cdi-api
+not-installed"cdi-api-javadoc
+not-installed"cdi2iso
+not-installed"cdi2iso
+not-installed"cdi2iso-debuginfo
+not-installed"cdio-utils
+not-installed"cdk-devel
+not-installed"cdogs-sdl
+not-installed"cdparanoia
+not-installed"cdparanoia-devel
+not-installed"cdrdao
+not-installed"cdrecord
+not-installed"cdrskin
+not-installed"cec-client
+not-installed"cecilia
+not-installed"cedict
+not-installed"cedilla
+not-installed"ceferino
+not-installed"celluloid
+not-installed"celluloid-lang
+not-installed"cellwriter
+not-installed"celt
+not-installed"celt051
+not-installed"celt051-devel
+not-installed"ceph
+not-installed"ceph-base
+not-installed"ceph-common
+not-installed"ceph-csi
+not-installed"ceph-dashboard-e2e
+not-installed"ceph-fuse
+not-installed"ceph-grafana-dashboards
+not-installed"ceph-iscsi
+not-installed"ceph-mds
+not-installed"ceph-mgr
+not-installed"ceph-mgr-dashboard
+not-installed"ceph-mgr-diskprediction-cloud
+not-installed"ceph-mgr-diskprediction-local
+not-installed"ceph-mgr-rook
+not-installed"ceph-mgr-ssh
+not-installed"ceph-mon
+not-installed"ceph-osd
+not-installed"ceph-prometheus-alerts
+not-installed"ceph-radosgw
+not-installed"ceph-resource-agents
+not-installed"ceph-test
+not-installed"ceph_base
+not-installed"cephfs-shell
+not-installed"cerbere
+not-installed"cereal-devel
+not-installed"certbot-systemd-timer
+not-installed"certstrap
+not-installed"cervisia
+not-installed"cervisia-lang
+not-installed"cetcd-devel
+not-installed"cf-cli
+not-installed"cf-cli-test
+not-installed"cfengine
+not-installed"cfengine-doc
+not-installed"cfengine-examples
+not-installed"cfengine-masterfiles
+not-installed"cfitsio
+not-installed"cfitsio-devel
+not-installed"cfitsio-devel-doc
+not-installed"cfityk
+not-installed"cflow
+not-installed"cfn-lint
+not-installed"cgal-demo-examples-devel
+not-installed"cgal-devel
+not-installed"cgal-doc
+not-installed"cgdb
+not-installed"cgit
+not-installed"cglib
+not-installed"cglib-javadoc
+not-installed"chafa
+not-installed"chafa-devel
+not-installed"chafa-doc
+not-installed"chameleon
+not-installed"changelog-generator-data
+not-installed"charliecloud
+not-installed"charliecloud-doc
+not-installed"charliecloud-examples
+not-installed"chartmuseum
+not-installed"charybdis
+not-installed"chasen
+not-installed"chasen-devel
+not-installed"chck-devel
+not-installed"check-create-certificate
+not-installed"check-devel
+not-installed"check_postgres
+not-installed"checkbashisms
+installed"checkmedia
+not-installed"checkpolicy
+not-installed"cheese
+not-installed"cheese-devel
+not-installed"cheese-lang
+not-installed"chemical-mime-data
+not-installed"cherrytree
+not-installed"cherrytree-lang
+not-installed"chessx
+not-installed"chewing-data
+not-installed"chewing-utils
+not-installed"chezdav
+installed"chezmoi
+installed"chkstat
+not-installed"chmlib-devel
+not-installed"chmlib-devel-32bit
+not-installed"chmlib-examples
+not-installed"chntpw
+not-installed"chocolate-doom
+not-installed"chocolate-doom-bash-completion
+not-installed"choqok
+not-installed"choqok-devel
+installed"chromaprint-fpcalc
+not-installed"chrome-gnome-shell
+not-installed"chrome-uget-integrator
+not-installed"chromedriver
+installed"chromium
+not-installed"chromium
+not-installed"chromium-bsu
+not-installed"chromium-ffmpeg-extra
+not-installed"chromium-ffmpeg-extra
+not-installed"chromium-ffmpeg-extra-debuginfo
+not-installed"chromium-plugin-widevinecdm
+not-installed"chromium-plugin-widevinecdm
+not-installed"chromium-uget-integrator
+installed"chrony
+not-installed"chrpath
+not-installed"ciano
+not-installed"ciano-lang
+installed"cifs-utils
+not-installed"cifs-utils-devel
+not-installed"cilium
+not-installed"cilium-cni
+not-installed"cilium-devel
+not-installed"cilium-docker
+not-installed"cilium-etcd-operator
+not-installed"cilium-init
+not-installed"cilium-k8s-yaml
+not-installed"cilium-microscope
+not-installed"cilium-operator
+not-installed"cilium-proxy
+not-installed"cim-schema
+not-installed"cimple
+not-installed"cimple-cmpi-adapter
+not-installed"cimple-devel
+not-installed"cimple-pegasus-adapter
+not-installed"cinema
+not-installed"cinema-lang
+not-installed"cinnamon
+not-installed"cinnamon-control-center
+not-installed"cinnamon-control-center-common
+not-installed"cinnamon-control-center-devel
+not-installed"cinnamon-control-center-lang
+not-installed"cinnamon-devel-doc
+not-installed"cinnamon-gschemas
+not-installed"cinnamon-gschemas-branding-openSUSE
+not-installed"cinnamon-gschemas-branding-upstream
+not-installed"cinnamon-lang
+not-installed"cinnamon-metatheme-numix
+not-installed"cinnamon-screensaver
+not-installed"cinnamon-screensaver-lang
+not-installed"cinnamon-session
+not-installed"cinnamon-session-lang
+not-installed"cinnamon-settings-daemon
+not-installed"cinnamon-settings-daemon-devel
+not-installed"cinnamon-settings-daemon-lang
+not-installed"cinnamon-theme-adapta
+not-installed"cinnamon-theme-plata
+not-installed"circuslinux
+not-installed"cjs
+not-installed"cjs-devel
+not-installed"ck-devel
+not-installed"ckb-next
+not-installed"ckermit
+not-installed"ckermit-doc
+not-installed"clFFT
+not-installed"clFFT-devel
+not-installed"clack
+not-installed"clamav
+not-installed"clamav-devel
+not-installed"clamtk
+not-installed"clamtk-lang
+not-installed"clamz
+not-installed"clang
+not-installed"clang-checker
+not-installed"clang-devel
+not-installed"clang6
+not-installed"clang6-checker
+not-installed"clang6-devel
+not-installed"clang6-devel-32bit
+not-installed"clang7
+not-installed"clang7-checker
+not-installed"clang7-devel
+not-installed"clang7-devel-32bit
+not-installed"clang8
+not-installed"clang8-checker
+not-installed"clang8-devel
+not-installed"clang8-devel-32bit
+not-installed"clanlib
+not-installed"clanlib-devel
+not-installed"clanlib-doc
+not-installed"clanlib-examples
+not-installed"clatd
+not-installed"claws-mail
+not-installed"claws-mail-devel
+not-installed"claws-mail-lang
+not-installed"clawsker
+not-installed"clawsker
+not-installed"clawsker-lang
+not-installed"clazy
+not-installed"cld2-devel
+not-installed"cldr-emoji-annotation
+not-installed"cldr-emoji-annotation-devel
+not-installed"clementine
+not-installed"clementine
+not-installed"clicfs
+not-installed"clinfo
+not-installed"clipgrab
+not-installed"clipit
+not-installed"clipped
+not-installed"clipped-lang
+not-installed"clippy
+not-installed"clisp
+not-installed"clisp-doc
+not-installed"clive
+not-installed"clive
+not-installed"clive-utils
+not-installed"clive-utils
+not-installed"clivefeed
+not-installed"clivepass
+not-installed"clivescan
+not-installed"cln
+not-installed"cln-devel
+not-installed"clone-master-clean-up
+not-installed"cloud-init
+not-installed"cloud-init-config-MicroOS
+not-installed"cloud-init-config-caasp
+not-installed"cloud-init-config-suse
+not-installed"cloud-init-doc
+not-installed"cloud-init-vmware-guestinfo
+not-installed"cloud-netconfig-azure
+not-installed"cloud-netconfig-ec2
+not-installed"clpeak
+not-installed"clucene-core-devel
+not-installed"clustduct
+not-installed"cluster-glue
+not-installed"clustershell
+not-installed"clusterssh
+not-installed"clutter-devel
+not-installed"clutter-gst-devel
+not-installed"clutter-gtk-devel
+not-installed"clutter-gtk-lang
+not-installed"clutter-lang
+not-installed"clzip
+not-installed"cm-unicode-fonts
+not-installed"cmake
+not-installed"cmake-gui
+not-installed"cmake-man
+not-installed"cmark
+not-installed"cmark-devel
+not-installed"cmis-client
+not-installed"cmpi-bindings-perl
+not-installed"cmpi-bindings-pywbem
+not-installed"cmpi-bindings-ruby
+not-installed"cmpi-provider-register
+not-installed"cmpi-pywbem-base
+not-installed"cmpi-pywbem-power-management
+not-installed"cmrt-devel
+not-installed"cmuclmtk
+not-installed"cmus
+not-installed"cmus-plugin-cdio
+not-installed"cmus-plugin-cue
+not-installed"cmus-plugin-ffmpeg
+not-installed"cmus-plugin-flac
+not-installed"cmus-plugin-jack
+not-installed"cmus-plugin-libao
+not-installed"cmus-plugin-mikmod
+not-installed"cmus-plugin-modplug
+not-installed"cmus-plugin-mpc
+not-installed"cmus-plugin-opus
+not-installed"cmus-plugin-pulse
+not-installed"cmus-plugin-sndio
+not-installed"cmus-plugin-vorbis
+not-installed"cmus-plugin-wavpack
+not-installed"cmus-plugins-all
+not-installed"cni
+not-installed"cni-plugins
+not-installed"cntlm
+not-installed"cobbler
+not-installed"cobbler-tests
+not-installed"cobbler-web
+not-installed"coccigrep
+not-installed"coccinelle
+not-installed"codec2
+not-installed"codec2-devel
+not-installed"codec2-examples
+not-installed"codehaus-parent
+not-installed"codelite
+not-installed"codespell
+installed"codium
+not-installed"cogl-devel
+not-installed"cogl-lang
+not-installed"collectd
+not-installed"collectd-plugin-dbi
+not-installed"collectd-plugin-gps
+not-installed"collectd-plugin-ipmi
+not-installed"collectd-plugin-java
+not-installed"collectd-plugin-lua
+not-installed"collectd-plugin-lvm
+not-installed"collectd-plugin-mcelog
+not-installed"collectd-plugin-memcachec
+not-installed"collectd-plugin-mysql
+not-installed"collectd-plugin-notify-desktop
+not-installed"collectd-plugin-nut
+not-installed"collectd-plugin-openldap
+not-installed"collectd-plugin-ovs
+not-installed"collectd-plugin-pcie
+not-installed"collectd-plugin-pinba
+not-installed"collectd-plugin-postgresql
+not-installed"collectd-plugin-python3
+not-installed"collectd-plugin-sigrok
+not-installed"collectd-plugin-smart
+not-installed"collectd-plugin-snmp
+not-installed"collectd-plugin-synproxy
+not-installed"collectd-plugin-virt
+not-installed"collectd-plugin-write_stackdriver
+not-installed"collectd-plugin-write_syslog
+not-installed"collectd-plugins-all
+not-installed"collectd-spamassassin
+not-installed"collectd-web
+not-installed"collectd-web-js
+not-installed"collectl
+not-installed"colm-devel
+not-installed"colm-doc
+not-installed"color-filesystem
+not-installed"colord
+not-installed"colord-color-profiles
+not-installed"colord-gtk
+not-installed"colord-gtk-lang
+not-installed"colord-kde
+not-installed"colord-kde-lang
+not-installed"colord-lang
+not-installed"colordiff
+not-installed"colorhug-client
+not-installed"colorhug-client-lang
+not-installed"colormake
+not-installed"colorpicker
+not-installed"colorpicker-lang
+not-installed"comgt
+not-installed"comgt
+not-installed"comgt-debuginfo
+not-installed"comgt-debugsource
+installed"command-not-found
+not-installed"compartm
+not-installed"compcache
+not-installed"compface
+not-installed"compface-devel
+not-installed"compicc
+not-installed"compiz
+not-installed"compiz-bcop
+not-installed"compiz-branding-SLED
+not-installed"compiz-branding-openSUSE
+not-installed"compiz-branding-upstream
+not-installed"compiz-devel
+not-installed"compiz-emerald
+not-installed"compiz-emerald-devel
+not-installed"compiz-emerald-lang
+not-installed"compiz-emerald-theme-manager
+not-installed"compiz-emerald-themes
+not-installed"compiz-gnome
+not-installed"compiz-lang
+not-installed"compiz-manager
+not-installed"compiz-plugins
+not-installed"compiz-plugins-experimental
+not-installed"compiz-plugins-experimental-devel
+not-installed"compiz-plugins-experimental-lang
+not-installed"compiz-plugins-extra
+not-installed"compiz-plugins-extra-devel
+not-installed"compiz-plugins-extra-lang
+not-installed"compiz-plugins-main
+not-installed"compiz-plugins-main-devel
+not-installed"compiz-plugins-main-lang
+not-installed"compizconfig-settings-manager
+not-installed"compizconfig-settings-manager-common
+not-installed"compizconfig-settings-manager-lang
+not-installed"complexity
+not-installed"compsize
+not-installed"compton
+not-installed"compton-conf
+not-installed"compton-conf-lang
+not-installed"concurrent
+not-installed"conkeror
+not-installed"conky
+not-installed"conky
+not-installed"conky-debuginfo
+not-installed"conky-debugsource
+not-installed"conky-doc
+not-installed"conman
+not-installed"conmon
+not-installed"connect
+not-installed"connect
+not-installed"connman
+not-installed"connman-client
+not-installed"connman-devel
+not-installed"connman-doc
+not-installed"connman-nmcompat
+not-installed"connman-plugin-hh2serial-gps
+not-installed"connman-plugin-iospm
+not-installed"connman-plugin-l2tp
+not-installed"connman-plugin-openconnect
+not-installed"connman-plugin-openvpn
+not-installed"connman-plugin-polkit
+not-installed"connman-plugin-pptp
+not-installed"connman-plugin-tist
+not-installed"connman-plugin-vpnc
+not-installed"connman-test
+not-installed"conntrack-tools
+not-installed"conntrackd
+not-installed"console
+not-installed"console-setup
+not-installed"container-diff
+not-installed"container-feeder
+not-installed"container_runtime
+not-installed"container_runtime_kubernetes
+installed"containerd
+not-installed"containerd-ctr
+not-installed"containerd-kubic
+not-installed"containerd-kubic-ctr
+not-installed"contractor
+not-installed"converseen
+not-installed"converseen-lang
+not-installed"convmv
+not-installed"cookiecutter
+not-installed"cookiecutter-doc
+not-installed"cool-retro-term
+not-installed"coolkey
+not-installed"coolkey-32bit
+not-installed"coolkey-devel
+not-installed"copy-agent
+not-installed"copy-agent
+not-installed"copy-agent-gnome
+not-installed"copy-agent-mate
+not-installed"coreboot-utils
+not-installed"coredns
+not-installed"coredns-extras
+installed"coreutils
+installed"coreutils-lang
+not-installed"coreutils-testsuite
+not-installed"corosync
+not-installed"corosync-qdevice
+not-installed"corosync-qnetd
+not-installed"corosync-testagents
+not-installed"courier-authlib
+not-installed"courier-authlib-devel
+not-installed"courier-authlib-ldap
+not-installed"courier-authlib-mysql
+not-installed"courier-authlib-pgsql
+not-installed"courier-authlib-pipe
+not-installed"courier-authlib-sqlite
+not-installed"courier-authlib-userdb
+not-installed"courier-imap
+not-installed"courier-prime-fonts
+not-installed"courier-unicode-devel
+not-installed"courier-unicode-doc
+not-installed"cowsay
+not-installed"cozy
+not-installed"cozy-lang
+not-installed"cpanspec
+not-installed"cpdvd
+not-installed"cpdvd
+installed"cpio
+installed"cpio-lang
+installed"cpio-mt
+not-installed"cpluff
+not-installed"cpmono_v07-fonts
+installed"cpp
+not-installed"cpp7
+installed"cpp8
+installed"cpp9
+not-installed"cppcheck
+not-installed"cppcheck-gui
+not-installed"cppi
+not-installed"cppi-lang
+not-installed"cppreference-doc
+not-installed"cppreference-doc-devhelp
+not-installed"cppreference-doc-qhelp
+not-installed"cpprest-devel
+not-installed"cpptasks
+not-installed"cpptasks-javadoc
+not-installed"cppunit-devel
+not-installed"cppunit-devel-32bit
+not-installed"cppunit-devel-doc
+not-installed"cppzmq-devel
+not-installed"cpuid
+not-installed"cpulimit
+installed"cpupower
+not-installed"cpupower-bench
+not-installed"cpupower-devel
+not-installed"cpuset
+not-installed"cpustat
+not-installed"cpvts
+not-installed"cpvts
+installed"cracklib
+not-installed"cracklib-devel
+not-installed"cracklib-devel-32bit
+installed"cracklib-dict-full
+not-installed"cracklib-dict-small
+not-installed"crafty
+not-installed"crafty
+not-installed"crafty-debuginfo
+not-installed"cram-common
+not-installed"crash
+not-installed"crash-devel
+not-installed"crash-doc
+not-installed"crash-eppic
+not-installed"crash-gcore
+not-installed"crash-kmp-default
+not-installed"crawl
+not-installed"crawl-data
+not-installed"crawl-sdl
+not-installed"crazydiskinfo
+installed"crda
+not-installed"createrepo
+not-installed"createrepo_c
+not-installed"creduce
+not-installed"cri-o
+not-installed"cri-o-kubeadm-criconfig
+not-installed"cri-tools
+installed"criu
+not-installed"criu-devel
+not-installed"crmsh
+not-installed"crmsh-scripts
+not-installed"crmsh-test
+installed"cron
+not-installed"cronic
+installed"cronie
+not-installed"cronie-anacron
+not-installed"cross-aarch64-binutils
+not-installed"cross-aarch64-gcc7
+not-installed"cross-aarch64-gcc7-icecream-backend
+not-installed"cross-aarch64-gcc8
+not-installed"cross-aarch64-gcc8-icecream-backend
+not-installed"cross-aarch64-gcc9
+not-installed"cross-aarch64-gcc9-icecream-backend
+not-installed"cross-arm-binutils
+not-installed"cross-arm-gcc7
+not-installed"cross-arm-gcc8
+not-installed"cross-arm-gcc9
+not-installed"cross-arm-none-gcc7
+not-installed"cross-arm-none-gcc7-bootstrap
+not-installed"cross-arm-none-gcc8
+not-installed"cross-arm-none-gcc8-bootstrap
+not-installed"cross-arm-none-gcc9
+not-installed"cross-arm-none-gcc9-bootstrap
+not-installed"cross-arm-none-newlib-devel
+not-installed"cross-avr-binutils
+not-installed"cross-avr-gcc7
+not-installed"cross-avr-gcc7-bootstrap
+not-installed"cross-avr-gcc8
+not-installed"cross-avr-gcc8-bootstrap
+not-installed"cross-avr-gcc9
+not-installed"cross-avr-gcc9-bootstrap
+not-installed"cross-epiphany-binutils
+not-installed"cross-epiphany-gcc7
+not-installed"cross-epiphany-gcc7-bootstrap
+not-installed"cross-epiphany-gcc8
+not-installed"cross-epiphany-gcc8-bootstrap
+not-installed"cross-epiphany-gcc9
+not-installed"cross-epiphany-gcc9-bootstrap
+not-installed"cross-epiphany-newlib-devel
+not-installed"cross-hppa-binutils
+not-installed"cross-hppa-gcc7
+not-installed"cross-hppa-gcc7-icecream-backend
+not-installed"cross-hppa-gcc8
+not-installed"cross-hppa-gcc8-icecream-backend
+not-installed"cross-hppa-gcc9
+not-installed"cross-hppa-gcc9-icecream-backend
+not-installed"cross-hppa64-binutils
+not-installed"cross-i386-binutils
+not-installed"cross-i386-gcc7
+not-installed"cross-i386-gcc7-icecream-backend
+not-installed"cross-i386-gcc8
+not-installed"cross-i386-gcc8-icecream-backend
+not-installed"cross-i386-gcc9
+not-installed"cross-i386-gcc9-icecream-backend
+not-installed"cross-ia64-binutils
+not-installed"cross-m68k-binutils
+not-installed"cross-m68k-gcc7
+not-installed"cross-m68k-gcc7-icecream-backend
+not-installed"cross-m68k-gcc8
+not-installed"cross-m68k-gcc8-icecream-backend
+not-installed"cross-m68k-gcc9
+not-installed"cross-m68k-gcc9-icecream-backend
+not-installed"cross-mips-binutils
+not-installed"cross-mips-gcc7
+not-installed"cross-mips-gcc7-icecream-backend
+not-installed"cross-mips-gcc8
+not-installed"cross-mips-gcc8-icecream-backend
+not-installed"cross-mips-gcc9
+not-installed"cross-mips-gcc9-icecream-backend
+not-installed"cross-nvptx-gcc7
+not-installed"cross-nvptx-gcc8
+not-installed"cross-nvptx-gcc9
+not-installed"cross-nvptx-newlib7-devel
+not-installed"cross-nvptx-newlib8-devel
+not-installed"cross-nvptx-newlib9-devel
+not-installed"cross-ppc-binutils
+not-installed"cross-ppc64-binutils
+not-installed"cross-ppc64-gcc7
+not-installed"cross-ppc64-gcc7-icecream-backend
+not-installed"cross-ppc64-gcc8
+not-installed"cross-ppc64-gcc8-icecream-backend
+not-installed"cross-ppc64-gcc9
+not-installed"cross-ppc64-gcc9-icecream-backend
+not-installed"cross-ppc64le-binutils
+not-installed"cross-ppc64le-gcc7
+not-installed"cross-ppc64le-gcc7-icecream-backend
+not-installed"cross-ppc64le-gcc8
+not-installed"cross-ppc64le-gcc8-icecream-backend
+not-installed"cross-ppc64le-gcc9
+not-installed"cross-ppc64le-gcc9-icecream-backend
+not-installed"cross-riscv64-binutils
+not-installed"cross-riscv64-elf-gcc8
+not-installed"cross-riscv64-elf-gcc8-bootstrap
+not-installed"cross-riscv64-elf-gcc9
+not-installed"cross-riscv64-elf-gcc9-bootstrap
+not-installed"cross-riscv64-gcc8
+not-installed"cross-riscv64-gcc8-icecream-backend
+not-installed"cross-riscv64-gcc9
+not-installed"cross-riscv64-gcc9-icecream-backend
+not-installed"cross-riscv64-newlib-devel
+not-installed"cross-rx-binutils
+not-installed"cross-rx-gcc7
+not-installed"cross-rx-gcc7-bootstrap
+not-installed"cross-rx-gcc8
+not-installed"cross-rx-gcc8-bootstrap
+not-installed"cross-rx-gcc9
+not-installed"cross-rx-gcc9-bootstrap
+not-installed"cross-rx-newlib-devel
+not-installed"cross-s390-binutils
+not-installed"cross-s390x-binutils
+not-installed"cross-s390x-gcc7
+not-installed"cross-s390x-gcc7-icecream-backend
+not-installed"cross-s390x-gcc8
+not-installed"cross-s390x-gcc8-icecream-backend
+not-installed"cross-s390x-gcc9
+not-installed"cross-s390x-gcc9-icecream-backend
+not-installed"cross-sparc-binutils
+not-installed"cross-sparc-gcc7
+not-installed"cross-sparc-gcc8
+not-installed"cross-sparc-gcc9
+not-installed"cross-sparc64-binutils
+not-installed"cross-sparc64-gcc7
+not-installed"cross-sparc64-gcc7-icecream-backend
+not-installed"cross-sparc64-gcc8
+not-installed"cross-sparc64-gcc8-icecream-backend
+not-installed"cross-sparc64-gcc9
+not-installed"cross-sparc64-gcc9-icecream-backend
+not-installed"cross-sparcv9-gcc7-icecream-backend
+not-installed"cross-sparcv9-gcc8-icecream-backend
+not-installed"cross-sparcv9-gcc9-icecream-backend
+not-installed"cross-spu-binutils
+not-installed"cross-x86_64-binutils
+not-installed"crossc-devel
+not-installed"crossguid-devel
+not-installed"crosstool-ng
+not-installed"crudini
+not-installed"cryfs
+not-installed"cryptctl
+installed"cryptsetup
+not-installed"crystalhd-firmware
+not-installed"cscope
+not-installed"csindex
+not-installed"csmash
+not-installed"csmith
+not-installed"csound
+not-installed"csound-devel
+not-installed"csound-java-bindings
+not-installed"csound-lang
+not-installed"csound-plugins
+not-installed"cspctl
+not-installed"csvprintf
+not-installed"csync
+not-installed"csync2
+not-installed"ctags
+not-installed"ctdb
+not-installed"ctdb-pcp-pmda
+not-installed"ctdb-tests
+not-installed"ctris
+not-installed"cttop
+not-installed"cudd-devel
+not-installed"cuetools
+not-installed"cuetools
+not-installed"cuetools-debuginfo
+not-installed"cuetools-debugsource
+not-installed"cuishark
+not-installed"culmus-ancient-semitic-fonts
+not-installed"culmus-fonts
+not-installed"cuneiform
+not-installed"cunit-devel
+not-installed"cunit-doc
+installed"cups
+not-installed"cups-airprint
+not-installed"cups-backends
+installed"cups-client
+installed"cups-config
+not-installed"cups-ddk
+not-installed"cups-devel
+not-installed"cups-devel-32bit
+installed"cups-filters
+not-installed"cups-filters-devel
+not-installed"cups-pdf
+not-installed"cups-pk-helper
+not-installed"cups-pk-helper-lang
+not-installed"cura
+not-installed"cura-engine
+not-installed"cura-engine-lulzbot
+not-installed"cura-fdm-materials
+not-installed"cura-lulzbot
+installed"curl
+not-installed"curlew
+not-installed"curlew
+not-installed"curlew-lang
+not-installed"curlftpfs
+not-installed"cutecom
+not-installed"cutmp3
+not-installed"cutmp3-doc
+not-installed"cutterff
+not-installed"cutterff-lang
+installed"cvs
+not-installed"cvs-doc
+not-installed"cvs2svn
+installed"cvsps
+not-installed"cxref
+not-installed"cxsc
+not-installed"cxsc-devel
+not-installed"cxxtools-devel
+not-installed"cyradm
+not-installed"cyreal-alice-fonts
+not-installed"cyreal-junge-fonts
+not-installed"cyreal-lobster-cyrillic-fonts
+not-installed"cyreal-lora-fonts
+not-installed"cyreal-marko-horobchyk-fonts
+not-installed"cyreal-marmelad-fonts
+not-installed"cyreal-wire-fonts
+not-installed"cyrus-imapd
+not-installed"cyrus-imapd-devel
+not-installed"cyrus-imapd-snmp
+not-installed"cyrus-imapd-snmp-mibs
+not-installed"cyrus-imapd-utils
+installed"cyrus-sasl
+not-installed"cyrus-sasl-32bit
+installed"cyrus-sasl-crammd5
+not-installed"cyrus-sasl-crammd5-32bit
+not-installed"cyrus-sasl-devel
+not-installed"cyrus-sasl-devel-32bit
+installed"cyrus-sasl-digestmd5
+not-installed"cyrus-sasl-digestmd5-32bit
+not-installed"cyrus-sasl-gs2
+installed"cyrus-sasl-gssapi
+not-installed"cyrus-sasl-gssapi-32bit
+not-installed"cyrus-sasl-ldap-auxprop
+not-installed"cyrus-sasl-ldap-auxprop-32bit
+not-installed"cyrus-sasl-ntlm
+not-installed"cyrus-sasl-otp
+not-installed"cyrus-sasl-otp-32bit
+installed"cyrus-sasl-plain
+not-installed"cyrus-sasl-plain-32bit
+not-installed"cyrus-sasl-saslauthd
+not-installed"cyrus-sasl-scram
+not-installed"cyrus-sasl-sqlauxprop
+not-installed"cyrus-sasl-sqlauxprop-32bit
+not-installed"czmq
+not-installed"czmq-devel
+not-installed"d-feet
+not-installed"d-feet-lang
+not-installed"d0_blind_id
+not-installed"d0_blind_id-devel
+not-installed"dSFMT-devel
+not-installed"dai-banna-fonts
+not-installed"dante
+not-installed"dante-devel
+not-installed"dante-devel-32bit
+not-installed"dante-server
+not-installed"dapl
+not-installed"dapl-debug
+not-installed"dapl-debug-devel
+not-installed"dapl-debug-libs
+not-installed"dapl-debug-utils
+not-installed"dapl-devel
+not-installed"dapl-devel-32bit
+not-installed"dapl-utils
+not-installed"daps
+not-installed"dar
+not-installed"dar-lang
+not-installed"darkice
+not-installed"darkice
+not-installed"darkice-debuginfo
+not-installed"darkice-debugsource
+not-installed"darktable
+not-installed"darktable-doc
+not-installed"darktable-tools-basecurve
+not-installed"darktable-tools-noise
+not-installed"darts
+not-installed"dash
+not-installed"dasher
+not-installed"dasher-data-extras
+not-installed"dasher-data-recommended
+not-installed"dasher-lang
+not-installed"data-partition-service
+not-installed"datamash
+not-installed"dataquay-devel
+not-installed"datefudge
+not-installed"dateutils
+not-installed"dateutils-octave
+not-installed"datovka
+not-installed"dav1d
+not-installed"dav1d-devel
+not-installed"davfs2
+not-installed"davix
+not-installed"davix-devel
+not-installed"db48-doc
+installed"db48-utils
+not-installed"dbench
+not-installed"dbench4
+not-installed"dbh-devel
+not-installed"dblatex
+not-installed"dblatex-doc
+not-installed"dbsplit-tools
+installed"dbus-1
+not-installed"dbus-1-devel
+not-installed"dbus-1-devel-32bit
+not-installed"dbus-1-devel-doc
+installed"dbus-1-glib
+installed"dbus-1-glib-32bit
+not-installed"dbus-1-glib-devel
+not-installed"dbus-1-glib-devel-32bit
+not-installed"dbus-1-glib-doc
+installed"dbus-1-glib-tool
+not-installed"dbus-1-mono
+not-installed"dbus-1-presage
+installed"dbus-1-x11
+not-installed"dbus-broker
+not-installed"dbus-sharp
+not-installed"dbus-sharp-devel
+not-installed"dbus-sharp-glib
+not-installed"dbus-sharp-glib-devel
+not-installed"dbus-sharp-glib2
+not-installed"dbus-sharp-glib2-devel
+not-installed"dbus-sharp2
+not-installed"dbus-sharp2-devel
+not-installed"dbview
+not-installed"dc3dd
+not-installed"dc3dd-lang
+not-installed"dcadec
+not-installed"dcadec
+not-installed"dcadec-debuginfo
+not-installed"dcadec-debugsource
+not-installed"dcaenc
+not-installed"dcaenc
+not-installed"dcaenc-debuginfo
+not-installed"dcaenc-debugsource
+not-installed"dcatools
+not-installed"dcatools
+not-installed"dcatools-debuginfo
+not-installed"dcatools-debugsource
+not-installed"dcmtk
+not-installed"dcmtk-devel
+installed"dconf
+not-installed"dconf-devel
+not-installed"dconf-editor
+not-installed"dconf-editor-lang
+not-installed"dcraw
+not-installed"dcraw-lang
+not-installed"dd-opentracing-cpp-devel
+not-installed"dd_rescue
+not-installed"dd_rescue-crypt
+not-installed"dd_rescue-lzo
+not-installed"dd_rhelp
+not-installed"ddccontrol
+not-installed"ddccontrol-db
+not-installed"ddccontrol-db-lang
+not-installed"ddccontrol-devel
+not-installed"ddccontrol-doc
+not-installed"ddccontrol-gtk
+not-installed"ddccontrol-lang
+not-installed"ddclient
+not-installed"ddcutil
+not-installed"ddd
+not-installed"ddd-doc
+not-installed"ddgr
+not-installed"dds2tar
+not-installed"ddskk
+not-installed"deadbeef
+not-installed"deadbeef-devel
+not-installed"deadbeef-lang
+not-installed"deadbeef-plugin-mpris2
+not-installed"deadbeef-plugin-mpris2
+not-installed"deadbeef-plugin-mpris2-debuginfo
+not-installed"deadbeef-plugin-mpris2-debugsource
+not-installed"deadbeef-plugin-statusnotifier
+not-installed"deadbeef-plugin-statusnotifier
+not-installed"deadbeef-plugin-statusnotifier-debuginfo
+not-installed"deadbeef-plugin-statusnotifier-debugsource
+installed"debhelper
+not-installed"debootstrap
+not-installed"decentxml
+not-installed"decentxml-javadoc
+not-installed"dee-devel
+not-installed"deepin-calendar
+not-installed"deepin-calendar-lang
+not-installed"deepin-editor
+not-installed"deepin-editor-lang
+not-installed"deepin-gettext-tools
+not-installed"deepin-media-player
+not-installed"deepin-media-player
+not-installed"deepin-media-player-lang
+not-installed"deepin-menu
+not-installed"deepin-movie
+not-installed"deepin-movie-devel
+not-installed"deepin-movie-lang
+not-installed"deepin-music-libnetease-meta-search
+not-installed"deepin-music-player
+not-installed"deepin-screenshot
+not-installed"deepin-screenshot-lang
+not-installed"deepin-system-monitor
+not-installed"deepin-system-monitor-lang
+not-installed"deepin-terminal
+not-installed"deepin-terminal-lang
+not-installed"deepin-turbo
+not-installed"deepin-turbo-devel
+not-installed"dehydrated
+not-installed"dehydrated-apache2
+not-installed"dehydrated-lighttpd
+not-installed"dehydrated-nginx
+not-installed"deja-dup
+not-installed"deja-dup-lang
+not-installed"dejagnu
+installed"dejavu-fonts
+not-installed"delaguardo-inconsolata_lgc-fonts
+not-installed"delayacct-utils
+not-installed"delta
+not-installed"deltafs
+installed"deltarpm
+not-installed"deluge
+not-installed"deluge-lang
+installed"desktop-data-openSUSE
+not-installed"desktop-data-openSUSE-extra
+installed"desktop-file-utils
+installed"desktop-translations
+not-installed"desktopfolder
+not-installed"desktopfolder-lang
+not-installed"deutex
+not-installed"dev86
+not-installed"devede
+not-installed"devede
+not-installed"devede-lang
+not-installed"devedeng
+not-installed"devedeng
+not-installed"devedeng-lang
+not-installed"devel_C_C++
+not-installed"devel_basis
+not-installed"devel_gnome
+not-installed"devel_java
+not-installed"devel_kde_frameworks
+not-installed"devel_kernel
+not-installed"devel_mono
+not-installed"devel_osc_build
+not-installed"devel_perl
+not-installed"devel_python3
+not-installed"devel_qt5
+not-installed"devel_rpm_build
+not-installed"devel_ruby
+not-installed"devel_tcl
+not-installed"devel_web
+not-installed"devel_yast
+not-installed"devhelp
+not-installed"devhelp-devel
+not-installed"devhelp-lang
+installed"device-mapper
+not-installed"device-mapper-devel
+not-installed"device-mapper-devel-32bit
+not-installed"devidify
+not-installed"devidify
+not-installed"devilspie2
+not-installed"devilspie2-lang
+not-installed"devmem2
+not-installed"devscripts
+not-installed"dex
+not-installed"dex-oidc
+not-installed"dfc
+not-installed"dfc-lang
+not-installed"dfu-programmer
+not-installed"dfu-tool
+not-installed"dh-autoreconf
+not-installed"dh-make
+installed"dhcp
+installed"dhcp-client
+not-installed"dhcp-devel
+not-installed"dhcp-doc
+not-installed"dhcp-relay
+not-installed"dhcp-server
+not-installed"dhcp-tools
+not-installed"dhcp_dns_server
+not-installed"dhcpdetector
+not-installed"dhcpdetector
+not-installed"dhewm3
+not-installed"dhex
+not-installed"dhtest
+not-installed"di
+not-installed"di
+not-installed"di-debuginfo
+not-installed"di-debugsource
+not-installed"dia
+not-installed"dia-lang
+installed"dialog
+not-installed"dialog-devel
+not-installed"dialog-examples
+installed"dialog-lang
+not-installed"dianara
+not-installed"dico
+not-installed"dico-devel
+not-installed"dico-lang
+not-installed"dico-modules
+not-installed"dictd
+not-installed"dictd-devel
+not-installed"dicts
+not-installed"diff-pdf
+not-installed"diffmk
+not-installed"diffoscope
+not-installed"diffstat
+installed"diffutils
+installed"diffutils-lang
+not-installed"digikam
+not-installed"digikam-devel
+not-installed"digikam-lang
+not-installed"digikam-plugins
+not-installed"dina-bitmap-fonts
+not-installed"ding
+not-installed"ding-dict-de_en
+not-installed"dippi
+not-installed"dippi-lang
+not-installed"dirac
+not-installed"dirac-devel
+not-installed"dirac-devel-32bit
+not-installed"directory_server
+not-installed"direnv
+not-installed"direvent
+not-installed"dirvish
+not-installed"discord
+not-installed"discount
+installed"discover
+installed"discover-backend-flatpak
+not-installed"discover-backend-fwupd
+installed"discover-backend-packagekit
+installed"discover-lang
+not-installed"discover-plasmoid
+not-installed"diskimage-builder
+not-installed"diskscan
+not-installed"disorderfs
+not-installed"distcc
+not-installed"distcc-gui
+not-installed"distcc-server
+not-installed"distribution-gpg-keys
+not-installed"distribution-logos-openSUSE
+not-installed"distribution-logos-openSUSE-Kubic
+not-installed"distribution-logos-openSUSE-Leap
+not-installed"distribution-logos-openSUSE-MicroOS
+installed"distribution-logos-openSUSE-Tumbleweed
+not-installed"dita
+not-installed"djv
+not-installed"djv
+not-installed"djv-debuginfo
+not-installed"djv-debugsource
+not-installed"djv-devel
+not-installed"djv-doc
+not-installed"djv-plugins
+not-installed"djv-plugins-debuginfo
+not-installed"djvu2pdf
+not-installed"djvulibre
+not-installed"djvulibre-djview4
+not-installed"djvulibre-doc
+not-installed"djvusmooth
+not-installed"djvusmooth-lang
+not-installed"dkgpg
+not-installed"dkimproxy
+not-installed"dkms
+not-installed"dleyna-connector-dbus
+not-installed"dleyna-core-devel
+not-installed"dleyna-server
+not-installed"dleyna-server-devel
+not-installed"dm-zoned-tools
+not-installed"dmd
+not-installed"dmenu
+installed"dmidecode
+installed"dmraid
+not-installed"dmraid-devel
+installed"dmz-icon-theme-cursors
+not-installed"dnf
+not-installed"dnf-automatic
+not-installed"dnf-conf
+not-installed"dnf-lang
+not-installed"dnf-plugins-core
+not-installed"dnf-plugins-core-lang
+not-installed"dnf-utils
+not-installed"dnf-yum
+not-installed"dns24-update
+not-installed"dnscrypt-proxy
+not-installed"dnscrypt-proxy-devel
+not-installed"dnsdiag
+installed"dnsmasq
+not-installed"dnsmasq-utils
+not-installed"dnstracer
+not-installed"docbook-css-stylesheets
+not-installed"docbook-dsssl-stylesheets
+not-installed"docbook-simple
+not-installed"docbook-tdg
+not-installed"docbook-toys
+not-installed"docbook-utils
+not-installed"docbook-utils-minimal
+not-installed"docbook-xml-slides
+not-installed"docbook-xml-website
+not-installed"docbook-xsl-pdf2index
+installed"docbook-xsl-stylesheets
+not-installed"docbook2x
+not-installed"docbook2x-doc
+not-installed"docbook5-xsl-stylesheets
+not-installed"docbook_3
+installed"docbook_4
+not-installed"docbook_5
+not-installed"docbook_5-doc
+installed"docker
+installed"docker-bash-completion
+not-installed"docker-bench-security
+not-installed"docker-distribution-registry
+not-installed"docker-kubic
+not-installed"docker-kubic-bash-completion
+not-installed"docker-kubic-kubeadm-criconfig
+not-installed"docker-kubic-test
+not-installed"docker-kubic-zsh-completion
+installed"docker-libnetwork
+not-installed"docker-libnetwork-kubic
+not-installed"docker-machine-driver-kvm2
+installed"docker-runc
+not-installed"docker-runc-kubic
+not-installed"docker-test
+installed"docker-zsh-completion
+not-installed"docky
+not-installed"docky-devel
+not-installed"docky-lang
+not-installed"documentation
+not-installed"dogtail
+installed"dolphin
+not-installed"dolphin-devel
+installed"dolphin-part
+installed"dolphin-part-lang
+not-installed"dolphin-plugins
+not-installed"dolphin-plugins-lang
+not-installed"dom2-core-tests
+not-installed"dom4j
+not-installed"dom4j-demo
+not-installed"dom4j-javadoc
+not-installed"dom4j-manual
+not-installed"domination
+not-installed"domination-data
+not-installed"doomsday
+installed"dos2unix
+installed"dosbox
+not-installed"dosemu
+installed"dosfstools
+not-installed"dotconf-devel
+not-installed"double-conversion-devel
+not-installed"double-cross
+not-installed"dovecot
+not-installed"dovecot23
+not-installed"dovecot23-backend-mysql
+not-installed"dovecot23-backend-pgsql
+not-installed"dovecot23-backend-sqlite
+not-installed"dovecot23-devel
+not-installed"dovecot23-fts
+not-installed"dovecot23-fts-lucene
+not-installed"dovecot23-fts-solr
+not-installed"dovecot23-fts-squat
+not-installed"doxygen
+not-installed"doxywizard
+not-installed"dpdk
+not-installed"dpdk-devel
+not-installed"dpdk-doc
+not-installed"dpdk-examples
+not-installed"dpdk-kmp-default
+not-installed"dpdk-tools
+not-installed"dpic
+not-installed"dpic-doc
+installed"dpkg
+not-installed"dpkg-devel
+installed"dpkg-lang
+installed"dracut
+not-installed"dracut-fips
+not-installed"dracut-ima
+not-installed"dracut-kiwi-lib
+not-installed"dracut-kiwi-live
+not-installed"dracut-kiwi-oem-dump
+not-installed"dracut-kiwi-oem-repart
+not-installed"dracut-kiwi-overlay
+not-installed"dracut-tools
+not-installed"dragonplayer
+not-installed"dragonplayer-lang
+not-installed"drbd
+not-installed"drbd-formula
+not-installed"drbd-kmp-default
+not-installed"drbd-utils
+not-installed"drbdmanage
+not-installed"drc
+not-installed"drc-doc
+not-installed"dreampie
+not-installed"driconf
+not-installed"driverctl
+installed"drkonqi5
+installed"drkonqi5-lang
+not-installed"dropbox-cli
+not-installed"drops
+not-installed"drumstick
+not-installed"drush
+not-installed"dsmidiwifi
+not-installed"dsmidiwifi
+not-installed"dsmidiwifi-debuginfo
+installed"dssi
+not-installed"dssi-devel
+not-installed"dssi-linuxsampler
+not-installed"dssi-linuxsampler-debuginfo
+not-installed"dssim
+not-installed"dstat
+not-installed"dt
+not-installed"dtach
+not-installed"dtc
+not-installed"dtdinst
+not-installed"dtkcore
+not-installed"dtkcore-devel
+not-installed"dtkwidget
+not-installed"dtkwidget-devel
+not-installed"dtkwm-devel
+not-installed"dtv-scan-tables
+not-installed"dtv-scan-tables-v5
+not-installed"dub
+not-installed"duc
+not-installed"duktape-devel
+not-installed"dump
+not-installed"dump-rmt
+not-installed"dump1090
+not-installed"dumpvdl2
+not-installed"dunelegacy
+not-installed"dunst
+not-installed"duperemove
+not-installed"duplicity
+not-installed"duplicity-lang
+not-installed"duply
+not-installed"dustrac
+not-installed"dv2sub
+not-installed"dv2sub
+not-installed"dv2sub-debuginfo
+not-installed"dv2sub-debugsource
+not-installed"dvb-utils
+not-installed"dvbcut
+not-installed"dvbsnoop
+not-installed"dvbstream
+installed"dvd+rw-tools
+not-installed"dvd-slideshow
+not-installed"dvd-slideshow
+not-installed"dvdauthor
+not-installed"dvdbackup
+not-installed"dvdbackup
+not-installed"dvdbackup-debuginfo
+not-installed"dvdbackup-debugsource
+not-installed"dvdinfo
+not-installed"dvdinfo
+not-installed"dvdinfo-debuginfo
+not-installed"dvdisaster
+not-installed"dvdisaster-docs
+not-installed"dvdrip
+not-installed"dvdrip
+not-installed"dvdrip-debuginfo
+not-installed"dvdshrink
+not-installed"dvdshrink
+not-installed"dvdwizard
+not-installed"dvdwizard
+not-installed"dvgrab
+not-installed"dvgrab
+not-installed"dvgrab-debuginfo
+not-installed"dvgrab-debugsource
+not-installed"dvgt
+not-installed"dwarves
+installed"dwz
+not-installed"dwz-testsuite
+not-installed"dxflib-devel
+not-installed"dxirc
+not-installed"dxirc
+not-installed"dxirc-debuginfo
+not-installed"dxirc-debugsource
+not-installed"dynamic-wallpapers-11x
+not-installed"dynamips
+not-installed"dzen2
+not-installed"e16
+installed"e2fsprogs
+not-installed"e2fsprogs-devel
+not-installed"e2fsprogs-scrub
+not-installed"e3
+not-installed"eaglemode
+not-installed"easy-rsa
+not-installed"easymock
+not-installed"easymock-javadoc
+not-installed"easytag
+not-installed"easytag-lang
+not-installed"eatmydata
+not-installed"eb
+not-installed"eb-devel
+not-installed"eb-garamond-fonts
+not-installed"eb-lang
+not-installed"ebiso
+not-installed"ebizzy
+not-installed"eblook
+not-installed"ebook-tools
+installed"ebtables
+not-installed"ecasound
+not-installed"ecasound
+not-installed"ecasound-debuginfo
+not-installed"ecasound-debugsource
+not-installed"ecasound-doc
+not-installed"echomixer
+not-installed"eciadsl-usermode
+not-installed"ecj
+not-installed"eclipse-swt
+not-installed"econnman
+not-installed"ecryptfs-utils
+not-installed"ecryptfs-utils-32bit
+not-installed"ecryptfs-utils-devel
+not-installed"ecryptfs-utils-devel-32bit
+not-installed"ecwolf
+not-installed"ed
+not-installed"edgar
+not-installed"edgar-data
+not-installed"edgar-lang
+not-installed"edict
+not-installed"edict2
+not-installed"editorconfig
+not-installed"editres
+not-installed"edje
+not-installed"eekboard
+not-installed"eekboard-devel
+not-installed"eeyek-fonts
+installed"efibootmgr
+not-installed"efivar
+not-installed"efivar-devel
+not-installed"efl
+not-installed"efl-devel
+not-installed"efl-lang
+not-installed"efl-testsuite
+not-installed"efont-serif-fonts
+installed"efont-unicode-bitmap-fonts
+not-installed"eiciel
+not-installed"eiciel-lang
+not-installed"eigen3-devel
+not-installed"eigen3-doc
+not-installed"ekiga
+not-installed"ekiga-lang
+not-installed"ekiga-plugins-evolution
+not-installed"elektra
+not-installed"elektra-qt-gui
+not-installed"elementary
+not-installed"elementary-cmake-modules
+not-installed"elementary-icon-theme
+not-installed"elementary-icon-theme-gimp-palette
+not-installed"elementary-icon-theme-inkscape-palette
+not-installed"elementary-wallpapers
+not-installed"elementary-xfce-icon-theme
+not-installed"elemines
+not-installed"elftoaout
+installed"elfutils
+installed"elfutils-lang
+not-installed"elib
+not-installed"elilo
+not-installed"elinks
+not-installed"elisa
+not-installed"elisa-lang
+not-installed"elixir
+not-installed"elixir-doc
+not-installed"elixir-ex_doc
+not-installed"elixir-hex
+not-installed"ell-devel
+not-installed"elua
+not-installed"emacs
+not-installed"emacs-apel
+not-installed"emacs-auctex
+not-installed"emacs-color-theme
+not-installed"emacs-completion-golang
+not-installed"emacs-el
+not-installed"emacs-flim
+not-installed"emacs-info
+not-installed"emacs-nox
+not-installed"emacs-plugin-devhelp
+not-installed"emacs-scheme48
+not-installed"emacs-semi
+not-installed"emacs-w3m
+not-installed"emacs-x11
+not-installed"embryo
+not-installed"emf2svg-conv
+not-installed"emil
+not-installed"emojione-color-font
+not-installed"emount
+not-installed"emount
+not-installed"emount-debuginfo
+not-installed"emount-debugsource
+not-installed"empathy
+not-installed"empathy-lang
+installed"enblend-enfuse
+not-installed"enblend-enfuse-doc
+not-installed"enca
+not-installed"enca-devel
+not-installed"encfs
+not-installed"encfs-lang
+not-installed"enchant-1-backend-voikko
+not-installed"enchant-1-backend-voikko-32bit
+not-installed"enchant-1-backend-zemberek
+not-installed"enchant-1-backend-zemberek-32bit
+not-installed"enchant-1-backends
+not-installed"enchant-1-data
+not-installed"enchant-1-devel
+not-installed"enchant-1-tools
+not-installed"enchant-2-backend-aspell
+installed"enchant-2-backend-hunspell
+not-installed"enchant-2-backend-voikko
+not-installed"enchant-2-backend-voikko-32bit
+installed"enchant-data
+not-installed"enchant-devel
+not-installed"enchant-tools
+not-installed"endless-sky
+not-installed"enet-devel
+not-installed"engauge-digitizer
+not-installed"engauge-digitizer-devel-doc
+not-installed"engauge-digitizer-doc
+not-installed"engdic
+not-installed"engrampa
+not-installed"engrampa-lang
+installed"enhanced_base
+not-installed"enigmail
+not-installed"enlightenment
+not-installed"enlightenment
+not-installed"enlightenment-branding-openSUSE
+not-installed"enlightenment-branding-upstream
+not-installed"enlightenment-devel
+not-installed"enlightenment-doc-html
+not-installed"enlightenment-profiles-openSUSE
+not-installed"enlightenment-theme-cerium2
+not-installed"enlightenment-theme-dark
+not-installed"enlightenment-theme-openSUSE
+not-installed"enlightenment-theme-openSUSE-ice
+not-installed"enlightenment-theme-openSUSE-oliveleaf
+not-installed"enlightenment-theme-upstream
+not-installed"enlightenment-x-dark-icon-theme
+installed"enscript
+not-installed"entangle
+not-installed"entangle-doc
+not-installed"entangle-lang
+not-installed"entangle-plugin-eclipse
+not-installed"entangle-plugin-photobox
+not-installed"entangle-plugin-shooter
+not-installed"entr
+not-installed"envoy
+not-installed"envoy-proxy
+not-installed"envy24control
+not-installed"eog
+not-installed"eog-devel
+not-installed"eog-lang
+not-installed"eog-plugin-exif-display
+not-installed"eog-plugin-export-to-folder
+not-installed"eog-plugin-fit-to-width
+not-installed"eog-plugin-fullscreenbg
+not-installed"eog-plugin-hide-titlebar
+not-installed"eog-plugin-light-theme
+not-installed"eog-plugin-map
+not-installed"eog-plugin-maximize-windows
+not-installed"eog-plugin-postasa
+not-installed"eog-plugin-pythonconsole
+not-installed"eog-plugin-send-by-mail
+not-installed"eog-plugin-slideshowshuffle
+not-installed"eog-plugins
+not-installed"eog-plugins-data
+not-installed"eog-plugins-lang
+not-installed"eolie
+not-installed"eolie-lang
+not-installed"eom
+not-installed"eom-devel
+not-installed"eom-lang
+not-installed"eperiodique
+not-installed"ephoto
+not-installed"ephoto-lang
+not-installed"epic
+not-installed"epiphany
+not-installed"epiphany-branding-openSUSE
+not-installed"epiphany-branding-upstream
+not-installed"epiphany-lang
+not-installed"epour
+not-installed"epour-lang
+not-installed"epplet-base
+not-installed"epson-inkjet-printer-escpr
+not-installed"epymc
+not-installed"epymc-lang
+not-installed"equalx
+not-installed"erfa-devel
+not-installed"erfa-devel-static
+not-installed"eric
+not-installed"eric-api
+not-installed"erlang
+not-installed"erlang-debugger
+not-installed"erlang-debugger-src
+not-installed"erlang-dialyzer
+not-installed"erlang-dialyzer-src
+not-installed"erlang-diameter
+not-installed"erlang-diameter-src
+not-installed"erlang-doc
+not-installed"erlang-epmd
+not-installed"erlang-et
+not-installed"erlang-et-src
+not-installed"erlang-jinterface
+not-installed"erlang-jinterface-src
+not-installed"erlang-observer
+not-installed"erlang-observer-src
+not-installed"erlang-rabbitmq-client
+not-installed"erlang-rebar
+not-installed"erlang-rebar-src
+not-installed"erlang-reltool
+not-installed"erlang-reltool-src
+not-installed"erlang-retest
+not-installed"erlang-retest-src
+not-installed"erlang-sd_notify
+not-installed"erlang-src
+not-installed"erlang-wx
+not-installed"erlang-wx-src
+not-installed"erofs-utils
+not-installed"espeak
+not-installed"espeak-devel
+not-installed"espeak-ng
+not-installed"espeak-ng-compat
+not-installed"espeak-ng-compat-devel
+not-installed"espeak-ng-devel
+not-installed"espeakedit
+not-installed"etags
+not-installed"etc-update
+not-installed"etcd
+not-installed"etcd-for-k8s-image
+not-installed"etcdctl
+not-installed"etckeeper
+not-installed"etckeeper-bash-completion
+not-installed"etckeeper-zypp-plugin
+not-installed"etherape
+not-installed"etherape-lang
+installed"ethtool
+not-installed"etrophy
+not-installed"etrophy-data
+not-installed"etrophy-devel
+not-installed"evas-generic-loaders
+not-installed"evemu
+not-installed"evemu-devel
+not-installed"eventstat
+installed"eventviews
+not-installed"eventviews-devel
+installed"eventviews-lang
+not-installed"evieproto-devel
+not-installed"evince
+not-installed"evince-devel
+not-installed"evince-lang
+not-installed"evince-plugin-comicsdocument
+not-installed"evince-plugin-djvudocument
+not-installed"evince-plugin-dvidocument
+not-installed"evince-plugin-pdfdocument
+not-installed"evince-plugin-psdocument
+not-installed"evince-plugin-tiffdocument
+not-installed"evince-plugin-xpsdocument
+not-installed"evmctl
+not-installed"evolution
+not-installed"evolution-data-server
+not-installed"evolution-data-server-32bit
+not-installed"evolution-data-server-devel
+not-installed"evolution-data-server-doc
+not-installed"evolution-data-server-lang
+not-installed"evolution-devel
+not-installed"evolution-ews
+not-installed"evolution-ews-lang
+not-installed"evolution-lang
+not-installed"evolution-plugin-bogofilter
+not-installed"evolution-plugin-pst-import
+not-installed"evolution-plugin-rss
+not-installed"evolution-plugin-rss-lang
+not-installed"evolution-plugin-spamassassin
+not-installed"evolution-plugin-text-highlight
+not-installed"evtest
+not-installed"exa
+not-installed"exaile
+not-installed"exaile-lang
+not-installed"exec-maven-plugin
+not-installed"exec-maven-plugin-javadoc
+not-installed"execstack
+not-installed"exempi-tools
+not-installed"exercism
+not-installed"exfat-utils
+not-installed"exif
+installed"exiftool
+not-installed"exiftran
+not-installed"exim
+not-installed"eximon
+not-installed"eximstats-html
+not-installed"exiv2
+not-installed"exiv2-lang
+not-installed"exmh
+not-installed"exo-branding-openSUSE
+not-installed"exo-branding-upstream
+not-installed"exo-data
+not-installed"exo-devel
+not-installed"exo-helpers
+not-installed"exo-lang
+not-installed"exo-tools
+not-installed"exodusii-devel
+installed"expat
+not-installed"expect
+not-installed"expect-devel
+not-installed"explain
+not-installed"ext3grep
+not-installed"ext4magic
+not-installed"extra-cmake-modules
+not-installed"extra-cmake-modules-doc
+not-installed"extract-appdata-icons
+not-installed"extreme-tuxracer
+not-installed"extreme-tuxracer-data
+not-installed"extundelete
+not-installed"ez-ipupdate
+not-installed"ezstream
+not-installed"f2c
+not-installed"f2c-devel
+not-installed"f2fs-tools
+not-installed"f2fs-tools-compat
+not-installed"f2fs-tools-devel
+not-installed"f3
+not-installed"fIcy
+not-installed"faac
+not-installed"faac
+not-installed"faac-debuginfo
+not-installed"faac-debugsource
+not-installed"faad2
+not-installed"faad2
+not-installed"faad2-debuginfo
+not-installed"faad2-debugsource
+not-installed"faba-icon-theme
+not-installed"fabtests
+not-installed"facedetect
+not-installed"faenza-icon-theme
+not-installed"faenza-icon-theme-ambiance
+not-installed"faenza-icon-theme-dark
+not-installed"faenza-icon-theme-darker
+not-installed"faenza-icon-theme-darkest
+not-installed"faenza-icon-theme-mint
+not-installed"faenza-icon-theme-radiance
+not-installed"fail2ban
+not-installed"fairymax
+not-installed"fakechroot
+not-installed"fakeroot
+not-installed"fakeroot-32bit
+not-installed"falkon
+not-installed"falkon-gnome-keyring
+not-installed"falkon-kde
+not-installed"falkon-lang
+not-installed"farsi-fonts
+not-installed"farstream-data
+not-installed"farstream-devel
+not-installed"fasd
+not-installed"fasterxml-oss-parent
+not-installed"fastjar
+not-installed"fastjet-devel
+not-installed"fastjet-plugin-siscone
+not-installed"fastjet-plugin-siscone-devel
+not-installed"fastlzlib
+not-installed"fastlzlib-devel
+not-installed"fatrace
+not-installed"fatsort
+not-installed"fbdesk
+not-installed"fbdesk
+not-installed"fbdesk-debuginfo
+not-installed"fbdesk-debugsource
+not-installed"fbi
+not-installed"fbiterm
+not-installed"fbpdf
+not-installed"fbreader
+not-installed"fbterm
+not-installed"fcdproplus-udev
+not-installed"fcgiwrap
+not-installed"fcgiwrap-nginx
+not-installed"fcitx
+not-installed"fcitx-anthy
+not-installed"fcitx-branding-openSUSE
+not-installed"fcitx-chewing
+not-installed"fcitx-cloudpinyin
+not-installed"fcitx-config-gtk3
+not-installed"fcitx-devel
+not-installed"fcitx-fbterm
+not-installed"fcitx-googlepinyin
+not-installed"fcitx-gtk2
+not-installed"fcitx-gtk2-32bit
+not-installed"fcitx-gtk3
+not-installed"fcitx-gtk3-32bit
+not-installed"fcitx-hangul
+not-installed"fcitx-kkc
+not-installed"fcitx-libpinyin
+not-installed"fcitx-m17n
+not-installed"fcitx-mozc
+not-installed"fcitx-pinyin
+not-installed"fcitx-pinyin-tools
+not-installed"fcitx-pylogger
+not-installed"fcitx-qt5
+not-installed"fcitx-qt5-32bit
+not-installed"fcitx-qt5-devel
+not-installed"fcitx-quwei
+not-installed"fcitx-rime
+not-installed"fcitx-sayura
+not-installed"fcitx-skin-classic
+not-installed"fcitx-skin-dark
+not-installed"fcitx-skin-new-air
+not-installed"fcitx-skk
+not-installed"fcitx-sunpinyin
+not-installed"fcitx-table
+not-installed"fcitx-table-amharic
+not-installed"fcitx-table-arabic
+not-installed"fcitx-table-cn-bingchan
+not-installed"fcitx-table-cn-cangjie
+not-installed"fcitx-table-cn-cantonese
+not-installed"fcitx-table-cn-cns11643
+not-installed"fcitx-table-cn-dianbao
+not-installed"fcitx-table-cn-erbi
+not-installed"fcitx-table-cn-wanfeng
+not-installed"fcitx-table-cn-wu
+not-installed"fcitx-table-cn-wubi
+not-installed"fcitx-table-cn-wubi-large
+not-installed"fcitx-table-cn-wubi-pinyin
+not-installed"fcitx-table-cn-zhengma
+not-installed"fcitx-table-cn-zhengma-large
+not-installed"fcitx-table-cn-ziran
+not-installed"fcitx-table-emoji
+not-installed"fcitx-table-extra-lang
+not-installed"fcitx-table-hk-cantonese
+not-installed"fcitx-table-hk-jyutping
+not-installed"fcitx-table-hk-stroke5
+not-installed"fcitx-table-ipa-x-sampa
+not-installed"fcitx-table-latex
+not-installed"fcitx-table-malayalam-compose
+not-installed"fcitx-table-malayalam-phonetic
+not-installed"fcitx-table-other
+not-installed"fcitx-table-ru-rustrad
+not-installed"fcitx-table-ru-translit
+not-installed"fcitx-table-ru-yawerty
+not-installed"fcitx-table-t9
+not-installed"fcitx-table-tamil-remington
+not-installed"fcitx-table-thai
+not-installed"fcitx-table-tools
+not-installed"fcitx-table-tw-array30
+not-installed"fcitx-table-tw-array30-large
+not-installed"fcitx-table-tw-boshiamy
+not-installed"fcitx-table-tw-cangjie-large
+not-installed"fcitx-table-tw-cangjie3
+not-installed"fcitx-table-tw-cangjie5
+not-installed"fcitx-table-tw-easy-large
+not-installed"fcitx-table-tw-quick-classic
+not-installed"fcitx-table-tw-quick3
+not-installed"fcitx-table-tw-quick5
+not-installed"fcitx-table-tw-smart-cangjie6
+not-installed"fcitx-table-ua-translit
+not-installed"fcitx-table-vi-qr
+not-installed"fcitx-ui-light
+not-installed"fcitx-unikey
+not-installed"fcitx-zhuyin
+not-installed"fcoe-utils
+not-installed"fcwnn
+not-installed"fcwnn-devel
+not-installed"fcwnncom
+installed"fd
+installed"fd-bash-completion
+not-installed"fd-fish-completion
+installed"fd-zsh-completion
+not-installed"fd0ssh
+not-installed"fdk-aac
+not-installed"fdk-aac-debugsource
+not-installed"fdk-aac-devel
+not-installed"fdkaac
+not-installed"fdkaac
+not-installed"fdkaac-debuginfo
+not-installed"fdkaac-debugsource
+installed"fdupes
+not-installed"featherpad
+not-installed"featherpad-lang
+not-installed"fec-devel
+not-installed"fedfs-utils-admin
+not-installed"fedfs-utils-client
+not-installed"fedfs-utils-common
+not-installed"fedfs-utils-devel
+not-installed"fedfs-utils-nsdbparams
+not-installed"fedfs-utils-server
+not-installed"feh
+not-installed"felix-gogo-command
+not-installed"felix-gogo-command-javadoc
+not-installed"felix-gogo-parent
+not-installed"felix-gogo-runtime
+not-installed"felix-gogo-runtime-javadoc
+not-installed"felix-gogo-shell
+not-installed"felix-gogo-shell-javadoc
+not-installed"felix-osgi-compendium
+not-installed"felix-osgi-compendium-javadoc
+not-installed"felix-osgi-core
+not-installed"felix-osgi-core-javadoc
+not-installed"felix-osgi-foundation
+not-installed"felix-osgi-foundation-javadoc
+not-installed"felix-parent
+not-installed"felix-scr
+not-installed"felix-scr-javadoc
+not-installed"felix-shell
+not-installed"felix-shell-javadoc
+not-installed"felix-utils
+not-installed"felix-utils-javadoc
+not-installed"fence-agents
+not-installed"fence-agents-amt_ws
+not-installed"fence-agents-devel
+not-installed"fence-sanlock
+not-installed"festival
+not-installed"festival-devel
+not-installed"fetchmail
+not-installed"fetchmailconf
+installed"fetchmsttfonts
+not-installed"ffado
+not-installed"ffado-mixer
+not-installed"ffcall
+not-installed"ffhevc
+not-installed"ffhevc
+not-installed"fflas-ffpack-devel
+not-installed"fflas-ffpack-doc
+not-installed"ffmpeg-2
+not-installed"ffmpeg-2-debugsource
+not-installed"ffmpeg-2-libavcodec-devel
+not-installed"ffmpeg-2-libavdevice-devel
+not-installed"ffmpeg-2-libavfilter-devel
+not-installed"ffmpeg-2-libavformat-devel
+not-installed"ffmpeg-2-libavresample-devel
+not-installed"ffmpeg-2-libavutil-devel
+not-installed"ffmpeg-2-libpostproc-devel
+not-installed"ffmpeg-2-libswresample-devel
+not-installed"ffmpeg-2-libswscale-devel
+not-installed"ffmpeg-3
+not-installed"ffmpeg-3-debugsource
+not-installed"ffmpeg-3-libavcodec-devel
+not-installed"ffmpeg-3-libavdevice-devel
+not-installed"ffmpeg-3-libavfilter-devel
+not-installed"ffmpeg-3-libavformat-devel
+not-installed"ffmpeg-3-libavresample-devel
+not-installed"ffmpeg-3-libavutil-devel
+not-installed"ffmpeg-3-libpostproc-devel
+not-installed"ffmpeg-3-libswresample-devel
+not-installed"ffmpeg-3-libswscale-devel
+not-installed"ffmpeg-3-private-devel
+installed"ffmpeg-4
+not-installed"ffmpeg-4
+not-installed"ffmpeg-4-debuginfo
+not-installed"ffmpeg-4-debugsource
+not-installed"ffmpeg-4-libavcodec-devel
+not-installed"ffmpeg-4-libavdevice-devel
+not-installed"ffmpeg-4-libavfilter-devel
+not-installed"ffmpeg-4-libavformat-devel
+not-installed"ffmpeg-4-libavresample-devel
+not-installed"ffmpeg-4-libavutil-devel
+not-installed"ffmpeg-4-libpostproc-devel
+not-installed"ffmpeg-4-libswresample-devel
+not-installed"ffmpeg-4-libswscale-devel
+not-installed"ffmpeg-4-private-devel
+not-installed"ffmpeg2theora
+not-installed"ffmpeg2theora
+not-installed"ffmpeg2theora-debuginfo
+not-installed"ffmpeg2theora-debugsource
+not-installed"ffmpegthumbnailer
+installed"ffmpegthumbs
+installed"ffmpegthumbs-lang
+not-installed"ffmpegyag
+not-installed"ffmpegyag
+not-installed"ffmpegyag-debuginfo
+not-installed"ffmpegyag-debugsource
+not-installed"ffmsindex
+not-installed"ffnvcodec-devel
+not-installed"ffsb
+not-installed"fftw3-devel
+not-installed"fftw3-gnu-hpc-devel
+not-installed"fftw3-gnu-mpich-hpc-devel
+not-installed"fftw3-gnu-mvapich2-hpc-devel
+not-installed"fftw3-gnu-openmpi1-hpc-devel
+not-installed"fftw3-gnu-openmpi2-hpc-devel
+not-installed"fftw3-gnu-openmpi3-hpc-devel
+not-installed"fftw3-mpi-devel
+not-installed"fftw3-openmp-devel
+not-installed"fftw3-threads-devel
+not-installed"fftw3_3_3_8-gnu-hpc-devel
+not-installed"fftw3_3_3_8-gnu-hpc-devel-static
+not-installed"fftw3_3_3_8-gnu-mpich-hpc-devel
+not-installed"fftw3_3_3_8-gnu-mpich-hpc-devel-static
+not-installed"fftw3_3_3_8-gnu-mvapich2-hpc-devel
+not-installed"fftw3_3_3_8-gnu-mvapich2-hpc-devel-static
+not-installed"fftw3_3_3_8-gnu-openmpi1-hpc-devel
+not-installed"fftw3_3_3_8-gnu-openmpi1-hpc-devel-static
+not-installed"fftw3_3_3_8-gnu-openmpi2-hpc-devel
+not-installed"fftw3_3_3_8-gnu-openmpi2-hpc-devel-static
+not-installed"fftw3_3_3_8-gnu-openmpi3-hpc-devel
+not-installed"fftw3_3_3_8-gnu-openmpi3-hpc-devel-static
+not-installed"ffx264
+not-installed"ffx264
+not-installed"ffxvid
+not-installed"ffxvid
+not-installed"fhourstones
+not-installed"fhs
+not-installed"fife-devel
+not-installed"fifechan-devel
+not-installed"fifth-leg-font
+not-installed"figlet
+installed"file
+not-installed"file-devel
+not-installed"file-devel-32bit
+installed"file-magic
+not-installed"file-roller
+not-installed"file-roller-lang
+not-installed"file-unpack
+not-installed"file_server
+not-installed"filebench
+not-installed"filelight
+not-installed"filelight-lang
+not-installed"filemanager-actions
+not-installed"filemanager-actions-devel
+not-installed"filemanager-actions-lang
+installed"filesystem
+not-installed"filesystem-media
+not-installed"filezilla
+not-installed"filezilla-lang
+not-installed"fillets-ng
+not-installed"fillets-ng-data
+installed"fillup
+not-installed"filter_audio-devel
+not-installed"finalhe
+not-installed"finalhe
+not-installed"finalhe-debuginfo
+not-installed"finalhe-debugsource
+not-installed"finch
+not-installed"finch-devel
+not-installed"findbugs
+not-installed"findbugs-bcel
+not-installed"findbugs-bcel-javadoc
+not-installed"findbugs-javadoc
+not-installed"findbugs-tools
+installed"findutils
+installed"findutils-lang
+not-installed"finger
+not-installed"finger-server
+not-installed"fio
+not-installed"fiona-fio
+not-installed"fips
+not-installed"fipscheck
+not-installed"fipscheck-devel
+installed"firebird
+not-installed"firebird-doc
+not-installed"firebird-examples
+not-installed"firebird-server
+not-installed"firebird-utils
+not-installed"firefox-uget-integrator
+not-installed"firehol
+not-installed"firehol-doc
+not-installed"firejail
+not-installed"firescope
+not-installed"firewall-applet
+not-installed"firewall-config
+not-installed"firewall-macros
+installed"firewalld
+installed"firewalld-lang
+not-installed"firewalld-rpcbind-helper
+not-installed"fish
+not-installed"fish-devel
+not-installed"fityk
+not-installed"fityk-devel
+not-installed"five-or-more
+not-installed"five-or-more-doc
+not-installed"five-or-more-lang
+not-installed"fkwnn
+not-installed"fkwnn-devel
+not-installed"flac
+not-installed"flac-devel
+not-installed"flac-devel-32bit
+not-installed"flacon
+not-installed"flacon
+not-installed"flacon-debuginfo
+not-installed"flacon-debugsource
+not-installed"flacon-lang
+not-installed"flamerobin
+installed"flameshot
+installed"flameshot-bash-completion
+not-installed"flann-devel
+not-installed"flannel
+not-installed"flannel-k8s-yaml
+not-installed"flare
+not-installed"flare-game
+not-installed"flarq
+not-installed"flash-player
+not-installed"flash-player
+not-installed"flash-player-gnome
+not-installed"flash-player-ppapi
+not-installed"flashfocus
+not-installed"flashrom
+not-installed"flatbuffers-devel
+installed"flatpak
+not-installed"flatpak-builder
+not-installed"flatpak-devel
+installed"flatpak-zsh-completion
+not-installed"fldigi
+not-installed"fldigi-lang
+not-installed"flex
+not-installed"flexdock
+not-installed"flickcurl
+not-installed"flickcurl-doc
+not-installed"flickrnet
+not-installed"flickrnet-devel
+not-installed"flint-devel
+not-installed"florence
+not-installed"florence-devel
+not-installed"florence-lang
+not-installed"flowblade
+not-installed"flowblade
+not-installed"flowblade-lang
+not-installed"flowgrind
+not-installed"fltk-devel
+not-installed"fltk-devel-32bit
+not-installed"fltk-devel-static
+installed"fluid-soundfont-gm
+not-installed"fluid-soundfont-gs
+not-installed"fluidsynth
+not-installed"fluidsynth-devel
+not-installed"fluidsynth-dssi
+installed"flute
+not-installed"flute-javadoc
+not-installed"fluxbox
+not-installed"fluxbox-styles-upstream
+not-installed"flxmlrpc-devel
+not-installed"fly
+not-installed"fmt-devel
+not-installed"fnotifystat
+not-installed"focuswriter
+not-installed"focuswriter-lang
+not-installed"folder-color-common
+not-installed"folder-color-common-lang
+not-installed"folks-devel
+not-installed"folks-lang
+not-installed"folks-tools
+not-installed"foma
+not-installed"foma-devel
+not-installed"fondu
+not-installed"fonehome
+not-installed"fonehome-server
+not-installed"font-specimen
+not-installed"font-specimen-devel
+not-installed"font-util
+not-installed"fontawesome-fonts
+not-installed"fontawesome-fonts-web
+not-installed"fontcacheproto-devel
+installed"fontconfig
+installed"fontconfig-32bit
+not-installed"fontconfig-devel
+not-installed"fontconfig-devel-32bit
+not-installed"fontconfig-devel-doc
+not-installed"fontconfig-doc
+installed"fontconfig-lang
+not-installed"fontforge
+not-installed"fontforge-devel
+not-installed"fontforge-doc
+not-installed"fontpackages-devel
+installed"fonts
+not-installed"fonts-KanjiStrokeOrders
+installed"fonts-config
+not-installed"fonttosfnt
+not-installed"fontweak
+not-installed"forge-parent
+not-installed"forkbomb
+not-installed"forkstat
+not-installed"form
+not-installed"fortune
+not-installed"fossil
+not-installed"fotowall
+not-installed"four-in-a-row
+not-installed"four-in-a-row-lang
+not-installed"fox16-devel
+not-installed"fox16-devel-static
+not-installed"fox16-doc
+not-installed"fox16-example-apps
+not-installed"fparser-devel
+not-installed"fpc
+not-installed"fpc-doc
+not-installed"fpc-src
+not-installed"fping
+not-installed"fplll
+not-installed"fplll-devel
+not-installed"fpm2
+not-installed"fpm2
+not-installed"fpm2-debuginfo
+not-installed"fpm2-debugsource
+not-installed"fpm2-lang
+not-installed"fprintd
+not-installed"fprintd-devel
+not-installed"fprintd-lang
+not-installed"fprintd-pam
+not-installed"fprintd-pam-32bit
+not-installed"fractal
+not-installed"fractal-lang
+not-installed"frame
+not-installed"frame-devel
+not-installed"frameworkintegration-devel
+not-installed"frameworkintegration-devel-32bit
+installed"frameworkintegration-plugin
+not-installed"frameworkintegration-plugin-32bit
+not-installed"free-ttf-fonts
+not-installed"freealut-devel
+not-installed"freecell-solver
+not-installed"freecell-solver-devel
+installed"freecell-solver-presets
+not-installed"freeciv
+not-installed"freeciv-gtk3
+not-installed"freeciv-lang
+not-installed"freeciv-qt
+not-installed"freedoom
+not-installed"freedoom-freedm
+not-installed"freedup
+not-installed"freeglut-demo
+not-installed"freeglut-devel
+not-installed"freeglut-devel-32bit
+not-installed"freeimage-devel
+not-installed"freeipmi
+not-installed"freeipmi-bmc-watchdog
+not-installed"freeipmi-devel
+not-installed"freeipmi-ipmidetectd
+not-installed"freeipmi-ipmiseld
+not-installed"freeorion
+not-installed"freeorion-data
+not-installed"freepops
+not-installed"freepops
+not-installed"freepops-debuginfo
+not-installed"freepops-debugsource
+not-installed"freeradius-client
+not-installed"freeradius-client-devel
+not-installed"freeradius-client-libs
+not-installed"freeradius-server
+not-installed"freeradius-server-devel
+not-installed"freeradius-server-doc
+not-installed"freeradius-server-krb5
+not-installed"freeradius-server-ldap
+not-installed"freeradius-server-libs
+not-installed"freeradius-server-mysql
+not-installed"freeradius-server-perl
+not-installed"freeradius-server-postgresql
+not-installed"freeradius-server-python
+not-installed"freeradius-server-sqlite
+not-installed"freeradius-server-utils
+not-installed"freerdp
+not-installed"freerdp-devel
+not-installed"freerdp-server
+not-installed"freerdp-wayland
+not-installed"freesrp-devel
+not-installed"freesrp-udev
+not-installed"freetds-config
+not-installed"freetds-devel
+not-installed"freetds-doc
+not-installed"freetds-tools
+not-installed"freetuxtv
+not-installed"freetuxtv
+not-installed"freetuxtv-debuginfo
+not-installed"freetuxtv-debugsource
+not-installed"freetuxtv-devel
+not-installed"freetuxtv-lang
+not-installed"freetype
+not-installed"freetype-devel
+not-installed"freetype-tools
+not-installed"freetype2-devel
+not-installed"freetype2-devel-32bit
+not-installed"freetype2-profile-tti35
+not-installed"freexl-devel
+not-installed"frei0r-plugins
+not-installed"frei0r-plugins-devel
+not-installed"frei0r-plugins-opencv
+not-installed"frescobaldi
+not-installed"freshplayerplugin
+installed"fribidi
+not-installed"fribidi-devel
+not-installed"frink
+not-installed"fritzing
+not-installed"fritzing-parts
+not-installed"frogatto
+not-installed"frogatto-data
+not-installed"frogatto-lang
+not-installed"frogr
+not-installed"frogr-lang
+not-installed"froxlor
+not-installed"frozen-bubble
+not-installed"frozen-bubble-lang
+not-installed"frozen-bubble-server
+not-installed"fruit21
+not-installed"fruit21
+not-installed"fruit21-debuginfo
+not-installed"fs-check
+not-installed"fs-uae
+not-installed"fs-uae-arcade
+not-installed"fs-uae-launcher
+not-installed"fs_mark
+not-installed"fsarchiver
+not-installed"fslint
+not-installed"fslsfonts
+not-installed"fstobdf
+not-installed"fstrcmp
+not-installed"fstrcmp-devel
+not-installed"fstrm
+not-installed"fstrm-devel
+not-installed"fsvs
+not-installed"fswebcam
+not-installed"ft2demos
+not-installed"ftbench
+not-installed"ftdiff
+not-installed"ftdump
+not-installed"ftgamma
+not-installed"ftgl-demo
+not-installed"ftgl-devel
+not-installed"ftgrid
+not-installed"ftinspect
+not-installed"ftlint
+not-installed"ftmulti
+not-installed"ftop
+not-installed"ftp
+not-installed"ftsteutates-sensors
+not-installed"ftstring
+not-installed"ftvalid
+not-installed"ftview
+not-installed"ftwnn
+not-installed"funkload
+not-installed"funny-manpages
+not-installed"funny-manpages
+installed"fuse
+not-installed"fuse-devel
+not-installed"fuse-devel-static
+not-installed"fuse-doc
+not-installed"fuse-exfat
+not-installed"fuse-oscfs
+not-installed"fuse-overlayfs
+installed"fuse3
+not-installed"fuse3-devel
+not-installed"fuse3-doc
+not-installed"fuseiso
+not-installed"fusepod
+not-installed"fusesmb
+not-installed"fusesource-pom
+not-installed"fusion-icon
+not-installed"fvwm-themes
+not-installed"fvwm2
+not-installed"fwbuilder
+not-installed"fwknop
+not-installed"fwknop-gui
+not-installed"fwknopd
+not-installed"fwnn
+not-installed"fwnn-devel
+not-installed"fwnncom
+not-installed"fwts
+not-installed"fwupd
+not-installed"fwupd-devel
+not-installed"fwupd-lang
+not-installed"fxload
+installed"fzf
+installed"fzf-bash-completion
+installed"fzf-tmux
+installed"fzf-zsh-completion
+not-installed"fzy
+not-installed"g3utils
+not-installed"g810-led
+not-installed"gCue2tracks
+not-installed"gCue2tracks
+not-installed"gaa
+not-installed"gajim
+not-installed"gajim-lang
+not-installed"gajim-plugin-omemo
+not-installed"galaxis
+not-installed"galculator
+not-installed"galculator-lang
+not-installed"gama
+not-installed"gamemoded
+installed"games
+not-installed"gamin-devel
+installed"gamin-server
+not-installed"gammaray
+not-installed"gammaray-devel
+not-installed"gammu
+not-installed"gammu-bash-completion
+not-installed"gammu-devel
+not-installed"gammu-doc
+not-installed"gammu-smsd
+not-installed"ganglia-devel
+not-installed"ganglia-gmetad
+not-installed"ganglia-gmetad-skip-bcheck
+not-installed"ganglia-gmond
+not-installed"ganglia-gmond-modules-python
+not-installed"ganglia-web
+not-installed"garglk
+not-installed"garglk
+not-installed"garglk-debuginfo
+not-installed"garglk-debugsource
+not-installed"garlic
+not-installed"garlic-doc
+not-installed"gasnet
+not-installed"gasnet-devel
+not-installed"gasnet-doc
+not-installed"gateway_server
+not-installed"gaupol
+not-installed"gavl
+installed"gawk
+not-installed"gbdfed
+not-installed"gbrainy
+not-installed"gbrainy-lang
+not-installed"gc-devel
+installed"gcab
+not-installed"gcab-devel
+installed"gcab-lang
+not-installed"gcad3d
+not-installed"gcal
+not-installed"gcal-lang
+installed"gcc
+not-installed"gcc-32bit
+not-installed"gcc-PIE
+not-installed"gcc-ada
+not-installed"gcc-ada-32bit
+not-installed"gcc-c++
+not-installed"gcc-c++-32bit
+not-installed"gcc-d
+not-installed"gcc-d-32bit
+not-installed"gcc-devel
+not-installed"gcc-fortran
+not-installed"gcc-fortran-32bit
+not-installed"gcc-go
+not-installed"gcc-go-32bit
+not-installed"gcc-info
+not-installed"gcc-locale
+not-installed"gcc-obj-c++
+not-installed"gcc-objc
+not-installed"gcc-objc-32bit
+not-installed"gcc6-gij
+not-installed"gcc6-gij-debuginfo
+not-installed"gcc6-java
+not-installed"gcc6-java-debuginfo
+not-installed"gcc7
+not-installed"gcc7-32bit
+not-installed"gcc7-ada
+not-installed"gcc7-ada-32bit
+not-installed"gcc7-c++
+not-installed"gcc7-c++-32bit
+not-installed"gcc7-devel
+not-installed"gcc7-fortran
+not-installed"gcc7-fortran-32bit
+not-installed"gcc7-go
+not-installed"gcc7-go-32bit
+not-installed"gcc7-info
+not-installed"gcc7-locale
+not-installed"gcc7-obj-c++
+not-installed"gcc7-obj-c++-32bit
+not-installed"gcc7-objc
+not-installed"gcc7-objc-32bit
+not-installed"gcc7-testresults
+installed"gcc8
+not-installed"gcc8-32bit
+not-installed"gcc8-ada
+not-installed"gcc8-ada-32bit
+not-installed"gcc8-c++
+not-installed"gcc8-c++-32bit
+not-installed"gcc8-devel
+not-installed"gcc8-fortran
+not-installed"gcc8-fortran-32bit
+not-installed"gcc8-go
+not-installed"gcc8-go-32bit
+not-installed"gcc8-info
+not-installed"gcc8-locale
+not-installed"gcc8-obj-c++
+not-installed"gcc8-obj-c++-32bit
+not-installed"gcc8-objc
+not-installed"gcc8-objc-32bit
+not-installed"gcc8-testresults
+installed"gcc9
+not-installed"gcc9-32bit
+not-installed"gcc9-ada
+not-installed"gcc9-ada-32bit
+not-installed"gcc9-c++
+not-installed"gcc9-c++-32bit
+not-installed"gcc9-d
+not-installed"gcc9-d-32bit
+not-installed"gcc9-devel
+not-installed"gcc9-fortran
+not-installed"gcc9-fortran-32bit
+not-installed"gcc9-go
+not-installed"gcc9-go-32bit
+not-installed"gcc9-info
+not-installed"gcc9-locale
+not-installed"gcc9-obj-c++
+not-installed"gcc9-obj-c++-32bit
+not-installed"gcc9-objc
+not-installed"gcc9-objc-32bit
+not-installed"gcc9-testresults
+not-installed"gccmakedep
+not-installed"gcdemu
+not-installed"gcdemu-lang
+not-installed"gcin
+not-installed"gcin-anthy
+not-installed"gcin-anthy-32bit
+not-installed"gcin-branding-openSUSE
+not-installed"gcin-branding-upstream
+not-installed"gcin-gtk2
+not-installed"gcin-gtk2-32bit
+not-installed"gcin-gtk3
+not-installed"gcin-gtk3-32bit
+not-installed"gcin-qt5
+not-installed"gcin-qt5-32bit
+not-installed"gcolor2
+not-installed"gcolor3
+not-installed"gcompris
+not-installed"gcompris-devel
+not-installed"gcompris-qt
+not-installed"gcompris-qt-activities
+not-installed"gcompris-qt-lang
+not-installed"gcompris-qt-voices
+not-installed"gcompris-voices-ar
+not-installed"gcompris-voices-br
+not-installed"gcompris-voices-cs
+not-installed"gcompris-voices-da
+not-installed"gcompris-voices-de
+not-installed"gcompris-voices-el
+not-installed"gcompris-voices-en
+not-installed"gcompris-voices-es
+not-installed"gcompris-voices-eu
+not-installed"gcompris-voices-fi
+not-installed"gcompris-voices-fr
+not-installed"gcompris-voices-hi
+not-installed"gcompris-voices-hu
+not-installed"gcompris-voices-id
+not-installed"gcompris-voices-it
+not-installed"gcompris-voices-mr
+not-installed"gcompris-voices-nb
+not-installed"gcompris-voices-nl
+not-installed"gcompris-voices-pt
+not-installed"gcompris-voices-pt-br
+not-installed"gcompris-voices-ru
+not-installed"gcompris-voices-so
+not-installed"gcompris-voices-sr
+not-installed"gcompris-voices-sv
+not-installed"gcompris-voices-tr
+installed"gconf-polkit
+not-installed"gconf-sharp-peditors2
+not-installed"gconf-sharp2
+installed"gconf2
+not-installed"gconf2-32bit
+not-installed"gconf2-devel
+installed"gconf2-lang
+not-installed"gcovr
+not-installed"gcovr-doc
+installed"gcr-data
+installed"gcr-lang
+installed"gcr-prompter
+not-installed"gcr-ssh-askpass
+installed"gcr-viewer
+not-installed"gcstar
+not-installed"gd
+not-installed"gd-devel
+not-installed"gd-devel-32bit
+not-installed"gdal
+not-installed"gdal-devel
+not-installed"gdata-sharp
+not-installed"gdata-sharp-devel
+installed"gdb
+not-installed"gdb-testresults
+not-installed"gdbm-devel
+not-installed"gdbm-devel-32bit
+installed"gdbm-lang
+not-installed"gdbserver
+not-installed"gdk-pixbuf-devel
+not-installed"gdk-pixbuf-devel-32bit
+installed"gdk-pixbuf-lang
+not-installed"gdk-pixbuf-loader-libopenraw
+not-installed"gdk-pixbuf-loader-libopenraw-32bit
+installed"gdk-pixbuf-loader-rsvg
+not-installed"gdk-pixbuf-loader-rsvg-32bit
+installed"gdk-pixbuf-query-loaders
+installed"gdk-pixbuf-query-loaders-32bit
+installed"gdk-pixbuf-thumbnailer
+not-installed"gdl-devel
+not-installed"gdl-lang
+not-installed"gdlmm-devel
+not-installed"gdm
+not-installed"gdm-branding-openSUSE
+not-installed"gdm-branding-upstream
+not-installed"gdm-devel
+not-installed"gdm-lang
+not-installed"gdm-systemd
+installed"gdmflexiserver
+not-installed"gdouros-abydos-fonts
+not-installed"gdouros-abydos-fonts-doc
+not-installed"gdouros-aegean-fonts
+not-installed"gdouros-aegyptus-fonts
+not-installed"gdouros-akkadian-fonts
+not-installed"gdouros-alfios-fonts
+not-installed"gdouros-analecta-fonts
+not-installed"gdouros-anatolian-fonts
+not-installed"gdouros-atavyros-fonts
+not-installed"gdouros-maya-fonts
+not-installed"gdouros-musica-fonts
+not-installed"gdouros-symbola-fonts
+not-installed"gdouros-text-fonts
+not-installed"gdouros-unidings-fonts
+not-installed"geany
+not-installed"geany-devel
+not-installed"geany-doc
+not-installed"geany-lang
+not-installed"geany-plugins
+not-installed"geany-plugins-lang
+not-installed"geary
+not-installed"geary-lang
+not-installed"gebaar-libinput
+not-installed"geda-base
+not-installed"geda-doc
+not-installed"geda-examples
+not-installed"geda-gaf
+not-installed"geda-gattrib
+not-installed"geda-gnetlist
+not-installed"geda-gschem
+not-installed"geda-gsymcheck
+not-installed"geda-symbols
+not-installed"geda-utils
+not-installed"geda-xgsch2pcb
+not-installed"gedit
+not-installed"gedit-devel
+not-installed"gedit-lang
+not-installed"gedit-latex-lang
+not-installed"gedit-plugin-bookmarks
+not-installed"gedit-plugin-bracketcompletion
+not-installed"gedit-plugin-charmap
+not-installed"gedit-plugin-codecomment
+not-installed"gedit-plugin-colorpicker
+not-installed"gedit-plugin-colorschemer
+not-installed"gedit-plugin-commander
+not-installed"gedit-plugin-devhelp
+not-installed"gedit-plugin-drawspaces
+not-installed"gedit-plugin-findinfiles
+not-installed"gedit-plugin-git
+not-installed"gedit-plugin-joinlines
+not-installed"gedit-plugin-latex
+not-installed"gedit-plugin-multiedit
+not-installed"gedit-plugin-smartspaces
+not-installed"gedit-plugin-synctex
+not-installed"gedit-plugin-terminal
+not-installed"gedit-plugin-textsize
+not-installed"gedit-plugin-translate
+not-installed"gedit-plugin-wordcompletion
+not-installed"gedit-plugin-zeitgeist
+not-installed"gedit-plugins
+not-installed"gedit-plugins-data
+not-installed"gedit-plugins-lang
+not-installed"gedit-theme-adapta
+not-installed"gedit-theme-plata
+not-installed"geekodoc
+not-installed"geeqie
+not-installed"geeqie-lang
+not-installed"gegl
+not-installed"gegl-0_4
+not-installed"gegl-0_4-lang
+not-installed"gegl-devel
+not-installed"gegl-doc
+not-installed"geis-devel
+not-installed"geis-tools
+not-installed"gemrb
+not-installed"genders
+not-installed"genders-base
+not-installed"genders-devel
+not-installed"genders-perl-compat
+not-installed"geners-devel
+not-installed"gengetopt
+not-installed"genius
+not-installed"genius-devel
+not-installed"genius-lang
+not-installed"genromfs
+not-installed"gentoo
+not-installed"gentoo
+not-installed"gentoo-debuginfo
+not-installed"gentoo-debugsource
+installed"geoclue2
+not-installed"geoclue2-devel
+not-installed"geocode-glib
+not-installed"geocode-glib-devel
+not-installed"geoipupdate
+not-installed"geos-devel
+not-installed"geotiff
+not-installed"geotiff-devel
+not-installed"gerbv
+not-installed"gerbv-devel
+not-installed"geronimo-annotation-1_0-api
+not-installed"geronimo-commonj-1_1-apis
+not-installed"geronimo-corba-1_0-apis
+not-installed"geronimo-corba-2_3-apis
+not-installed"geronimo-ejb-2_1-api
+not-installed"geronimo-ejb-3_0-api
+not-installed"geronimo-el-1_0-api
+not-installed"geronimo-interceptor-3_0-api
+not-installed"geronimo-j2ee-1_4-apis
+not-installed"geronimo-j2ee-connector-1_5-api
+not-installed"geronimo-j2ee-deployment-1_1-api
+not-installed"geronimo-j2ee-management-1_0-api
+not-installed"geronimo-j2ee-management-1_1-api
+not-installed"geronimo-jacc-1_0-api
+not-installed"geronimo-jacc-1_1-api
+not-installed"geronimo-jaf-1_0_2-api
+not-installed"geronimo-jaf-1_1-api
+not-installed"geronimo-javaee-deployment-1_1-api
+not-installed"geronimo-javamail-1_3_1-api
+not-installed"geronimo-javamail-1_4-api
+not-installed"geronimo-jaxr-1_0-api
+not-installed"geronimo-jaxrpc-1_1-api
+not-installed"geronimo-jms-1_1-api
+not-installed"geronimo-jpa-3_0-api
+not-installed"geronimo-jsp-2_0-api
+not-installed"geronimo-jsp-2_1-api
+not-installed"geronimo-jta-1_0_1B-api
+not-installed"geronimo-jta-1_1-api
+not-installed"geronimo-qname-1_1-api
+not-installed"geronimo-saaj-1_1-api
+not-installed"geronimo-servlet-2_4-api
+not-installed"geronimo-servlet-2_5-api
+not-installed"geronimo-specs-pom
+not-installed"geronimo-stax-1_0-api
+not-installed"geronimo-ws-metadata-2_0-api
+not-installed"get_iplayer
+not-installed"get_iplayer
+not-installed"get_iplayer-pvr
+not-installed"getdata
+not-installed"getdata-devel
+not-installed"getdata-doc
+not-installed"getdp
+not-installed"getdp-devel
+not-installed"getdp-doc
+not-installed"getmail
+not-installed"getmail-doc
+not-installed"gettext-csharp
+not-installed"gettext-its-gtk3
+not-installed"gettext-its-gtk4
+not-installed"gettext-java
+installed"gettext-runtime
+not-installed"gettext-runtime-32bit
+not-installed"gettext-runtime-mini-tools-doc
+not-installed"gettext-runtime-tools-doc
+installed"gettext-tools
+not-installed"gexif
+not-installed"gexif-lang
+not-installed"gf2x-devel
+not-installed"gfan
+not-installed"gfbgraph-devel
+not-installed"gfio
+not-installed"gflags
+not-installed"gflags-devel
+not-installed"gflags-devel-static
+not-installed"gfs2-utils
+not-installed"gfxboot
+not-installed"gfxboot-branding-KDE
+not-installed"gfxboot-branding-openSUSE
+not-installed"gfxboot-branding-upstream
+not-installed"gfxboot-devel
+not-installed"ghc
+not-installed"ghc-Cabal
+not-installed"ghc-Cabal-devel
+not-installed"ghc-Diff
+not-installed"ghc-Diff-devel
+not-installed"ghc-Glob
+not-installed"ghc-Glob-devel
+not-installed"ghc-HTTP
+not-installed"ghc-HTTP-devel
+not-installed"ghc-HUnit
+not-installed"ghc-HUnit-devel
+not-installed"ghc-HsYAML
+not-installed"ghc-HsYAML-devel
+not-installed"ghc-JuicyPixels
+not-installed"ghc-JuicyPixels-devel
+not-installed"ghc-QuickCheck
+not-installed"ghc-QuickCheck-devel
+not-installed"ghc-SDL
+not-installed"ghc-SDL-devel
+not-installed"ghc-SDL-image
+not-installed"ghc-SDL-image-devel
+not-installed"ghc-SDL-mixer
+not-installed"ghc-SDL-mixer-devel
+not-installed"ghc-SHA
+not-installed"ghc-SHA-devel
+not-installed"ghc-ShellCheck
+not-installed"ghc-ShellCheck-devel
+not-installed"ghc-StateVar
+not-installed"ghc-StateVar-devel
+not-installed"ghc-X11
+not-installed"ghc-X11-devel
+not-installed"ghc-X11-xft
+not-installed"ghc-X11-xft-devel
+not-installed"ghc-adjunctions
+not-installed"ghc-adjunctions-devel
+not-installed"ghc-aeson
+not-installed"ghc-aeson-compat
+not-installed"ghc-aeson-compat-devel
+not-installed"ghc-aeson-devel
+not-installed"ghc-aeson-pretty
+not-installed"ghc-aeson-pretty-devel
+not-installed"ghc-annotated-wl-pprint
+not-installed"ghc-annotated-wl-pprint-devel
+not-installed"ghc-ansi-terminal
+not-installed"ghc-ansi-terminal-devel
+not-installed"ghc-ansi-wl-pprint
+not-installed"ghc-ansi-wl-pprint-devel
+not-installed"ghc-array
+not-installed"ghc-array-devel
+not-installed"ghc-asn1-encoding
+not-installed"ghc-asn1-encoding-devel
+not-installed"ghc-asn1-parse
+not-installed"ghc-asn1-parse-devel
+not-installed"ghc-asn1-types
+not-installed"ghc-asn1-types-devel
+not-installed"ghc-async
+not-installed"ghc-async-devel
+not-installed"ghc-attoparsec
+not-installed"ghc-attoparsec-devel
+not-installed"ghc-attoparsec-iso8601
+not-installed"ghc-attoparsec-iso8601-devel
+not-installed"ghc-auto-update
+not-installed"ghc-auto-update-devel
+not-installed"ghc-base
+not-installed"ghc-base-compat
+not-installed"ghc-base-compat-devel
+not-installed"ghc-base-devel
+not-installed"ghc-base-orphans
+not-installed"ghc-base-orphans-devel
+not-installed"ghc-base-prelude
+not-installed"ghc-base-prelude-devel
+not-installed"ghc-base16-bytestring
+not-installed"ghc-base16-bytestring-devel
+not-installed"ghc-base64-bytestring
+not-installed"ghc-base64-bytestring-devel
+not-installed"ghc-basement
+not-installed"ghc-basement-devel
+not-installed"ghc-bifunctors
+not-installed"ghc-bifunctors-devel
+not-installed"ghc-binary
+not-installed"ghc-binary-devel
+not-installed"ghc-bindings-uname
+not-installed"ghc-bindings-uname-devel
+not-installed"ghc-bitarray
+not-installed"ghc-bitarray-devel
+not-installed"ghc-blaze-builder
+not-installed"ghc-blaze-builder-devel
+not-installed"ghc-blaze-html
+not-installed"ghc-blaze-html-devel
+not-installed"ghc-blaze-markup
+not-installed"ghc-blaze-markup-devel
+not-installed"ghc-byteable
+not-installed"ghc-byteable-devel
+not-installed"ghc-bytestring
+not-installed"ghc-bytestring-devel
+not-installed"ghc-cabal-doctest
+not-installed"ghc-cabal-doctest-devel
+not-installed"ghc-cabal2spec
+not-installed"ghc-cabal2spec-devel
+not-installed"ghc-call-stack
+not-installed"ghc-call-stack-devel
+not-installed"ghc-case-insensitive
+not-installed"ghc-case-insensitive-devel
+not-installed"ghc-cereal
+not-installed"ghc-cereal-devel
+not-installed"ghc-clock
+not-installed"ghc-clock-devel
+not-installed"ghc-cmark-gfm
+not-installed"ghc-cmark-gfm-devel
+not-installed"ghc-cmdargs
+not-installed"ghc-cmdargs-devel
+not-installed"ghc-colour
+not-installed"ghc-colour-devel
+not-installed"ghc-comonad
+not-installed"ghc-comonad-devel
+not-installed"ghc-compiler
+not-installed"ghc-conduit
+not-installed"ghc-conduit-combinators
+not-installed"ghc-conduit-combinators-devel
+not-installed"ghc-conduit-devel
+not-installed"ghc-conduit-extra
+not-installed"ghc-conduit-extra-devel
+not-installed"ghc-connection
+not-installed"ghc-connection-devel
+not-installed"ghc-constraints
+not-installed"ghc-constraints-devel
+not-installed"ghc-containers
+not-installed"ghc-containers-devel
+not-installed"ghc-contravariant
+not-installed"ghc-contravariant-devel
+not-installed"ghc-cookie
+not-installed"ghc-cookie-devel
+not-installed"ghc-cryptohash
+not-installed"ghc-cryptohash-devel
+not-installed"ghc-cryptohash-sha256
+not-installed"ghc-cryptohash-sha256-devel
+not-installed"ghc-cryptonite
+not-installed"ghc-cryptonite-conduit
+not-installed"ghc-cryptonite-conduit-devel
+not-installed"ghc-cryptonite-devel
+not-installed"ghc-data-default
+not-installed"ghc-data-default-class
+not-installed"ghc-data-default-class-devel
+not-installed"ghc-data-default-devel
+not-installed"ghc-data-default-instances-containers
+not-installed"ghc-data-default-instances-containers-devel
+not-installed"ghc-data-default-instances-dlist
+not-installed"ghc-data-default-instances-dlist-devel
+not-installed"ghc-data-default-instances-old-locale
+not-installed"ghc-data-default-instances-old-locale-devel
+not-installed"ghc-dbus
+not-installed"ghc-dbus-devel
+not-installed"ghc-deepseq
+not-installed"ghc-deepseq-devel
+not-installed"ghc-digest
+not-installed"ghc-digest-devel
+not-installed"ghc-directory
+not-installed"ghc-directory-devel
+not-installed"ghc-distribution-opensuse
+not-installed"ghc-distribution-opensuse-devel
+not-installed"ghc-distributive
+not-installed"ghc-distributive-devel
+not-installed"ghc-dlist
+not-installed"ghc-dlist-devel
+not-installed"ghc-doctemplates
+not-installed"ghc-doctemplates-devel
+not-installed"ghc-easy-file
+not-installed"ghc-easy-file-devel
+not-installed"ghc-echo
+not-installed"ghc-echo-devel
+not-installed"ghc-ed25519
+not-installed"ghc-ed25519-devel
+not-installed"ghc-edit-distance
+not-installed"ghc-edit-distance-devel
+not-installed"ghc-either
+not-installed"ghc-either-devel
+not-installed"ghc-enclosed-exceptions
+not-installed"ghc-enclosed-exceptions-devel
+not-installed"ghc-erf
+not-installed"ghc-erf-devel
+not-installed"ghc-exceptions
+not-installed"ghc-exceptions-devel
+not-installed"ghc-extensible-exceptions
+not-installed"ghc-extensible-exceptions-devel
+not-installed"ghc-extra
+not-installed"ghc-extra-devel
+not-installed"ghc-fail
+not-installed"ghc-fail-devel
+not-installed"ghc-fast-logger
+not-installed"ghc-fast-logger-devel
+not-installed"ghc-file-embed
+not-installed"ghc-file-embed-devel
+not-installed"ghc-filelock
+not-installed"ghc-filelock-devel
+not-installed"ghc-filepath
+not-installed"ghc-filepath-devel
+not-installed"ghc-foldl
+not-installed"ghc-foldl-devel
+not-installed"ghc-free
+not-installed"ghc-free-devel
+not-installed"ghc-fsnotify
+not-installed"ghc-fsnotify-devel
+not-installed"ghc-generic-deriving
+not-installed"ghc-generic-deriving-devel
+not-installed"ghc-ghc
+not-installed"ghc-ghc-boot
+not-installed"ghc-ghc-boot-devel
+not-installed"ghc-ghc-boot-th
+not-installed"ghc-ghc-boot-th-devel
+not-installed"ghc-ghc-compact
+not-installed"ghc-ghc-compact-devel
+not-installed"ghc-ghc-devel
+not-installed"ghc-ghc-heap
+not-installed"ghc-ghc-heap-devel
+not-installed"ghc-ghci
+not-installed"ghc-ghci-devel
+not-installed"ghc-gitrev
+not-installed"ghc-gitrev-devel
+not-installed"ghc-hackage-security
+not-installed"ghc-hackage-security-devel
+not-installed"ghc-haddock-library
+not-installed"ghc-haddock-library-devel
+not-installed"ghc-hashable
+not-installed"ghc-hashable-devel
+not-installed"ghc-haskeline
+not-installed"ghc-haskeline-devel
+not-installed"ghc-haskell-src-exts
+not-installed"ghc-haskell-src-exts-devel
+not-installed"ghc-hi-file-parser
+not-installed"ghc-hi-file-parser-devel
+not-installed"ghc-hinotify
+not-installed"ghc-hinotify-devel
+not-installed"ghc-hostname
+not-installed"ghc-hostname-devel
+not-installed"ghc-hourglass
+not-installed"ghc-hourglass-devel
+not-installed"ghc-hpack
+not-installed"ghc-hpack-devel
+not-installed"ghc-hpc
+not-installed"ghc-hpc-devel
+not-installed"ghc-hs-bibutils
+not-installed"ghc-hs-bibutils-devel
+not-installed"ghc-hsemail
+not-installed"ghc-hsemail-devel
+not-installed"ghc-hslua
+not-installed"ghc-hslua-devel
+not-installed"ghc-hslua-module-system
+not-installed"ghc-hslua-module-system-devel
+not-installed"ghc-hslua-module-text
+not-installed"ghc-hslua-module-text-devel
+not-installed"ghc-hspec
+not-installed"ghc-hspec-core
+not-installed"ghc-hspec-core-devel
+not-installed"ghc-hspec-devel
+not-installed"ghc-hspec-discover
+not-installed"ghc-hspec-discover-devel
+not-installed"ghc-hspec-expectations
+not-installed"ghc-hspec-expectations-devel
+not-installed"ghc-hspec-smallcheck
+not-installed"ghc-hspec-smallcheck-devel
+not-installed"ghc-http-api-data
+not-installed"ghc-http-api-data-devel
+not-installed"ghc-http-client
+not-installed"ghc-http-client-devel
+not-installed"ghc-http-client-tls
+not-installed"ghc-http-client-tls-devel
+not-installed"ghc-http-conduit
+not-installed"ghc-http-conduit-devel
+not-installed"ghc-http-download
+not-installed"ghc-http-download-devel
+not-installed"ghc-http-types
+not-installed"ghc-http-types-devel
+not-installed"ghc-hxt
+not-installed"ghc-hxt-charproperties
+not-installed"ghc-hxt-charproperties-devel
+not-installed"ghc-hxt-devel
+not-installed"ghc-hxt-regex-xmlschema
+not-installed"ghc-hxt-regex-xmlschema-devel
+not-installed"ghc-hxt-unicode
+not-installed"ghc-hxt-unicode-devel
+not-installed"ghc-infer-license
+not-installed"ghc-infer-license-devel
+not-installed"ghc-integer-logarithms
+not-installed"ghc-integer-logarithms-devel
+not-installed"ghc-invariant
+not-installed"ghc-invariant-devel
+not-installed"ghc-ipynb
+not-installed"ghc-ipynb-devel
+not-installed"ghc-iso8601-time
+not-installed"ghc-iso8601-time-devel
+not-installed"ghc-iwlib
+not-installed"ghc-iwlib-devel
+not-installed"ghc-json
+not-installed"ghc-json-devel
+not-installed"ghc-kan-extensions
+not-installed"ghc-kan-extensions-devel
+not-installed"ghc-lens
+not-installed"ghc-lens-devel
+not-installed"ghc-libiserv
+not-installed"ghc-libiserv-devel
+not-installed"ghc-libraries
+not-installed"ghc-libxml-sax
+not-installed"ghc-libxml-sax-devel
+not-installed"ghc-libyaml
+not-installed"ghc-libyaml-devel
+not-installed"ghc-lifted-async
+not-installed"ghc-lifted-async-devel
+not-installed"ghc-lifted-base
+not-installed"ghc-lifted-base-devel
+not-installed"ghc-logict
+not-installed"ghc-logict-devel
+not-installed"ghc-managed
+not-installed"ghc-managed-devel
+not-installed"ghc-math-functions
+not-installed"ghc-math-functions-devel
+not-installed"ghc-megaparsec
+not-installed"ghc-megaparsec-devel
+not-installed"ghc-memory
+not-installed"ghc-memory-devel
+not-installed"ghc-microlens
+not-installed"ghc-microlens-devel
+not-installed"ghc-microlens-th
+not-installed"ghc-microlens-th-devel
+not-installed"ghc-mime-types
+not-installed"ghc-mime-types-devel
+not-installed"ghc-mintty
+not-installed"ghc-mintty-devel
+not-installed"ghc-monad-control
+not-installed"ghc-monad-control-devel
+not-installed"ghc-monad-logger
+not-installed"ghc-monad-logger-devel
+not-installed"ghc-monad-loops
+not-installed"ghc-monad-loops-devel
+not-installed"ghc-mono-traversable
+not-installed"ghc-mono-traversable-devel
+not-installed"ghc-mtl
+not-installed"ghc-mtl-devel
+not-installed"ghc-mustache
+not-installed"ghc-mustache-devel
+not-installed"ghc-mwc-random
+not-installed"ghc-mwc-random-devel
+not-installed"ghc-neat-interpolation
+not-installed"ghc-neat-interpolation-devel
+not-installed"ghc-network
+not-installed"ghc-network-devel
+not-installed"ghc-network-uri
+not-installed"ghc-network-uri-devel
+not-installed"ghc-old-locale
+not-installed"ghc-old-locale-devel
+not-installed"ghc-old-time
+not-installed"ghc-old-time-devel
+not-installed"ghc-open-browser
+not-installed"ghc-open-browser-devel
+not-installed"ghc-optional-args
+not-installed"ghc-optional-args-devel
+not-installed"ghc-optparse-applicative
+not-installed"ghc-optparse-applicative-devel
+not-installed"ghc-optparse-simple
+not-installed"ghc-optparse-simple-devel
+not-installed"ghc-pandoc
+not-installed"ghc-pandoc-citeproc
+not-installed"ghc-pandoc-citeproc-devel
+not-installed"ghc-pandoc-devel
+not-installed"ghc-pandoc-types
+not-installed"ghc-pandoc-types-devel
+not-installed"ghc-pantry
+not-installed"ghc-pantry-devel
+not-installed"ghc-parallel
+not-installed"ghc-parallel-devel
+not-installed"ghc-parsec
+not-installed"ghc-parsec-class
+not-installed"ghc-parsec-class-devel
+not-installed"ghc-parsec-devel
+not-installed"ghc-parsec-numbers
+not-installed"ghc-parsec-numbers-devel
+not-installed"ghc-parser-combinators
+not-installed"ghc-parser-combinators-devel
+not-installed"ghc-path
+not-installed"ghc-path-devel
+not-installed"ghc-path-io
+not-installed"ghc-path-io-devel
+not-installed"ghc-path-pieces
+not-installed"ghc-path-pieces-devel
+not-installed"ghc-pem
+not-installed"ghc-pem-devel
+not-installed"ghc-persistent
+not-installed"ghc-persistent-devel
+not-installed"ghc-persistent-sqlite
+not-installed"ghc-persistent-sqlite-devel
+not-installed"ghc-persistent-template
+not-installed"ghc-persistent-template-devel
+not-installed"ghc-pretty
+not-installed"ghc-pretty-devel
+not-installed"ghc-primitive
+not-installed"ghc-primitive-devel
+not-installed"ghc-process
+not-installed"ghc-process-devel
+not-installed"ghc-profunctors
+not-installed"ghc-profunctors-devel
+not-installed"ghc-project-template
+not-installed"ghc-project-template-devel
+not-installed"ghc-quickcheck-io
+not-installed"ghc-quickcheck-io-devel
+not-installed"ghc-random
+not-installed"ghc-random-devel
+not-installed"ghc-reflection
+not-installed"ghc-reflection-devel
+not-installed"ghc-regex-applicative
+not-installed"ghc-regex-applicative-devel
+not-installed"ghc-regex-applicative-text
+not-installed"ghc-regex-applicative-text-devel
+not-installed"ghc-regex-base
+not-installed"ghc-regex-base-devel
+not-installed"ghc-regex-compat
+not-installed"ghc-regex-compat-devel
+not-installed"ghc-regex-pcre-builtin
+not-installed"ghc-regex-pcre-builtin-devel
+not-installed"ghc-regex-posix
+not-installed"ghc-regex-posix-devel
+not-installed"ghc-regex-tdfa
+not-installed"ghc-regex-tdfa-devel
+not-installed"ghc-resolv
+not-installed"ghc-resolv-devel
+not-installed"ghc-resource-pool
+not-installed"ghc-resource-pool-devel
+not-installed"ghc-resourcet
+not-installed"ghc-resourcet-devel
+not-installed"ghc-retry
+not-installed"ghc-retry-devel
+not-installed"ghc-rfc5051
+not-installed"ghc-rfc5051-devel
+not-installed"ghc-rio
+not-installed"ghc-rio-devel
+not-installed"ghc-rio-orphans
+not-installed"ghc-rio-orphans-devel
+not-installed"ghc-rio-prettyprint
+not-installed"ghc-rio-prettyprint-devel
+not-installed"ghc-rpm-macros
+not-installed"ghc-rpm-macros-extra
+not-installed"ghc-safe
+not-installed"ghc-safe-devel
+not-installed"ghc-safe-exceptions
+not-installed"ghc-safe-exceptions-devel
+not-installed"ghc-scientific
+not-installed"ghc-scientific-devel
+not-installed"ghc-semigroupoids
+not-installed"ghc-semigroupoids-devel
+not-installed"ghc-semigroups
+not-installed"ghc-semigroups-devel
+not-installed"ghc-setenv
+not-installed"ghc-setenv-devel
+not-installed"ghc-setlocale
+not-installed"ghc-setlocale-devel
+not-installed"ghc-shelly
+not-installed"ghc-shelly-devel
+not-installed"ghc-silently
+not-installed"ghc-silently-devel
+not-installed"ghc-skylighting
+not-installed"ghc-skylighting-core
+not-installed"ghc-skylighting-core-devel
+not-installed"ghc-skylighting-devel
+not-installed"ghc-smallcheck
+not-installed"ghc-smallcheck-devel
+not-installed"ghc-socks
+not-installed"ghc-socks-devel
+not-installed"ghc-split
+not-installed"ghc-split-devel
+not-installed"ghc-splitmix
+not-installed"ghc-splitmix-devel
+not-installed"ghc-stack
+not-installed"ghc-stack-devel
+not-installed"ghc-stm
+not-installed"ghc-stm-chans
+not-installed"ghc-stm-chans-devel
+not-installed"ghc-stm-devel
+not-installed"ghc-store
+not-installed"ghc-store-core
+not-installed"ghc-store-core-devel
+not-installed"ghc-store-devel
+not-installed"ghc-streaming-commons
+not-installed"ghc-streaming-commons-devel
+not-installed"ghc-syb
+not-installed"ghc-syb-devel
+not-installed"ghc-system-fileio
+not-installed"ghc-system-fileio-devel
+not-installed"ghc-system-filepath
+not-installed"ghc-system-filepath-devel
+not-installed"ghc-tagged
+not-installed"ghc-tagged-devel
+not-installed"ghc-tagsoup
+not-installed"ghc-tagsoup-devel
+not-installed"ghc-tar
+not-installed"ghc-tar-conduit
+not-installed"ghc-tar-conduit-devel
+not-installed"ghc-tar-devel
+not-installed"ghc-template-haskell
+not-installed"ghc-template-haskell-devel
+not-installed"ghc-temporary
+not-installed"ghc-temporary-devel
+not-installed"ghc-terminal-size
+not-installed"ghc-terminal-size-devel
+not-installed"ghc-terminfo
+not-installed"ghc-terminfo-devel
+not-installed"ghc-texmath
+not-installed"ghc-texmath-devel
+not-installed"ghc-text
+not-installed"ghc-text-devel
+not-installed"ghc-text-metrics
+not-installed"ghc-text-metrics-devel
+not-installed"ghc-tf-random
+not-installed"ghc-tf-random-devel
+not-installed"ghc-th-abstraction
+not-installed"ghc-th-abstraction-devel
+not-installed"ghc-th-expand-syns
+not-installed"ghc-th-expand-syns-devel
+not-installed"ghc-th-lift
+not-installed"ghc-th-lift-devel
+not-installed"ghc-th-lift-instances
+not-installed"ghc-th-lift-instances-devel
+not-installed"ghc-th-orphans
+not-installed"ghc-th-orphans-devel
+not-installed"ghc-th-reify-many
+not-installed"ghc-th-reify-many-devel
+not-installed"ghc-th-utilities
+not-installed"ghc-th-utilities-devel
+not-installed"ghc-time
+not-installed"ghc-time-compat
+not-installed"ghc-time-compat-devel
+not-installed"ghc-time-devel
+not-installed"ghc-time-locale-compat
+not-installed"ghc-time-locale-compat-devel
+not-installed"ghc-timezone-olson
+not-installed"ghc-timezone-olson-devel
+not-installed"ghc-timezone-series
+not-installed"ghc-timezone-series-devel
+not-installed"ghc-tls
+not-installed"ghc-tls-devel
+not-installed"ghc-transformers
+not-installed"ghc-transformers-base
+not-installed"ghc-transformers-base-devel
+not-installed"ghc-transformers-compat
+not-installed"ghc-transformers-compat-devel
+not-installed"ghc-transformers-devel
+not-installed"ghc-turtle
+not-installed"ghc-turtle-devel
+not-installed"ghc-typed-process
+not-installed"ghc-typed-process-devel
+not-installed"ghc-unicode-transforms
+not-installed"ghc-unicode-transforms-devel
+not-installed"ghc-unix
+not-installed"ghc-unix-compat
+not-installed"ghc-unix-compat-devel
+not-installed"ghc-unix-devel
+not-installed"ghc-unix-time
+not-installed"ghc-unix-time-devel
+not-installed"ghc-unliftio
+not-installed"ghc-unliftio-core
+not-installed"ghc-unliftio-core-devel
+not-installed"ghc-unliftio-devel
+not-installed"ghc-unordered-containers
+not-installed"ghc-unordered-containers-devel
+not-installed"ghc-uri-bytestring
+not-installed"ghc-uri-bytestring-devel
+not-installed"ghc-utf8-string
+not-installed"ghc-utf8-string-devel
+not-installed"ghc-uuid-types
+not-installed"ghc-uuid-types-devel
+not-installed"ghc-vector
+not-installed"ghc-vector-algorithms
+not-installed"ghc-vector-algorithms-devel
+not-installed"ghc-vector-builder
+not-installed"ghc-vector-builder-devel
+not-installed"ghc-vector-devel
+not-installed"ghc-vector-th-unbox
+not-installed"ghc-vector-th-unbox-devel
+not-installed"ghc-void
+not-installed"ghc-void-devel
+not-installed"ghc-x509
+not-installed"ghc-x509-devel
+not-installed"ghc-x509-store
+not-installed"ghc-x509-store-devel
+not-installed"ghc-x509-system
+not-installed"ghc-x509-system-devel
+not-installed"ghc-x509-validation
+not-installed"ghc-x509-validation-devel
+not-installed"ghc-xhtml
+not-installed"ghc-xhtml-devel
+not-installed"ghc-xml
+not-installed"ghc-xml-conduit
+not-installed"ghc-xml-conduit-devel
+not-installed"ghc-xml-devel
+not-installed"ghc-xml-types
+not-installed"ghc-xml-types-devel
+not-installed"ghc-xmobar
+not-installed"ghc-xmobar-devel
+not-installed"ghc-xmonad
+not-installed"ghc-xmonad-contrib
+not-installed"ghc-xmonad-contrib-devel
+not-installed"ghc-xmonad-devel
+not-installed"ghc-yaml
+not-installed"ghc-yaml-devel
+not-installed"ghc-zip-archive
+not-installed"ghc-zip-archive-devel
+not-installed"ghc-zlib
+not-installed"ghc-zlib-devel
+not-installed"ghex
+not-installed"ghex-devel
+not-installed"ghex-lang
+installed"ghostscript
+not-installed"ghostscript-devel
+not-installed"ghostscript-fonts
+not-installed"ghostscript-fonts-grops
+installed"ghostscript-fonts-other
+installed"ghostscript-fonts-std
+installed"ghostscript-x11
+not-installed"ghostview
+not-installed"ghostwriter
+not-installed"ghostwriter-lang
+not-installed"giada
+not-installed"giblib-devel
+not-installed"giflib-devel
+not-installed"giflib-devel-32bit
+not-installed"giflib-progs
+not-installed"gifsicle
+not-installed"gigedit
+not-installed"gigedit
+not-installed"gigedit-debuginfo
+not-installed"gigedit-debugsource
+not-installed"giggle
+not-installed"giggle-devel
+not-installed"giggle-lang
+not-installed"gigolo
+not-installed"gigolo-lang
+not-installed"gimmix
+not-installed"gimmix
+not-installed"gimmix-debuginfo
+not-installed"gimmix-debugsource
+not-installed"gimp
+not-installed"gimp-devel
+not-installed"gimp-gap
+not-installed"gimp-gap-lang
+not-installed"gimp-help
+not-installed"gimp-help-ca
+not-installed"gimp-help-da
+not-installed"gimp-help-de
+not-installed"gimp-help-el
+not-installed"gimp-help-en_GB
+not-installed"gimp-help-es
+not-installed"gimp-help-fi
+not-installed"gimp-help-fr
+not-installed"gimp-help-hr
+not-installed"gimp-help-it
+not-installed"gimp-help-ja
+not-installed"gimp-help-ko
+not-installed"gimp-help-lt
+not-installed"gimp-help-nl
+not-installed"gimp-help-nn
+not-installed"gimp-help-pl
+not-installed"gimp-help-pt_BR
+not-installed"gimp-help-ru
+not-installed"gimp-help-sl
+not-installed"gimp-help-sv
+not-installed"gimp-help-zh
+not-installed"gimp-lang
+not-installed"gimp-plugin-aa
+not-installed"gimp-plugin-dds
+not-installed"gimp-plugin-dds-doc
+not-installed"gimp-plugin-lqr
+not-installed"gimp-plugin-lqr-lang
+not-installed"gimp-plugins-python
+not-installed"gimp-save-for-web
+not-installed"gimp-save-for-web-lang
+not-installed"gimp-ufraw
+not-installed"ginac
+installed"gio-branding-openSUSE
+not-installed"gio-branding-upstream
+not-installed"gio-sharp
+not-installed"gio-sharp-devel
+not-installed"gio-sharp3
+not-installed"gio-sharp3-devel
+not-installed"girara-devel
+installed"girepository-1_0
+installed"git
+not-installed"git-arch
+not-installed"git-bz
+not-installed"git-cola
+installed"git-core
+not-installed"git-credential-gnome-keyring
+not-installed"git-credential-libsecret
+installed"git-crypt
+installed"git-cvs
+not-installed"git-daemon
+not-installed"git-doc
+installed"git-email
+installed"git-gui
+not-installed"git-merge-changelog
+not-installed"git-p4
+not-installed"git-remote-gcrypt
+not-installed"git-review
+installed"git-svn
+not-installed"git-sync
+not-installed"git-test
+not-installed"git-web
+not-installed"gitg
+not-installed"gitg-lang
+installed"gitk
+not-installed"gitolite
+not-installed"gitslave
+not-installed"gitslave-doc
+not-installed"givaro-devel
+not-installed"givaro-doc
+not-installed"gjiten
+not-installed"gjs
+not-installed"gkeyfile-sharp
+not-installed"gkeyfile-sharp-devel
+not-installed"gkrellm
+not-installed"gkrellm-cpupower
+not-installed"gkrellm-devel
+not-installed"gkrellm-lang
+not-installed"gkrellmd
+not-installed"gl2ps-devel
+not-installed"glabels
+not-installed"glabels-devel
+not-installed"glabels-lang
+not-installed"glade
+not-installed"glade-catalog-anjuta
+not-installed"glade-catalog-evolution
+not-installed"glade-catalog-gitg
+not-installed"glade-catalog-gtkhtml
+not-installed"glade-catalog-gtksourceview
+not-installed"glade-catalog-gtksourceview4
+not-installed"glade-catalog-libhandy
+not-installed"glade-catalog-libpeas
+not-installed"glade-lang
+not-installed"glade-sharp2
+not-installed"glassfish-annotation-api
+not-installed"glassfish-annotation-api-javadoc
+not-installed"glassfish-dtd-parser
+not-installed"glassfish-el
+not-installed"glassfish-el-api
+not-installed"glassfish-el-javadoc
+not-installed"glassfish-jsp-api
+not-installed"glassfish-jsp-api-javadoc
+not-installed"glassfish-master-pom
+not-installed"glassfish-servlet-api
+not-installed"glassfish-servlet-api-javadoc
+not-installed"glaurung121
+not-installed"glaurung121
+not-installed"glaurung121-debuginfo
+not-installed"glaurung121-debugsource
+not-installed"glaurung22
+not-installed"glaurung22
+not-installed"glaurung22-debuginfo
+not-installed"glaurung22-debugsource
+not-installed"glava
+not-installed"glew
+not-installed"glew-devel
+not-installed"glfw2-devel
+not-installed"gli
+not-installed"gli-devel
+not-installed"gli-doc
+installed"glib-networking
+not-installed"glib-networking-32bit
+installed"glib-networking-lang
+not-installed"glib-sharp2
+not-installed"glib-sharp3
+not-installed"glib2-devel
+not-installed"glib2-devel-32bit
+not-installed"glib2-devel-static
+installed"glib2-lang
+not-installed"glib2-tests
+installed"glib2-tools
+not-installed"glib2-tools-32bit
+installed"glibc
+installed"glibc-32bit
+installed"glibc-devel
+not-installed"glibc-devel-32bit
+not-installed"glibc-devel-static
+not-installed"glibc-devel-static-32bit
+installed"glibc-extra
+not-installed"glibc-html
+not-installed"glibc-i18ndata
+not-installed"glibc-info
+installed"glibc-locale
+installed"glibc-locale-base
+not-installed"glibc-locale-base-32bit
+not-installed"glibc-profile
+not-installed"glibc-profile-32bit
+not-installed"glibc-utils
+not-installed"glibc-utils-32bit
+not-installed"glibmm2-devel
+not-installed"glibmm2_4-devel
+not-installed"glm-devel
+not-installed"glm-doc
+not-installed"glmark2
+not-installed"global
+not-installed"glog-devel
+not-installed"glom
+not-installed"glom-lang
+not-installed"gloox-devel
+not-installed"glpk
+not-installed"glpk-devel
+not-installed"glpk-doc
+not-installed"glslang-devel
+not-installed"glu-devel
+not-installed"glu-devel-32bit
+not-installed"glucat-devel
+not-installed"glucat-doc
+not-installed"gluegen2
+not-installed"gluegen2-devel
+not-installed"glusterfs
+not-installed"glusterfs-devel
+not-installed"glyr-devel
+not-installed"glyrc
+installed"gmenudbusmenuproxy
+not-installed"gmerlin
+not-installed"gmerlin
+not-installed"gmerlin-alsamixer
+not-installed"gmerlin-alsamixer-debuginfo
+not-installed"gmerlin-avdecoder
+not-installed"gmerlin-avdecoder
+not-installed"gmerlin-avdecoder-debuginfo
+not-installed"gmerlin-avdecoder-debugsource
+not-installed"gmerlin-avdecoder-lang
+not-installed"gmerlin-avdecoder-plugins
+not-installed"gmerlin-avdecoder-plugins-debuginfo
+not-installed"gmerlin-debuginfo
+not-installed"gmerlin-doc
+not-installed"gmerlin-effectv
+not-installed"gmerlin-effectv
+not-installed"gmerlin-effectv-debuginfo
+not-installed"gmerlin-effectv-debugsource
+not-installed"gmerlin-encoders
+not-installed"gmerlin-encoders
+not-installed"gmerlin-encoders-debuginfo
+not-installed"gmerlin-encoders-debugsource
+not-installed"gmerlin-encoders-lang
+not-installed"gmerlin-gavf-tools
+not-installed"gmerlin-gavf-tools-debuginfo
+not-installed"gmerlin-jack
+not-installed"gmerlin-jack-debuginfo
+not-installed"gmerlin-kbd
+not-installed"gmerlin-kbd-debuginfo
+not-installed"gmerlin-lang
+not-installed"gmerlin-player
+not-installed"gmerlin-player-debuginfo
+not-installed"gmerlin-plugincfg
+not-installed"gmerlin-plugincfg-debuginfo
+not-installed"gmerlin-recorder
+not-installed"gmerlin-recorder-debuginfo
+not-installed"gmerlin-transcoder
+not-installed"gmerlin-transcoder-debuginfo
+not-installed"gmerlin-utils
+not-installed"gmerlin-utils-debuginfo
+not-installed"gmerlin-visualizer
+not-installed"gmerlin-visualizer-debuginfo
+not-installed"gmime-devel
+not-installed"gmime2_6-devel
+not-installed"gmime2_6-sharp
+not-installed"gmock
+installed"gmp-devel
+not-installed"gmp-devel-32bit
+not-installed"gmp-ecm
+not-installed"gmp-ecm-devel
+not-installed"gmp3info
+not-installed"gmp3info-debuginfo
+not-installed"gmpc
+not-installed"gmpc
+not-installed"gmpc-alarm
+not-installed"gmpc-alarm
+not-installed"gmpc-alarm-debuginfo
+not-installed"gmpc-alarm-debugsource
+not-installed"gmpc-avahi
+not-installed"gmpc-avahi
+not-installed"gmpc-avahi-debuginfo
+not-installed"gmpc-avahi-debugsource
+not-installed"gmpc-awn
+not-installed"gmpc-awn
+not-installed"gmpc-awn-debuginfo
+not-installed"gmpc-awn-debugsource
+not-installed"gmpc-debuginfo
+not-installed"gmpc-debugsource
+not-installed"gmpc-devel
+not-installed"gmpc-discogs
+not-installed"gmpc-discogs
+not-installed"gmpc-discogs-debuginfo
+not-installed"gmpc-discogs-debugsource
+not-installed"gmpc-doc
+not-installed"gmpc-extraplaylist
+not-installed"gmpc-extraplaylist
+not-installed"gmpc-extraplaylist-debuginfo
+not-installed"gmpc-extraplaylist-debugsource
+not-installed"gmpc-last-fm
+not-installed"gmpc-last-fm
+not-installed"gmpc-last-fm-debuginfo
+not-installed"gmpc-last-fm-debugsource
+not-installed"gmpc-libnotify
+not-installed"gmpc-libnotify
+not-installed"gmpc-libnotify-debuginfo
+not-installed"gmpc-libnotify-debugsource
+not-installed"gmpc-lirc
+not-installed"gmpc-lirc
+not-installed"gmpc-lirc-debuginfo
+not-installed"gmpc-lirc-debugsource
+not-installed"gmpc-lyrics
+not-installed"gmpc-lyrics
+not-installed"gmpc-lyrics-debuginfo
+not-installed"gmpc-lyrics-debugsource
+not-installed"gmpc-lyricsplugin
+not-installed"gmpc-lyricsplugin
+not-installed"gmpc-lyricsplugin-debuginfo
+not-installed"gmpc-lyricsplugin-debugsource
+not-installed"gmpc-lyricwiki
+not-installed"gmpc-lyricwiki
+not-installed"gmpc-lyricwiki-debuginfo
+not-installed"gmpc-lyricwiki-debugsource
+not-installed"gmpc-mdcover
+not-installed"gmpc-mdcover
+not-installed"gmpc-mdcover-debuginfo
+not-installed"gmpc-mdcover-debugsource
+not-installed"gmpc-mmkeys
+not-installed"gmpc-mmkeys
+not-installed"gmpc-mmkeys-debuginfo
+not-installed"gmpc-mmkeys-debugsource
+not-installed"gmpc-mserver
+not-installed"gmpc-mserver
+not-installed"gmpc-mserver-debuginfo
+not-installed"gmpc-mserver-debugsource
+not-installed"gmpc-notify-osd
+not-installed"gmpc-notify-osd
+not-installed"gmpc-notify-osd-debuginfo
+not-installed"gmpc-notify-osd-debugsource
+not-installed"gmpc-playlistsort
+not-installed"gmpc-playlistsort
+not-installed"gmpc-playlistsort-debuginfo
+not-installed"gmpc-playlistsort-debugsource
+not-installed"gmpc-shout
+not-installed"gmpc-shout
+not-installed"gmpc-shout-debuginfo
+not-installed"gmpc-shout-debugsource
+not-installed"gmplayer
+not-installed"gmusicbrowser
+not-installed"gmusicbrowser-lang
+not-installed"gn
+not-installed"gnaural
+not-installed"gnaural
+not-installed"gnaural-debuginfo
+not-installed"gnaural-debugsource
+not-installed"gnokii
+not-installed"gnokii-devel
+not-installed"gnokii-lang
+not-installed"gnokii-smsd
+not-installed"gnome
+not-installed"gnome-2048
+not-installed"gnome-2048-lang
+not-installed"gnome-autoar-devel
+not-installed"gnome-backgrounds
+not-installed"gnome-backgrounds-lang
+not-installed"gnome-bluetooth
+not-installed"gnome-bluetooth-devel
+not-installed"gnome-bluetooth-lang
+not-installed"gnome-books
+not-installed"gnome-books-lang
+not-installed"gnome-boxes
+not-installed"gnome-boxes-lang
+not-installed"gnome-break-timer
+not-installed"gnome-break-timer-lang
+not-installed"gnome-btdownload
+not-installed"gnome-btdownload
+not-installed"gnome-builder
+not-installed"gnome-builder-doc
+not-installed"gnome-builder-lang
+not-installed"gnome-builder-plugin-jedi
+not-installed"gnome-builder-plugin-jhbuild
+not-installed"gnome-builder-plugin-vala-pack
+not-installed"gnome-calculator
+not-installed"gnome-calculator-lang
+not-installed"gnome-calendar
+not-installed"gnome-calendar-lang
+not-installed"gnome-characters
+not-installed"gnome-characters-lang
+not-installed"gnome-chess
+not-installed"gnome-chess-lang
+not-installed"gnome-clocks
+not-installed"gnome-clocks-lang
+not-installed"gnome-color-manager
+not-installed"gnome-color-manager-lang
+not-installed"gnome-colors-icon-theme
+not-installed"gnome-commander
+not-installed"gnome-commander-doc
+not-installed"gnome-commander-lang
+not-installed"gnome-common
+not-installed"gnome-contacts
+not-installed"gnome-contacts-lang
+not-installed"gnome-control-center
+not-installed"gnome-control-center-color
+not-installed"gnome-control-center-devel
+not-installed"gnome-control-center-goa
+not-installed"gnome-control-center-lang
+not-installed"gnome-control-center-user-faces
+installed"gnome-desktop-lang
+not-installed"gnome-desktop-sharp2
+not-installed"gnome-desktop-sharp2-devel
+not-installed"gnome-desktop2
+not-installed"gnome-desktop2-lang
+not-installed"gnome-devel-docs
+not-installed"gnome-devel-docs-lang
+not-installed"gnome-dictionary
+not-installed"gnome-dictionary-lang
+not-installed"gnome-directory-thumbnailer
+not-installed"gnome-directory-thumbnailer-lang
+not-installed"gnome-disk-utility
+not-installed"gnome-disk-utility-lang
+not-installed"gnome-do
+not-installed"gnome-do-lang
+not-installed"gnome-do-plugins
+not-installed"gnome-do-plugins-lang
+not-installed"gnome-doc-utils
+not-installed"gnome-doc-utils-devel
+not-installed"gnome-doc-utils-lang
+not-installed"gnome-documents
+not-installed"gnome-documents-lang
+not-installed"gnome-dvb-daemon
+not-installed"gnome-dvb-daemon-lang
+not-installed"gnome-epub-thumbnailer
+not-installed"gnome-font-viewer
+not-installed"gnome-font-viewer-lang
+not-installed"gnome-games
+not-installed"gnome-games-lang
+not-installed"gnome-games-scripts
+not-installed"gnome-genius
+not-installed"gnome-getting-started-docs
+not-installed"gnome-getting-started-docs-lang
+not-installed"gnome-gmail-notifier
+not-installed"gnome-gmail-notifier-lang
+not-installed"gnome-icon-theme
+not-installed"gnome-icon-theme-extras
+not-installed"gnome-icon-theme-symbolic
+not-installed"gnome-initial-setup
+not-installed"gnome-initial-setup-lang
+not-installed"gnome-internet-radio-locator
+not-installed"gnome-internet-radio-locator-lang
+installed"gnome-keyring
+installed"gnome-keyring-32bit
+installed"gnome-keyring-lang
+installed"gnome-keyring-pam
+installed"gnome-keyring-pam-32bit
+not-installed"gnome-keyring-sharp
+not-installed"gnome-keyring-sharp-devel
+not-installed"gnome-keysign
+not-installed"gnome-klotski
+not-installed"gnome-klotski-lang
+not-installed"gnome-latex
+not-installed"gnome-logs
+not-installed"gnome-logs-lang
+not-installed"gnome-mahjongg
+not-installed"gnome-mahjongg-lang
+not-installed"gnome-maps
+not-installed"gnome-maps-lang
+not-installed"gnome-menus
+not-installed"gnome-menus-branding-openSUSE
+not-installed"gnome-menus-branding-upstream
+not-installed"gnome-menus-devel
+not-installed"gnome-menus-lang
+not-installed"gnome-mines
+not-installed"gnome-mines-lang
+not-installed"gnome-multi-writer
+not-installed"gnome-multi-writer-lang
+not-installed"gnome-music
+not-installed"gnome-music-lang
+not-installed"gnome-nettool
+not-installed"gnome-nettool-lang
+not-installed"gnome-news
+not-installed"gnome-news-lang
+not-installed"gnome-nibbles
+not-installed"gnome-nibbles-lang
+installed"gnome-online-accounts
+not-installed"gnome-online-accounts-devel
+installed"gnome-online-accounts-lang
+not-installed"gnome-online-miners
+not-installed"gnome-packagekit
+not-installed"gnome-packagekit-extras
+not-installed"gnome-packagekit-lang
+not-installed"gnome-passwordsafe
+not-installed"gnome-passwordsafe-lang
+not-installed"gnome-patch-translation
+not-installed"gnome-photos
+not-installed"gnome-photos-lang
+not-installed"gnome-pie
+not-installed"gnome-pomodoro
+not-installed"gnome-pomodoro-lang
+not-installed"gnome-power-manager
+not-installed"gnome-power-manager-lang
+not-installed"gnome-recipes
+not-installed"gnome-recipes-lang
+not-installed"gnome-robots
+not-installed"gnome-robots-lang
+not-installed"gnome-screenshot
+not-installed"gnome-screenshot-lang
+not-installed"gnome-search-tool
+not-installed"gnome-search-tool-lang
+not-installed"gnome-session
+not-installed"gnome-session-core
+not-installed"gnome-session-default-session
+not-installed"gnome-session-lang
+not-installed"gnome-session-wayland
+not-installed"gnome-settings-daemon
+not-installed"gnome-settings-daemon-devel
+not-installed"gnome-settings-daemon-lang
+not-installed"gnome-sharp2
+not-installed"gnome-sharp2-complete
+not-installed"gnome-shell
+not-installed"gnome-shell-calendar
+not-installed"gnome-shell-classic
+not-installed"gnome-shell-classic-session
+not-installed"gnome-shell-devel
+not-installed"gnome-shell-extension-gpaste
+not-installed"gnome-shell-extension-hamster
+not-installed"gnome-shell-extension-onboard
+not-installed"gnome-shell-extension-terminus
+not-installed"gnome-shell-extensions-common
+not-installed"gnome-shell-extensions-common-lang
+not-installed"gnome-shell-lang
+not-installed"gnome-shell-search-provider-bijiben
+not-installed"gnome-shell-search-provider-boxes
+not-installed"gnome-shell-search-provider-contacts
+not-installed"gnome-shell-search-provider-documents
+not-installed"gnome-shell-search-provider-eolie
+not-installed"gnome-shell-search-provider-epiphany
+not-installed"gnome-shell-search-provider-gnome-calculator
+not-installed"gnome-shell-search-provider-gnome-calendar
+not-installed"gnome-shell-search-provider-gnome-characters
+not-installed"gnome-shell-search-provider-gnome-clocks
+not-installed"gnome-shell-search-provider-gnome-photos
+not-installed"gnome-shell-search-provider-gnome-recipes
+not-installed"gnome-shell-search-provider-gnome-terminal
+not-installed"gnome-shell-search-provider-gnome-weather
+not-installed"gnome-shell-search-provider-gnote
+not-installed"gnome-shell-search-provider-lollypop
+not-installed"gnome-shell-search-provider-nautilus
+not-installed"gnome-shell-search-provider-seahorse
+not-installed"gnome-shell-theme-adapta
+not-installed"gnome-shell-theme-plata
+not-installed"gnome-software
+not-installed"gnome-software-devel
+not-installed"gnome-software-lang
+not-installed"gnome-sound-recorder
+not-installed"gnome-sound-recorder-lang
+not-installed"gnome-subtitles
+not-installed"gnome-subtitles-lang
+not-installed"gnome-sudoku
+not-installed"gnome-sudoku-lang
+not-installed"gnome-system-monitor
+not-installed"gnome-system-monitor-lang
+not-installed"gnome-taquin
+not-installed"gnome-taquin-lang
+not-installed"gnome-terminal
+not-installed"gnome-terminal-lang
+not-installed"gnome-tetravex
+not-installed"gnome-tetravex-lang
+not-installed"gnome-themes
+installed"gnome-themes-accessibility
+installed"gnome-themes-accessibility-gtk2
+not-installed"gnome-themes-extras
+not-installed"gnome-themes-lang
+not-installed"gnome-todo
+not-installed"gnome-todo-devel
+not-installed"gnome-todo-lang
+not-installed"gnome-tweaks
+not-installed"gnome-tweaks-lang
+not-installed"gnome-usage
+not-installed"gnome-usage-lang
+not-installed"gnome-user-docs
+not-installed"gnome-user-docs-lang
+not-installed"gnome-user-share
+not-installed"gnome-user-share-lang
+not-installed"gnome-version
+not-installed"gnome-vfs-sharp2
+not-installed"gnome-vfs2
+not-installed"gnome-vfs2-32bit
+not-installed"gnome-vfs2-devel
+not-installed"gnome-vfs2-doc
+not-installed"gnome-vfs2-lang
+not-installed"gnome-video-effects
+not-installed"gnome-video-effects-devel
+not-installed"gnome-weather
+not-installed"gnome-weather-lang
+not-installed"gnome_basic
+not-installed"gnome_x11
+not-installed"gnomekbd-tools
+not-installed"gnonograms
+not-installed"gnonograms-lang
+not-installed"gnote
+not-installed"gnote-lang
+not-installed"gns3
+not-installed"gns3-net-converter
+not-installed"gns3-server
+not-installed"gnu-cobol
+not-installed"gnu-compilers-hpc
+not-installed"gnu-compilers-hpc-devel
+not-installed"gnu-compilers-hpc-macros-devel
+not-installed"gnu-crypto
+not-installed"gnu-efi
+not-installed"gnu-free-fonts
+not-installed"gnu-getopt
+not-installed"gnu-getopt-javadoc
+not-installed"gnu-inetlib
+not-installed"gnu-jaf
+not-installed"gnu-netcat
+not-installed"gnu-regexp
+not-installed"gnu-regexp-demo
+not-installed"gnu-regexp-javadoc
+installed"gnu-unifont-bitmap-fonts
+not-installed"gnu-unifont-legacy-bitmap-fonts
+not-installed"gnu_ddrescue
+not-installed"gnu_parallel
+not-installed"gnu_parallel-doc
+not-installed"gnuastro
+not-installed"gnuastro-devel
+not-installed"gnuastro-doc
+not-installed"gnubg
+not-installed"gnubg-databases
+not-installed"gnubg-doc
+not-installed"gnubg-lang
+not-installed"gnubg-sounds
+not-installed"gnucap
+not-installed"gnucash
+not-installed"gnucash-devel
+not-installed"gnucash-docs
+not-installed"gnucash-lang
+not-installed"gnuchess
+not-installed"gnugo
+not-installed"gnuhealth
+not-installed"gnuhealth-client
+not-installed"gnuhealth-thalamus
+not-installed"gnumeric
+not-installed"gnumeric-devel
+not-installed"gnumeric-doc
+not-installed"gnumeric-lang
+not-installed"gnump3d
+not-installed"gnuplot
+not-installed"gnuplot-doc
+not-installed"gnuradio
+not-installed"gnuradio-devel
+not-installed"gnuradio-doc
+not-installed"gnuradio-examples
+not-installed"gnuradio-examples-wxgui
+not-installed"gnuradio-wxgui
+not-installed"gnuserv
+not-installed"gnusocialshell
+not-installed"gnustep-base
+not-installed"gnustep-base-devel
+not-installed"gnustep-make
+installed"gnutls
+not-installed"gnutls-guile
+not-installed"go
+not-installed"go-doc
+not-installed"go-for-it
+not-installed"go-for-it-lang
+not-installed"go-md2man
+not-installed"go-race
+not-installed"go-tools
+not-installed"go1.10
+not-installed"go1.10-doc
+not-installed"go1.10-race
+not-installed"go1.11
+not-installed"go1.11-doc
+not-installed"go1.11-race
+installed"go1.12
+installed"go1.12-doc
+installed"go1.12-race
+not-installed"go1.4
+not-installed"go1.4-doc
+not-installed"go1.4-race
+not-installed"go1.9
+not-installed"go1.9-doc
+not-installed"go1.9-race
+not-installed"goaccess
+not-installed"goatattack
+not-installed"goatattack-data
+not-installed"gob2
+not-installed"gobby
+not-installed"gobby-lang
+not-installed"gobject-introspection
+not-installed"gobject-introspection-devel
+not-installed"gocode
+not-installed"gocr
+not-installed"gocr-gui
+not-installed"godot
+not-installed"godot-headless
+not-installed"godot-rpm-macros
+not-installed"godot-runner
+not-installed"godot-server
+not-installed"goffice-devel
+not-installed"goffice-lang
+not-installed"gogglesmm
+not-installed"gogglesmm
+not-installed"gogglesmm-lang
+not-installed"golang-github-boynux-squid_exporter
+not-installed"golang-github-cpuguy83-go-md2man
+not-installed"golang-github-docker-libnetwork
+not-installed"golang-github-docker-libnetwork-kubic
+not-installed"golang-github-exercism-cli
+not-installed"golang-github-golang-glog
+not-installed"golang-github-jteeuwen-go-bindata
+not-installed"golang-github-kr-pretty
+not-installed"golang-github-kr-pty
+not-installed"golang-github-kr-text
+not-installed"golang-github-lusitaniae-apache_exporter
+not-installed"golang-github-naoina-go-stringutil
+not-installed"golang-github-nsf-gocode
+not-installed"golang-github-prometheus-alertmanager
+not-installed"golang-github-prometheus-node_exporter
+not-installed"golang-github-prometheus-prometheus
+not-installed"golang-github-prometheus-promu
+not-installed"golang-github-rogpeppe-godef
+not-installed"golang-github-russross-blackfriday
+not-installed"golang-github-shurcool-sanitized_anchor_name
+not-installed"golang-github-wrouesnel-postgres_exporter
+not-installed"golang-gopkgin-check
+not-installed"golang-org-x-crypto
+not-installed"golang-org-x-net-context
+not-installed"golang-org-x-net-html
+not-installed"golang-org-x-net-websocket
+not-installed"golang-org-x-sys
+not-installed"golang-org-x-tools
+not-installed"golang-packaging
+not-installed"goldendict
+not-installed"goldendict-lang
+not-installed"gom-devel
+not-installed"gonvert
+not-installed"goobox
+not-installed"goobox-lang
+not-installed"goocanvas-devel
+not-installed"goocanvas-lang
+not-installed"google-alegreya-fonts
+not-installed"google-allerta-fonts
+not-installed"google-anonymouspro-fonts
+not-installed"google-arimo-fonts
+not-installed"google-authenticator-libpam
+not-installed"google-authenticator-libpam-32bit
+not-installed"google-cabin-fonts
+not-installed"google-caladea-fonts
+not-installed"google-cardo-fonts
+installed"google-carlito-fonts
+not-installed"google-compute-engine-init
+not-installed"google-compute-engine-oslogin
+not-installed"google-compute-engine-oslogin-32bit
+not-installed"google-cousine-fonts
+not-installed"google-croscore-fonts
+installed"google-droid-fonts
+not-installed"google-exo-fonts
+not-installed"google-guice
+not-installed"google-guice-javadoc
+not-installed"google-inconsolata-fonts
+not-installed"google-lekton-fonts
+not-installed"google-merriweather-fonts
+not-installed"google-nobile-fonts
+installed"google-noto-fonts-doc
+installed"google-opensans-fonts
+installed"google-roboto-fonts
+not-installed"google-roboto-mono-fonts
+not-installed"google-tinos-fonts
+not-installed"googleapis-source
+not-installed"googler
+not-installed"gops
+not-installed"gos-wallpapers
+not-installed"gostcrypt
+not-installed"gostcrypt
+not-installed"gource
+not-installed"govpn
+not-installed"govpn-server
+not-installed"gp2c
+not-installed"gpa
+not-installed"gpa-lang
+not-installed"gpac
+not-installed"gpac
+not-installed"gpac-debuginfo
+not-installed"gpac-debugsource
+installed"gpart
+not-installed"gparted
+not-installed"gparted-lang
+not-installed"gpaste
+not-installed"gpaste-devel
+not-installed"gpaste-lang
+installed"gperf
+not-installed"gperftools
+not-installed"gperftools-devel
+not-installed"gperftools-devel-static
+not-installed"gperiodic
+not-installed"gperiodic-lang
+installed"gpg2
+installed"gpg2-lang
+not-installed"gpgme
+not-installed"gpgmepp5
+not-installed"gpgmepp5-32bit
+not-installed"gpgmepp5-devel
+not-installed"gpgmepp5-devel-32bit
+not-installed"gphoto
+not-installed"gphotofs
+not-installed"gpick
+not-installed"gpick-lang
+not-installed"gpicview
+not-installed"gpicview-lang
+installed"gpm
+not-installed"gpm-devel
+not-installed"gpodder
+not-installed"gpodder
+not-installed"gpodder3
+not-installed"gpodder3
+not-installed"gpomme
+not-installed"gpp
+not-installed"gpredict
+not-installed"gpredict-lang
+not-installed"gprename
+not-installed"gprename-lang
+not-installed"gprompter
+not-installed"gpsbabel
+not-installed"gpsd
+not-installed"gpsd-clients
+not-installed"gpsd-devel
+installed"gptfdisk
+not-installed"gptfdisk-fixparts
+not-installed"gputils
+not-installed"gputils-doc
+not-installed"gpxsee
+not-installed"gq
+not-installed"gr-fcdproplus
+not-installed"gr-fcdproplus-devel-doc
+not-installed"gr-osmosdr
+not-installed"gr-osmosdr-devel
+not-installed"gr-osmosdr-devel-doc
+not-installed"grabpng
+not-installed"gradio
+not-installed"gradio-lang
+not-installed"gradle-open-api
+not-installed"grafana
+not-installed"grail
+not-installed"grail-devel
+not-installed"gramofile
+not-installed"gramps
+not-installed"gramps-lang
+not-installed"granatier
+not-installed"granatier-lang
+not-installed"granite-common
+not-installed"granite-demo
+not-installed"granite-devel
+not-installed"granite-lang
+not-installed"grantlee-editor
+not-installed"grantlee-editor-lang
+installed"grantlee5
+not-installed"grantlee5-32bit
+not-installed"grantlee5-devel
+not-installed"grantlee5-devel-32bit
+installed"grantleetheme
+not-installed"grantleetheme-devel
+installed"grantleetheme-lang
+not-installed"graphite2
+not-installed"graphite2-devel
+installed"graphviz
+not-installed"graphviz-devel
+not-installed"graphviz-doc
+installed"graphviz-gd
+installed"graphviz-gnome
+not-installed"graphviz-guile
+not-installed"graphviz-gvedit
+not-installed"graphviz-java
+not-installed"graphviz-lua
+not-installed"graphviz-perl
+not-installed"graphviz-php
+installed"graphviz-plugins-core
+not-installed"graphviz-python
+not-installed"graphviz-ruby
+not-installed"graphviz-smyrna
+not-installed"graphviz-tcl
+not-installed"graphviz-x11
+not-installed"grc
+installed"grep
+installed"grep-lang
+not-installed"grepmail
+not-installed"grfcodec
+not-installed"gri
+not-installed"grilo-devel
+not-installed"grilo-lang
+not-installed"grilo-plugin-dleyna
+not-installed"grilo-plugin-tracker
+not-installed"grilo-plugin-youtube
+not-installed"grilo-plugins
+not-installed"grilo-plugins-devel
+not-installed"grilo-plugins-lang
+not-installed"grilo-tools
+not-installed"grim
+not-installed"grip
+not-installed"grip
+not-installed"grip-debuginfo
+not-installed"grip-debugsource
+not-installed"grip-lang
+not-installed"grisbi
+not-installed"grisbi-lang
+installed"groff
+not-installed"groff-doc
+installed"groff-full
+not-installed"gromacs
+not-installed"gromacs-bash
+not-installed"gromacs-devel
+not-installed"gromacs-doc
+not-installed"gromacs-openmpi
+not-installed"gromit
+not-installed"groovebasin
+not-installed"groovebasin
+not-installed"groovy18
+not-installed"groovy18-javadoc
+not-installed"groovy18-lib
+not-installed"growpart
+not-installed"growpart-rootgrow
+not-installed"grpc-devel
+not-installed"grpc-httpjson-transcoding-devel
+not-installed"grpc-httpjson-transcoding-source
+not-installed"grpc-source
+not-installed"grsync
+not-installed"grsync-lang
+not-installed"grub
+installed"grub2
+installed"grub2-branding-openSUSE
+not-installed"grub2-branding-upstream
+not-installed"grub2-i386-efi
+installed"grub2-i386-pc
+not-installed"grub2-i386-xen
+installed"grub2-snapper-plugin
+installed"grub2-systemd-sleep-plugin
+not-installed"grub2-theme-breeze
+installed"grub2-x86_64-efi
+not-installed"grub2-x86_64-xen
+not-installed"grubby
+not-installed"gsequencer
+not-installed"gsequencer-devel
+not-installed"gsequencer-devel-doc
+installed"gsettings-backend-dconf
+not-installed"gsettings-backend-dconf-32bit
+installed"gsettings-desktop-schemas
+not-installed"gsettings-desktop-schemas-devel
+installed"gsettings-desktop-schemas-lang
+not-installed"gsettings-qt
+not-installed"gsettings-qt-devel
+not-installed"gsf-office-thumbnailer
+not-installed"gsl
+not-installed"gsl-devel
+not-installed"gsl-doc
+not-installed"gsl-examples
+not-installed"gsl-gnu-hpc
+not-installed"gsl-gnu-hpc-devel
+not-installed"gsl-gnu-hpc-doc
+not-installed"gsl_2_6-gnu-hpc
+not-installed"gsl_2_6-gnu-hpc-devel
+not-installed"gsl_2_6-gnu-hpc-doc
+not-installed"gsl_2_6-gnu-hpc-examples
+not-installed"gsl_2_6-gnu-hpc-module
+not-installed"gsmartcontrol
+not-installed"gsoap-devel
+not-installed"gsoap-doc
+not-installed"gsound
+not-installed"gsound-devel
+not-installed"gspell
+not-installed"gspell-devel
+not-installed"gspell-lang
+not-installed"gssdp-utils
+not-installed"gssproxy
+not-installed"gst123
+installed"gstreamer
+not-installed"gstreamer-1_0-plugins-buzztrax
+installed"gstreamer-32bit
+not-installed"gstreamer-devel
+not-installed"gstreamer-doc
+not-installed"gstreamer-editing-services
+not-installed"gstreamer-editing-services-devel
+installed"gstreamer-lang
+installed"gstreamer-libnice
+not-installed"gstreamer-plugin-cluttergst3
+not-installed"gstreamer-plugin-pipewire
+not-installed"gstreamer-plugin-python
+installed"gstreamer-plugins-bad
+not-installed"gstreamer-plugins-bad
+not-installed"gstreamer-plugins-bad-32bit
+not-installed"gstreamer-plugins-bad-32bit-debuginfo
+not-installed"gstreamer-plugins-bad-chromaprint
+not-installed"gstreamer-plugins-bad-chromaprint-32bit
+not-installed"gstreamer-plugins-bad-chromaprint-32bit-debuginfo
+not-installed"gstreamer-plugins-bad-chromaprint-debuginfo
+not-installed"gstreamer-plugins-bad-debuginfo
+not-installed"gstreamer-plugins-bad-debugsource
+not-installed"gstreamer-plugins-bad-devel
+not-installed"gstreamer-plugins-bad-doc
+not-installed"gstreamer-plugins-bad-fluidsynth
+not-installed"gstreamer-plugins-bad-fluidsynth-32bit
+not-installed"gstreamer-plugins-bad-fluidsynth-32bit-debuginfo
+not-installed"gstreamer-plugins-bad-fluidsynth-debuginfo
+installed"gstreamer-plugins-bad-lang
+not-installed"gstreamer-plugins-bad-orig-addon
+not-installed"gstreamer-plugins-bad-orig-addon-32bit
+not-installed"gstreamer-plugins-bad-orig-addon-32bit-debuginfo
+not-installed"gstreamer-plugins-bad-orig-addon-debuginfo
+installed"gstreamer-plugins-base
+not-installed"gstreamer-plugins-base-32bit
+not-installed"gstreamer-plugins-base-devel
+not-installed"gstreamer-plugins-base-devel-32bit
+not-installed"gstreamer-plugins-base-doc
+installed"gstreamer-plugins-base-lang
+not-installed"gstreamer-plugins-farstream
+not-installed"gstreamer-plugins-farstream-32bit
+installed"gstreamer-plugins-good
+not-installed"gstreamer-plugins-good-32bit
+not-installed"gstreamer-plugins-good-doc
+not-installed"gstreamer-plugins-good-extra
+not-installed"gstreamer-plugins-good-extra-32bit
+installed"gstreamer-plugins-good-gtk
+not-installed"gstreamer-plugins-good-jack
+not-installed"gstreamer-plugins-good-jack-32bit
+installed"gstreamer-plugins-good-lang
+not-installed"gstreamer-plugins-good-qtqml
+installed"gstreamer-plugins-libav
+not-installed"gstreamer-plugins-libav
+not-installed"gstreamer-plugins-libav-32bit
+not-installed"gstreamer-plugins-libav-32bit-debuginfo
+not-installed"gstreamer-plugins-libav-debuginfo
+not-installed"gstreamer-plugins-libav-debugsource
+not-installed"gstreamer-plugins-libav-doc
+installed"gstreamer-plugins-ugly
+not-installed"gstreamer-plugins-ugly
+not-installed"gstreamer-plugins-ugly-32bit
+not-installed"gstreamer-plugins-ugly-32bit-debuginfo
+not-installed"gstreamer-plugins-ugly-debuginfo
+not-installed"gstreamer-plugins-ugly-debugsource
+not-installed"gstreamer-plugins-ugly-doc
+installed"gstreamer-plugins-ugly-lang
+installed"gstreamer-plugins-ugly-orig-addon
+not-installed"gstreamer-plugins-ugly-orig-addon-32bit
+not-installed"gstreamer-plugins-ugly-orig-addon-32bit-debuginfo
+not-installed"gstreamer-plugins-ugly-orig-addon-debuginfo
+not-installed"gstreamer-plugins-vaapi
+not-installed"gstreamer-plugins-vaapi-doc
+not-installed"gstreamer-rtsp-server-devel
+not-installed"gstreamer-transcoder
+not-installed"gstreamer-transcoder-devel
+not-installed"gstreamer-utils
+not-installed"gstreamer-validate
+not-installed"gstreamer-validate-devel
+not-installed"gstreamermm-devel
+not-installed"gstreamermm-doc
+not-installed"gswrap
+not-installed"gtest
+not-installed"gthumb
+not-installed"gthumb-devel
+not-installed"gthumb-lang
+not-installed"gti
+not-installed"gtick
+not-installed"gtick-lang
+not-installed"gtk-chtheme
+not-installed"gtk-chtheme
+not-installed"gtk-chtheme-debuginfo
+not-installed"gtk-chtheme-debugsource
+not-installed"gtk-doc
+not-installed"gtk-doc-lang
+not-installed"gtk-frdp-devel
+not-installed"gtk-gnutella
+not-installed"gtk-gnutella
+not-installed"gtk-gnutella-debuginfo
+not-installed"gtk-gnutella-debugsource
+not-installed"gtk-key-theme-ctrluftw
+not-installed"gtk-recordMyDesktop
+not-installed"gtk-recordMyDesktop-lang
+not-installed"gtk-sharp-beans
+not-installed"gtk-sharp-beans-devel
+not-installed"gtk-sharp2
+not-installed"gtk-sharp2-complete
+not-installed"gtk-sharp2-doc
+not-installed"gtk-sharp2-gapi
+not-installed"gtk-sharp3
+not-installed"gtk-sharp3-complete
+not-installed"gtk-sharp3-devel
+not-installed"gtk-sharp3-doc
+not-installed"gtk-sharp3-gapi
+not-installed"gtk-sharp3-gapi-devel
+not-installed"gtk-vector-screenshot
+not-installed"gtk-vector-screenshot
+not-installed"gtk-vector-screenshot-debuginfo
+not-installed"gtk-vector-screenshot-debugsource
+not-installed"gtk-vnc-devel
+installed"gtk-vnc-lang
+not-installed"gtk-vnc-tools
+not-installed"gtk-xfce-engine
+not-installed"gtk-xfce-engine-32bit
+installed"gtk2-branding-openSUSE
+not-installed"gtk2-branding-upstream
+installed"gtk2-data
+not-installed"gtk2-devel
+not-installed"gtk2-devel-32bit
+not-installed"gtk2-engine-aurora
+not-installed"gtk2-engine-cleanice
+not-installed"gtk2-engine-cleanice-32bit
+not-installed"gtk2-engine-clearlooks
+not-installed"gtk2-engine-clearlooks-32bit
+not-installed"gtk2-engine-crux
+not-installed"gtk2-engine-crux-32bit
+not-installed"gtk2-engine-equinox
+not-installed"gtk2-engine-glide
+not-installed"gtk2-engine-glide-32bit
+installed"gtk2-engine-hcengine
+not-installed"gtk2-engine-industrial
+not-installed"gtk2-engine-industrial-32bit
+not-installed"gtk2-engine-mist
+not-installed"gtk2-engine-mist-32bit
+not-installed"gtk2-engine-murrine
+not-installed"gtk2-engine-murrine-32bit
+not-installed"gtk2-engine-nimbus
+not-installed"gtk2-engine-nimbus-32bit
+not-installed"gtk2-engine-oxygen
+installed"gtk2-engine-oxygen-32bit
+not-installed"gtk2-engine-redmond95
+not-installed"gtk2-engine-redmond95-32bit
+not-installed"gtk2-engine-thinice
+not-installed"gtk2-engine-thinice-32bit
+not-installed"gtk2-engines
+not-installed"gtk2-engines-devel
+installed"gtk2-immodule-amharic
+not-installed"gtk2-immodule-amharic-32bit
+installed"gtk2-immodule-inuktitut
+not-installed"gtk2-immodule-inuktitut-32bit
+not-installed"gtk2-immodule-multipress
+not-installed"gtk2-immodule-multipress-32bit
+installed"gtk2-immodule-thai
+not-installed"gtk2-immodule-thai-32bit
+installed"gtk2-immodule-tigrigna
+not-installed"gtk2-immodule-tigrigna-32bit
+installed"gtk2-immodule-vietnamese
+not-installed"gtk2-immodule-vietnamese-32bit
+not-installed"gtk2-immodule-xim
+not-installed"gtk2-immodule-xim-32bit
+installed"gtk2-lang
+not-installed"gtk2-metatheme-adapta
+installed"gtk2-metatheme-adwaita
+not-installed"gtk2-metatheme-ambiance
+not-installed"gtk2-metatheme-ambiant-mate
+not-installed"gtk2-metatheme-arc
+not-installed"gtk2-metatheme-bluebird
+installed"gtk2-metatheme-breeze
+not-installed"gtk2-metatheme-e17gtk
+not-installed"gtk2-metatheme-elementary
+not-installed"gtk2-metatheme-equinox
+not-installed"gtk2-metatheme-gilouche
+not-installed"gtk2-metatheme-greybird
+not-installed"gtk2-metatheme-greybird-geeko
+not-installed"gtk2-metatheme-industrial
+not-installed"gtk2-metatheme-mint
+not-installed"gtk2-metatheme-nimbus
+not-installed"gtk2-metatheme-numix
+not-installed"gtk2-metatheme-paper
+not-installed"gtk2-metatheme-plata
+not-installed"gtk2-metatheme-radiance
+not-installed"gtk2-metatheme-radiant-mate
+not-installed"gtk2-metatheme-sonar
+not-installed"gtk2-metatheme-vertex
+not-installed"gtk2-metatheme-yaru
+not-installed"gtk2-metatheme-yuyo
+not-installed"gtk2-theme-clearlooks
+not-installed"gtk2-theme-crux
+not-installed"gtk2-theme-industrial
+not-installed"gtk2-theme-mist
+not-installed"gtk2-theme-oxygen
+not-installed"gtk2-theme-redmond95
+not-installed"gtk2-theme-thinice
+installed"gtk2-theming-engine-adwaita
+installed"gtk2-theming-engine-adwaita-32bit
+installed"gtk2-tools
+installed"gtk2-tools-32bit
+installed"gtk3-branding-openSUSE
+not-installed"gtk3-branding-upstream
+installed"gtk3-data
+not-installed"gtk3-devel
+not-installed"gtk3-devel-32bit
+installed"gtk3-immodule-amharic
+not-installed"gtk3-immodule-amharic-32bit
+not-installed"gtk3-immodule-broadway
+installed"gtk3-immodule-inuktitut
+not-installed"gtk3-immodule-inuktitut-32bit
+not-installed"gtk3-immodule-multipress
+not-installed"gtk3-immodule-multipress-32bit
+installed"gtk3-immodule-thai
+not-installed"gtk3-immodule-thai-32bit
+installed"gtk3-immodule-tigrigna
+not-installed"gtk3-immodule-tigrigna-32bit
+installed"gtk3-immodule-vietnamese
+not-installed"gtk3-immodule-vietnamese-32bit
+not-installed"gtk3-immodule-wayland
+not-installed"gtk3-immodule-wayland-32bit
+not-installed"gtk3-immodule-xim
+not-installed"gtk3-immodule-xim-32bit
+installed"gtk3-lang
+not-installed"gtk3-metatheme-adapta
+installed"gtk3-metatheme-adwaita
+not-installed"gtk3-metatheme-ambiance
+not-installed"gtk3-metatheme-ambiant-mate
+not-installed"gtk3-metatheme-arc
+not-installed"gtk3-metatheme-bluebird
+installed"gtk3-metatheme-breeze
+not-installed"gtk3-metatheme-e17gtk
+not-installed"gtk3-metatheme-elementary
+not-installed"gtk3-metatheme-greybird
+not-installed"gtk3-metatheme-greybird-geeko
+not-installed"gtk3-metatheme-mint
+not-installed"gtk3-metatheme-numix
+not-installed"gtk3-metatheme-paper
+not-installed"gtk3-metatheme-plata
+not-installed"gtk3-metatheme-radiance
+not-installed"gtk3-metatheme-radiant-mate
+not-installed"gtk3-metatheme-vertex
+not-installed"gtk3-metatheme-yaru
+not-installed"gtk3-metatheme-yuyo
+not-installed"gtk3-schema
+installed"gtk3-tools
+installed"gtk3-tools-32bit
+not-installed"gtk4-branding-upstream
+not-installed"gtk4-devel
+not-installed"gtk4-devel-32bit
+not-installed"gtk4-lang
+not-installed"gtk4-metatheme-adapta
+not-installed"gtk4-metatheme-plata
+installed"gtk4-schema
+not-installed"gtk4-tools
+not-installed"gtkam
+not-installed"gtkam-doc
+not-installed"gtkam-lang
+not-installed"gtkd-devel
+not-installed"gtkglext-devel
+not-installed"gtkglext-doc
+not-installed"gtkhtml-4_0-lang
+not-installed"gtkhtml-devel
+not-installed"gtkimageview-devel
+not-installed"gtkiterm
+not-installed"gtkmm2-devel
+not-installed"gtkmm2-tutorial
+not-installed"gtkmm2-tutorial-lang
+not-installed"gtkmm3-devel
+not-installed"gtkmm3-doc
+not-installed"gtkmm3-tutorial
+not-installed"gtkmm3-tutorial-lang
+not-installed"gtkpod
+not-installed"gtkpod-devel
+not-installed"gtkpod-lang
+not-installed"gtksourceview-devel
+installed"gtksourceview-lang
+not-installed"gtksourceview2-devel
+not-installed"gtksourceview2-lang
+not-installed"gtksourceview2-sharp
+not-installed"gtksourceview4-devel
+installed"gtksourceview4-lang
+not-installed"gtksourceviewmm-devel
+not-installed"gtkspell-devel
+not-installed"gtkspell-doc
+not-installed"gtkspell-lang
+not-installed"gtkspell3-devel
+not-installed"gtkspell3-lang
+not-installed"gtkwave
+not-installed"gtkwave-doc
+not-installed"gtkwave-examples
+not-installed"gtranslator
+not-installed"gtranslator-lang
+not-installed"gts
+not-installed"gts-devel
+not-installed"gtypist
+not-installed"gtypist-lang
+not-installed"guake
+not-installed"guava
+not-installed"guava-javadoc
+not-installed"guava-testlib
+not-installed"guava20
+not-installed"guava20-javadoc
+not-installed"guava20-testlib
+not-installed"guayadeque
+not-installed"guayadeque
+not-installed"guayadeque-debuginfo
+not-installed"guayadeque-debugsource
+not-installed"gucharmap
+not-installed"gucharmap-devel
+not-installed"gucharmap-lang
+not-installed"gudev-sharp
+not-installed"gudev-sharp-devel
+installed"guestfs-data
+not-installed"guestfs-tools
+not-installed"guestfsd
+not-installed"guice-assistedinject
+not-installed"guice-bom
+not-installed"guice-extensions
+not-installed"guice-grapher
+not-installed"guice-jmx
+not-installed"guice-jndi
+not-installed"guice-multibindings
+not-installed"guice-parent
+not-installed"guice-servlet
+not-installed"guice-testlib
+not-installed"guice-throwingproviders
+not-installed"guile
+not-installed"guile-bytestructures
+not-installed"guile-cairo
+not-installed"guile-cairo-devel
+not-installed"guile-charting
+not-installed"guile-devel
+not-installed"guile-gcrypt
+not-installed"guile-git
+not-installed"guile-json
+not-installed"guile-modules-2_2
+not-installed"guile-newt
+not-installed"guile-parted
+not-installed"guile-sqlite3
+not-installed"guile-ssh-devel
+not-installed"guile1
+not-installed"guilt
+not-installed"guitarix
+not-installed"guix
+not-installed"gup
+not-installed"gupnp-av
+not-installed"gupnp-dlna-tools
+not-installed"gupnp-tools
+not-installed"gupnp-tools-lang
+installed"gutenprint
+not-installed"gutenprint-devel
+not-installed"gutenprint-gimpplugin
+not-installed"guvcview
+not-installed"guvcview-devel
+not-installed"guvcview-lang
+not-installed"guvcview-qt5
+not-installed"guvcview-qt5-lang
+not-installed"gv
+installed"gvfs
+not-installed"gvfs-32bit
+installed"gvfs-backend-afc
+installed"gvfs-backend-samba
+installed"gvfs-backends
+not-installed"gvfs-devel
+installed"gvfs-fuse
+installed"gvfs-lang
+not-installed"gvim
+not-installed"gweather-data
+not-installed"gwenhywfar
+not-installed"gwenhywfar-devel
+not-installed"gwenhywfar-lang
+not-installed"gwenhywfar-tools
+installed"gwenview5
+installed"gwenview5-lang
+installed"gxditview
+not-installed"gxine
+not-installed"gxine
+not-installed"gxine-browser-plugin
+not-installed"gxine-browser-plugin-debuginfo
+not-installed"gxine-debuginfo
+not-installed"gxine-debugsource
+not-installed"gxine-lang
+not-installed"gyp
+not-installed"gypsy
+not-installed"gzdoom
+installed"gzip
+not-installed"gzrt
+not-installed"h264enc
+not-installed"h264enc
+not-installed"h5utils
+not-installed"ha-cluster-bootstrap
+not-installed"haas-proxy
+not-installed"habootstrap-formula
+installed"hack-fonts
+not-installed"hackbench
+not-installed"hackrf
+not-installed"hackrf-devel
+not-installed"hackrf-firmware
+not-installed"hackrf-udev
+not-installed"hactool
+not-installed"haguichi
+not-installed"haguichi-lang
+not-installed"hamcrest
+not-installed"hamcrest-core
+not-installed"hamcrest-demo
+not-installed"hamcrest-javadoc
+not-installed"hamlib
+not-installed"hamlib-devel
+not-installed"hamster-time-tracker
+not-installed"hamster-time-tracker-lang
+not-installed"hanadb_exporter
+not-installed"handbrake
+not-installed"handbrake-cli
+not-installed"handbrake-cli-debuginfo
+not-installed"handbrake-debuginfo
+not-installed"handbrake-debugsource
+not-installed"handbrake-gtk
+not-installed"handbrake-gtk-debuginfo
+not-installed"handbrake-gtk-lang
+not-installed"handedict
+not-installed"happy
+not-installed"haproxy
+not-installed"hardening-check
+not-installed"hardinfo
+installed"hardlink
+not-installed"harfbuzz-devel
+not-installed"harfbuzz-tools
+not-installed"harminv
+not-installed"harminv-devel
+not-installed"hartke-aurulentsans-fonts
+not-installed"haserl
+not-installed"hashalot
+not-installed"hashcat
+not-installed"hashdeep
+installed"haveged
+not-installed"haveged-devel
+not-installed"hawk-apiserver
+not-installed"hawk2
+not-installed"hawkey-man
+not-installed"hawknl-devel
+not-installed"hawknl-libs
+not-installed"hawtjni
+not-installed"hawtjni-javadoc
+not-installed"hawtjni-runtime
+not-installed"haxe
+not-installed"hbci4java
+not-installed"hbci4java-javadoc
+not-installed"hcode
+not-installed"hda-verb
+not-installed"hdajackretask
+not-installed"hdajacksensetest
+not-installed"hddtemp
+not-installed"hdf
+not-installed"hdf-devel
+not-installed"hdf-devel-data
+not-installed"hdf-devel-static
+not-installed"hdf-openmpi
+not-installed"hdf-openmpi-devel
+not-installed"hdf-openmpi-devel-static
+not-installed"hdf5
+not-installed"hdf5-devel
+not-installed"hdf5-devel-32bit
+not-installed"hdf5-devel-data
+not-installed"hdf5-devel-static
+not-installed"hdf5-examples
+not-installed"hdf5-gnu-hpc
+not-installed"hdf5-gnu-hpc-devel
+not-installed"hdf5-gnu-mpich-hpc
+not-installed"hdf5-gnu-mpich-hpc-devel
+not-installed"hdf5-gnu-mvapich2-hpc
+not-installed"hdf5-gnu-mvapich2-hpc-devel
+not-installed"hdf5-gnu-openmpi1-hpc
+not-installed"hdf5-gnu-openmpi1-hpc-devel
+not-installed"hdf5-gnu-openmpi2-hpc
+not-installed"hdf5-gnu-openmpi2-hpc-devel
+not-installed"hdf5-gnu-openmpi3-hpc
+not-installed"hdf5-gnu-openmpi3-hpc-devel
+not-installed"hdf5-hpc-examples
+not-installed"hdf5-mvapich2
+not-installed"hdf5-mvapich2-devel
+not-installed"hdf5-mvapich2-devel-32bit
+not-installed"hdf5-mvapich2-devel-static
+not-installed"hdf5-openmpi
+not-installed"hdf5-openmpi-devel
+not-installed"hdf5-openmpi-devel-32bit
+not-installed"hdf5-openmpi-devel-static
+not-installed"hdf5-openmpi2
+not-installed"hdf5-openmpi2-devel
+not-installed"hdf5-openmpi2-devel-32bit
+not-installed"hdf5-openmpi2-devel-static
+not-installed"hdf5-openmpi3
+not-installed"hdf5-openmpi3-devel
+not-installed"hdf5-openmpi3-devel-32bit
+not-installed"hdf5-openmpi3-devel-static
+not-installed"hdf5_1_10_4-gnu-hpc
+not-installed"hdf5_1_10_4-gnu-hpc-devel
+not-installed"hdf5_1_10_4-gnu-hpc-devel-static
+not-installed"hdf5_1_10_4-gnu-hpc-module
+not-installed"hdf5_1_10_4-gnu-mpich-hpc
+not-installed"hdf5_1_10_4-gnu-mpich-hpc-devel
+not-installed"hdf5_1_10_4-gnu-mpich-hpc-devel-static
+not-installed"hdf5_1_10_4-gnu-mpich-hpc-module
+not-installed"hdf5_1_10_4-gnu-mvapich2-hpc
+not-installed"hdf5_1_10_4-gnu-mvapich2-hpc-devel
+not-installed"hdf5_1_10_4-gnu-mvapich2-hpc-devel-static
+not-installed"hdf5_1_10_4-gnu-mvapich2-hpc-module
+not-installed"hdf5_1_10_4-gnu-openmpi1-hpc
+not-installed"hdf5_1_10_4-gnu-openmpi1-hpc-devel
+not-installed"hdf5_1_10_4-gnu-openmpi1-hpc-devel-static
+not-installed"hdf5_1_10_4-gnu-openmpi1-hpc-module
+not-installed"hdf5_1_10_4-gnu-openmpi2-hpc
+not-installed"hdf5_1_10_4-gnu-openmpi2-hpc-devel
+not-installed"hdf5_1_10_4-gnu-openmpi2-hpc-devel-static
+not-installed"hdf5_1_10_4-gnu-openmpi2-hpc-module
+not-installed"hdf5_1_10_4-gnu-openmpi3-hpc
+not-installed"hdf5_1_10_4-gnu-openmpi3-hpc-devel
+not-installed"hdf5_1_10_4-gnu-openmpi3-hpc-devel-static
+not-installed"hdf5_1_10_4-gnu-openmpi3-hpc-module
+not-installed"hdf5_1_10_4-hpc-examples
+not-installed"hdhomerun-config
+not-installed"hdhomerun-config-debuginfo
+not-installed"hdhomerun_config
+not-installed"hdhomerun_config_gui
+not-installed"hdjmod-kmp-default
+not-installed"hdjmod-kmp-pae
+installed"hdparm
+not-installed"hdspconf
+not-installed"hdsploader
+not-installed"hdspmixer
+not-installed"headmore
+not-installed"health-check
+not-installed"health-checker
+not-installed"health-checker-plugins-MicroOS
+not-installed"health-checker-plugins-caasp
+not-installed"health-checker-plugins-kubic
+not-installed"health-checker-testing
+not-installed"heapster
+not-installed"heaptrack
+not-installed"heaptrack-devel
+not-installed"heaptrack-gui
+not-installed"heaptrack-lang
+not-installed"hedgewars
+not-installed"hedgewars-data
+not-installed"heimdall
+not-installed"heimdall-frontend
+not-installed"heldenviewer
+not-installed"heldenviewer
+not-installed"heldenviewer-debuginfo
+not-installed"hello
+not-installed"hello-kubic
+not-installed"hello-kubic-k8s-yaml
+not-installed"hello-lang
+not-installed"helm
+not-installed"helm-mirror
+not-installed"help2man
+not-installed"help2man-lang
+not-installed"herbstluftwm
+not-installed"herbstluftwm-bash-completion
+not-installed"herbstluftwm-examples
+not-installed"herbstluftwm-fish-completion
+not-installed"herbstluftwm-zsh-completion
+not-installed"hercules
+not-installed"heroes-tron
+not-installed"hevea
+not-installed"hex
+not-installed"hex2bin
+not-installed"hexchat
+not-installed"hexchat-devel
+not-installed"hexchat-lang
+not-installed"hexchat-plugins-lua
+not-installed"hexchat-plugins-perl
+not-installed"hexchat-plugins-python3
+not-installed"hexd
+not-installed"hexen2
+not-installed"hexen2
+not-installed"hexen2-debuginfo
+not-installed"hexen2-debugsource
+not-installed"hexenworld
+not-installed"hexenworld-debuginfo
+not-installed"hexter
+not-installed"hfst
+not-installed"hfst-devel
+not-installed"hfst-ospell
+not-installed"hfst-ospell-devel
+not-installed"hfsutils
+not-installed"hg-fast-export
+not-installed"hg-git
+not-installed"hiawatha
+not-installed"hiawatha-letsencrypt
+not-installed"hibiscus
+installed"hicolor-icon-theme
+installed"hicolor-icon-theme-branding-openSUSE
+not-installed"highlight
+not-installed"highlight-gui
+not-installed"highlight-gui-lang
+not-installed"himeno
+not-installed"hiredis
+not-installed"hiredis-devel
+not-installed"hitori
+not-installed"hitori-lang
+not-installed"hivex
+not-installed"hivex-devel
+not-installed"hivex-lang
+not-installed"hmaccalc
+not-installed"hmcfgusb
+not-installed"hmconv
+not-installed"hollywood
+not-installed"hollywood-data
+not-installed"holodev
+not-installed"homebank
+not-installed"homebank-lang
+not-installed"homerhevc
+not-installed"homerhevc
+not-installed"homerhevc-debuginfo
+not-installed"homeshick
+not-installed"honggfuzz
+not-installed"horst
+not-installed"hostap-utils
+not-installed"hostapd
+not-installed"hostinfo
+installed"hostname
+not-installed"hotspot
+not-installed"hourglass
+not-installed"hourglass-lang
+not-installed"howl
+not-installed"hp-drive-guard
+not-installed"hp2xx
+not-installed"hpack
+not-installed"hpc_compute_node
+not-installed"hpc_development_node
+not-installed"hpc_libraries
+not-installed"hpc_workload_server
+not-installed"hping
+not-installed"hping-doc
+not-installed"hplip
+not-installed"hplip-devel
+not-installed"hplip-hpijs
+not-installed"hplip-sane
+not-installed"hpx
+not-installed"hpx-devel
+not-installed"hpx-devel-static
+not-installed"hspec-discover
+not-installed"hsqldb
+not-installed"hsqldb-demo
+not-installed"hsqldb-javadoc
+not-installed"hsqldb-manual
+not-installed"ht
+not-installed"htdig
+not-installed"htdig-devel
+not-installed"htdig-doc
+not-installed"hte
+not-installed"html-dtd
+not-installed"html-xml-utils
+not-installed"html2ps
+not-installed"html2text
+not-installed"htmldoc
+installed"htop
+not-installed"http-parser-devel
+not-installed"httpcomponents-client
+not-installed"httpcomponents-client-cache
+not-installed"httpcomponents-client-javadoc
+not-installed"httpcomponents-core
+not-installed"httpcomponents-core-javadoc
+not-installed"httpcomponents-project
+not-installed"httperf
+not-installed"httrack
+not-installed"httrack-devel
+not-installed"hub
+installed"hugin
+not-installed"humanity-icon-theme
+installed"hunspell
+not-installed"hunspell-devel
+not-installed"hunspell-devel-32bit
+installed"hunspell-tools
+installed"hwdata
+installed"hwinfo
+not-installed"hwinfo-devel
+not-installed"hwloc
+not-installed"hwloc-data
+not-installed"hwloc-devel
+not-installed"hwloc-doc
+not-installed"hwmixvolume
+not-installed"hwsd
+not-installed"hwsd
+not-installed"hwsd-debuginfo
+not-installed"hwsd-debugsource
+not-installed"hwsd-devel
+not-installed"hwsd-doc
+not-installed"hxtools
+not-installed"hxtools-data
+not-installed"hxtools-man
+not-installed"hxtools-profile
+not-installed"hxtools-scripts
+not-installed"hydrogen
+not-installed"hyena
+not-installed"hylafax+
+not-installed"hylafax+-client
+not-installed"hyper-v
+not-installed"hyperscan-devel
+not-installed"hyphen
+not-installed"hyphen-devel
+not-installed"hypre-devel
+not-installed"hypre-doc
+not-installed"hypre-examples
+not-installed"hypre-gnu-mpich-hpc-devel
+not-installed"hypre-gnu-mvapich2-hpc-devel
+not-installed"hypre-gnu-openmpi1-hpc-devel
+not-installed"hypre-gnu-openmpi2-hpc-devel
+not-installed"hypre-gnu-openmpi3-hpc-devel
+not-installed"hypre-mpich-devel
+not-installed"hypre-mvapich2-devel
+not-installed"hypre-openmpi-devel
+not-installed"hypre-openmpi2-devel
+not-installed"hypre_2_15_1-gnu-mpich-hpc-devel
+not-installed"hypre_2_15_1-gnu-mvapich2-hpc-devel
+not-installed"hypre_2_15_1-gnu-openmpi1-hpc-devel
+not-installed"hypre_2_15_1-gnu-openmpi2-hpc-devel
+not-installed"hypre_2_15_1-gnu-openmpi3-hpc-devel
+not-installed"i18nspector
+not-installed"i2c-tools
+not-installed"i2pd
+not-installed"i3
+not-installed"i3-devel
+not-installed"i3-gaps
+not-installed"i3-gaps-devel
+not-installed"i3blocks
+not-installed"i3lock
+not-installed"i3lock-xlock-compat
+not-installed"i3status
+not-installed"i4l-base
+not-installed"i4l-isdnlog
+not-installed"i4l-vbox
+not-installed"i4lfirm
+not-installed"iMule
+not-installed"iMule
+not-installed"iMule-debuginfo
+not-installed"iMule-debugsource
+not-installed"iagno
+not-installed"iagno-lang
+not-installed"ibacm
+not-installed"ibm-data-db2
+not-installed"ibmswtpm2
+not-installed"ibmtss
+not-installed"ibmtss-base
+not-installed"ibmtss-devel
+not-installed"ibsim
+not-installed"ibus
+not-installed"ibus-anthy
+not-installed"ibus-anthy-devel
+not-installed"ibus-cangjie
+not-installed"ibus-chewing
+not-installed"ibus-devel
+not-installed"ibus-gtk
+not-installed"ibus-gtk-32bit
+not-installed"ibus-gtk3
+not-installed"ibus-gtk3-32bit
+not-installed"ibus-hangul
+not-installed"ibus-input-pad
+not-installed"ibus-kkc
+not-installed"ibus-lang
+not-installed"ibus-libpinyin
+not-installed"ibus-libzhuyin
+not-installed"ibus-m17n
+not-installed"ibus-mozc
+not-installed"ibus-mozc-candidate-window
+not-installed"ibus-pinyin
+not-installed"ibus-rime
+not-installed"ibus-skk
+not-installed"ibus-table
+not-installed"ibus-table-chinese-array
+not-installed"ibus-table-chinese-cangjie
+not-installed"ibus-table-chinese-cantonese
+not-installed"ibus-table-chinese-easy
+not-installed"ibus-table-chinese-erbi
+not-installed"ibus-table-chinese-jyutping
+not-installed"ibus-table-chinese-quick
+not-installed"ibus-table-chinese-scj
+not-installed"ibus-table-chinese-stroke5
+not-installed"ibus-table-chinese-wu
+not-installed"ibus-table-chinese-wubi-haifeng
+not-installed"ibus-table-chinese-wubi-jidian
+not-installed"ibus-table-chinese-yong
+not-installed"ibus-table-cns11643
+not-installed"ibus-table-compose
+not-installed"ibus-table-devel
+not-installed"ibus-table-emoji
+not-installed"ibus-table-extraphrase
+not-installed"ibus-table-extraphrase-devel
+not-installed"ibus-table-hu-old-hungarian-rovas
+not-installed"ibus-table-ipa-x-sampa
+not-installed"ibus-table-latex
+not-installed"ibus-table-mathwriter
+not-installed"ibus-table-others
+not-installed"ibus-table-rusle
+not-installed"ibus-table-rustrad
+not-installed"ibus-table-thai
+not-installed"ibus-table-translit
+not-installed"ibus-table-translit-ua
+not-installed"ibus-table-viqr
+not-installed"ibus-table-yawerty
+not-installed"ibus-typing-booster
+not-installed"ibus-unikey
+not-installed"ibutils
+not-installed"ibutils-devel
+not-installed"ibutils-ui
+not-installed"icc-examin
+not-installed"icc-examin-lang
+not-installed"icc-mime-types
+not-installed"icc-profiles
+not-installed"icc-profiles-all
+not-installed"icc-profiles-basiccolor-lstarrgb
+not-installed"icc-profiles-basiccolor-printing2009-coat2
+not-installed"icc-profiles-basiccolor-printing2009-doc
+not-installed"icc-profiles-basiccolor-printing2009-extra
+not-installed"icc-profiles-lcms-lab
+not-installed"icc-profiles-mini
+not-installed"icc-profiles-openicc-rgb
+not-installed"icc-profiles-oyranos-extra
+not-installed"icc-targets-fogra
+not-installed"icc-targets-npes
+not-installed"iceWMCP
+not-installed"iceWMCP-addons
+installed"iceauth
+not-installed"icecast
+not-installed"icecast-doc
+not-installed"icecream
+not-installed"icecream-clang-wrappers
+not-installed"icecream-monitor
+not-installed"icedtea-web
+not-installed"icedtea-web-javadoc
+not-installed"ices
+installed"icewm
+not-installed"icewm-config-upstream
+installed"icewm-default
+installed"icewm-lang
+not-installed"icewm-lite
+installed"icewm-theme-branding
+not-installed"icewm-theme-yast-installation
+not-installed"icewm-themes
+not-installed"icinga2
+not-installed"icinga2-bin
+not-installed"icinga2-common
+not-installed"icinga2-doc
+not-installed"icinga2-ido-mysql
+not-installed"icinga2-ido-pgsql
+not-installed"icingacli
+not-installed"icingaweb2
+not-installed"icingaweb2-common
+not-installed"icingaweb2-module-director
+not-installed"icingaweb2-vendor-HTMLPurifier
+not-installed"icingaweb2-vendor-JShrink
+not-installed"icingaweb2-vendor-Parsedown
+not-installed"icingaweb2-vendor-dompdf
+not-installed"icingaweb2-vendor-lessphp
+not-installed"icingaweb2-vendor-zf1
+not-installed"icmake
+not-installed"icmpinfo
+not-installed"icmptunnel
+not-installed"icns-utils
+not-installed"ico
+not-installed"icon-naming-utils
+installed"icoutils
+not-installed"icu
+not-installed"icu4j
+not-installed"icu4j-charset
+not-installed"icu4j-javadoc
+not-installed"icu4j-localespi
+not-installed"id3lib
+not-installed"id3lib-32bit
+not-installed"id3lib-devel
+not-installed"id3lib-examples
+not-installed"id3v2
+not-installed"idep
+not-installed"ido-devel
+not-installed"idutils
+not-installed"idutils-lang
+not-installed"idzebra
+not-installed"idzebra-devel
+not-installed"idzebra-doc
+installed"ifplugd
+not-installed"iftop
+not-installed"ifuse
+not-installed"igerman98-doc
+not-installed"ignition
+not-installed"ignition-config-transpiler
+not-installed"ignition-dracut
+not-installed"ignuit
+not-installed"iio-sensor-proxy
+not-installed"iio-sensor-proxy-doc
+not-installed"ikiwiki
+not-installed"ikiwiki-w3m
+not-installed"ikona
+not-installed"ikvm
+not-installed"ilbc-devel
+not-installed"ilmbase-devel
+not-installed"ima-evm-utils-devel
+not-installed"ima-inspect
+not-installed"imageburner
+not-installed"imageburner-lang
+not-installed"imagej
+not-installed"imagewriter
+not-installed"imagination
+not-installed"imagination
+not-installed"imagination-debuginfo
+not-installed"imagination-debugsource
+not-installed"imagination-doc
+not-installed"imagination-lang
+not-installed"imaging
+not-installed"imake
+not-installed"imap
+not-installed"imap-devel
+not-installed"imapfilter
+not-installed"imb-gnu-mpich-hpc
+not-installed"imb-gnu-mvapich2-hpc
+not-installed"imb-gnu-openmpi1-hpc
+not-installed"imb-gnu-openmpi2-hpc
+not-installed"imb-gnu-openmpi3-hpc
+not-installed"imb-mpich
+not-installed"imb-mvapich2
+not-installed"imb-openmpi
+not-installed"imb-openmpi2
+not-installed"imb-openmpi3
+not-installed"imb_2019_3-gnu-mpich-hpc
+not-installed"imb_2019_3-gnu-mvapich2-hpc
+not-installed"imb_2019_3-gnu-openmpi1-hpc
+not-installed"imb_2019_3-gnu-openmpi2-hpc
+not-installed"imb_2019_3-gnu-openmpi3-hpc
+not-installed"imgen
+not-installed"imgp
+not-installed"imgp-bash-completion
+not-installed"imgp-fish-completion
+not-installed"imgp-zsh-completion
+not-installed"imgvtopgm
+not-installed"imhangul
+not-installed"imhangul-32bit
+not-installed"iml-devel
+not-installed"imlib2
+not-installed"imlib2-devel
+not-installed"imlib2-filters
+installed"imlib2-loaders
+not-installed"imobiledevice-tools
+not-installed"impressive
+not-installed"imv
+not-installed"imwheel
+not-installed"imx-usb-loader
+installed"incidenceeditor
+not-installed"incidenceeditor-devel
+installed"incidenceeditor-lang
+not-installed"include-what-you-use
+not-installed"include-what-you-use-tools
+not-installed"indent
+not-installed"indic-fonts
+not-installed"ineffassign
+not-installed"infiniband-diags
+not-installed"infiniband-diags-devel
+not-installed"infiniband-diags-devel-32bit
+not-installed"infinipath-psm-devel
+not-installed"infinoted
+not-installed"influxdb
+not-installed"influxdb-devel
+installed"info
+not-installed"info2html
+not-installed"info4
+not-installed"infos-creator-rpm
+not-installed"ini4j
+not-installed"ini4j-javadoc
+installed"initviocons
+not-installed"injeqt-devel
+not-installed"inkscape
+not-installed"inkscape-extensions-dia
+not-installed"inkscape-extensions-extra
+not-installed"inkscape-extensions-fig
+not-installed"inkscape-extensions-gimp
+not-installed"inkscape-extensions-skencil
+not-installed"inkscape-lang
+not-installed"inn
+not-installed"inn-devel
+not-installed"innoextract
+not-installed"innotop
+not-installed"inotify-tools
+not-installed"inotify-tools-devel
+not-installed"inotify-tools-doc
+not-installed"input-pad
+not-installed"input-pad-devel
+not-installed"input-pad-eek
+not-installed"input-pad-xtest
+not-installed"inspectrum
+installed"insserv-compat
+not-installed"inst-source-utils
+not-installed"install-initrd-Kubic
+not-installed"install-initrd-MicroOS
+not-installed"install-initrd-openSUSE
+not-installed"installation-images-Kubic
+not-installed"installation-images-MicroOS
+not-installed"installation-images-debuginfodeps-MicroOS
+not-installed"installation-images-debuginfodeps-openSUSE
+not-installed"instsource-susedata
+not-installed"int10h-oldschoolpc-fonts
+not-installed"intel-SINIT
+not-installed"intel-cmt-cat
+not-installed"intel-hybrid-driver
+not-installed"intel-media-driver
+installed"intel-vaapi-driver
+not-installed"intel-vaapi-driver-32bit
+not-installed"intelhex
+not-installed"interbench
+not-installed"intlfonts
+not-installed"intlfonts-arabic-bitmap-fonts
+not-installed"intlfonts-asian-bitmap-fonts
+not-installed"intlfonts-bdf-fonts
+not-installed"intlfonts-chinese-big-bitmap-fonts
+not-installed"intlfonts-chinese-bitmap-fonts
+not-installed"intlfonts-ethiopic-bitmap-fonts
+installed"intlfonts-euro-bitmap-fonts
+not-installed"intlfonts-japanese-big-bitmap-fonts
+not-installed"intlfonts-japanese-bitmap-fonts
+not-installed"intlfonts-phonetic-bitmap-fonts
+not-installed"intlfonts-ttf-fonts
+not-installed"intlfonts-type1-fonts
+not-installed"intltool
+not-installed"inwee
+installed"inxi
+not-installed"iodbc
+not-installed"iodbc-admin
+not-installed"iodine
+not-installed"iometer
+not-installed"ioping
+not-installed"iops
+not-installed"ior
+not-installed"iotop
+not-installed"iouyap
+not-installed"iozone
+not-installed"iozone-doc
+not-installed"ipa-ex-gothic-fonts
+not-installed"ipa-ex-mincho-fonts
+not-installed"ipa-gothic-bold-fonts
+not-installed"ipa-gothic-bolditalic-fonts
+not-installed"ipa-gothic-fonts
+not-installed"ipa-gothic-italic-fonts
+not-installed"ipa-mincho-fonts
+not-installed"ipa-pgothic-bold-fonts
+not-installed"ipa-pgothic-bolditalic-fonts
+not-installed"ipa-pgothic-fonts
+not-installed"ipa-pgothic-italic-fonts
+not-installed"ipa-pmincho-fonts
+not-installed"ipa-uigothic-fonts
+not-installed"ipadic
+not-installed"ipcalc
+installed"iperf
+not-installed"iperf-devel
+not-installed"ipmctl
+not-installed"ipmctl-devel
+not-installed"ipmctl-monitor
+not-installed"ipmitool
+not-installed"ipmitool-bmc-snmp-proxy
+not-installed"ipmiutil
+not-installed"ipmiutil-devel
+not-installed"ipmiutil-static
+not-installed"iprange
+installed"iproute2
+not-installed"iproute2-bash-completion
+not-installed"iproxy
+not-installed"ipsec-tools
+installed"ipset
+not-installed"ipset-devel
+installed"iptables
+not-installed"iptables-backend-nft
+not-installed"iptraf-ng
+installed"iputils
+not-installed"ipv6gen
+not-installed"ipv6toolkit
+not-installed"ipvsadm
+not-installed"ipw-firmware
+not-installed"ipxe-bootimgs
+not-installed"ipxrip
+not-installed"irda
+not-installed"irman-common
+not-installed"irman-utils
+installed"irqbalance
+not-installed"irrlicht-data
+not-installed"irrlicht-devel
+installed"irssi
+not-installed"irssi-devel
+not-installed"irssi-otr
+not-installed"isapnp
+not-installed"isapnp-devel
+not-installed"isatapd
+installed"iscsiuio
+not-installed"isight-firmware-tools
+not-installed"isl-devel
+not-installed"isl-devel-32bit
+installed"iso-codes
+not-installed"iso-codes-devel
+installed"iso-codes-lang
+not-installed"iso-country-flags-png
+installed"iso_ent
+not-installed"isomaster
+not-installed"isomaster
+not-installed"isomaster-debuginfo
+not-installed"isomaster-lang
+not-installed"isorelax
+installed"ispell
+installed"ispell-american
+not-installed"ispell-brazilian
+not-installed"ispell-british
+not-installed"ispell-bulgarian
+not-installed"ispell-catalan
+not-installed"ispell-czech
+not-installed"ispell-danish
+not-installed"ispell-dutch
+not-installed"ispell-esperanto
+not-installed"ispell-estonian
+not-installed"ispell-finnish
+not-installed"ispell-french
+not-installed"ispell-german
+not-installed"ispell-greek
+not-installed"ispell-hungarian
+not-installed"ispell-italian
+not-installed"ispell-naustrian
+not-installed"ispell-ngerman
+not-installed"ispell-norsk
+not-installed"ispell-nswiss
+not-installed"ispell-polish
+not-installed"ispell-portuguese
+not-installed"ispell-russian
+not-installed"ispell-slovak
+not-installed"ispell-slovene
+not-installed"ispell-spanish
+not-installed"ispell-swedish
+installed"issue-generator
+not-installed"istgt
+not-installed"istio-proxy
+not-installed"isync
+not-installed"itk
+not-installed"itpp-devel
+not-installed"itpp-doc
+not-installed"itstool
+not-installed"iucode-tool
+not-installed"iverilog
+not-installed"iverilog-devel
+not-installed"ivtv
+not-installed"ivtv-firmware
+not-installed"ivy-local
+not-installed"ivykis-devel
+not-installed"iw
+not-installed"iwatch
+not-installed"iwd
+not-installed"iwidgets
+not-installed"iwpmd
+not-installed"iwscanner
+installed"jack
+not-installed"jack-32bit
+not-installed"jack-rack
+not-installed"jackEQ
+not-installed"jack_capture
+not-installed"jack_mixer
+not-installed"jack_mixer
+not-installed"jack_mixer-debuginfo
+not-installed"jack_mixer-debugsource
+not-installed"jackmixdesk
+not-installed"jackmixdesk
+not-installed"jackmixdesk-debuginfo
+not-installed"jackmixdesk-debugsource
+not-installed"jackson-annotations
+not-installed"jackson-annotations-javadoc
+not-installed"jackson-bom
+not-installed"jackson-parent
+not-installed"jacktrip
+not-installed"jaero
+not-installed"jakarta-commons-discovery
+not-installed"jakarta-commons-discovery-javadoc
+not-installed"jakarta-commons-launcher
+not-installed"jakarta-commons-launcher-javadoc
+not-installed"jakarta-commons-modeler
+not-installed"jakarta-commons-modeler-javadoc
+not-installed"jakarta-commons-transaction
+not-installed"jakarta-commons-vfs
+not-installed"jakarta-commons-vfs-javadoc
+not-installed"jakarta-commons-vfs-manual
+not-installed"jakarta-poi
+not-installed"jakarta-poi-javadoc
+not-installed"jakarta-poi-manual
+not-installed"jakarta-slide-webdavclient
+not-installed"jakarta-slide-webdavclient-javadoc
+not-installed"jakarta-slide-webdavclient-repolib
+not-installed"jakarta-taglibs-standard
+not-installed"jakarta-taglibs-standard-javadoc
+not-installed"jameica
+not-installed"jameica-devel
+not-installed"jameica-javadoc
+not-installed"jamin
+not-installed"jansi
+not-installed"jansi-javadoc
+not-installed"jansi-native
+not-installed"jansi-native-javadoc
+not-installed"jarjar
+not-installed"jarjar-javadoc
+not-installed"jasper
+installed"java-11-openjdk
+not-installed"java-11-openjdk-accessibility
+not-installed"java-11-openjdk-demo
+not-installed"java-11-openjdk-devel
+installed"java-11-openjdk-headless
+not-installed"java-11-openjdk-javadoc
+not-installed"java-11-openjdk-jmods
+not-installed"java-11-openjdk-src
+not-installed"java-12-openjdk
+not-installed"java-12-openjdk-accessibility
+not-installed"java-12-openjdk-demo
+not-installed"java-12-openjdk-devel
+not-installed"java-12-openjdk-headless
+not-installed"java-12-openjdk-javadoc
+not-installed"java-12-openjdk-jmods
+not-installed"java-12-openjdk-src
+installed"java-1_8_0-openjdk
+not-installed"java-1_8_0-openjdk-accessibility
+not-installed"java-1_8_0-openjdk-demo
+not-installed"java-1_8_0-openjdk-devel
+installed"java-1_8_0-openjdk-headless
+not-installed"java-1_8_0-openjdk-javadoc
+not-installed"java-1_8_0-openjdk-src
+not-installed"java-atk-wrapper
+not-installed"java-binfmt-misc
+not-installed"java-cup
+not-installed"java-cup-manual
+not-installed"java-libkolabxml1
+not-installed"java-mraa
+not-installed"javacc
+not-installed"javacc-bootstrap
+not-installed"javacc-demo
+not-installed"javacc-javadoc
+not-installed"javacc-manual
+not-installed"javacc-maven-plugin
+not-installed"javacc-maven-plugin-javadoc
+not-installed"javadoc
+not-installed"javahelp2
+not-installed"javahelp2-javadoc
+not-installed"javahelp2-manual
+not-installed"javamail
+not-installed"javamail-javadoc
+installed"javapackages-filesystem
+not-installed"javapackages-gradle
+not-installed"javapackages-ivy
+not-installed"javapackages-local
+installed"javapackages-tools
+not-installed"javapoet
+not-installed"javapoet-javadoc
+not-installed"javassist
+not-installed"javassist-demo
+not-installed"javassist-javadoc
+not-installed"javassist-manual
+not-installed"javazic
+not-installed"jaxen
+not-installed"jaxodraw
+not-installed"jaxodraw-javadoc
+not-installed"jaxodraw-latex
+not-installed"jbig2dec
+not-installed"jbig2dec-devel
+not-installed"jbig2dec-devel-32bit
+not-installed"jbigkit
+not-installed"jboss-interceptors-1.2-api
+not-installed"jboss-interceptors-1.2-api-javadoc
+not-installed"jcifs
+not-installed"jcifs-demo
+not-installed"jcifs-javadoc
+not-installed"jcip-annotations
+not-installed"jcip-annotations-javadoc
+not-installed"jcl-over-slf4j
+not-installed"jcodings
+not-installed"jcommon
+not-installed"jcommon-javadoc
+not-installed"jcommon-test
+not-installed"jconvolver
+not-installed"jconvolver-examples
+not-installed"jcuber
+not-installed"jcuber-doc
+not-installed"jdepend
+not-installed"jdepend-demo
+not-installed"jdependency
+not-installed"jdependency-javadoc
+not-installed"jdo2-api
+not-installed"jdo2-api-javadoc
+not-installed"jdom
+not-installed"jdom2
+not-installed"jdom2-javadoc
+not-installed"jedit
+not-installed"jedit-javadoc
+not-installed"jemalloc
+not-installed"jemalloc-devel
+not-installed"jemmy
+not-installed"jemmy-javadoc
+not-installed"jeos-firstboot
+not-installed"jeos-firstboot-rpiwifi
+not-installed"jettison
+not-installed"jettison-javadoc
+not-installed"jeuclid
+not-installed"jeuclid-cli
+not-installed"jeuclid-fop
+not-installed"jeuclid-mathviewer
+not-installed"jfbterm
+not-installed"jffi
+not-installed"jffi-javadoc
+not-installed"jffi-native
+not-installed"jflex
+not-installed"jflex-bootstrap
+not-installed"jflex-doc
+not-installed"jformatstring
+not-installed"jformatstring-javadoc
+installed"jfsutils
+not-installed"jgmenu
+not-installed"jgoodies-forms
+not-installed"jgoodies-forms-demo
+not-installed"jgoodies-forms-javadoc
+not-installed"jgoodies-forms-manual
+not-installed"jgoodies-looks
+not-installed"jgoodies-looks-demo
+not-installed"jgoodies-looks-javadoc
+not-installed"jgoodies-looks-manual
+not-installed"jgraphx
+not-installed"jgroups
+not-installed"jgroups-javadoc
+not-installed"jgroups-manual
+not-installed"jgroups-repolib
+not-installed"jhbuild
+not-installed"jhbuild-lang
+not-installed"jhbuild-recommended-deps
+not-installed"jhead
+not-installed"jhighlight
+not-installed"jhighlight-javadoc
+not-installed"jigdo
+not-installed"jigit
+not-installed"jikes
+not-installed"jimtcl
+not-installed"jimtcl-devel
+not-installed"jing
+not-installed"jing-javadoc
+not-installed"jisp2
+not-installed"jisp2-demo
+not-installed"jisp2-javadoc
+not-installed"jlatexmath
+not-installed"jlatexmath-fop
+not-installed"jlatexmath-javadoc
+not-installed"jlex
+not-installed"jlfgr
+not-installed"jline
+not-installed"jline-javadoc
+not-installed"jline1
+not-installed"jline1-javadoc
+not-installed"jmdict
+not-installed"jmess
+not-installed"jmess
+not-installed"jmess-debuginfo
+not-installed"jmess-debugsource
+not-installed"jmock
+not-installed"jmock-demo
+not-installed"jmock-javadoc
+not-installed"jmol
+not-installed"jna
+not-installed"jna-javadoc
+not-installed"jo
+not-installed"joda-convert
+not-installed"joda-convert-javadoc
+not-installed"joda-time
+not-installed"joda-time-javadoc
+installed"joe
+not-installed"jogl2
+not-installed"john
+not-installed"john-wordlists
+not-installed"jomolhari-fonts
+not-installed"jondo
+not-installed"jondofox
+not-installed"jp
+not-installed"jp2a
+not-installed"jpegoptim
+not-installed"jpnevulator
+not-installed"jq
+not-installed"jrosetta
+not-installed"jrtplib-devel
+not-installed"js
+not-installed"js
+not-installed"js-debuginfo
+not-installed"js-debugsource
+not-installed"js-devel
+not-installed"jsch
+not-installed"jsch-agent-proxy-connector-factory
+not-installed"jsch-agent-proxy-core
+not-installed"jsch-agent-proxy-javadoc
+not-installed"jsch-agent-proxy-jsch
+not-installed"jsch-agent-proxy-pageant
+not-installed"jsch-agent-proxy-sshagent
+not-installed"jsch-agent-proxy-svnkit-trilead-ssh2
+not-installed"jsch-agent-proxy-usocket-jna
+not-installed"jsch-agent-proxy-usocket-nc
+not-installed"jsch-demo
+not-installed"jsch-javadoc
+not-installed"jshon
+not-installed"jsmn-devel
+not-installed"json-glib-devel
+installed"json-glib-lang
+not-installed"json-table
+not-installed"jsoncpp-devel
+not-installed"jsonrpc-glib-devel
+not-installed"jsoup
+not-installed"jsoup-javadoc
+not-installed"jsr-305
+not-installed"jsr-305-javadoc
+not-installed"jsr-311
+not-installed"jsr-311-javadoc
+not-installed"jthread-devel
+not-installed"jtidy
+not-installed"jtidy-javadoc
+not-installed"jtidy-scripts
+not-installed"judy-devel
+not-installed"judy-doc
+not-installed"juk
+not-installed"juk-lang
+not-installed"jul-to-slf4j
+not-installed"julia
+not-installed"julia-compat
+not-installed"julia-compat-debug
+not-installed"julia-compat-devel
+not-installed"julia-debug
+not-installed"julia-devel
+not-installed"julia-doc
+not-installed"jumpnbump
+not-installed"junit
+not-installed"junit-javadoc
+not-installed"junit-manual
+not-installed"junit5
+not-installed"junit5-guide
+not-installed"junit5-javadoc
+not-installed"junitperf
+not-installed"junitperf-demo
+not-installed"junitperf-javadoc
+not-installed"jupyter
+not-installed"jupyter-bqplot
+not-installed"jupyter-calysto
+not-installed"jupyter-doc
+not-installed"jupyter-hide_code
+not-installed"jupyter-imatlab
+not-installed"jupyter-ipydatawidgets
+not-installed"jupyter-ipydatawidgets-jupyterlab
+not-installed"jupyter-ipykernel
+not-installed"jupyter-ipyleaflet
+not-installed"jupyter-ipympl
+not-installed"jupyter-ipympl-jupyterlab
+not-installed"jupyter-ipyparallel
+not-installed"jupyter-ipyparallel-doc
+not-installed"jupyter-ipyscales
+not-installed"jupyter-ipysheet
+not-installed"jupyter-ipyvolume
+not-installed"jupyter-ipywebrtc
+not-installed"jupyter-jupyter-contrib-nbextensions
+not-installed"jupyter-jupyter-full-width
+not-installed"jupyter-jupyter-require
+not-installed"jupyter-jupyter-server
+not-installed"jupyter-jupyter-themer
+not-installed"jupyter-jupyter-wysiwyg
+not-installed"jupyter-jupyter_client
+not-installed"jupyter-jupyter_client-doc
+not-installed"jupyter-jupyter_cms
+not-installed"jupyter-jupyter_console
+not-installed"jupyter-jupyter_console-doc
+not-installed"jupyter-jupyter_contrib_core
+not-installed"jupyter-jupyter_core
+not-installed"jupyter-jupyter_core-doc
+not-installed"jupyter-jupyter_core-filesystem
+not-installed"jupyter-jupyter_dashboards
+not-installed"jupyter-jupyter_highlight_selected_word
+not-installed"jupyter-jupyter_latex_envs
+not-installed"jupyter-jupyter_nbextensions_configurator
+not-installed"jupyter-jupyterbgnotify
+not-installed"jupyter-jupyterlab
+not-installed"jupyter-jupyterlab-filesystem
+not-installed"jupyter-jupyterlab-ipyscales
+not-installed"jupyter-jupyterlab-latex
+not-installed"jupyter-jupyterlab-server
+not-installed"jupyter-jupyterlab_github
+not-installed"jupyter-jupyterlab_templates
+not-installed"jupyter-jupytext
+not-installed"jupyter-jupytext-jupyterlab
+not-installed"jupyter-lineup-widget
+not-installed"jupyter-matlab-kernel
+not-installed"jupyter-nbconvert
+not-installed"jupyter-nbconvert-doc
+not-installed"jupyter-nbconvert-latex
+not-installed"jupyter-nbdime
+not-installed"jupyter-nbdime-git
+not-installed"jupyter-nbdime-hg
+not-installed"jupyter-nbdime-jupyterlab
+not-installed"jupyter-nbformat
+not-installed"jupyter-nbformat-doc
+not-installed"jupyter-nbinteract
+not-installed"jupyter-nbpresent
+not-installed"jupyter-notebook
+not-installed"jupyter-notebook-doc
+not-installed"jupyter-notebook-filesystem
+not-installed"jupyter-notebook-lang
+not-installed"jupyter-notebook-latex
+not-installed"jupyter-octave-kernel
+not-installed"jupyter-plotly
+not-installed"jupyter-pythreejs
+not-installed"jupyter-pythreejs-jupyterlab
+not-installed"jupyter-qgrid
+not-installed"jupyter-qtconsole
+not-installed"jupyter-qtconsole-doc
+not-installed"jupyter-rise
+not-installed"jupyter-sidecar-jupyterlab
+not-installed"jupyter-vega
+not-installed"jupyter-vispy
+not-installed"jupyter-voila
+not-installed"jupyter-widgetsnbextension
+not-installed"jvnet-parent
+not-installed"jvyamlb
+not-installed"jwt_verify_lib-devel
+not-installed"jxrlib
+not-installed"jxrlib-devel
+not-installed"jython
+not-installed"jython-demo
+not-installed"jython-javadoc
+not-installed"jython-manual
+not-installed"jzlib
+not-installed"jzlib-demo
+not-installed"k3b
+not-installed"k3b-devel
+not-installed"k3b-lang
+not-installed"k3s
+not-installed"k3s-hyperkube
+not-installed"k4dirstat
+not-installed"k4dirstat-lang
+not-installed"k9copy
+not-installed"k9copy
+not-installed"k9copy-debuginfo
+not-installed"k9copy-debugsource
+not-installed"k9copy-lang
+installed"kaccounts-integration
+not-installed"kaccounts-integration-32bit
+not-installed"kaccounts-integration-devel
+not-installed"kaccounts-integration-devel-32bit
+installed"kaccounts-integration-lang
+installed"kaccounts-providers
+installed"kaccounts-providers-lang
+not-installed"kactivities-stats-devel
+not-installed"kactivities-stats-devel-32bit
+not-installed"kactivities5-devel
+not-installed"kactivities5-devel-32bit
+installed"kactivities5-imports
+not-installed"kactivities5-tools
+installed"kactivitymanagerd
+installed"kactivitymanagerd-lang
+installed"kaddressbook
+installed"kaddressbook-lang
+not-installed"kadu
+not-installed"kadu-devel
+not-installed"kadu-sound-bns
+not-installed"kadu-sound-drums
+not-installed"kadu-sound-florkus
+not-installed"kadu-sound-michalsrodek
+not-installed"kadu-sound-percussion
+not-installed"kadu-sound-ultr
+not-installed"kaffeine
+not-installed"kaffeine-lang
+not-installed"kail
+not-installed"kajaani-kombat
+not-installed"kajaani-kombat-server
+not-installed"kajongg
+not-installed"kajongg-lang
+not-installed"kakasi
+not-installed"kakasi-devel
+not-installed"kakasi-dict
+not-installed"kakoune
+not-installed"kalarm
+not-installed"kalarm-lang
+installed"kalarmcal
+not-installed"kalarmcal-devel
+installed"kalarmcal-lang
+not-installed"kalgebra
+not-installed"kalgebra-lang
+not-installed"kalgebra-mobile
+not-installed"kalzium
+not-installed"kalzium-devel
+not-installed"kalzium-lang
+not-installed"kamera-lang
+not-installed"kamerka
+not-installed"kamerka-lang
+not-installed"kamoso
+not-installed"kamoso-lang
+not-installed"kanagram
+not-installed"kanagram-lang
+not-installed"kanjipad
+not-installed"kapidox
+not-installed"kapman
+not-installed"kapman-lang
+not-installed"kapptemplate
+not-installed"kapptemplate-lang
+not-installed"karchive-devel
+not-installed"karchive-devel-32bit
+not-installed"kasumi
+not-installed"katacontainers
+not-installed"katacontainers-image-initrd
+installed"kate
+installed"kate-lang
+installed"kate-plugins
+not-installed"kate4-parts
+not-installed"katomic
+not-installed"katomic-lang
+not-installed"kauth-devel
+not-installed"kauth-devel-32bit
+not-installed"kawaii-player
+not-installed"kbackup
+not-installed"kbackup-lang
+installed"kbd
+installed"kbd-legacy
+not-installed"kbdsniffd
+not-installed"kbfs
+not-installed"kbfs-git
+not-installed"kbfs-tool
+not-installed"kbibtex
+not-installed"kbibtex-devel
+not-installed"kbibtex-lang
+not-installed"kblackbox
+not-installed"kblackbox-lang
+not-installed"kblocks
+not-installed"kblocks-lang
+not-installed"kblog-devel
+not-installed"kblog-lang
+not-installed"kbookmarks-devel
+not-installed"kbookmarks-devel-32bit
+not-installed"kbounce
+not-installed"kbounce-lang
+not-installed"kbreakout
+not-installed"kbreakout-lang
+not-installed"kbruch
+not-installed"kbruch-lang
+not-installed"kbuild
+not-installed"kcachegrind
+not-installed"kcachegrind-lang
+installed"kcalc
+installed"kcalc-lang
+not-installed"kcalcore-devel
+installed"kcalutils
+not-installed"kcalutils-devel
+installed"kcalutils-lang
+installed"kcharselect
+installed"kcharselect-lang
+not-installed"kchmviewer
+installed"kcm_sddm
+installed"kcm_sddm-lang
+installed"kcm_tablet
+installed"kcm_tablet-lang
+not-installed"kcmutils-devel
+not-installed"kcmutils-devel-32bit
+not-installed"kcodecs-devel
+not-installed"kcodecs-devel-32bit
+not-installed"kcolorchooser
+not-installed"kcolorchooser-lang
+not-installed"kcompletion-devel
+not-installed"kcompletion-devel-32bit
+installed"kconf_update5
+not-installed"kconfig-devel
+not-installed"kconfig-devel-32bit
+not-installed"kconfigwidgets-devel
+not-installed"kconfigwidgets-devel-32bit
+not-installed"kcontacts-devel
+not-installed"kcontacts-devel-32bit
+installed"kcontacts-lang
+installed"kcoreaddons
+not-installed"kcoreaddons-devel
+not-installed"kcoreaddons-devel-32bit
+installed"kcoreaddons-lang
+not-installed"kcov
+not-installed"kcrash-devel
+not-installed"kcrash-devel-32bit
+not-installed"kcron
+not-installed"kcron-lang
+installed"kdav
+not-installed"kdav-devel
+installed"kdav-lang
+not-installed"kdb-devel
+not-installed"kdb-lang
+not-installed"kdb-mysql-driver
+not-installed"kdb-postgresql-driver
+not-installed"kdb-sqlite3-driver
+not-installed"kdbg
+not-installed"kdbg-lang
+not-installed"kdbusaddons-devel
+not-installed"kdbusaddons-devel-32bit
+installed"kdbusaddons-tools
+installed"kde
+installed"kde-cli-tools5
+installed"kde-cli-tools5-lang
+installed"kde-gtk-config5
+installed"kde-gtk-config5-gtk2
+installed"kde-gtk-config5-gtk3
+installed"kde-gtk-config5-lang
+not-installed"kde-l10n-devel
+not-installed"kde-oxygen-fonts
+installed"kde-print-manager
+installed"kde-print-manager-lang
+installed"kde-user-manager
+installed"kde-user-manager-lang
+installed"kde4-filesystem
+not-installed"kde4-kgreeter-plugins
+installed"kde_pim
+installed"kde_plasma
+installed"kdebase4-runtime
+not-installed"kdebase4-runtime-devel
+not-installed"kdebase4-workspace
+not-installed"kdebase4-workspace-addons
+not-installed"kdebase4-workspace-devel
+not-installed"kdebase4-workspace-liboxygenstyle
+not-installed"kdebase4-workspace-liboxygenstyle-32bit
+installed"kdebase4-workspace-libs
+not-installed"kdebase4-workspace-libs-32bit
+not-installed"kdebugsettings
+not-installed"kdebugsettings-lang
+installed"kdeclarative-components
+not-installed"kdeclarative-components-32bit
+not-installed"kdeclarative-devel
+not-installed"kdeclarative-devel-32bit
+not-installed"kdeclarative-tools
+installed"kdeconnect-kde
+installed"kdeconnect-kde-lang
+installed"kded
+not-installed"kded-devel
+installed"kded-lang
+not-installed"kdeedu-data
+installed"kdegames-carddecks-default
+not-installed"kdegames-carddecks-other
+installed"kdegraphics-thumbnailers
+installed"kdelibs4
+installed"kdelibs4-branding-upstream
+installed"kdelibs4-core
+not-installed"kdelibs4-doc
+installed"kdelibs4support
+not-installed"kdelibs4support-32bit
+not-installed"kdelibs4support-devel
+not-installed"kdelibs4support-devel-32bit
+installed"kdelibs4support-lang
+installed"kdenetwork-filesharing
+installed"kdenetwork-filesharing-lang
+not-installed"kdenlive
+not-installed"kdenlive-lang
+installed"kdepim-addons
+installed"kdepim-addons-lang
+installed"kdepim-apps-libs
+not-installed"kdepim-apps-libs-devel
+installed"kdepim-apps-libs-lang
+installed"kdepim-runtime
+installed"kdepim-runtime-lang
+not-installed"kdesdk-scripts
+not-installed"kdesdk-scripts-kf5-porting
+not-installed"kdesdk-scripts-lang
+not-installed"kdesdk-thumbnailers
+not-installed"kdesdk-thumbnailers-lang
+not-installed"kdesignerplugin
+not-installed"kdesignerplugin-devel
+not-installed"kdesignerplugin-lang
+not-installed"kdesu-devel
+not-installed"kdesu-devel-32bit
+not-installed"kdesvn
+not-installed"kdevelop5
+not-installed"kdevelop5-lang
+not-installed"kdevelop5-pg-qt
+not-installed"kdevelop5-plugin-php
+not-installed"kdevelop5-plugin-php-devel
+not-installed"kdevelop5-plugin-php-lang
+not-installed"kdevelop5-plugin-python3
+not-installed"kdevelop5-plugin-python3-lang
+not-installed"kdevplatform
+not-installed"kdevplatform-devel
+not-installed"kdevplatform-lang
+not-installed"kdewebkit-devel
+not-installed"kdewebkit-devel-32bit
+not-installed"kdf
+not-installed"kdf-lang
+not-installed"kdgantt2
+not-installed"kdgantt2-devel
+not-installed"kdiagram-devel
+installed"kdialog
+installed"kdialog-lang
+not-installed"kdiamond
+not-installed"kdiamond-lang
+not-installed"kdiff3
+not-installed"kdiff3-lang
+not-installed"kdm
+not-installed"kdm-branding-upstream
+not-installed"kdnssd
+not-installed"kdnssd-framework-devel
+not-installed"kdnssd-framework-devel-32bit
+not-installed"kdnssd-lang
+installed"kdoctools
+not-installed"kdoctools-devel
+not-installed"kdoctools-devel-32bit
+installed"kdoctools-lang
+not-installed"kdstatemachineeditor-devel
+installed"kdump
+not-installed"kdumpid
+not-installed"kdvdcreator
+not-installed"kdvdcreator
+not-installed"kdvdcreator-debuginfo
+not-installed"kdvdcreator-debugsource
+not-installed"keditbookmarks
+not-installed"keditbookmarks-lang
+not-installed"keepalived
+not-installed"keepass
+not-installed"keepassx
+installed"keepassxc
+installed"keepassxc-lang
+not-installed"kelbt
+not-installed"kemoticons-devel
+not-installed"kemoticons-devel-32bit
+not-installed"kernel-coverage
+not-installed"kernel-debug
+not-installed"kernel-debug-devel
+installed"kernel-default
+not-installed"kernel-default-base
+not-installed"kernel-default-base-rebuild
+installed"kernel-default-devel
+installed"kernel-devel
+not-installed"kernel-docs
+not-installed"kernel-docs-html
+installed"kernel-firmware
+not-installed"kernel-firmware-all
+not-installed"kernel-firmware-amdgpu
+not-installed"kernel-firmware-ath10k
+not-installed"kernel-firmware-atheros
+not-installed"kernel-firmware-bluetooth
+not-installed"kernel-firmware-bnx2
+not-installed"kernel-firmware-brcm
+not-installed"kernel-firmware-chelsio
+not-installed"kernel-firmware-dpaa2
+not-installed"kernel-firmware-i915
+not-installed"kernel-firmware-intel
+not-installed"kernel-firmware-iwlwifi
+not-installed"kernel-firmware-liquidio
+not-installed"kernel-firmware-marvell
+not-installed"kernel-firmware-media
+not-installed"kernel-firmware-mediatek
+not-installed"kernel-firmware-mellanox
+not-installed"kernel-firmware-mwifiex
+not-installed"kernel-firmware-network
+not-installed"kernel-firmware-nfp
+not-installed"kernel-firmware-nvidia
+not-installed"kernel-firmware-platform
+not-installed"kernel-firmware-qlogic
+not-installed"kernel-firmware-radeon
+not-installed"kernel-firmware-realtek
+not-installed"kernel-firmware-serial
+not-installed"kernel-firmware-sound
+not-installed"kernel-firmware-ti
+not-installed"kernel-firmware-ueagle
+not-installed"kernel-firmware-usb-network
+not-installed"kernel-kvmsmall
+not-installed"kernel-kvmsmall-devel
+installed"kernel-macros
+not-installed"kernel-obs-build
+not-installed"kernel-obs-qa
+not-installed"kernel-pae
+not-installed"kernel-pae-devel
+not-installed"kernel-source
+not-installed"kernel-source-vanilla
+not-installed"kernel-syms
+not-installed"kernel-vanilla
+not-installed"kernel-vanilla-devel
+not-installed"ketchup
+installed"kexec-tools
+not-installed"kexi
+not-installed"kexi-lang
+not-installed"kexis
+not-installed"kexis
+not-installed"kexis-debuginfo
+not-installed"kexis-debugsource
+not-installed"keybase-client
+not-installed"keybinder-3.0-devel
+not-installed"keybinder-devel
+not-installed"keybinder-lua
+not-installed"keychain
+installed"keyutils
+not-installed"keyutils-devel
+not-installed"keyutils-devel-32bit
+not-installed"kf5-filesystem
+not-installed"kf5-kcm-fcitx
+not-installed"kf5-kcm-fcitx-icons
+not-installed"kf5-mediainfo
+not-installed"kf5-pacpl-plugins
+installed"kfilemetadata5
+not-installed"kfilemetadata5-32bit
+not-installed"kfilemetadata5-devel
+installed"kfilemetadata5-lang
+not-installed"kfind
+not-installed"kfind-lang
+not-installed"kfloppy
+not-installed"kfloppy-lang
+not-installed"kfourinline
+not-installed"kfourinline-lang
+installed"kgamma5
+installed"kgamma5-lang
+not-installed"kgeography
+not-installed"kgeography-lang
+not-installed"kget
+not-installed"kget-lang
+not-installed"kglobalaccel-devel
+not-installed"kglobalaccel-devel-32bit
+installed"kglobalaccel5
+not-installed"kgoldrunner
+not-installed"kgoldrunner-lang
+not-installed"kgpg
+not-installed"kgpg-lang
+not-installed"kguiaddons-devel
+not-installed"kguiaddons-devel-32bit
+not-installed"khangman
+not-installed"khangman-lang
+installed"khelpcenter5
+installed"khelpcenter5-lang
+not-installed"khmeros-fonts
+not-installed"kholidays
+not-installed"kholidays-devel
+installed"khotkeys5
+not-installed"khotkeys5-devel
+installed"khotkeys5-lang
+not-installed"khtml-devel
+not-installed"khtml-devel-32bit
+not-installed"khunphan
+not-installed"ki18n-devel
+not-installed"ki18n-devel-32bit
+not-installed"kicad
+not-installed"kicad-doc
+not-installed"kicad-doc-ca
+not-installed"kicad-doc-de
+not-installed"kicad-doc-en
+not-installed"kicad-doc-es
+not-installed"kicad-doc-fr
+not-installed"kicad-doc-id
+not-installed"kicad-doc-it
+not-installed"kicad-doc-ja
+not-installed"kicad-doc-pdf-ca
+not-installed"kicad-doc-pdf-de
+not-installed"kicad-doc-pdf-en
+not-installed"kicad-doc-pdf-es
+not-installed"kicad-doc-pdf-fr
+not-installed"kicad-doc-pdf-id
+not-installed"kicad-doc-pdf-it
+not-installed"kicad-doc-pdf-ja
+not-installed"kicad-doc-pdf-ru
+not-installed"kicad-doc-pdf-zh
+not-installed"kicad-doc-pl
+not-installed"kicad-doc-ru
+not-installed"kicad-doc-zh
+not-installed"kicad-footprints
+not-installed"kicad-lang-bg
+not-installed"kicad-lang-ca
+not-installed"kicad-lang-cs
+not-installed"kicad-lang-de
+not-installed"kicad-lang-el
+not-installed"kicad-lang-en
+not-installed"kicad-lang-es
+not-installed"kicad-lang-fi
+not-installed"kicad-lang-fr
+not-installed"kicad-lang-hu
+not-installed"kicad-lang-it
+not-installed"kicad-lang-ja
+not-installed"kicad-lang-ko
+not-installed"kicad-lang-lt
+not-installed"kicad-lang-nl
+not-installed"kicad-lang-pl
+not-installed"kicad-lang-pt
+not-installed"kicad-lang-ru
+not-installed"kicad-lang-sk
+not-installed"kicad-lang-sl
+not-installed"kicad-lang-sv
+not-installed"kicad-lang-zh_CN
+not-installed"kicad-lang-zh_TW
+not-installed"kicad-packages3D
+not-installed"kicad-symbols
+not-installed"kicad-templates
+not-installed"kiconthemes-devel
+not-installed"kiconthemes-devel-32bit
+not-installed"kid3
+not-installed"kid3-cli
+not-installed"kid3-core
+not-installed"kid3-core-lang
+not-installed"kid3-doc
+not-installed"kid3-qt
+not-installed"kid3-qt-doc
+not-installed"kidentitymanagement-devel
+installed"kidentitymanagement-lang
+not-installed"kidletime-devel
+not-installed"kidletime-devel-32bit
+not-installed"kig
+not-installed"kig-lang
+not-installed"kigo
+not-installed"kigo-lang
+not-installed"kile
+not-installed"kile-lang
+not-installed"killbots
+not-installed"killbots-lang
+not-installed"killerd
+not-installed"killswitch-applet
+not-installed"kim
+not-installed"kim
+not-installed"kim-api
+not-installed"kim-api-devel
+not-installed"kim-api-examples
+installed"kimageformats
+not-installed"kimageformats-32bit
+not-installed"kimageformats-eps
+not-installed"kimagemapeditor
+not-installed"kimagemapeditor-lang
+not-installed"kimap-devel
+installed"kimap-lang
+installed"kinfocenter5
+installed"kinfocenter5-lang
+installed"kinit
+not-installed"kinit-32bit
+not-installed"kinit-devel
+installed"kinit-lang
+not-installed"kinput2
+installed"kio
+not-installed"kio-32bit
+installed"kio-core
+not-installed"kio-core-32bit
+not-installed"kio-devel
+not-installed"kio-devel-32bit
+installed"kio-extras5
+installed"kio-extras5-lang
+not-installed"kio-gdrive
+not-installed"kio-gdrive-lang
+installed"kio-lang
+not-installed"kio-stash
+not-installed"kio-stash-lang
+installed"kio_audiocd
+not-installed"kio_audiocd-devel
+installed"kio_audiocd-lang
+not-installed"kio_iso
+not-installed"kio_kamera
+not-installed"kio_perldoc
+not-installed"kio_perldoc-lang
+installed"kipi-plugins
+installed"kipi-plugins-lang
+not-installed"kirigami
+not-installed"kirigami-devel
+not-installed"kirigami-gallery
+not-installed"kirigami-gallery-lang
+not-installed"kirigami-lang
+installed"kirigami2
+not-installed"kirigami2-devel
+installed"kirigami2-lang
+not-installed"kiriki
+not-installed"kiriki-lang
+not-installed"kismet
+not-installed"kitemmodels-devel
+not-installed"kitemmodels-devel-32bit
+not-installed"kitemviews-devel
+not-installed"kitemviews-devel-32bit
+not-installed"kiten
+not-installed"kiten-devel
+not-installed"kiten-lang
+installed"kitinerary
+not-installed"kitinerary-devel
+not-installed"kitty
+not-installed"kiwi-boot-descriptions
+not-installed"kiwi-boot-requires
+not-installed"kiwi-filesystem-requires
+not-installed"kiwi-image-docker-requires
+not-installed"kiwi-image-iso-requires
+not-installed"kiwi-image-oem-requires
+not-installed"kiwi-image-pxe-requires
+not-installed"kiwi-image-tbz-requires
+not-installed"kiwi-image-vmx-requires
+not-installed"kiwi-man-pages
+not-installed"kiwi-pxeboot
+not-installed"kiwi-tools
+not-installed"kjobwidgets-devel
+not-installed"kjobwidgets-devel-32bit
+not-installed"kjots
+not-installed"kjots-lang
+not-installed"kjs-devel
+not-installed"kjs-devel-32bit
+not-installed"kjs-devel-lang
+not-installed"kjsembed-devel
+not-installed"kjsembed-devel-32bit
+not-installed"kjumpingcube
+not-installed"kjumpingcube-lang
+not-installed"kkc-data
+not-installed"klatexformula
+not-installed"klatexformula-apidoc
+not-installed"klavaro
+installed"kldap
+not-installed"kldap-devel
+installed"kldap-lang
+not-installed"klee
+not-installed"klee-uclibc-devel-static
+installed"kleopatra
+installed"kleopatra-lang
+not-installed"klettres
+not-installed"klettres-lang
+not-installed"klfbackend-devel
+not-installed"klftools-devel
+not-installed"klick
+not-installed"klick
+not-installed"klick-debuginfo
+not-installed"klick-debugsource
+not-installed"klickety
+not-installed"klickety-lang
+not-installed"klines
+not-installed"klines-lang
+installed"klogd
+installed"kmag
+installed"kmag-lang
+installed"kmahjongg
+installed"kmahjongg-lang
+installed"kmail
+installed"kmail-account-wizard
+installed"kmail-account-wizard-lang
+installed"kmail-application-icons
+installed"kmail-lang
+installed"kmailtransport
+not-installed"kmailtransport-devel
+installed"kmailtransport-lang
+not-installed"kmarkdownwebview
+not-installed"kmarkdownwebview-lang
+not-installed"kmbox-devel
+not-installed"kmediaplayer-devel
+not-installed"kmediaplayer-devel-32bit
+installed"kmenuedit5
+installed"kmenuedit5-lang
+not-installed"kmime-devel
+installed"kmime-lang
+installed"kmines
+installed"kmines-lang
+not-installed"kmix
+not-installed"kmix-lang
+installed"kmod
+not-installed"kmod-bash-completion
+installed"kmod-compat
+installed"kmousetool
+installed"kmousetool-lang
+not-installed"kmouth
+not-installed"kmouth-lang
+installed"kmozillahelper
+not-installed"kmplot
+not-installed"kmplot-lang
+not-installed"kmscon
+not-installed"kmscube
+not-installed"kmymoney
+not-installed"kmymoney-devel
+not-installed"kmymoney-lang
+not-installed"knavalbattle
+not-installed"knavalbattle-lang
+not-installed"knemo
+not-installed"knemo-lang
+not-installed"knetwalk
+not-installed"knetwalk-lang
+installed"knewstuff
+not-installed"knewstuff-core-devel
+not-installed"knewstuff-devel
+not-installed"knewstuff-devel-32bit
+not-installed"knewstuff-imports
+not-installed"knewstuff-quick-devel
+not-installed"knights
+not-installed"knights-lang
+not-installed"knock
+not-installed"knockd
+not-installed"knot
+installed"knotes
+installed"knotes-lang
+not-installed"knotifications-devel
+not-installed"knotifications-devel-32bit
+not-installed"knotifyconfig-devel
+not-installed"knotifyconfig-devel-32bit
+not-installed"kochmorse
+not-installed"kodi
+not-installed"kodi
+not-installed"kodi-debuginfo
+not-installed"kodi-debugsource
+not-installed"kodi-devel
+not-installed"kodi.binary-addons
+not-installed"kodi.binary-addons
+not-installed"kodi.binary-addons-audiodecoder.2sf
+not-installed"kodi.binary-addons-audiodecoder.2sf-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.asap
+not-installed"kodi.binary-addons-audiodecoder.asap-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.fluidsynth
+not-installed"kodi.binary-addons-audiodecoder.fluidsynth-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.gme
+not-installed"kodi.binary-addons-audiodecoder.gme-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.gsf
+not-installed"kodi.binary-addons-audiodecoder.gsf-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.modplug
+not-installed"kodi.binary-addons-audiodecoder.modplug-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.nosefart
+not-installed"kodi.binary-addons-audiodecoder.nosefart-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.organya
+not-installed"kodi.binary-addons-audiodecoder.organya-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.qsf
+not-installed"kodi.binary-addons-audiodecoder.qsf-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.snesapu
+not-installed"kodi.binary-addons-audiodecoder.snesapu-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.ssf
+not-installed"kodi.binary-addons-audiodecoder.ssf-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.stsound
+not-installed"kodi.binary-addons-audiodecoder.stsound-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.timidity
+not-installed"kodi.binary-addons-audiodecoder.timidity-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.upse
+not-installed"kodi.binary-addons-audiodecoder.upse-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.usf
+not-installed"kodi.binary-addons-audiodecoder.usf-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.vgmstream
+not-installed"kodi.binary-addons-audiodecoder.vgmstream-debuginfo
+not-installed"kodi.binary-addons-audiodecoder.wsr
+not-installed"kodi.binary-addons-audiodecoder.wsr-debuginfo
+not-installed"kodi.binary-addons-audioencoder.flac
+not-installed"kodi.binary-addons-audioencoder.flac-debuginfo
+not-installed"kodi.binary-addons-audioencoder.lame
+not-installed"kodi.binary-addons-audioencoder.lame-debuginfo
+not-installed"kodi.binary-addons-audioencoder.vorbis
+not-installed"kodi.binary-addons-audioencoder.vorbis-debuginfo
+not-installed"kodi.binary-addons-audioencoder.wav
+not-installed"kodi.binary-addons-audioencoder.wav-debuginfo
+not-installed"kodi.binary-addons-debuginfo
+not-installed"kodi.binary-addons-debugsource
+not-installed"kodi.binary-addons-imagedecoder.mpo
+not-installed"kodi.binary-addons-imagedecoder.mpo-debuginfo
+not-installed"kodi.binary-addons-imagedecoder.raw
+not-installed"kodi.binary-addons-imagedecoder.raw-debuginfo
+not-installed"kodi.binary-addons-inputstream.adaptive
+not-installed"kodi.binary-addons-inputstream.adaptive-debuginfo
+not-installed"kodi.binary-addons-inputstream.rtmp
+not-installed"kodi.binary-addons-inputstream.rtmp-debuginfo
+not-installed"kodi.binary-addons-peripheral.xarcade
+not-installed"kodi.binary-addons-peripheral.xarcade-debuginfo
+not-installed"kodi.binary-addons-pvr.argustv
+not-installed"kodi.binary-addons-pvr.argustv-debuginfo
+not-installed"kodi.binary-addons-pvr.demo
+not-installed"kodi.binary-addons-pvr.demo-debuginfo
+not-installed"kodi.binary-addons-pvr.dvblink
+not-installed"kodi.binary-addons-pvr.dvblink-debuginfo
+not-installed"kodi.binary-addons-pvr.dvbviewer
+not-installed"kodi.binary-addons-pvr.dvbviewer-debuginfo
+not-installed"kodi.binary-addons-pvr.filmon
+not-installed"kodi.binary-addons-pvr.filmon-debuginfo
+not-installed"kodi.binary-addons-pvr.hdhomerun
+not-installed"kodi.binary-addons-pvr.hdhomerun-debuginfo
+not-installed"kodi.binary-addons-pvr.hts
+not-installed"kodi.binary-addons-pvr.hts-debuginfo
+not-installed"kodi.binary-addons-pvr.iptvsimple
+not-installed"kodi.binary-addons-pvr.iptvsimple-debuginfo
+not-installed"kodi.binary-addons-pvr.mediaportal.tvserver
+not-installed"kodi.binary-addons-pvr.mediaportal.tvserver-debuginfo
+not-installed"kodi.binary-addons-pvr.mythtv
+not-installed"kodi.binary-addons-pvr.mythtv-debuginfo
+not-installed"kodi.binary-addons-pvr.nextpvr
+not-installed"kodi.binary-addons-pvr.nextpvr-debuginfo
+not-installed"kodi.binary-addons-pvr.njoy
+not-installed"kodi.binary-addons-pvr.njoy-debuginfo
+not-installed"kodi.binary-addons-pvr.octonet
+not-installed"kodi.binary-addons-pvr.octonet-debuginfo
+not-installed"kodi.binary-addons-pvr.pctv
+not-installed"kodi.binary-addons-pvr.pctv-debuginfo
+not-installed"kodi.binary-addons-pvr.sledovanitv.cz
+not-installed"kodi.binary-addons-pvr.sledovanitv.cz-debuginfo
+not-installed"kodi.binary-addons-pvr.stalker
+not-installed"kodi.binary-addons-pvr.stalker-debuginfo
+not-installed"kodi.binary-addons-pvr.teleboy
+not-installed"kodi.binary-addons-pvr.teleboy-debuginfo
+not-installed"kodi.binary-addons-pvr.vbox
+not-installed"kodi.binary-addons-pvr.vbox-debuginfo
+not-installed"kodi.binary-addons-pvr.vdr.vnsi
+not-installed"kodi.binary-addons-pvr.vdr.vnsi-debuginfo
+not-installed"kodi.binary-addons-pvr.vuplus
+not-installed"kodi.binary-addons-pvr.vuplus-debuginfo
+not-installed"kodi.binary-addons-pvr.wmc
+not-installed"kodi.binary-addons-pvr.wmc-debuginfo
+not-installed"kodi.binary-addons-pvr.zattoo
+not-installed"kodi.binary-addons-pvr.zattoo-debuginfo
+not-installed"kodi.binary-addons-screensaver.asteroids
+not-installed"kodi.binary-addons-screensaver.asteroids-debuginfo
+not-installed"kodi.binary-addons-screensaver.asterwave
+not-installed"kodi.binary-addons-screensaver.asterwave-debuginfo
+not-installed"kodi.binary-addons-screensaver.biogenesis
+not-installed"kodi.binary-addons-screensaver.biogenesis-debuginfo
+not-installed"kodi.binary-addons-screensaver.cpblobs
+not-installed"kodi.binary-addons-screensaver.cpblobs-debuginfo
+not-installed"kodi.binary-addons-screensaver.greynetic
+not-installed"kodi.binary-addons-screensaver.greynetic-debuginfo
+not-installed"kodi.binary-addons-screensaver.matrixtrails
+not-installed"kodi.binary-addons-screensaver.matrixtrails-debuginfo
+not-installed"kodi.binary-addons-screensaver.pingpong
+not-installed"kodi.binary-addons-screensaver.pingpong-debuginfo
+not-installed"kodi.binary-addons-screensaver.pyro
+not-installed"kodi.binary-addons-screensaver.pyro-debuginfo
+not-installed"kodi.binary-addons-screensaver.stars
+not-installed"kodi.binary-addons-screensaver.stars-debuginfo
+not-installed"kodi.binary-addons-vfs.libarchive
+not-installed"kodi.binary-addons-vfs.libarchive-debuginfo
+not-installed"kodi.binary-addons-vfs.nfs
+not-installed"kodi.binary-addons-vfs.nfs-debuginfo
+not-installed"kodi.binary-addons-vfs.rar
+not-installed"kodi.binary-addons-vfs.rar-debuginfo
+not-installed"kodi.binary-addons-vfs.sacd
+not-installed"kodi.binary-addons-vfs.sacd-debuginfo
+not-installed"kodi.binary-addons-vfs.sftp
+not-installed"kodi.binary-addons-vfs.sftp-debuginfo
+not-installed"kodi.binary-addons-visualization.fishbmc
+not-installed"kodi.binary-addons-visualization.fishbmc-debuginfo
+not-installed"kodi.binary-addons-visualization.goom
+not-installed"kodi.binary-addons-visualization.goom-debuginfo
+not-installed"kodi.binary-addons-visualization.shadertoy
+not-installed"kodi.binary-addons-visualization.shadertoy-debuginfo
+not-installed"kodi.binary-addons-visualization.spectrum
+not-installed"kodi.binary-addons-visualization.spectrum-debuginfo
+not-installed"kodi.binary-addons-visualization.waveform
+not-installed"kodi.binary-addons-visualization.waveform-debuginfo
+not-installed"kohsuke-pom
+not-installed"kolf
+not-installed"kolf-lang
+not-installed"kollision
+not-installed"kollision-lang
+not-installed"kolor-manager
+not-installed"kolourpaint
+not-installed"kolourpaint-lang
+installed"kompare
+not-installed"kompare-devel
+installed"kompare-lang
+not-installed"konkretcmpi-devel
+not-installed"konkretcmpi-python
+not-installed"konqueror
+not-installed"konqueror-devel
+not-installed"konqueror-lang
+not-installed"konqueror-plugins
+not-installed"konquest
+not-installed"konquest-lang
+installed"konsole
+installed"konsole-part
+installed"konsole-part-lang
+not-installed"konsole4-part
+installed"kontact
+installed"kontact-lang
+not-installed"kontactinterface-devel
+installed"kontactinterface-lang
+installed"konversation
+installed"konversation-lang
+not-installed"kopano-archiver
+not-installed"kopano-backup
+not-installed"kopano-bash-completion
+not-installed"kopano-client
+not-installed"kopano-common
+not-installed"kopano-contacts
+not-installed"kopano-dagent
+not-installed"kopano-devel
+not-installed"kopano-gateway
+not-installed"kopano-ical
+not-installed"kopano-lang
+not-installed"kopano-migration-imap
+not-installed"kopano-migration-pst
+not-installed"kopano-monitor
+not-installed"kopano-presence
+not-installed"kopano-python-utils
+not-installed"kopano-search
+not-installed"kopano-server
+not-installed"kopano-server-packages
+not-installed"kopano-spamd
+not-installed"kopano-spooler
+not-installed"kopano-statsd
+not-installed"kopano-utils
+not-installed"kopano-webapp
+not-installed"kopano-webapp-contactfax
+not-installed"kopano-webapp-folderwidgets
+not-installed"kopano-webapp-gmaps
+not-installed"kopano-webapp-lang
+not-installed"kopano-webapp-pimfolder
+not-installed"kopano-webapp-quickitems
+not-installed"kopano-webapp-titlecounter
+not-installed"kopano-webapp-webappmanual
+not-installed"kopano-webapp-zdeveloper
+not-installed"kopete
+not-installed"kopete-devel
+not-installed"kopete-lang
+installed"korganizer
+installed"korganizer-lang
+installed"kpackage
+not-installed"kpackage-32bit
+not-installed"kpackage-devel
+not-installed"kpackage-devel-32bit
+installed"kpackage-lang
+not-installed"kpartloader
+not-installed"kpartloader-lang
+not-installed"kparts-devel
+not-installed"kparts-devel-32bit
+not-installed"kpartsplugin
+not-installed"kpartsplugin
+not-installed"kpartsplugin-debuginfo
+not-installed"kpartsplugin-debugsource
+installed"kpartx
+installed"kpat
+installed"kpat-lang
+installed"kpeople5
+not-installed"kpeople5-32bit
+not-installed"kpeople5-devel
+not-installed"kpeople5-devel-32bit
+installed"kpeople5-lang
+not-installed"kphotoalbum
+not-installed"kphotoalbum-lang
+installed"kpimtextedit
+not-installed"kpimtextedit-devel
+installed"kpimtextedit-lang
+installed"kpkpass
+not-installed"kpkpass-devel
+not-installed"kplayer
+not-installed"kplayer
+not-installed"kplayer-debuginfo
+not-installed"kplayer-debugsource
+not-installed"kplayer-doc
+not-installed"kplayer-lang
+not-installed"kplotting-devel
+not-installed"kplotting-devel-32bit
+not-installed"kpmcore
+not-installed"kpmcore-devel
+not-installed"kpmcore-lang
+not-installed"kproperty
+not-installed"kproperty-devel
+not-installed"kproperty-lang
+not-installed"kpty-devel
+not-installed"kpty-devel-32bit
+not-installed"kqtquickcharts
+not-installed"kraft
+not-installed"krandr
+installed"krb5
+installed"krb5-32bit
+not-installed"krb5-auth-dialog
+not-installed"krb5-auth-dialog-lang
+not-installed"krb5-client
+not-installed"krb5-devel
+not-installed"krb5-devel-32bit
+not-installed"krb5-plugin-kdb-ldap
+not-installed"krb5-plugin-preauth-otp
+not-installed"krb5-plugin-preauth-pkinit
+not-installed"krb5-plugin-preauth-spake
+not-installed"krb5-server
+not-installed"krdc
+not-installed"krdc-devel
+not-installed"krdc-lang
+not-installed"krename
+not-installed"kreport
+not-installed"kreport-devel
+not-installed"kreport-lang
+installed"kreversi
+installed"kreversi-lang
+not-installed"krfb
+not-installed"krfb-lang
+not-installed"krita
+not-installed"krita-devel
+not-installed"krita-lang
+not-installed"kronometer
+installed"kross
+not-installed"kross-32bit
+not-installed"kross-devel
+not-installed"kross-devel-32bit
+installed"kross-lang
+not-installed"kross-python
+not-installed"kruler
+not-installed"kruler-lang
+not-installed"krunner-devel
+not-installed"krunner-devel-32bit
+not-installed"krusader
+not-installed"krusader-doc
+not-installed"kscd
+installed"kscreen5
+installed"kscreen5-lang
+installed"kscreen5-plasmoid
+installed"kscreenlocker
+not-installed"kscreenlocker-devel
+installed"kscreenlocker-lang
+installed"kservice
+not-installed"kservice-32bit
+not-installed"kservice-devel
+not-installed"kservice-devel-32bit
+installed"kservice-lang
+not-installed"ksh
+not-installed"ksh-devel
+not-installed"kshisen
+not-installed"kshisen-lang
+not-installed"kshutdown
+not-installed"ksirk
+not-installed"ksirk-lang
+installed"ksmtp
+not-installed"ksmtp-devel
+installed"ksmtp-lang
+not-installed"ksnakeduel
+not-installed"ksnakeduel-lang
+not-installed"kspaceduel
+not-installed"kspaceduel-lang
+not-installed"ksquares
+not-installed"ksquares-lang
+installed"ksshaskpass5
+installed"ksshaskpass5-lang
+not-installed"kssl
+not-installed"kst
+not-installed"kst-devel
+not-installed"kstars
+not-installed"kstars-lang
+installed"ksudoku
+installed"ksudoku-lang
+installed"ksysguard5
+installed"ksysguard5-lang
+not-installed"ksystemlog
+not-installed"ksystemlog-lang
+not-installed"kteatime
+not-installed"kteatime-lang
+installed"ktexteditor
+not-installed"ktexteditor-32bit
+not-installed"ktexteditor-devel
+not-installed"ktexteditor-devel-32bit
+installed"ktexteditor-lang
+not-installed"ktextwidgets-devel
+not-installed"ktextwidgets-devel-32bit
+not-installed"ktimer
+not-installed"ktimer-lang
+installed"ktnef
+not-installed"ktnef-devel
+installed"ktnef-lang
+not-installed"ktoblzcheck
+not-installed"ktoblzcheck-devel
+not-installed"ktorrent
+not-installed"ktorrent-lang
+not-installed"ktouch
+not-installed"ktouch-lang
+not-installed"ktp-accounts-kcm
+not-installed"ktp-accounts-kcm-lang
+not-installed"ktp-approver
+not-installed"ktp-approver-lang
+not-installed"ktp-auth-handler
+not-installed"ktp-auth-handler-lang
+not-installed"ktp-common-internals
+not-installed"ktp-common-internals-devel
+not-installed"ktp-common-internals-lang
+not-installed"ktp-contact-list
+not-installed"ktp-contact-list-lang
+not-installed"ktp-contact-runner
+not-installed"ktp-contact-runner-lang
+not-installed"ktp-desktop-applets
+not-installed"ktp-desktop-applets-lang
+not-installed"ktp-filetransfer-handler
+not-installed"ktp-filetransfer-handler-lang
+not-installed"ktp-icons
+not-installed"ktp-kded-module
+not-installed"ktp-kded-module-lang
+not-installed"ktp-send-file
+not-installed"ktp-send-file-lang
+not-installed"ktp-text-ui
+not-installed"ktp-text-ui-lang
+not-installed"ktuberling
+not-installed"ktuberling-lang
+not-installed"kturtle
+not-installed"kturtle-lang
+not-installed"kubeadm
+not-installed"kubectl
+not-installed"kubectl-who-can
+not-installed"kubernetes-apiserver
+not-installed"kubernetes-client
+not-installed"kubernetes-controller-manager
+not-installed"kubernetes-dashboard
+not-installed"kubernetes-dns
+not-installed"kubernetes-extra
+not-installed"kubernetes-kubeadm
+not-installed"kubernetes-kubelet
+not-installed"kubernetes-master
+not-installed"kubernetes-node
+not-installed"kubernetes-node-image-pause
+not-installed"kubernetes-pause
+not-installed"kubernetes-proxy
+not-installed"kubernetes-salt
+not-installed"kubernetes-scheduler
+not-installed"kubernetes_utilities
+not-installed"kubic-dex-branding
+not-installed"kubic-locale-archive
+not-installed"kubic-pause
+not-installed"kubic_admin
+not-installed"kubic_loadbalancer
+not-installed"kubic_worker
+not-installed"kubicctl
+not-installed"kubicd
+not-installed"kubrick
+not-installed"kubrick-lang
+not-installed"kuiviewer
+not-installed"kuiviewer-lang
+not-installed"kunitconversion-devel
+not-installed"kunitconversion-devel-32bit
+not-installed"kup-client
+not-installed"kup-server
+not-installed"kupfer
+not-installed"kured
+not-installed"kured-k8s-yaml
+not-installed"kurso-de-esperanto
+not-installed"kvazaar
+not-installed"kvazaar
+not-installed"kvazaar-debuginfo
+not-installed"kvazaar-debugsource
+not-installed"kvirc
+installed"kvm_server
+installed"kvm_stat
+installed"kvm_tools
+not-installed"kwallet-devel
+not-installed"kwallet-devel-32bit
+installed"kwallet-tools
+installed"kwallet-tools-lang
+installed"kwalletd5
+installed"kwalletd5-lang
+installed"kwalletmanager5
+installed"kwalletmanager5-lang
+not-installed"kwave
+not-installed"kwave-lang
+installed"kwayland
+not-installed"kwayland-32bit
+not-installed"kwayland-devel
+not-installed"kwayland-devel-32bit
+installed"kwayland-integration
+not-installed"kwebkitpart
+not-installed"kwebkitpart-lang
+not-installed"kwidgetsaddons-devel
+not-installed"kwidgetsaddons-devel-32bit
+not-installed"kwikdisk
+not-installed"kwin
+installed"kwin-lowlatency
+not-installed"kwin-lowlatency
+not-installed"kwin-lowlatency-devel
+not-installed"kwin5
+not-installed"kwin5-devel
+installed"kwin5-lang
+not-installed"kwindowsystem-devel
+not-installed"kwindowsystem-devel-32bit
+not-installed"kwordquiz
+not-installed"kwordquiz-lang
+not-installed"kwrite
+not-installed"kwrited5
+not-installed"kxml
+not-installed"kxml-javadoc
+not-installed"kxmlgui-devel
+not-installed"kxmlgui-devel-32bit
+not-installed"kxmlrpcclient5-devel
+not-installed"kxmlrpcclient5-devel-32bit
+not-installed"kye
+not-installed"kye-data
+not-installed"kyotocabinet
+not-installed"l-smash
+not-installed"l-smash
+not-installed"l-smash-debuginfo
+not-installed"l-smash-debugsource
+not-installed"l-smash-devel
+not-installed"labplot-kf5
+not-installed"labplot-kf5-lang
+not-installed"ladspa
+not-installed"ladspa-32bit
+not-installed"ladspa-AMB
+not-installed"ladspa-FIL
+not-installed"ladspa-LEET-plugin
+not-installed"ladspa-LEET-plugin
+not-installed"ladspa-LEET-plugin-debuginfo
+not-installed"ladspa-MCP
+not-installed"ladspa-REV
+not-installed"ladspa-VCO
+not-installed"ladspa-WAH
+not-installed"ladspa-WAH
+not-installed"ladspa-WAH-debuginfo
+not-installed"ladspa-WAH-debugsource
+not-installed"ladspa-alienwah
+not-installed"ladspa-aweight
+not-installed"ladspa-aweight
+not-installed"ladspa-aweight-debuginfo
+not-installed"ladspa-aweight-debugsource
+not-installed"ladspa-blepvco
+not-installed"ladspa-blop
+not-installed"ladspa-bs2b
+not-installed"ladspa-bs2b
+not-installed"ladspa-bs2b-debuginfo
+not-installed"ladspa-bs2b-debugsource
+not-installed"ladspa-caps
+not-installed"ladspa-clipper
+not-installed"ladspa-clipper
+not-installed"ladspa-cmt
+not-installed"ladspa-devel
+not-installed"ladspa-foo-plugins
+not-installed"ladspa-foo-plugins
+not-installed"ladspa-foo-plugins-debuginfo
+not-installed"ladspa-foo-plugins-debugsource
+not-installed"ladspa-guitarix
+not-installed"ladspa-invada-studio-plugins
+not-installed"ladspa-invada-studio-plugins
+not-installed"ladspa-lemux
+not-installed"ladspa-lemux
+not-installed"ladspa-lemux-debuginfo
+not-installed"ladspa-lemux-debugsource
+not-installed"ladspa-lgv-plugins
+not-installed"ladspa-lgv-plugins
+not-installed"ladspa-lgv-plugins-debuginfo
+not-installed"ladspa-lgv-plugins-debugsource
+not-installed"ladspa-matched
+not-installed"ladspa-njl
+not-installed"ladspa-njl
+not-installed"ladspa-njl-debuginfo
+not-installed"ladspa-njl-debugsource
+not-installed"ladspa-omins
+not-installed"ladspa-omins
+not-installed"ladspa-omins-debuginfo
+not-installed"ladspa-omins-debugsource
+not-installed"ladspa-preamp
+not-installed"ladspa-pvoc
+not-installed"ladspa-sooperlooper
+not-installed"ladspa-super-60
+installed"ladspa-swh-plugins
+not-installed"ladspa-tap-plugins
+not-installed"ladspa-trigger
+not-installed"ladspa-trigger
+not-installed"ladspa-vcf
+not-installed"ladspa-vlevel
+not-installed"ladspa-vocoder
+not-installed"ladspa-wasp
+not-installed"ladspa-wasp
+not-installed"ladspa-wasp-debuginfo
+not-installed"ladspa-wasp-debugsource
+not-installed"ladspa-wubflip
+not-installed"ladspa-wubflip
+not-installed"laf-plugin
+not-installed"laf-plugin-javadoc
+installed"lame
+not-installed"lame-doc
+not-installed"lame-mp3rtp
+not-installed"lammps
+not-installed"lammps-data
+not-installed"lammps-devel
+not-installed"lamp_server
+not-installed"lapack-devel
+not-installed"lapack-devel-32bit
+not-installed"lapack-devel-static
+not-installed"lapack-man
+not-installed"lapacke-devel
+not-installed"lapacke-devel-32bit
+not-installed"lapacke-devel-static
+not-installed"lapdog
+not-installed"laptop
+not-installed"laptop-mode-tools
+not-installed"laptop-mode-tools-gui
+not-installed"lasem
+not-installed"lasem-devel
+installed"lash
+not-installed"lash
+not-installed"lash-debuginfo
+not-installed"lash-debugsource
+not-installed"lash-devel
+not-installed"lastpass-cli
+not-installed"laszip-devel
+not-installed"latencytop
+not-installed"latex2html
+not-installed"latex2html-doc
+not-installed"latex2html-pngicons
+not-installed"latex2rtf
+not-installed"lato-fonts
+not-installed"latrace
+not-installed"latte-dock
+not-installed"latte-dock-lang
+not-installed"lazarus
+not-installed"lbdb
+not-installed"lbzip2
+not-installed"lcab
+not-installed"lcdf-typetools
+not-installed"lcms2
+not-installed"lcov
+not-installed"lcurse
+not-installed"ld10k1
+not-installed"ld10k1-devel
+not-installed"ldacBT-devel
+not-installed"ldapfuse
+not-installed"ldapvi
+not-installed"ldb-tools
+not-installed"ldc
+not-installed"ldc-bash-completion
+not-installed"ldc-phobos-devel
+not-installed"ldc-runtime-devel
+not-installed"ldirectord
+installed"ldmtool
+not-installed"ldns
+not-installed"ldns-devel
+not-installed"ldtp
+not-installed"ldvd
+not-installed"ldvd
+not-installed"leafnode
+not-installed"leafpad
+not-installed"lector
+installed"ledger
+not-installed"ledmon
+not-installed"leechcraft
+not-installed"leechcraft-advancednotifications
+not-installed"leechcraft-aggregator
+not-installed"leechcraft-aggregator-bodyfetch
+not-installed"leechcraft-aggregator-webaccess
+not-installed"leechcraft-anhero
+not-installed"leechcraft-auscrie
+not-installed"leechcraft-azoth
+not-installed"leechcraft-azoth-abbrev
+not-installed"leechcraft-azoth-acetamide
+not-installed"leechcraft-azoth-adiumstyles
+not-installed"leechcraft-azoth-autoidler
+not-installed"leechcraft-azoth-autopaste
+not-installed"leechcraft-azoth-birthdaynotifier
+not-installed"leechcraft-azoth-chathistory
+not-installed"leechcraft-azoth-depester
+not-installed"leechcraft-azoth-doc
+not-installed"leechcraft-azoth-embedmedia
+not-installed"leechcraft-azoth-herbicide
+not-installed"leechcraft-azoth-hili
+not-installed"leechcraft-azoth-isterique
+not-installed"leechcraft-azoth-juick
+not-installed"leechcraft-azoth-keeso
+not-installed"leechcraft-azoth-lastseen
+not-installed"leechcraft-azoth-metacontacts
+not-installed"leechcraft-azoth-modnok
+not-installed"leechcraft-azoth-mucommands
+not-installed"leechcraft-azoth-murm
+not-installed"leechcraft-azoth-nativeemoticons
+not-installed"leechcraft-azoth-otroid
+not-installed"leechcraft-azoth-rosenthal
+not-installed"leechcraft-azoth-shx
+not-installed"leechcraft-azoth-standardstyles
+not-installed"leechcraft-azoth-vader
+not-installed"leechcraft-azoth-velvetbird
+not-installed"leechcraft-azoth-xoox
+not-installed"leechcraft-azoth-xtazy
+not-installed"leechcraft-bittorrent
+not-installed"leechcraft-blasq
+not-installed"leechcraft-blasq-deathnote
+not-installed"leechcraft-blasq-rappor
+not-installed"leechcraft-blasq-vangog
+not-installed"leechcraft-blogique
+not-installed"leechcraft-blogique-hestia
+not-installed"leechcraft-blogique-metida
+not-installed"leechcraft-certmgr
+not-installed"leechcraft-cpuload
+not-installed"leechcraft-cstp
+not-installed"leechcraft-dbusmanager
+not-installed"leechcraft-deadlyrics
+not-installed"leechcraft-devel
+not-installed"leechcraft-devmon
+not-installed"leechcraft-doc
+not-installed"leechcraft-dolozhee
+not-installed"leechcraft-dumbeep
+not-installed"leechcraft-eleeminator
+not-installed"leechcraft-fenet
+not-installed"leechcraft-fenet-awesome
+not-installed"leechcraft-fenet-kwin
+not-installed"leechcraft-fenet-openbox
+not-installed"leechcraft-gacts
+not-installed"leechcraft-glance
+not-installed"leechcraft-gmailnotifier
+not-installed"leechcraft-historyholder
+not-installed"leechcraft-hotstreams
+not-installed"leechcraft-htthare
+not-installed"leechcraft-imgaste
+not-installed"leechcraft-intermutko
+not-installed"leechcraft-kbswitch
+not-installed"leechcraft-kinotify
+not-installed"leechcraft-knowhow
+not-installed"leechcraft-krigstask
+not-installed"leechcraft-lackman
+not-installed"leechcraft-lastfmscrobble
+not-installed"leechcraft-laughty
+not-installed"leechcraft-launchy
+not-installed"leechcraft-lemon
+not-installed"leechcraft-lhtr
+not-installed"leechcraft-liznoo
+not-installed"leechcraft-lmp
+not-installed"leechcraft-lmp-brainslugz
+not-installed"leechcraft-lmp-dumbsync
+not-installed"leechcraft-lmp-fradj
+not-installed"leechcraft-lmp-graffiti
+not-installed"leechcraft-lmp-httstream
+not-installed"leechcraft-lmp-mp3tunes
+not-installed"leechcraft-lmp-mtpsync
+not-installed"leechcraft-lmp-potorchu
+not-installed"leechcraft-lmp-ppl
+not-installed"leechcraft-mellonetray
+not-installed"leechcraft-monocle
+not-installed"leechcraft-monocle-dik
+not-installed"leechcraft-monocle-doc
+not-installed"leechcraft-monocle-fxb
+not-installed"leechcraft-monocle-pdf
+not-installed"leechcraft-monocle-postrus
+not-installed"leechcraft-monocle-seen
+not-installed"leechcraft-musiczombie
+not-installed"leechcraft-namauth
+not-installed"leechcraft-netstoremanager
+not-installed"leechcraft-netstoremanager-googledrive
+not-installed"leechcraft-networkmonitor
+not-installed"leechcraft-newlife
+not-installed"leechcraft-ooronee
+not-installed"leechcraft-otlozhu
+not-installed"leechcraft-pintab
+not-installed"leechcraft-pogooglue
+not-installed"leechcraft-poshuku
+not-installed"leechcraft-poshuku-autosearch
+not-installed"leechcraft-poshuku-cleanweb
+not-installed"leechcraft-poshuku-dcac
+not-installed"leechcraft-poshuku-fatape
+not-installed"leechcraft-poshuku-filescheme
+not-installed"leechcraft-poshuku-foc
+not-installed"leechcraft-poshuku-fua
+not-installed"leechcraft-poshuku-keywords
+not-installed"leechcraft-poshuku-onlinebookmarks
+not-installed"leechcraft-poshuku-onlinebookmarks-delicious
+not-installed"leechcraft-poshuku-onlinebookmarks-readitlater
+not-installed"leechcraft-poshuku-qrd
+not-installed"leechcraft-poshuku-speeddial
+not-installed"leechcraft-poshuku-webkitview
+not-installed"leechcraft-rosenthal
+not-installed"leechcraft-sb2
+not-installed"leechcraft-scroblibre
+not-installed"leechcraft-secman
+not-installed"leechcraft-secman-simplestorage
+not-installed"leechcraft-seekthru
+not-installed"leechcraft-summary
+not-installed"leechcraft-sysnotify
+not-installed"leechcraft-tabsessionmanager
+not-installed"leechcraft-tabslist
+not-installed"leechcraft-textogroose
+not-installed"leechcraft-touchstreams
+not-installed"leechcraft-tpi
+not-installed"leechcraft-vrooby
+not-installed"leechcraft-xproxy
+not-installed"leechcraft-xtazy
+not-installed"leechcraft-zalil
+not-installed"legion-devel
+not-installed"lekha
+not-installed"lemonbar
+not-installed"lensfun-data
+not-installed"lensfun-devel
+not-installed"lensfun-doc
+not-installed"lensfun-tools
+not-installed"leptonica-devel
+not-installed"leptonica-tools
+installed"less
+not-installed"leveldb
+not-installed"leveldb-devel
+not-installed"leveldb-devel-static
+not-installed"lftp
+not-installed"lhasa
+not-installed"lhasa-devel
+not-installed"lib3270-5_1
+not-installed"lib3270-devel
+not-installed"lib389
+not-installed"lib3ds-1-3
+not-installed"lib3ds-devel
+not-installed"lib4store-devel
+not-installed"lib4store0
+not-installed"lib4ti2-0
+not-installed"libADLMIDI1
+not-installed"libAPFEL0
+not-installed"libAnalitza5
+not-installed"libAppStreamQt-devel
+installed"libAppStreamQt2
+not-installed"libArcus-devel
+not-installed"libArcus3
+installed"libBasicUsageEnvironment1
+not-installed"libBox2D-devel
+not-installed"libBox2D-devel-32bit
+not-installed"libBox2D2_3_1
+not-installed"libBox2D2_3_1-32bit
+not-installed"libBulletFileLoader2_88
+not-installed"libBulletInverseDynamicsUtils2_88
+not-installed"libBulletWorldImporter2_88
+not-installed"libBulletXmlWorldImporter2_88
+not-installed"libCGAL13
+not-installed"libCGAL_Core13
+not-installed"libCGAL_ImageIO14
+not-installed"libCGAL_Qt5-14
+not-installed"libCSXCAD0
+not-installed"libCharLS2
+not-installed"libCoin60
+not-installed"libColPack0
+not-installed"libColPack0-32bit
+not-installed"libColorFull0
+not-installed"libConvexDecomposition2_88
+not-installed"libEMF-devel
+not-installed"libEMF-utils
+not-installed"libEMF1
+not-installed"libEspresso4
+installed"libFAudio0
+installed"libFAudio0-32bit
+not-installed"libFLAC++6
+not-installed"libFLAC++6-32bit
+installed"libFLAC8
+installed"libFLAC8-32bit
+not-installed"libFOX-1_6-0
+not-installed"libFS-devel
+not-installed"libFS-devel-32bit
+not-installed"libFS6
+not-installed"libFS6-32bit
+not-installed"libField3D1_7
+not-installed"libField3D1_7-debuginfo
+not-installed"libGIMPACTUtils2_88
+not-installed"libGLC-devel
+not-installed"libGLC0
+installed"libGLEW2_1
+not-installed"libGLEW2_1-32bit
+installed"libGLU1
+installed"libGLU1-32bit
+not-installed"libGLw-devel
+not-installed"libGLw1
+not-installed"libGLw1-32bit
+not-installed"libGLwM1
+not-installed"libGLwM1-32bit
+not-installed"libGammu8
+not-installed"libGeneratedSaxParser0_3
+not-installed"libGeoIP-devel
+not-installed"libGeoIP-devel-32bit
+installed"libGeoIP1
+not-installed"libGeoIP1-32bit
+not-installed"libGetDP2_11
+not-installed"libGraphicsMagick++-Q16-12
+not-installed"libGraphicsMagick++-devel
+not-installed"libGraphicsMagick-Q16-3
+not-installed"libGraphicsMagick3-config
+not-installed"libGraphicsMagickWand-Q16-2
+not-installed"libHACD2_88
+not-installed"libHX-devel
+not-installed"libHX-devel-32bit
+not-installed"libHX28
+not-installed"libHX28-32bit
+not-installed"libHYPRE-gnu-mpich-hpc
+not-installed"libHYPRE-gnu-mvapich2-hpc
+not-installed"libHYPRE-gnu-openmpi1-hpc
+not-installed"libHYPRE-gnu-openmpi2-hpc
+not-installed"libHYPRE-gnu-openmpi3-hpc
+not-installed"libHYPRE0
+not-installed"libHYPRE0-32bit
+not-installed"libHYPRE0-mpich
+not-installed"libHYPRE0-mpich-32bit
+not-installed"libHYPRE0-mvapich2
+not-installed"libHYPRE0-mvapich2-32bit
+not-installed"libHYPRE0-openmpi
+not-installed"libHYPRE0-openmpi-32bit
+not-installed"libHYPRE0-openmpi2
+not-installed"libHYPRE0-openmpi2-32bit
+not-installed"libHYPRE_2_15_1-gnu-mpich-hpc
+not-installed"libHYPRE_2_15_1-gnu-mvapich2-hpc
+not-installed"libHYPRE_2_15_1-gnu-openmpi1-hpc
+not-installed"libHYPRE_2_15_1-gnu-openmpi2-hpc
+not-installed"libHYPRE_2_15_1-gnu-openmpi3-hpc
+installed"libHalf24
+not-installed"libHalf24-32bit
+not-installed"libHepMC3-1
+not-installed"libHepMC4
+not-installed"libICE-devel
+not-installed"libICE-devel-32bit
+installed"libICE6
+not-installed"libICE6-32bit
+not-installed"libIDL-2-0
+not-installed"libIDL-2-0-32bit
+not-installed"libIL1
+not-installed"libIccXML-devel
+not-installed"libIccXML2
+installed"libIex-2_3-24
+not-installed"libIex-2_3-24-32bit
+not-installed"libIexMath-2_3-24
+not-installed"libIexMath-2_3-24-32bit
+installed"libIlmImf-2_3-24
+not-installed"libIlmImf-2_3-24-32bit
+not-installed"libIlmImfUtil-2_3-24
+not-installed"libIlmImfUtil-2_3-24-32bit
+installed"libIlmThread-2_3-24
+not-installed"libIlmThread-2_3-24-32bit
+not-installed"libImath-2_3-24
+not-installed"libImath-2_3-24-32bit
+installed"libImlib2-1
+not-installed"libIrrlicht1_8
+installed"libJudy1
+not-installed"libKChart2
+not-installed"libKDb3-4
+not-installed"libKEduVocDocument5
+installed"libKF5Activities5
+not-installed"libKF5Activities5-32bit
+installed"libKF5ActivitiesStats1
+not-installed"libKF5ActivitiesStats1-32bit
+installed"libKF5AkonadiAgentBase5
+installed"libKF5AkonadiCalendar5
+installed"libKF5AkonadiContact5
+installed"libKF5AkonadiCore5
+installed"libKF5AkonadiMime5
+installed"libKF5AkonadiNotes5
+installed"libKF5AkonadiPrivate5
+installed"libKF5AkonadiSearch
+installed"libKF5AkonadiWidgets5
+installed"libKF5AkonadiXml5
+installed"libKF5AlarmCalendar5
+installed"libKF5Archive5
+not-installed"libKF5Archive5-32bit
+installed"libKF5Attica5
+not-installed"libKF5Attica5-32bit
+installed"libKF5Auth5
+not-installed"libKF5Auth5-32bit
+installed"libKF5Auth5-lang
+installed"libKF5AuthCore5
+not-installed"libKF5AuthCore5-32bit
+installed"libKF5Baloo5
+not-installed"libKF5Baloo5-32bit
+installed"libKF5BalooEngine5
+not-installed"libKF5BalooEngine5-32bit
+installed"libKF5BalooEngine5-lang
+not-installed"libKF5Blog5
+installed"libKF5BluezQt6
+installed"libKF5Bookmarks5
+not-installed"libKF5Bookmarks5-32bit
+installed"libKF5Bookmarks5-lang
+installed"libKF5CalendarCore5
+installed"libKF5CalendarEvents5
+not-installed"libKF5CalendarEvents5-32bit
+installed"libKF5CalendarSupport5
+installed"libKF5CalendarUtils5
+installed"libKF5Cddb5
+not-installed"libKF5CddbWidgets5
+installed"libKF5Codecs5
+not-installed"libKF5Codecs5-32bit
+installed"libKF5Codecs5-lang
+installed"libKF5CompactDisc5
+installed"libKF5Completion5
+not-installed"libKF5Completion5-32bit
+installed"libKF5Completion5-lang
+installed"libKF5ConfigCore5
+not-installed"libKF5ConfigCore5-32bit
+installed"libKF5ConfigCore5-lang
+installed"libKF5ConfigGui5
+not-installed"libKF5ConfigGui5-32bit
+installed"libKF5ConfigWidgets5
+not-installed"libKF5ConfigWidgets5-32bit
+installed"libKF5ConfigWidgets5-lang
+installed"libKF5ContactEditor5
+installed"libKF5Contacts5
+not-installed"libKF5Contacts5-32bit
+installed"libKF5CoreAddons5
+not-installed"libKF5CoreAddons5-32bit
+installed"libKF5Crash5
+not-installed"libKF5Crash5-32bit
+installed"libKF5DBusAddons5
+not-installed"libKF5DBusAddons5-32bit
+installed"libKF5DBusAddons5-lang
+installed"libKF5DNSSD5
+not-installed"libKF5DNSSD5-32bit
+installed"libKF5DNSSD5-lang
+installed"libKF5Declarative5
+not-installed"libKF5Declarative5-32bit
+installed"libKF5Declarative5-lang
+installed"libKF5DocTools5
+not-installed"libKF5DocTools5-32bit
+installed"libKF5Emoticons5
+not-installed"libKF5Emoticons5-32bit
+installed"libKF5EventViews5
+installed"libKF5GlobalAccel5
+not-installed"libKF5GlobalAccel5-32bit
+installed"libKF5GlobalAccel5-lang
+installed"libKF5GlobalAccelPrivate5
+installed"libKF5GrantleeTheme5
+installed"libKF5Gravatar5
+installed"libKF5GuiAddons5
+not-installed"libKF5GuiAddons5-32bit
+installed"libKF5Holidays5
+installed"libKF5Holidays5-lang
+installed"libKF5I18n5
+not-installed"libKF5I18n5-32bit
+installed"libKF5I18n5-lang
+installed"libKF5IMAP5
+installed"libKF5IconThemes5
+not-installed"libKF5IconThemes5-32bit
+installed"libKF5IconThemes5-lang
+installed"libKF5IdentityManagement5
+installed"libKF5IdleTime5
+not-installed"libKF5IdleTime5-32bit
+installed"libKF5IncidenceEditor5
+installed"libKF5ItemModels5
+not-installed"libKF5ItemModels5-32bit
+installed"libKF5ItemViews5
+not-installed"libKF5ItemViews5-32bit
+installed"libKF5ItemViews5-lang
+installed"libKF5JS5
+not-installed"libKF5JS5-32bit
+installed"libKF5JSApi5
+not-installed"libKF5JSApi5-32bit
+installed"libKF5JobWidgets5
+not-installed"libKF5JobWidgets5-32bit
+installed"libKF5JobWidgets5-lang
+installed"libKF5JsEmbed5
+not-installed"libKF5JsEmbed5-32bit
+installed"libKF5JsEmbed5-lang
+installed"libKF5KCMUtils5
+not-installed"libKF5KCMUtils5-32bit
+installed"libKF5KCMUtils5-lang
+installed"libKF5KDELibs4Support5
+not-installed"libKF5KDELibs4Support5-32bit
+not-installed"libKF5KDGantt2-5
+installed"libKF5KDcraw5
+installed"libKF5KExiv2-15_0_0
+not-installed"libKF5KGeoMap10_0_0
+installed"libKF5KHtml5
+not-installed"libKF5KHtml5-32bit
+installed"libKF5KHtml5-lang
+installed"libKF5KMahjongglib5
+installed"libKF5Kipi32_0_0
+installed"libKF5Kirigami2-5
+installed"libKF5KontactInterface5
+installed"libKF5Ldap5
+installed"libKF5Libkdepim5
+installed"libKF5LibkdepimAkonadi5
+installed"libKF5Libkleo5
+installed"libKF5MailCommon5
+installed"libKF5MailImporter5
+installed"libKF5MailImporterAkonadi5
+installed"libKF5MailTransport5
+installed"libKF5MailTransportAkonadi5
+installed"libKF5Mbox5
+not-installed"libKF5MediaPlayer5
+not-installed"libKF5MediaPlayer5-32bit
+installed"libKF5MediaWiki5
+installed"libKF5Mime5
+not-installed"libKF5ModemManagerQt-devel
+installed"libKF5ModemManagerQt6
+not-installed"libKF5NetworkManagerQt-devel
+not-installed"libKF5NetworkManagerQt-devel-32bit
+installed"libKF5NetworkManagerQt6
+not-installed"libKF5NetworkManagerQt6-32bit
+installed"libKF5NewStuff5
+not-installed"libKF5NewStuff5-32bit
+installed"libKF5NewStuff5-lang
+installed"libKF5NewStuffCore5
+not-installed"libKF5NewStuffCore5-32bit
+installed"libKF5Notifications5
+not-installed"libKF5Notifications5-32bit
+installed"libKF5Notifications5-lang
+installed"libKF5NotifyConfig5
+not-installed"libKF5NotifyConfig5-32bit
+installed"libKF5NotifyConfig5-lang
+installed"libKF5Parts5
+not-installed"libKF5Parts5-32bit
+installed"libKF5Parts5-lang
+installed"libKF5PimCommon5
+installed"libKF5PimCommonAkonadi5
+installed"libKF5PimTextEdit5
+installed"libKF5Plasma5
+not-installed"libKF5Plasma5-32bit
+not-installed"libKF5Plotting5
+not-installed"libKF5Plotting5-32bit
+installed"libKF5Prison5
+not-installed"libKF5Prison5-32bit
+installed"libKF5Pty5
+not-installed"libKF5Pty5-32bit
+installed"libKF5Pty5-lang
+not-installed"libKF5PulseAudioQt2
+installed"libKF5Purpose5
+not-installed"libKF5Purpose5-32bit
+installed"libKF5PurposeWidgets5
+not-installed"libKF5PurposeWidgets5-32bit
+not-installed"libKF5QGpgme5
+not-installed"libKF5QGpgme5-32bit
+installed"libKF5QuickAddons5
+not-installed"libKF5QuickAddons5-32bit
+installed"libKF5Runner5
+not-installed"libKF5Runner5-32bit
+installed"libKF5Sane5
+installed"libKF5Screen7
+not-installed"libKF5Screen7-32bit
+installed"libKF5Solid5
+not-installed"libKF5Solid5-32bit
+installed"libKF5Solid5-lang
+installed"libKF5SonnetCore5
+not-installed"libKF5SonnetCore5-32bit
+installed"libKF5SonnetCore5-lang
+installed"libKF5SonnetUi5
+not-installed"libKF5SonnetUi5-32bit
+installed"libKF5Style5
+not-installed"libKF5Style5-32bit
+installed"libKF5Su5
+not-installed"libKF5Su5-32bit
+installed"libKF5Su5-lang
+installed"libKF5Syndication5
+installed"libKF5SyntaxHighlighting5
+not-installed"libKF5SyntaxHighlighting5-32bit
+installed"libKF5SyntaxHighlighting5-lang
+installed"libKF5TextWidgets5
+not-installed"libKF5TextWidgets5-32bit
+installed"libKF5TextWidgets5-lang
+installed"libKF5ThreadWeaver5
+not-installed"libKF5ThreadWeaver5-32bit
+installed"libKF5Tnef5
+not-installed"libKF5Torrent6
+installed"libKF5UnitConversion5
+not-installed"libKF5UnitConversion5-32bit
+installed"libKF5UnitConversion5-lang
+not-installed"libKF5Vkontakte2
+installed"libKF5Wallet5
+not-installed"libKF5Wallet5-32bit
+not-installed"libKF5WebKit5
+not-installed"libKF5WebKit5-32bit
+installed"libKF5WidgetsAddons5
+not-installed"libKF5WidgetsAddons5-32bit
+installed"libKF5WidgetsAddons5-lang
+installed"libKF5WindowSystem5
+not-installed"libKF5WindowSystem5-32bit
+installed"libKF5WindowSystem5-lang
+installed"libKF5XmlGui5
+not-installed"libKF5XmlGui5-32bit
+installed"libKF5XmlGui5-lang
+installed"libKF5XmlRpcClient5
+not-installed"libKF5XmlRpcClient5-32bit
+installed"libKF5XmlRpcClient5-lang
+installed"libKGantt2
+not-installed"libKPimGAPIBlogger5
+installed"libKPimGAPICalendar5
+installed"libKPimGAPIContacts5
+installed"libKPimGAPICore5
+not-installed"libKPimGAPIDrive5
+not-installed"libKPimGAPILatitude5
+not-installed"libKPimGAPIMaps5
+installed"libKPimGAPITasks5
+installed"libKPimImportWizard5
+installed"libKPimItinerary5
+installed"libKPimItinerary5-lang
+installed"libKPimKDAV5
+installed"libKPimPkPass5
+installed"libKPimSMTP5
+not-installed"libKPropertyCore3-4
+not-installed"libKPropertyWidgets3-4
+not-installed"libKReport3-4
+installed"libKScreenLocker5
+not-installed"libKasten4
+not-installed"libLASi-devel
+not-installed"libLASi2
+not-installed"libLHAPDF-6_2_3
+not-installed"libLLVM6
+not-installed"libLLVM6-32bit
+installed"libLLVM7
+installed"libLLVM7-32bit
+installed"libLLVM8
+installed"libLLVM8-32bit
+not-installed"libLTO6
+not-installed"libLTO6-32bit
+not-installed"libLTO7
+not-installed"libLTO7-32bit
+not-installed"libLTO8
+not-installed"libLTO8-32bit
+not-installed"libLimeSuite19_04-1
+not-installed"libLunchbox3
+not-installed"libLunchbox3-debuginfo
+not-installed"libMagick++-7_Q16HDRI4
+not-installed"libMagick++-7_Q16HDRI4-32bit
+not-installed"libMagick++-devel
+not-installed"libMagick++-devel-32bit
+installed"libMagickCore-7_Q16HDRI6
+not-installed"libMagickCore-7_Q16HDRI6-32bit
+installed"libMagickWand-7_Q16HDRI6
+not-installed"libMagickWand-7_Q16HDRI6-32bit
+not-installed"libMathMLSolver0_3
+not-installed"libMrm4
+not-installed"libMrm4-32bit
+not-installed"libMyGUIEngine3
+not-installed"libOIS-1_3_0
+not-installed"libOIS-devel
+not-installed"libOSC-devel
+not-installed"libOSC0
+not-installed"libOSC0-debuginfo
+not-installed"libOSMesa-devel
+not-installed"libOSMesa-devel-32bit
+installed"libOSMesa8
+installed"libOSMesa8-32bit
+not-installed"libOgreMain-devel
+not-installed"libOgreMain1_9_0
+not-installed"libOgreMain1_9_0-plugins
+not-installed"libOgreOverlay-devel
+not-installed"libOgreOverlay1_9_0
+not-installed"libOgrePaging-devel
+not-installed"libOgrePaging1_9_0
+not-installed"libOgreProperty-devel
+not-installed"libOgreProperty1_9_0
+not-installed"libOgreRTShaderSystem-devel
+not-installed"libOgreRTShaderSystem1_9_0
+not-installed"libOgreTerrain-devel
+not-installed"libOgreTerrain1_9_0
+not-installed"libOgreVolume-devel
+not-installed"libOgreVolume1_9_0
+not-installed"libOkteta3
+not-installed"libOpenCL1
+not-installed"libOpenCOLLADABaseUtils0_3
+not-installed"libOpenCOLLADAFramework0_3
+not-installed"libOpenCOLLADASaxFrameworkLoader0_3
+not-installed"libOpenCOLLADAStreamWriter0_3
+not-installed"libOpenColorIO1
+not-installed"libOpenIPMI0
+not-installed"libOpenImageIO1_8
+not-installed"libOpenImageIO_Util1_8
+not-installed"libOpenSceneGraph-devel
+not-installed"libOpenSceneGraph131
+not-installed"libOpenSceneGraph131-devel
+not-installed"libOpenSceneGraph158
+not-installed"libOpenThreads-devel
+not-installed"libOpenThreads20
+not-installed"libOpenThreads20-devel
+not-installed"libOpenThreads21
+not-installed"libOyranosSynnefo-devel
+not-installed"libOyranosSynnefo-devel-static
+not-installed"libOyranosSynnefo1
+not-installed"libPythonQt-Qt5-Python3-3
+not-installed"libPythonQt_QtAll-Qt5-Python3-3
+not-installed"libQCSXCAD0
+not-installed"libQMatrixClient0_5_1
+not-installed"libQTweetLib1_0
+not-installed"libQTweetLib1_0-debuginfo
+not-installed"libQgpsmm24
+not-installed"libQt4Pas5
+not-installed"libQt53DAnimation-devel
+not-installed"libQt53DAnimation5
+not-installed"libQt53DAnimation5-32bit
+not-installed"libQt53DCore-devel
+not-installed"libQt53DCore5
+not-installed"libQt53DCore5-32bit
+not-installed"libQt53DExtras-devel
+not-installed"libQt53DExtras5
+not-installed"libQt53DExtras5-32bit
+not-installed"libQt53DInput-devel
+not-installed"libQt53DInput5
+not-installed"libQt53DInput5-32bit
+not-installed"libQt53DLogic-devel
+not-installed"libQt53DLogic5
+not-installed"libQt53DLogic5-32bit
+not-installed"libQt53DQuick-devel
+not-installed"libQt53DQuick5
+not-installed"libQt53DQuick5-32bit
+not-installed"libQt53DQuickAnimation-devel
+not-installed"libQt53DQuickAnimation5
+not-installed"libQt53DQuickAnimation5-32bit
+not-installed"libQt53DQuickExtras-devel
+not-installed"libQt53DQuickExtras5
+not-installed"libQt53DQuickExtras5-32bit
+not-installed"libQt53DQuickInput-devel
+not-installed"libQt53DQuickInput5
+not-installed"libQt53DQuickInput5-32bit
+not-installed"libQt53DQuickRender-devel
+not-installed"libQt53DQuickRender5
+not-installed"libQt53DQuickRender5-32bit
+not-installed"libQt53DQuickScene2D-devel
+not-installed"libQt53DQuickScene2D5
+not-installed"libQt53DQuickScene2D5-32bit
+not-installed"libQt53DRender-devel
+not-installed"libQt53DRender5
+not-installed"libQt53DRender5-32bit
+installed"libQt5Bluetooth5
+not-installed"libQt5Bluetooth5-32bit
+installed"libQt5Bluetooth5-imports
+not-installed"libQt5Bodymovin-devel
+not-installed"libQt5Bodymovin-private-headers-devel
+not-installed"libQt5Bodymovin5
+not-installed"libQt5Bootstrap-devel-static
+not-installed"libQt5Bootstrap-devel-static-32bit
+not-installed"libQt5Charts5
+not-installed"libQt5Charts5-designer
+not-installed"libQt5Charts5-devel
+not-installed"libQt5Concurrent-devel
+not-installed"libQt5Concurrent-devel-32bit
+installed"libQt5Concurrent5
+not-installed"libQt5Concurrent5-32bit
+not-installed"libQt5Core-devel
+not-installed"libQt5Core-devel-32bit
+not-installed"libQt5Core-private-headers-devel
+installed"libQt5Core5
+not-installed"libQt5Core5-32bit
+not-installed"libQt5DBus-devel
+not-installed"libQt5DBus-devel-32bit
+not-installed"libQt5DBus-private-headers-devel
+installed"libQt5DBus5
+not-installed"libQt5DBus5-32bit
+not-installed"libQt5DataVisualization5
+not-installed"libQt5DataVisualization5-devel
+installed"libQt5Designer5
+not-installed"libQt5Designer5-32bit
+not-installed"libQt5DesignerComponents5
+not-installed"libQt5DesignerComponents5-32bit
+not-installed"libQt5Gamepad5
+not-installed"libQt5Gamepad5-32bit
+not-installed"libQt5Gui-devel
+not-installed"libQt5Gui-devel-32bit
+not-installed"libQt5Gui-private-headers-devel
+installed"libQt5Gui5
+not-installed"libQt5Gui5-32bit
+installed"libQt5Help5
+not-installed"libQt5Help5-32bit
+not-installed"libQt5HunspellInputMethod-private-headers-devel
+installed"libQt5HunspellInputMethod5
+not-installed"libQt5KmsSupport-devel-static
+not-installed"libQt5KmsSupport-private-headers-devel
+installed"libQt5Location5
+not-installed"libQt5Location5-32bit
+installed"libQt5Multimedia5
+not-installed"libQt5Multimedia5-32bit
+not-installed"libQt5Network-devel
+not-installed"libQt5Network-devel-32bit
+not-installed"libQt5Network-private-headers-devel
+installed"libQt5Network5
+not-installed"libQt5Network5-32bit
+installed"libQt5NetworkAuth5
+not-installed"libQt5NetworkAuth5-32bit
+installed"libQt5Nfc5
+not-installed"libQt5Nfc5-32bit
+installed"libQt5Nfc5-imports
+not-installed"libQt5OpenGL-devel
+not-installed"libQt5OpenGL-devel-32bit
+not-installed"libQt5OpenGL-private-headers-devel
+installed"libQt5OpenGL5
+not-installed"libQt5OpenGL5-32bit
+not-installed"libQt5OpenGLExtensions-devel-static
+not-installed"libQt5OpenGLExtensions-devel-static-32bit
+not-installed"libQt5Pas-devel
+not-installed"libQt5Pas1
+not-installed"libQt5PlatformHeaders-devel
+not-installed"libQt5PlatformSupport-devel-static
+not-installed"libQt5PlatformSupport-devel-static-32bit
+not-installed"libQt5PlatformSupport-private-headers-devel
+installed"libQt5Positioning5
+not-installed"libQt5Positioning5-32bit
+installed"libQt5PositioningQuick5
+not-installed"libQt5PositioningQuick5-32bit
+not-installed"libQt5PrintSupport-devel
+not-installed"libQt5PrintSupport-devel-32bit
+not-installed"libQt5PrintSupport-private-headers-devel
+installed"libQt5PrintSupport5
+not-installed"libQt5PrintSupport5-32bit
+installed"libQt5QuickControls2-5
+not-installed"libQt5QuickControls2-devel
+installed"libQt5QuickTemplates2-5
+not-installed"libQt5QuickTemplates2-devel
+not-installed"libQt5RemoteObjects5
+not-installed"libQt5RemoteObjects5-32bit
+installed"libQt5Script5
+not-installed"libQt5Script5-32bit
+not-installed"libQt5Scxml5
+not-installed"libQt5Scxml5-32bit
+not-installed"libQt5Scxml5-imports
+installed"libQt5Sensors5
+not-installed"libQt5Sensors5-32bit
+installed"libQt5Sensors5-imports
+not-installed"libQt5SerialBus5
+not-installed"libQt5SerialBus5-32bit
+installed"libQt5SerialPort5
+not-installed"libQt5SerialPort5-32bit
+not-installed"libQt5Sql-devel
+not-installed"libQt5Sql-devel-32bit
+not-installed"libQt5Sql-private-headers-devel
+installed"libQt5Sql5
+not-installed"libQt5Sql5-32bit
+installed"libQt5Sql5-mysql
+not-installed"libQt5Sql5-mysql-32bit
+not-installed"libQt5Sql5-postgresql
+not-installed"libQt5Sql5-postgresql-32bit
+installed"libQt5Sql5-sqlite
+not-installed"libQt5Sql5-sqlite-32bit
+not-installed"libQt5Sql5-unixODBC
+not-installed"libQt5Sql5-unixODBC-32bit
+installed"libQt5Svg5
+not-installed"libQt5Svg5-32bit
+not-installed"libQt5Test-devel
+not-installed"libQt5Test-devel-32bit
+not-installed"libQt5Test-private-headers-devel
+installed"libQt5Test5
+not-installed"libQt5Test5-32bit
+installed"libQt5TextToSpeech5
+not-installed"libQt5TextToSpeech5-32bit
+installed"libQt5VirtualKeyboard5
+installed"libQt5WaylandClient5
+not-installed"libQt5WaylandClient5-32bit
+installed"libQt5WaylandCompositor5
+not-installed"libQt5WaylandCompositor5-32bit
+installed"libQt5WebChannel5
+not-installed"libQt5WebChannel5-32bit
+installed"libQt5WebChannel5-imports
+not-installed"libQt5WebKit-private-headers-devel
+installed"libQt5WebKit5
+not-installed"libQt5WebKit5-32bit
+not-installed"libQt5WebKit5-devel
+not-installed"libQt5WebKit5-devel-32bit
+installed"libQt5WebKit5-imports
+not-installed"libQt5WebKitWidgets-devel
+not-installed"libQt5WebKitWidgets-devel-32bit
+not-installed"libQt5WebKitWidgets-private-headers-devel
+installed"libQt5WebKitWidgets5
+not-installed"libQt5WebKitWidgets5-32bit
+installed"libQt5WebSockets5
+not-installed"libQt5WebSockets5-32bit
+installed"libQt5WebSockets5-imports
+not-installed"libQt5WebView5
+not-installed"libQt5WebView5-imports
+not-installed"libQt5Widgets-devel
+not-installed"libQt5Widgets-devel-32bit
+not-installed"libQt5Widgets-private-headers-devel
+installed"libQt5Widgets5
+not-installed"libQt5Widgets5-32bit
+installed"libQt5X11Extras5
+not-installed"libQt5X11Extras5-32bit
+not-installed"libQt5Xdg3
+not-installed"libQt5XdgIconLoader-devel
+not-installed"libQt5XdgIconLoader3
+not-installed"libQt5Xml-devel
+not-installed"libQt5Xml-devel-32bit
+installed"libQt5Xml5
+not-installed"libQt5Xml5-32bit
+installed"libQt5XmlPatterns5
+not-installed"libQt5XmlPatterns5-32bit
+not-installed"libQtAV1
+not-installed"libQtAV1-32bit
+not-installed"libQtAVWidgets1
+not-installed"libQtAVWidgets1-32bit
+not-installed"libQtAssistantClient4
+not-installed"libQtAssistantClient4-32bit
+installed"libQtQuick5
+not-installed"libQtQuick5-32bit
+not-installed"libQtWebKit-devel
+not-installed"libQtWebKit4
+not-installed"libQtWebKit4
+not-installed"libQtWebKit4-32bit
+not-installed"libQtWebKit4-32bit-debuginfo
+not-installed"libQtWebKit4-debuginfo
+not-installed"libQtWebKit4-debugsource
+not-installed"libRaTools0
+not-installed"libRivet-2_7_2
+installed"libSDL-1_2-0
+installed"libSDL-1_2-0-32bit
+not-installed"libSDL-devel
+not-installed"libSDL-devel-32bit
+installed"libSDL2-2_0-0
+installed"libSDL2-2_0-0-32bit
+not-installed"libSDL2-devel
+not-installed"libSDL2-devel-32bit
+not-installed"libSDL2_gfx-1_0-0
+not-installed"libSDL2_gfx-1_0-0-32bit
+not-installed"libSDL2_gfx-devel
+not-installed"libSDL2_gfx-devel-32bit
+installed"libSDL2_image-2_0-0
+not-installed"libSDL2_image-2_0-0-32bit
+not-installed"libSDL2_image-devel
+not-installed"libSDL2_image-devel-32bit
+not-installed"libSDL2_mixer-2_0-0
+not-installed"libSDL2_mixer-2_0-0-32bit
+not-installed"libSDL2_mixer-devel
+not-installed"libSDL2_mixer-devel-32bit
+not-installed"libSDL2_net-2_0-0
+not-installed"libSDL2_net-2_0-0-32bit
+not-installed"libSDL2_net-devel
+not-installed"libSDL2_net-devel-32bit
+not-installed"libSDL2_ttf-2_0-0
+not-installed"libSDL2_ttf-2_0-0-32bit
+not-installed"libSDL2_ttf-devel
+not-installed"libSDL2_ttf-devel-32bit
+not-installed"libSDL_Pango-devel
+not-installed"libSDL_Pango-devel-32bit
+not-installed"libSDL_Pango1
+not-installed"libSDL_Pango1-32bit
+not-installed"libSDL_bgi-devel
+not-installed"libSDL_bgi2
+not-installed"libSDL_gfx-devel
+not-installed"libSDL_gfx-devel-32bit
+installed"libSDL_gfx15
+not-installed"libSDL_gfx15-32bit
+installed"libSDL_image-1_2-0
+not-installed"libSDL_image-1_2-0-32bit
+not-installed"libSDL_image-devel
+not-installed"libSDL_image-devel-32bit
+not-installed"libSDL_mixer-1_2-0
+not-installed"libSDL_mixer-1_2-0-32bit
+not-installed"libSDL_mixer-devel
+not-installed"libSDL_mixer-devel-32bit
+installed"libSDL_net-1_2-0
+not-installed"libSDL_net-1_2-0-32bit
+not-installed"libSDL_net-devel
+not-installed"libSDL_net-devel-32bit
+installed"libSDL_sound-1_0-1
+not-installed"libSDL_sound-1_0-1-32bit
+not-installed"libSDL_sound-devel
+not-installed"libSDL_sound-devel-32bit
+not-installed"libSDL_ttf-2_0-0
+not-installed"libSDL_ttf-2_0-0-32bit
+not-installed"libSDL_ttf-devel
+not-installed"libSDL_ttf-devel-32bit
+not-installed"libSDLmm-0_1-8
+not-installed"libSDLmm-0_1-8-32bit
+not-installed"libSDLmm-devel
+not-installed"libSDLmm-devel-32bit
+not-installed"libSHERPA-MC0
+not-installed"libSHERPA-MC0-config
+not-installed"libSM-devel
+not-installed"libSM-devel-32bit
+installed"libSM6
+not-installed"libSM6-32bit
+not-installed"libSOIL
+not-installed"libSOIL-debugsource
+not-installed"libSOIL-devel
+not-installed"libSOIL1
+not-installed"libSOIL1-debuginfo
+installed"libSPIRV-Tools-suse13
+not-installed"libSPIRV-Tools-suse13-32bit
+not-installed"libSampleICC-devel
+not-installed"libSampleICC1
+not-installed"libSavitar-devel
+not-installed"libSavitar0
+not-installed"libSimGearCore-2018_3_4
+not-installed"libSoQt20
+not-installed"libSoapyOsmoSDR0
+not-installed"libSoapySDR0_7
+installed"libSoundTouch1
+not-installed"libSoundTouch1-32bit
+not-installed"libStatTimer2
+not-installed"libSwiften4
+not-installed"libTMCG-devel
+not-installed"libTMCG18
+not-installed"libUTF0_3
+not-installed"libUil4
+not-installed"libUil4-32bit
+not-installed"libUnitTest++-2_0_0
+installed"libUsageEnvironment3
+not-installed"libVFlib3-5
+not-installed"libWN3
+installed"libX11-6
+installed"libX11-6-32bit
+installed"libX11-data
+not-installed"libX11-devel
+not-installed"libX11-devel-32bit
+installed"libX11-xcb1
+installed"libX11-xcb1-32bit
+not-installed"libXNVCtrl
+not-installed"libXNVCtrl
+installed"libXRes1
+not-installed"libXRes1-32bit
+not-installed"libXau-devel
+not-installed"libXau-devel-32bit
+installed"libXau6
+installed"libXau6-32bit
+not-installed"libXaw-devel
+not-installed"libXaw-devel-32bit
+not-installed"libXaw3d-devel
+not-installed"libXaw3d-devel-32bit
+not-installed"libXaw3d6
+not-installed"libXaw3d6-32bit
+not-installed"libXaw3d7
+not-installed"libXaw3d7-32bit
+not-installed"libXaw3d8
+not-installed"libXaw3d8-32bit
+not-installed"libXaw3dXft
+not-installed"libXaw3dXft-debugsource
+not-installed"libXaw3dxft-devel
+not-installed"libXaw3dxft8
+not-installed"libXaw3dxft8-32bit
+not-installed"libXaw3dxft8-32bit-debuginfo
+not-installed"libXaw3dxft8-debuginfo
+not-installed"libXaw6
+not-installed"libXaw6-32bit
+installed"libXaw7
+not-installed"libXaw7-32bit
+not-installed"libXaw8
+not-installed"libXaw8-32bit
+not-installed"libXbgi-devel
+not-installed"libXbgi1
+not-installed"libXcm-devel
+not-installed"libXcm0
+not-installed"libXcmDDC0
+not-installed"libXcmEDID0
+not-installed"libXcmX11-0
+not-installed"libXcomposite-devel
+not-installed"libXcomposite-devel-32bit
+installed"libXcomposite1
+installed"libXcomposite1-32bit
+not-installed"libXcursor-devel
+not-installed"libXcursor-devel-32bit
+installed"libXcursor1
+installed"libXcursor1-32bit
+not-installed"libXdamage-devel
+not-installed"libXdamage-devel-32bit
+installed"libXdamage1
+installed"libXdamage1-32bit
+not-installed"libXdmcp-devel
+not-installed"libXdmcp-devel-32bit
+installed"libXdmcp6
+installed"libXdmcp6-32bit
+not-installed"libXevie-devel
+not-installed"libXevie-devel-32bit
+not-installed"libXevie1
+not-installed"libXevie1-32bit
+not-installed"libXext-devel
+not-installed"libXext-devel-32bit
+installed"libXext6
+installed"libXext6-32bit
+not-installed"libXfixes-devel
+not-installed"libXfixes-devel-32bit
+installed"libXfixes3
+installed"libXfixes3-32bit
+not-installed"libXfont-devel
+not-installed"libXfont-devel-32bit
+not-installed"libXfont1
+not-installed"libXfont1-32bit
+installed"libXfont2-2
+not-installed"libXfont2-2-32bit
+not-installed"libXfont2-devel
+not-installed"libXfont2-devel-32bit
+not-installed"libXfontcache-devel
+not-installed"libXfontcache-devel-32bit
+installed"libXfontcache1
+not-installed"libXfontcache1-32bit
+not-installed"libXft-devel
+not-installed"libXft-devel-32bit
+installed"libXft2
+installed"libXft2-32bit
+not-installed"libXi-devel
+not-installed"libXi-devel-32bit
+installed"libXi6
+installed"libXi6-32bit
+not-installed"libXinerama-devel
+not-installed"libXinerama-devel-32bit
+installed"libXinerama1
+installed"libXinerama1-32bit
+not-installed"libXiterm-devel
+not-installed"libXiterm1
+not-installed"libXm4
+not-installed"libXm4-32bit
+not-installed"libXmu-devel
+not-installed"libXmu-devel-32bit
+installed"libXmu6
+not-installed"libXmu6-32bit
+installed"libXmuu1
+not-installed"libXmuu1-32bit
+not-installed"libXp-devel
+not-installed"libXp-devel-32bit
+not-installed"libXp6
+not-installed"libXp6-32bit
+not-installed"libXpm-devel
+not-installed"libXpm-devel-32bit
+not-installed"libXpm-tools
+installed"libXpm4
+installed"libXpm4-32bit
+not-installed"libXpresent-devel
+not-installed"libXpresent1
+not-installed"libXprintAppUtil-devel
+not-installed"libXprintAppUtil-devel-32bit
+not-installed"libXprintAppUtil1
+not-installed"libXprintAppUtil1-32bit
+not-installed"libXprintUtil-devel
+not-installed"libXprintUtil-devel-32bit
+not-installed"libXprintUtil1
+not-installed"libXprintUtil1-32bit
+not-installed"libXrandr-devel
+not-installed"libXrandr-devel-32bit
+installed"libXrandr2
+installed"libXrandr2-32bit
+not-installed"libXrender-devel
+not-installed"libXrender-devel-32bit
+installed"libXrender1
+installed"libXrender1-32bit
+not-installed"libXres-devel
+not-installed"libXres-devel-32bit
+not-installed"libXss-devel
+not-installed"libXss-devel-32bit
+installed"libXss1
+not-installed"libXss1-32bit
+not-installed"libXt-devel
+not-installed"libXt-devel-32bit
+installed"libXt6
+not-installed"libXt6-32bit
+not-installed"libXtst-devel
+not-installed"libXtst-devel-32bit
+installed"libXtst6
+not-installed"libXtst6-32bit
+not-installed"libXv-devel
+not-installed"libXv-devel-32bit
+installed"libXv1
+not-installed"libXv1-32bit
+not-installed"libXvMC-devel
+not-installed"libXvMC-devel-32bit
+not-installed"libXvMC1
+not-installed"libXvMC1-32bit
+not-installed"libXvMC_nouveau
+not-installed"libXvMC_nouveau-32bit
+not-installed"libXvMC_r600
+not-installed"libXvMC_r600-32bit
+not-installed"libXvnc-devel
+installed"libXvnc1
+not-installed"libXxf86dga-devel
+not-installed"libXxf86dga-devel-32bit
+not-installed"libXxf86dga1
+not-installed"libXxf86dga1-32bit
+not-installed"libXxf86vm-devel
+not-installed"libXxf86vm-devel-32bit
+installed"libXxf86vm1
+installed"libXxf86vm1-32bit
+not-installed"libYODA-1_7_7
+installed"libZXingCore1
+not-installed"liba2ps1
+installed"liba52-0
+not-installed"liba52-0-32bit
+not-installed"liba52-devel
+installed"libaa1
+not-installed"libaa1-32bit
+not-installed"libaacs
+not-installed"libaacs-debugsource
+not-installed"libaacs-devel
+not-installed"libaacs0
+not-installed"libaacs0-debuginfo
+not-installed"libaal-1_0-7
+not-installed"libaal-devel
+not-installed"libaal-minimal0
+not-installed"libabigail-devel
+not-installed"libabigail-tools
+not-installed"libabigail0
+not-installed"libabiword-3_0
+not-installed"libabiword-3_0-devel
+not-installed"libabseil0
+installed"libabw-0_1-1
+not-installed"libabw-devel
+not-installed"libabw-devel-doc
+not-installed"libabw-tools
+not-installed"libacars-devel
+not-installed"libacars1
+not-installed"libaccounts-glib-devel
+not-installed"libaccounts-glib-docs
+not-installed"libaccounts-glib-tools
+installed"libaccounts-glib0
+not-installed"libaccounts-glib0-32bit
+installed"libaccounts-qt5-1
+not-installed"libaccounts-qt5-1-32bit
+not-installed"libaccounts-qt5-devel
+not-installed"libaccounts-qt5-doc
+not-installed"libaccountsservice0
+not-installed"libacl-devel
+not-installed"libacl-devel-32bit
+installed"libacl1
+installed"libacl1-32bit
+not-installed"libacr38ucontrol0
+not-installed"libada7
+not-installed"libada7-32bit
+not-installed"libada8
+not-installed"libada8-32bit
+not-installed"libada9
+not-installed"libada9-32bit
+not-installed"libaddrxlat-devel
+not-installed"libaddrxlat0
+not-installed"libadlmidi-devel
+not-installed"libadms0
+not-installed"libadns-devel
+not-installed"libadns-devel-32bit
+not-installed"libadns1
+not-installed"libadns1-32bit
+not-installed"libadolc2
+not-installed"libadolc2-32bit
+not-installed"libaec-devel
+not-installed"libaec0
+not-installed"libaec0-32bit
+not-installed"libaften-devel
+not-installed"libaften0
+not-installed"libaften0-debuginfo
+not-installed"libags2
+not-installed"libaio-devel
+not-installed"libaio-devel-32bit
+installed"libaio1
+not-installed"libaio1-32bit
+not-installed"libairspy0
+not-installed"libairspyhf0
+not-installed"libakai0
+not-installed"libalac0
+not-installed"libalkimia5-7
+not-installed"libalkimia5-devel
+not-installed"liballegro-doc
+not-installed"liballegro5_2
+not-installed"liballegro5_2-devel
+not-installed"liballegro_acodec5_2
+not-installed"liballegro_acodec5_2-devel
+not-installed"liballegro_audio5_2
+not-installed"liballegro_audio5_2-devel
+not-installed"liballegro_color5_2
+not-installed"liballegro_color5_2-devel
+not-installed"liballegro_dialog5_2
+not-installed"liballegro_dialog5_2-devel
+not-installed"liballegro_font5_2
+not-installed"liballegro_font5_2-devel
+not-installed"liballegro_image5_2
+not-installed"liballegro_image5_2-devel
+not-installed"liballegro_main5_2
+not-installed"liballegro_main5_2-devel
+not-installed"liballegro_memfile5_2
+not-installed"liballegro_memfile5_2-devel
+not-installed"liballegro_physfs5_2
+not-installed"liballegro_physfs5_2-devel
+not-installed"liballegro_primitives5_2
+not-installed"liballegro_primitives5_2-devel
+not-installed"liballegro_ttf5_2
+not-installed"liballegro_ttf5_2-devel
+not-installed"liballegro_video5_2
+not-installed"liballegro_video5_2-devel
+not-installed"libalut0
+not-installed"libalut0-32bit
+not-installed"libamd-doc
+not-installed"libamd2
+not-installed"libamrnb-devel
+not-installed"libamrnb3
+not-installed"libamrnb3-32bit
+not-installed"libamrnb3-32bit-debuginfo
+not-installed"libamrnb3-debuginfo
+not-installed"libamrwb-devel
+not-installed"libamrwb3
+not-installed"libamrwb3-32bit
+not-installed"libamrwb3-32bit-debuginfo
+not-installed"libamrwb3-debuginfo
+not-installed"libamtk-5-0
+not-installed"libangelscript2_33_0
+not-installed"libanjuta-3-0
+not-installed"libanthy0
+not-installed"libanthy0-32bit
+not-installed"libantlr3c3
+not-installed"libantlr3c3-32bit
+not-installed"libantlr4-runtime-devel
+not-installed"libantlr4-runtime4_7_2
+not-installed"libao-devel
+installed"libao-plugins4
+not-installed"libao-plugins4-32bit
+installed"libao4
+not-installed"libao4-32bit
+not-installed"libaom-devel
+not-installed"libaom-devel-doc
+installed"libaom0
+not-installed"libaom0-32bit
+not-installed"libap4-1_5_1r628
+not-installed"libap4-1_5_1r628-debuginfo
+not-installed"libapparmor-devel
+installed"libapparmor1
+not-installed"libapparmor1-32bit
+not-installed"libappindicator-devel
+not-installed"libappindicator1
+installed"libappindicator3-1
+not-installed"libappindicator3-devel
+not-installed"libappmenu-gtk-parser-devel
+not-installed"libappmenu-gtk2-parser-devel
+not-installed"libappmenu-gtk2-parser0
+not-installed"libappmenu-gtk3-parser-devel
+not-installed"libappmenu-gtk3-parser0
+installed"libappstream-glib8
+installed"libappstream4
+installed"libapr-util1
+not-installed"libapr-util1-dbd-mysql
+not-installed"libapr-util1-dbd-pgsql
+not-installed"libapr-util1-dbd-sqlite3
+installed"libapr1
+not-installed"libaqebics0
+not-installed"libaqofxconnect7
+not-installed"libarchive-devel
+installed"libarchive13
+not-installed"libarchive13-32bit
+installed"libargon2-1
+not-installed"libargon2-1-32bit
+not-installed"libargtable2-0
+not-installed"libargtable2-devel
+not-installed"libaria2-0
+not-installed"libarmadillo9
+not-installed"libarmadillo9-32bit
+not-installed"libarpack2
+not-installed"libarpack2-32bit
+not-installed"libarprec0
+not-installed"libart_lgpl-devel
+not-installed"libart_lgpl-devel-32bit
+not-installed"libart_lgpl_2-2
+not-installed"libart_lgpl_2-2-32bit
+not-installed"libasan4
+not-installed"libasan4-32bit
+installed"libasan5
+not-installed"libasan5-32bit
+not-installed"libasan5-gcc8
+not-installed"libasan5-gcc8-32bit
+not-installed"libaslcommon0
+not-installed"libasm-devel
+installed"libasm1
+not-installed"libasm1-32bit
+not-installed"libasn1c-devel
+not-installed"libasn1c1
+installed"libasound2
+installed"libasound2-32bit
+not-installed"libaspell15
+not-installed"libaspell15-32bit
+not-installed"libass-devel
+installed"libass9
+not-installed"libass9-32bit
+not-installed"libassimp3
+not-installed"libassuan-devel
+installed"libassuan0
+not-installed"libassuan0-32bit
+installed"libastro1
+not-installed"libastylej3
+not-installed"libasync
+not-installed"libasync-devel
+not-installed"libasyncns-devel
+not-installed"libasyncns0
+not-installed"libatasmart-devel
+installed"libatasmart-utils
+installed"libatasmart4
+not-installed"libathemecore1
+installed"libatk-1_0-0
+installed"libatk-1_0-0-32bit
+installed"libatk-bridge-2_0-0
+installed"libatk-bridge-2_0-0-32bit
+installed"libatkmm-1_6-1
+not-installed"libatkmm-1_6-1-32bit
+not-installed"libatkmm-2_30-1
+not-installed"libatkmm-2_30-1-32bit
+not-installed"libatlascpp-0_6-1
+installed"libatm1
+installed"libatomic1
+not-installed"libatomic1-32bit
+not-installed"libatomic1-gcc7
+not-installed"libatomic1-gcc7-32bit
+not-installed"libatomic1-gcc8
+not-installed"libatomic1-gcc8-32bit
+not-installed"libatomic_ops-devel
+not-installed"libatomicparsley0
+not-installed"libatrildocument3
+not-installed"libatrilview3
+installed"libatspi0
+installed"libatspi0-32bit
+not-installed"libattica-devel
+not-installed"libattica-devel-32bit
+installed"libattica0_4
+not-installed"libattica0_4-32bit
+not-installed"libattr-devel
+not-installed"libattr-devel-32bit
+not-installed"libattr-devel-static
+installed"libattr1
+not-installed"libattr1-32bit
+not-installed"libaubio-devel
+not-installed"libaubio5
+not-installed"libaubio5-32bit
+not-installed"libaudaspace-c1_3
+not-installed"libaudaspace-py1_3
+not-installed"libaudaspace1_3
+not-installed"libaudclient-devel
+not-installed"libaudclient2
+not-installed"libaudclient2
+not-installed"libaudclient2-debuginfo
+not-installed"libaudclient2-debugsource
+not-installed"libaudcore5
+not-installed"libaudgui5
+installed"libaudiofile1
+not-installed"libaudiofile1-32bit
+installed"libaudit1
+installed"libaudit1-32bit
+not-installed"libaudqt2
+not-installed"libaudtag3
+installed"libaugeas0
+not-installed"libaugeas0-32bit
+installed"libauparse0
+not-installed"libauparse0-32bit
+not-installed"libautotrace3
+not-installed"libav-tools
+installed"libavahi-client3
+installed"libavahi-client3-32bit
+installed"libavahi-common3
+installed"libavahi-common3-32bit
+installed"libavahi-core7
+not-installed"libavahi-devel
+not-installed"libavahi-glib-devel
+installed"libavahi-glib1
+not-installed"libavahi-glib1-32bit
+not-installed"libavahi-gobject-devel
+not-installed"libavahi-gobject0
+not-installed"libavahi-ui-gtk3-0
+not-installed"libavahi-ui0
+installed"libavc1394-0
+not-installed"libavc1394-0-32bit
+not-installed"libavc1394-devel
+not-installed"libavc1394-devel-32bit
+not-installed"libavc1394-tools
+installed"libavcodec56
+not-installed"libavcodec56-32bit
+not-installed"libavcodec56-32bit-debuginfo
+not-installed"libavcodec56-debuginfo
+not-installed"libavcodec57
+not-installed"libavcodec57-32bit
+not-installed"libavcodec57-32bit-debuginfo
+not-installed"libavcodec57-debuginfo
+installed"libavcodec58
+not-installed"libavcodec58-32bit
+not-installed"libavcodec58-32bit-debuginfo
+not-installed"libavcodec58-debuginfo
+installed"libavdevice56
+not-installed"libavdevice56-32bit
+not-installed"libavdevice56-32bit-debuginfo
+not-installed"libavdevice56-debuginfo
+not-installed"libavdevice57
+not-installed"libavdevice57-32bit
+not-installed"libavdevice57-32bit-debuginfo
+not-installed"libavdevice57-debuginfo
+installed"libavdevice58
+not-installed"libavdevice58-32bit
+not-installed"libavdevice58-32bit-debuginfo
+not-installed"libavdevice58-debuginfo
+installed"libavfilter5
+not-installed"libavfilter5-32bit
+not-installed"libavfilter5-32bit-debuginfo
+not-installed"libavfilter5-debuginfo
+not-installed"libavfilter6
+not-installed"libavfilter6-32bit
+not-installed"libavfilter6-32bit-debuginfo
+not-installed"libavfilter6-debuginfo
+installed"libavfilter7
+not-installed"libavfilter7-32bit
+not-installed"libavfilter7-32bit-debuginfo
+not-installed"libavfilter7-debuginfo
+installed"libavformat56
+not-installed"libavformat56-32bit
+not-installed"libavformat56-32bit-debuginfo
+not-installed"libavformat56-debuginfo
+not-installed"libavformat57
+not-installed"libavformat57-32bit
+not-installed"libavformat57-32bit-debuginfo
+not-installed"libavformat57-debuginfo
+installed"libavformat58
+not-installed"libavformat58-32bit
+not-installed"libavformat58-32bit-debuginfo
+not-installed"libavformat58-debuginfo
+not-installed"libavfs0
+not-installed"libavifile-devel
+not-installed"libaviplay-0_7-0
+not-installed"libaviplay-0_7-0-debuginfo
+not-installed"libavogadrolibs-suse0
+not-installed"libavrdude1
+installed"libavresample2
+not-installed"libavresample2-32bit
+not-installed"libavresample2-32bit-debuginfo
+not-installed"libavresample2-debuginfo
+not-installed"libavresample3
+not-installed"libavresample3-32bit
+not-installed"libavresample3-32bit-debuginfo
+not-installed"libavresample3-debuginfo
+installed"libavresample4
+not-installed"libavresample4-32bit
+not-installed"libavresample4-32bit-debuginfo
+not-installed"libavresample4-debuginfo
+not-installed"libavtp-devel
+not-installed"libavtp0
+installed"libavutil54
+not-installed"libavutil54-32bit
+not-installed"libavutil54-32bit-debuginfo
+not-installed"libavutil54-debuginfo
+not-installed"libavutil55
+not-installed"libavutil55-32bit
+not-installed"libavutil55-32bit-debuginfo
+not-installed"libavutil55-debuginfo
+installed"libavutil56
+not-installed"libavutil56-32bit
+not-installed"libavutil56-32bit-debuginfo
+not-installed"libavutil56-debuginfo
+not-installed"libavxsynth0
+not-installed"libavxsynth0-debuginfo
+not-installed"libax25-0
+not-installed"libax25-common
+not-installed"libax25-devel
+not-installed"libax25io0
+not-installed"libayatana-appindicator-devel
+not-installed"libayatana-appindicator1
+not-installed"libayatana-appindicator3-1
+not-installed"libayatana-appindicator3-devel
+not-installed"libayatana-ido3-0_4-0
+not-installed"libayatana-ido3-0_4-0-32bit
+not-installed"libayatana-indicator-devel
+not-installed"libayatana-indicator3-7
+not-installed"libayatana-indicator3-devel
+not-installed"libayatana-indicator7
+not-installed"libb2-1
+not-installed"libb2-devel
+not-installed"libb64
+installed"libb64-0
+not-installed"libb64-devel
+not-installed"libbabl-0_1-0
+not-installed"libbabl-0_1-0-32bit
+not-installed"libbamf3-2
+installed"libbase
+not-installed"libbase-javadoc
+not-installed"libbasicobjects-devel
+not-installed"libbasicobjects-devel-32bit
+not-installed"libbasicobjects0
+not-installed"libbasicobjects0-32bit
+not-installed"libbcc0
+not-installed"libbcg729-0
+not-installed"libbcg729-0-32bit
+not-installed"libbcmatroska2-0
+not-installed"libbcmatroska2-0-32bit
+not-installed"libbctoolbox-tester1
+not-installed"libbctoolbox-tester1-32bit
+not-installed"libbctoolbox1
+not-installed"libbctoolbox1-32bit
+not-installed"libbcunit1
+not-installed"libbcunit1-32bit
+not-installed"libbd_btrfs-devel
+installed"libbd_btrfs2
+not-installed"libbd_crypto-devel
+installed"libbd_crypto2
+not-installed"libbd_dm-devel
+not-installed"libbd_dm2
+not-installed"libbd_fs-devel
+installed"libbd_fs2
+not-installed"libbd_kbd-devel
+not-installed"libbd_kbd2
+not-installed"libbd_loop-devel
+installed"libbd_loop2
+not-installed"libbd_lvm-dbus-devel
+not-installed"libbd_lvm-dbus2
+not-installed"libbd_lvm-devel
+not-installed"libbd_lvm2
+not-installed"libbd_mdraid-devel
+installed"libbd_mdraid2
+not-installed"libbd_mpath-devel
+not-installed"libbd_mpath2
+not-installed"libbd_part-devel
+installed"libbd_part2
+not-installed"libbd_swap-devel
+installed"libbd_swap2
+not-installed"libbd_utils-devel
+installed"libbd_utils2
+not-installed"libbd_vdo-devel
+not-installed"libbd_vdo2
+not-installed"libbde-devel
+not-installed"libbde-tools
+not-installed"libbde1
+not-installed"libbdplus
+not-installed"libbdplus-debugsource
+not-installed"libbdplus-devel
+not-installed"libbdplus0
+not-installed"libbdplus0-debuginfo
+not-installed"libbeecrypt-devel
+not-installed"libbeecrypt6
+not-installed"libbelcard1
+not-installed"libbelcard1-32bit
+not-installed"libbellesip0
+not-installed"libbellesip0-32bit
+not-installed"libbelr1
+not-installed"libbelr1-32bit
+not-installed"libbemenu0
+not-installed"libbenchmark0
+not-installed"libbfio-devel
+not-installed"libbfio1
+not-installed"libbiblesync2_0
+installed"libbind9-160
+not-installed"libbind9-160-32bit
+not-installed"libbitcoinconsensus-devel
+not-installed"libbitcoinconsensus0
+not-installed"libbitmask-devel
+not-installed"libbitmask1
+not-installed"libblacs2-gnu-mpich-hpc
+not-installed"libblacs2-gnu-mpich-hpc-devel
+not-installed"libblacs2-gnu-mvapich2-hpc
+not-installed"libblacs2-gnu-mvapich2-hpc-devel
+not-installed"libblacs2-gnu-openmpi1-hpc
+not-installed"libblacs2-gnu-openmpi1-hpc-devel
+not-installed"libblacs2-gnu-openmpi2-hpc
+not-installed"libblacs2-gnu-openmpi2-hpc-devel
+not-installed"libblacs2-gnu-openmpi3-hpc
+not-installed"libblacs2-gnu-openmpi3-hpc-devel
+not-installed"libblacs2-mvapich2
+not-installed"libblacs2-mvapich2-devel
+not-installed"libblacs2-mvapich2-devel-static
+not-installed"libblacs2-openmpi
+not-installed"libblacs2-openmpi-devel
+not-installed"libblacs2-openmpi-devel-static
+not-installed"libblacs2-openmpi2
+not-installed"libblacs2-openmpi2-devel
+not-installed"libblacs2-openmpi2-devel-static
+not-installed"libblacs2-openmpi3
+not-installed"libblacs2-openmpi3-devel
+not-installed"libblacs2-openmpi3-devel-static
+not-installed"libblacs2_2_0_2-gnu-mpich-hpc
+not-installed"libblacs2_2_0_2-gnu-mpich-hpc-devel
+not-installed"libblacs2_2_0_2-gnu-mpich-hpc-devel-static
+not-installed"libblacs2_2_0_2-gnu-mvapich2-hpc
+not-installed"libblacs2_2_0_2-gnu-mvapich2-hpc-devel
+not-installed"libblacs2_2_0_2-gnu-mvapich2-hpc-devel-static
+not-installed"libblacs2_2_0_2-gnu-openmpi1-hpc
+not-installed"libblacs2_2_0_2-gnu-openmpi1-hpc-devel
+not-installed"libblacs2_2_0_2-gnu-openmpi1-hpc-devel-static
+not-installed"libblacs2_2_0_2-gnu-openmpi2-hpc
+not-installed"libblacs2_2_0_2-gnu-openmpi2-hpc-devel
+not-installed"libblacs2_2_0_2-gnu-openmpi2-hpc-devel-static
+not-installed"libblacs2_2_0_2-gnu-openmpi3-hpc
+not-installed"libblacs2_2_0_2-gnu-openmpi3-hpc-devel
+not-installed"libblacs2_2_0_2-gnu-openmpi3-hpc-devel-static
+not-installed"libbladeRF2
+not-installed"libbladeRF2-doc
+installed"libblas3
+not-installed"libblas3-32bit
+not-installed"libbliss-0_73
+not-installed"libblkid-devel
+not-installed"libblkid-devel-32bit
+not-installed"libblkid-devel-static
+installed"libblkid1
+installed"libblkid1-32bit
+installed"libblockdev
+not-installed"libblockdev-devel
+installed"libblockdev2
+installed"libblogger2
+not-installed"libblosc1
+installed"libbluetooth3
+not-installed"libbluetooth3-32bit
+not-installed"libbluray-bdj
+not-installed"libbluray-devel
+not-installed"libbluray-tools
+installed"libbluray2
+not-installed"libbluray2-32bit
+not-installed"libbml-devel
+not-installed"libbml1
+not-installed"libboinc-devel
+not-installed"libboinc7
+not-installed"libbonobo
+not-installed"libbonobo-32bit
+not-installed"libbonobo-devel
+not-installed"libbonobo-doc
+not-installed"libbonobo-lang
+not-installed"libbonoboui
+not-installed"libbonoboui-32bit
+not-installed"libbonoboui-devel
+not-installed"libbonoboui-doc
+not-installed"libbonoboui-lang
+not-installed"libbonoboui-tools
+not-installed"libboost_atomic-devel
+not-installed"libboost_atomic1_69_0
+not-installed"libboost_atomic1_69_0-32bit
+not-installed"libboost_atomic1_69_0-devel
+not-installed"libboost_chrono-devel
+not-installed"libboost_chrono1_69_0
+not-installed"libboost_chrono1_69_0-devel
+not-installed"libboost_container-devel
+not-installed"libboost_container1_69_0
+not-installed"libboost_container1_69_0-32bit
+not-installed"libboost_container1_69_0-devel
+not-installed"libboost_context-devel
+not-installed"libboost_context1_69_0
+not-installed"libboost_context1_69_0-32bit
+not-installed"libboost_context1_69_0-devel
+not-installed"libboost_contract-devel
+not-installed"libboost_contract1_69_0
+not-installed"libboost_contract1_69_0-devel
+not-installed"libboost_coroutine-devel
+not-installed"libboost_coroutine1_69_0
+not-installed"libboost_coroutine1_69_0-32bit
+not-installed"libboost_coroutine1_69_0-devel
+not-installed"libboost_date_time-devel
+installed"libboost_date_time1_69_0
+not-installed"libboost_date_time1_69_0-32bit
+not-installed"libboost_date_time1_69_0-devel
+not-installed"libboost_fiber-devel
+not-installed"libboost_fiber1_69_0
+not-installed"libboost_fiber1_69_0-32bit
+not-installed"libboost_fiber1_69_0-devel
+not-installed"libboost_filesystem-devel
+installed"libboost_filesystem1_69_0
+not-installed"libboost_filesystem1_69_0-32bit
+not-installed"libboost_filesystem1_69_0-devel
+not-installed"libboost_graph-devel
+not-installed"libboost_graph1_69_0
+not-installed"libboost_graph1_69_0-32bit
+not-installed"libboost_graph1_69_0-devel
+not-installed"libboost_graph_parallel-devel
+not-installed"libboost_graph_parallel1_69_0
+not-installed"libboost_graph_parallel1_69_0-32bit
+not-installed"libboost_graph_parallel1_69_0-devel
+not-installed"libboost_headers-devel
+not-installed"libboost_headers1_69_0-devel
+not-installed"libboost_iostreams-devel
+installed"libboost_iostreams1_69_0
+not-installed"libboost_iostreams1_69_0-32bit
+not-installed"libboost_iostreams1_69_0-devel
+not-installed"libboost_locale-devel
+installed"libboost_locale1_69_0
+not-installed"libboost_locale1_69_0-32bit
+not-installed"libboost_locale1_69_0-devel
+not-installed"libboost_log-devel
+not-installed"libboost_log1_69_0
+not-installed"libboost_log1_69_0-devel
+not-installed"libboost_math-devel
+not-installed"libboost_math1_69_0
+not-installed"libboost_math1_69_0-32bit
+not-installed"libboost_math1_69_0-devel
+not-installed"libboost_mpi-devel
+not-installed"libboost_mpi1_69_0
+not-installed"libboost_mpi1_69_0-32bit
+not-installed"libboost_mpi1_69_0-devel
+not-installed"libboost_mpi_python-devel
+not-installed"libboost_mpi_python-py2_7-1_69_0
+not-installed"libboost_mpi_python-py2_7-1_69_0-devel
+not-installed"libboost_mpi_python-py3-1_69_0
+not-installed"libboost_mpi_python-py3-1_69_0-devel
+not-installed"libboost_mpi_python3-devel
+not-installed"libboost_numpy-devel
+not-installed"libboost_numpy-py2_7-1_69_0
+not-installed"libboost_numpy-py2_7-1_69_0-devel
+not-installed"libboost_numpy-py3-1_69_0
+not-installed"libboost_numpy-py3-1_69_0-devel
+not-installed"libboost_numpy3-devel
+not-installed"libboost_program_options-devel
+not-installed"libboost_program_options1_69_0
+not-installed"libboost_program_options1_69_0-32bit
+not-installed"libboost_program_options1_69_0-devel
+not-installed"libboost_python-devel
+not-installed"libboost_python-py2_7-1_69_0
+not-installed"libboost_python-py2_7-1_69_0-32bit
+not-installed"libboost_python-py2_7-1_69_0-devel
+not-installed"libboost_python-py3-1_69_0
+not-installed"libboost_python-py3-1_69_0-32bit
+not-installed"libboost_python-py3-1_69_0-devel
+not-installed"libboost_python3-devel
+not-installed"libboost_random-devel
+not-installed"libboost_random1_69_0
+not-installed"libboost_random1_69_0-32bit
+not-installed"libboost_random1_69_0-devel
+not-installed"libboost_regex-devel
+installed"libboost_regex1_69_0
+not-installed"libboost_regex1_69_0-32bit
+not-installed"libboost_regex1_69_0-devel
+not-installed"libboost_serialization-devel
+not-installed"libboost_serialization1_69_0
+not-installed"libboost_serialization1_69_0-32bit
+not-installed"libboost_serialization1_69_0-devel
+not-installed"libboost_stacktrace-devel
+not-installed"libboost_stacktrace1_69_0
+not-installed"libboost_stacktrace1_69_0-32bit
+not-installed"libboost_stacktrace1_69_0-devel
+not-installed"libboost_system-devel
+not-installed"libboost_system1_69_0
+not-installed"libboost_system1_69_0-32bit
+not-installed"libboost_system1_69_0-devel
+not-installed"libboost_test-devel
+not-installed"libboost_test1_69_0
+not-installed"libboost_test1_69_0-32bit
+not-installed"libboost_test1_69_0-devel
+not-installed"libboost_thread-devel
+installed"libboost_thread1_69_0
+not-installed"libboost_thread1_69_0-32bit
+not-installed"libboost_thread1_69_0-devel
+not-installed"libboost_timer-devel
+not-installed"libboost_timer1_69_0
+not-installed"libboost_timer1_69_0-devel
+not-installed"libboost_type_erasure-devel
+not-installed"libboost_type_erasure1_69_0
+not-installed"libboost_type_erasure1_69_0-32bit
+not-installed"libboost_type_erasure1_69_0-devel
+not-installed"libboost_wave-devel
+not-installed"libboost_wave1_69_0
+not-installed"libboost_wave1_69_0-32bit
+not-installed"libboost_wave1_69_0-devel
+not-installed"libboringssl0
+not-installed"libbotan-2-10
+not-installed"libbotan-2-10-32bit
+not-installed"libbotan-devel
+not-installed"libbotan-devel-32bit
+not-installed"libbraille
+not-installed"libbraille-devel
+not-installed"libbraille-fake
+not-installed"libbrasero-burn3-1
+not-installed"libbrasero-media3-1
+not-installed"libbrasero-utils3-1
+installed"libbreezecommon4-5
+installed"libbreezecommon5-5
+installed"libbrlapi0_7
+not-installed"libbrotli-devel
+installed"libbrotlicommon1
+not-installed"libbrotlicommon1-32bit
+installed"libbrotlidec1
+not-installed"libbrotlidec1-32bit
+not-installed"libbrotlienc1
+not-installed"libbrotlienc1-32bit
+not-installed"libbs2b-devel
+installed"libbs2b0
+not-installed"libbs2b0-32bit
+not-installed"libbsd-ctor-static
+not-installed"libbsd-devel
+installed"libbsd0
+not-installed"libbssl_wrapper_lib0
+not-installed"libbtf1
+not-installed"libbtrfs-devel
+installed"libbtrfs0
+not-installed"libbtrfsutil-devel
+not-installed"libbtrfsutil1
+not-installed"libbuffer0_3
+not-installed"libbullet-devel
+not-installed"libbullet2_88
+not-installed"libburn-devel
+installed"libburn4
+not-installed"libbuzztrax-core-devel
+not-installed"libbuzztrax-core1
+not-installed"libbuzztrax-core1-32bit
+not-installed"libbuzztrax-gst-devel
+not-installed"libbuzztrax-gst1
+not-installed"libbuzztrax-gst1-32bit
+not-installed"libbuzztrax-ic-devel
+not-installed"libbuzztrax-ic1
+not-installed"libbuzztrax-ic1-32bit
+not-installed"libbytesize-devel
+installed"libbytesize-lang
+installed"libbytesize1
+installed"libbz2-1
+installed"libbz2-1-32bit
+not-installed"libbz2-devel
+not-installed"libbz2-devel-32bit
+not-installed"libbzrtp0
+not-installed"libbzrtp0-32bit
+not-installed"libc++-devel
+not-installed"libc++1
+not-installed"libc++abi-devel
+not-installed"libc++abi1
+not-installed"libc-client2007f_suse
+not-installed"libcaca-devel
+not-installed"libcaca-ruby
+installed"libcaca0
+not-installed"libcaca0-32bit
+not-installed"libcaca0-plugins
+not-installed"libcaca0-plugins-32bit
+not-installed"libcacard
+not-installed"libcacard-devel
+installed"libcacard0
+not-installed"libcaes-devel
+not-installed"libcaes1
+not-installed"libcaffe-gnu-hpc
+not-installed"libcaffe1_0_0
+not-installed"libcaffe_1_0-gnu-hpc
+installed"libcairo-gobject2
+installed"libcairo-gobject2-32bit
+not-installed"libcairo-script-interpreter2
+not-installed"libcairo-script-interpreter2-32bit
+installed"libcairo2
+installed"libcairo2-32bit
+installed"libcairomm-1_0-1
+not-installed"libcairomm-1_0-1-32bit
+not-installed"libcairomm-1_16-1
+not-installed"libcairomm-1_16-1-32bit
+not-installed"libcaja-extension1
+not-installed"libcal3d12
+not-installed"libcalc2
+not-installed"libcamd-doc
+not-installed"libcamd2
+not-installed"libcamel-1_2-62
+not-installed"libcamel-1_2-62-32bit
+not-installed"libcamera-devel
+not-installed"libcamera-suse1
+not-installed"libcamera-tools
+not-installed"libcanberra-devel
+not-installed"libcanberra-gtk-devel
+installed"libcanberra-gtk-module-common
+installed"libcanberra-gtk0
+installed"libcanberra-gtk0-32bit
+installed"libcanberra-gtk2-module
+installed"libcanberra-gtk2-module-32bit
+installed"libcanberra-gtk3-0
+installed"libcanberra-gtk3-0-32bit
+not-installed"libcanberra-gtk3-devel
+installed"libcanberra-gtk3-module
+installed"libcanberra-gtk3-module-32bit
+installed"libcanberra0
+installed"libcanberra0-32bit
+not-installed"libcangjie-data
+not-installed"libcangjie-devel
+not-installed"libcangjie-tools
+not-installed"libcangjie2
+not-installed"libcantorlibs23
+not-installed"libcap-devel
+not-installed"libcap-ng-devel
+not-installed"libcap-ng-utils
+installed"libcap-ng0
+not-installed"libcap-ng0-32bit
+not-installed"libcap-progs
+not-installed"libcap1
+not-installed"libcap1-32bit
+installed"libcap2
+installed"libcap2-32bit
+not-installed"libcapi20-2
+not-installed"libcapi20-2-32bit
+installed"libcapi20-3
+installed"libcapi20-3-32bit
+not-installed"libcapifax-devel
+not-installed"libcapifax0
+not-installed"libcapifax0-debuginfo
+not-installed"libcapnp-0_7
+not-installed"libcapnp-devel
+installed"libcares2
+not-installed"libcares2-32bit
+not-installed"libcaribou0
+not-installed"libcblas3
+not-installed"libcblas3-32bit
+not-installed"libcbor-devel
+not-installed"libcbor0
+not-installed"libccolamd2
+not-installed"libccrtp3
+not-installed"libcdata-devel
+not-installed"libcdata1
+not-installed"libcdatetime-devel
+not-installed"libcdatetime1
+not-installed"libcdaudio-devel
+not-installed"libcdaudio1
+not-installed"libcdaudio1-32bit
+not-installed"libcdd0
+installed"libcdda_interface0
+not-installed"libcdda_interface0-32bit
+installed"libcdda_paranoia0
+not-installed"libcdda_paranoia0-32bit
+not-installed"libcddb-devel
+not-installed"libcddb-utils
+installed"libcddb2
+not-installed"libcddb2-32bit
+not-installed"libcdio++0
+not-installed"libcdio++0-32bit
+not-installed"libcdio-devel
+not-installed"libcdio-paranoia-devel
+installed"libcdio19
+not-installed"libcdio19-32bit
+installed"libcdio_cdda2
+not-installed"libcdio_cdda2-32bit
+installed"libcdio_paranoia2
+not-installed"libcdio_paranoia2-32bit
+not-installed"libcdirectory-devel
+not-installed"libcdirectory1
+not-installed"libcdk5
+installed"libcdr-0_1-1
+not-installed"libcdr-devel
+not-installed"libcdr-devel-doc
+not-installed"libcdr-tools
+installed"libcdrdeflt1_0
+not-installed"libcec-devel
+not-installed"libcec4
+not-installed"libcelt-devel
+not-installed"libcelt-devel-32bit
+installed"libcelt0-2
+not-installed"libcelt0-2-32bit
+not-installed"libcelt051-0
+not-installed"libcephfs-devel
+not-installed"libcephfs2
+not-installed"libceres-devel
+not-installed"libceres1
+not-installed"libcerf-devel
+not-installed"libcerf1
+not-installed"libcerror-devel
+not-installed"libcerror1
+not-installed"libcetcd0
+not-installed"libcfg6
+not-installed"libcfg6-32bit
+not-installed"libcfile-devel
+not-installed"libcfile1
+installed"libcfitsio7
+not-installed"libchafa0
+not-installed"libchamplain-0_12-0
+not-installed"libchamplain-devel
+not-installed"libchardet-devel
+not-installed"libchardet1
+not-installed"libchardet1-32bit
+not-installed"libchck0
+not-installed"libcheck0
+not-installed"libcheck0-32bit
+not-installed"libcheese-common
+not-installed"libcheese-gtk25
+not-installed"libcheese8
+not-installed"libchewing-devel
+not-installed"libchewing3
+not-installed"libchewing3-32bit
+not-installed"libchipcard
+not-installed"libchipcard-devel
+not-installed"libchipcard6
+installed"libchm0
+not-installed"libchm0-32bit
+not-installed"libcholmod3
+not-installed"libchromaprint-devel
+installed"libchromaprint1
+not-installed"libchromaprint1-32bit
+not-installed"libcilium1
+not-installed"libcilkrts5
+not-installed"libcilkrts5-32bit
+not-installed"libcimcClientXML0
+not-installed"libcimcclient0
+not-installed"libcinnamon-control-center1
+not-installed"libcinnamon-desktop-data
+not-installed"libcinnamon-desktop-data-branding-openSUSE
+not-installed"libcinnamon-desktop-data-branding-upstream
+not-installed"libcinnamon-desktop-devel
+not-installed"libcinnamon-desktop-lang
+not-installed"libcinnamon-desktop4
+not-installed"libcinnamon-desktop4-32bit
+not-installed"libcinnamon-menu-3-0
+not-installed"libcinnamon-menu-3-0-32bit
+not-installed"libcinnamon-menu-3-devel
+not-installed"libcircle-devel
+not-installed"libcircle2
+not-installed"libcircllhist-devel
+not-installed"libcircllhist0_0_1
+not-installed"libcjose-devel
+not-installed"libcjose0
+not-installed"libcjs0
+not-installed"libck0
+not-installed"libclFFT2
+not-installed"libclamav9
+not-installed"libclang6
+not-installed"libclang6-32bit
+not-installed"libclang7
+not-installed"libclang7-32bit
+not-installed"libclang8
+not-installed"libclang8-32bit
+not-installed"libclastfm-devel
+not-installed"libclastfm0
+not-installed"libclaw-devel
+not-installed"libclaw-doc
+not-installed"libclaw1
+not-installed"libclc
+not-installed"libcld2-0
+not-installed"libcli-devel
+not-installed"libcli1_9
+not-installed"libclocale-devel
+not-installed"libclocale1
+not-installed"libcloudproviders-devel
+not-installed"libcloudproviders0
+installed"libclucene-contribs-lib1
+installed"libclucene-core1
+not-installed"libclucene-core1-32bit
+installed"libclucene-shared1
+not-installed"libclucene-shared1-32bit
+not-installed"libclutter-1_0-0
+not-installed"libclutter-1_0-0-32bit
+not-installed"libclutter-gst-3_0-0
+not-installed"libclutter-gst-3_0-0-32bit
+not-installed"libclutter-gtk-1_0-0
+not-installed"libclutter-gtk-1_0-0-32bit
+not-installed"libclzma-suse0
+not-installed"libcmap4
+not-installed"libcmap4-32bit
+not-installed"libcmark0_29_0
+installed"libcmis-0_5-5
+not-installed"libcmis-c-0_5-5
+not-installed"libcmis-c-devel
+not-installed"libcmis-devel
+not-installed"libcmocka-devel
+not-installed"libcmocka-devel-32bit
+not-installed"libcmocka-devel-static
+not-installed"libcmocka0
+not-installed"libcmocka0-32bit
+not-installed"libcmpiCppImpl0
+not-installed"libcmpisfcc1
+not-installed"libcmpiutil
+not-installed"libcmpiutil-devel
+not-installed"libcmrt1
+not-installed"libcmuclmtk-devel
+not-installed"libcmuclmtk0
+not-installed"libcnotify-devel
+not-installed"libcnotify1
+not-installed"libcob-devel
+not-installed"libcob4
+installed"libcodec2-0_8
+not-installed"libcodec2-0_8-32bit
+not-installed"libcogl-gles2-20
+not-installed"libcogl-pango20
+not-installed"libcogl-pango20-32bit
+not-installed"libcogl20
+not-installed"libcogl20-32bit
+not-installed"libcolamd2
+not-installed"libcollectdclient-devel
+not-installed"libcollectdclient1
+not-installed"libcollection-devel
+not-installed"libcollection-devel-32bit
+not-installed"libcollection4
+not-installed"libcollection4-32bit
+not-installed"libcolm-0_13_0_7
+not-installed"libcolord-devel
+not-installed"libcolord-gtk-devel
+not-installed"libcolord-gtk1
+not-installed"libcolord-gtk1-32bit
+installed"libcolord2
+installed"libcolord2-32bit
+not-installed"libcolorhug2
+not-installed"libcom_err-devel
+not-installed"libcom_err-devel-32bit
+not-installed"libcom_err-devel-static
+installed"libcom_err2
+installed"libcom_err2-32bit
+not-installed"libcompel1
+not-installed"libcompizconfig
+not-installed"libcompizconfig-devel
+not-installed"libcomps-devel
+not-installed"libcomps-doc
+not-installed"libcomps0_1_11
+not-installed"libconfig++-devel
+installed"libconfig++11
+not-installed"libconfig++11-32bit
+not-installed"libconfig-devel
+not-installed"libconfig11
+not-installed"libconfig11-32bit
+not-installed"libconfuse-devel
+not-installed"libconfuse-lang
+not-installed"libconfuse2
+not-installed"libcontainers-common
+not-installed"libcorosync-devel
+not-installed"libcorosync_common4
+not-installed"libcorosync_common4-32bit
+not-installed"libcorrect-devel
+not-installed"libcorrect0_0_0
+not-installed"libcourier-unicode4
+not-installed"libcpath-devel
+not-installed"libcpath1
+not-installed"libcpg4
+not-installed"libcpg4-32bit
+not-installed"libcpluff-devel
+not-installed"libcpluff0
+not-installed"libcpluffxx-devel
+not-installed"libcpluffxx0
+not-installed"libcpprest2_10
+not-installed"libcppunit-1_14-0
+not-installed"libcppunit-1_14-0-32bit
+not-installed"libcppunit_subunit0
+not-installed"libcppunit_subunit0-devel
+not-installed"libcpuid-devel
+not-installed"libcpuid-tools
+not-installed"libcpuid14
+installed"libcpupower0
+not-installed"libcpuset-devel
+not-installed"libcpuset1
+installed"libcrack2
+installed"libcrack2-32bit
+not-installed"libcreaterepo_c-devel
+installed"libcreaterepo_c0
+not-installed"libcriu2
+not-installed"libcroco
+installed"libcroco-0_6-3
+not-installed"libcroco-0_6-3-32bit
+not-installed"libcroco-devel
+not-installed"libcrossc1
+not-installed"libcrossc1-32bit
+not-installed"libcrossguid0
+installed"libcrypt1
+installed"libcrypt1-32bit
+not-installed"libcryptmount-devel
+not-installed"libcryptmount0
+not-installed"libcryptmount0-32bit
+not-installed"libcrypto45
+not-installed"libcrypto45-32bit
+not-installed"libcryptopp-devel
+not-installed"libcryptopp8_2_0
+not-installed"libcryptopp8_2_0-32bit
+not-installed"libcryptsetup-devel
+installed"libcryptsetup12
+not-installed"libcryptsetup12-32bit
+not-installed"libcryptsetup12-hmac
+not-installed"libcryptsetup12-hmac-32bit
+not-installed"libcryptui-data
+not-installed"libcryptui-devel
+not-installed"libcryptui-lang
+not-installed"libcryptui0
+not-installed"libcrystalhd-devel
+not-installed"libcrystalhd-devel-32bit
+not-installed"libcrystalhd3
+not-installed"libcrystalhd3-32bit
+not-installed"libcsirocsa0
+not-installed"libcsironn0
+not-installed"libcsnd6-6_0
+not-installed"libcsound64-6_0
+not-installed"libcsparse3
+not-installed"libcsplit-devel
+not-installed"libcsplit1
+not-installed"libcss-devel
+not-installed"libcss0
+not-installed"libcstring-devel
+not-installed"libcstring1
+not-installed"libcsv-devel
+not-installed"libcsv3
+not-installed"libcsync-devel
+not-installed"libcsync-devel-doc
+not-installed"libcsync-doc
+not-installed"libcsync-plugin-owncloud
+not-installed"libcsync-plugin-sftp
+not-installed"libcsync-plugin-smb
+not-installed"libcsync0
+not-installed"libcsync0-32bit
+not-installed"libcsystem-devel
+not-installed"libcsystem1
+not-installed"libct4
+not-installed"libctemplate-devel
+not-installed"libctemplate3
+not-installed"libcthreads-devel
+not-installed"libcthreads1
+not-installed"libctl-devel
+not-installed"libctl-doc
+not-installed"libctl5
+not-installed"libcudd-3_0_0-0
+not-installed"libcue-devel
+not-installed"libcue2
+not-installed"libcuefile-devel
+not-installed"libcuefile0
+not-installed"libcuneiform-devel
+not-installed"libcuneiform1
+not-installed"libcunit1
+installed"libcups2
+installed"libcups2-32bit
+installed"libcupsimage2
+not-installed"libcupsimage2-32bit
+not-installed"libcurl-devel
+not-installed"libcurl-devel-32bit
+installed"libcurl4
+installed"libcurl4-32bit
+not-installed"libcvc-devel
+not-installed"libcvc0
+not-installed"libcwiid-devel
+not-installed"libcwiid-devel-32bit
+not-installed"libcwiid1
+not-installed"libcwiid1-32bit
+not-installed"libcwnn0
+not-installed"libcxsc2
+not-installed"libcxsparse3
+not-installed"libcxx-gtk-utils-3-2_2-0
+not-installed"libcxx-gtk-utils-3-devel
+not-installed"libcxxtools-bin9
+not-installed"libcxxtools-http9
+not-installed"libcxxtools-json9
+not-installed"libcxxtools-unit9
+not-installed"libcxxtools-xmlrpc9
+not-installed"libcxxtools9
+not-installed"libczmq4
+not-installed"libd0_blind_id0
+not-installed"libd0_rijndael0
+not-installed"libdSFMT2_2
+not-installed"libdaemon-devel
+installed"libdaemon0
+not-installed"libdar-devel
+not-installed"libdar5000
+not-installed"libdat2-2
+not-installed"libdat2-2-32bit
+not-installed"libdataquay0
+not-installed"libdatrie-devel
+installed"libdatrie1
+installed"libdatrie1-32bit
+installed"libdav1d2
+not-installed"libdav1d2-32bit
+not-installed"libdavix0
+not-installed"libdazzle
+not-installed"libdazzle-1_0-0
+not-installed"libdazzle-devel
+installed"libdb-4_8
+installed"libdb-4_8-32bit
+not-installed"libdb-4_8-devel
+not-installed"libdb-4_8-devel-32bit
+not-installed"libdb_java-4_8
+not-installed"libdb_java-4_8-devel
+not-installed"libdbevolution0
+not-installed"libdbevolution0-debuginfo
+not-installed"libdbh2
+not-installed"libdbi-devel
+not-installed"libdbi-devel-32bit
+not-installed"libdbi-drivers-dbd-freetds
+not-installed"libdbi-drivers-dbd-mysql
+not-installed"libdbi-drivers-dbd-pgsql
+not-installed"libdbi-drivers-dbd-sqlite3
+not-installed"libdbi3
+not-installed"libdbi3-32bit
+installed"libdbus-1-3
+installed"libdbus-1-3-32bit
+not-installed"libdbus-c++-1-1
+not-installed"libdbus-c++-1-1-32bit
+not-installed"libdbus-c++-devel
+not-installed"libdbus-c++-glib-1-1
+not-installed"libdbus-c++-glib-1-1-32bit
+not-installed"libdbusextended-qt5-1
+not-installed"libdbusextended-qt5-devel
+not-installed"libdbusmenu-glib-devel
+not-installed"libdbusmenu-glib-doc
+installed"libdbusmenu-glib4
+not-installed"libdbusmenu-gtk-devel
+not-installed"libdbusmenu-gtk-doc
+installed"libdbusmenu-gtk3-4
+not-installed"libdbusmenu-gtk3-devel
+not-installed"libdbusmenu-gtk4
+not-installed"libdbusmenu-jsonloader-devel
+not-installed"libdbusmenu-jsonloader4
+not-installed"libdbusmenu-qt-devel
+installed"libdbusmenu-qt2
+not-installed"libdbusmenu-qt2-32bit
+installed"libdbusmenu-qt5-2
+not-installed"libdbusmenu-qt5-2-32bit
+not-installed"libdbusmenu-qt5-devel
+not-installed"libdbusmenu-qt5-devel-32bit
+not-installed"libdbusmenu-tools
+installed"libdc1394-25
+not-installed"libdc1394-25-32bit
+not-installed"libdc1394-devel
+not-installed"libdc1394-tools
+not-installed"libdca-devel
+installed"libdca0
+not-installed"libdca0-32bit
+not-installed"libdca0-32bit-debuginfo
+not-installed"libdca0-debuginfo
+not-installed"libdcadec-devel
+not-installed"libdcadec0
+not-installed"libdcadec0-32bit
+not-installed"libdcadec0-32bit-debuginfo
+not-installed"libdcadec0-debuginfo
+not-installed"libdcaenc-devel
+not-installed"libdcaenc0
+not-installed"libdcaenc0-debuginfo
+not-installed"libdccore0
+not-installed"libdccore0-debuginfo
+installed"libdcerpc-binding0
+installed"libdcerpc-binding0-32bit
+not-installed"libdcerpc-devel
+not-installed"libdcerpc-samr-devel
+not-installed"libdcerpc-samr0
+not-installed"libdcerpc-samr0-32bit
+installed"libdcerpc0
+installed"libdcerpc0-32bit
+not-installed"libdcmtk3_6
+installed"libdconf1
+not-installed"libdconf1-32bit
+not-installed"libdcwebservice0
+not-installed"libdcwebservice0-debuginfo
+not-installed"libdd_opentracing0
+not-installed"libddccontrol0
+not-installed"libddcutil-devel
+not-installed"libddcutil0
+not-installed"libde265
+not-installed"libde265-0
+not-installed"libde265-0-32bit
+not-installed"libde265-0-32bit-debuginfo
+not-installed"libde265-0-debuginfo
+not-installed"libde265-debugsource
+not-installed"libde265-devel
+not-installed"libdecoration0
+not-installed"libdecoration0-32bit
+not-installed"libdee-1_0-4
+installed"libdeflt1_0
+not-installed"libdevil-tools
+installed"libdevmapper-event1_03
+not-installed"libdevmapper-event1_03-32bit
+installed"libdevmapper1_03
+not-installed"libdevmapper1_03-32bit
+not-installed"libdframeworkdbus-devel
+not-installed"libdframeworkdbus2
+not-installed"libdhash-devel
+not-installed"libdhash-devel-32bit
+not-installed"libdhash1
+not-installed"libdhash1-32bit
+installed"libdialog15
+not-installed"libdico2
+not-installed"libdigikamcore6
+not-installed"libdirac_decoder0
+not-installed"libdirac_decoder0-32bit
+not-installed"libdirac_encoder0
+not-installed"libdirac_encoder0-32bit
+not-installed"libdiscid-devel
+installed"libdiscid0
+not-installed"libdiscid0-32bit
+not-installed"libdjconsole
+not-installed"libdjconsole-debugsource
+not-installed"libdjconsole-devel
+not-installed"libdjconsole0
+not-installed"libdjconsole0-debuginfo
+not-installed"libdjvCore0
+not-installed"libdjvCore0-debuginfo
+not-installed"libdjvulibre-devel
+installed"libdjvulibre21
+not-installed"libdleyna-core-1_0-5
+not-installed"libdlm
+not-installed"libdlm-devel
+not-installed"libdlm3
+not-installed"libdmapsharing-3_0-2
+not-installed"libdmapsharing-3_0-2-32bit
+not-installed"libdmapsharing-devel
+not-installed"libdmmp-devel
+not-installed"libdmmp0_2_0
+not-installed"libdmr0_1
+not-installed"libdmtx-devel
+installed"libdmtx0
+not-installed"libdmtx0-32bit
+not-installed"libdmusic1
+not-installed"libdmx-devel
+not-installed"libdmx-devel-32bit
+installed"libdmx1
+not-installed"libdmx1-32bit
+not-installed"libdnet-devel
+not-installed"libdnet-python
+not-installed"libdnet1
+not-installed"libdnf-devel
+not-installed"libdnf2
+installed"libdns169
+not-installed"libdns169-32bit
+installed"libdns_sd
+not-installed"libdns_sd-32bit
+installed"libdolphinvcs5
+not-installed"libdotconf0
+installed"libdouble-conversion3
+not-installed"libdouble-conversion3-32bit
+not-installed"libdpdk-18_11
+not-installed"libdriveio0
+not-installed"libdrm-devel
+not-installed"libdrm-devel-32bit
+not-installed"libdrm-tools
+installed"libdrm2
+installed"libdrm2-32bit
+installed"libdrm_amdgpu1
+installed"libdrm_amdgpu1-32bit
+installed"libdrm_intel1
+installed"libdrm_intel1-32bit
+installed"libdrm_nouveau2
+installed"libdrm_nouveau2-32bit
+installed"libdrm_radeon1
+installed"libdrm_radeon1-32bit
+not-installed"libdrumstick-alsa1
+not-installed"libdrumstick-devel
+not-installed"libdrumstick-doc
+not-installed"libdrumstick-file1
+not-installed"libdrumstick-rt-plugins
+not-installed"libdrumstick-rt1
+not-installed"libdruntime-ldc86
+not-installed"libdtkcore2
+not-installed"libdtkwidget2
+not-installed"libdtkwm2
+not-installed"libduktape201
+not-installed"libdv
+not-installed"libdv-devel
+installed"libdv4
+not-installed"libdv4-32bit
+not-installed"libdvbpsi-0-devel
+not-installed"libdvbpsi-devel
+installed"libdvbpsi10
+not-installed"libdvbpsi10-32bit
+not-installed"libdvbpsi7
+not-installed"libdvbpsi7-32bit
+not-installed"libdvbv5-0
+not-installed"libdvbv5-0-32bit
+not-installed"libdvbv5-0-lang
+not-installed"libdvbv5-devel
+not-installed"libdvd-audio
+not-installed"libdvd-audio-debuginfo
+not-installed"libdvd-audio-debugsource
+not-installed"libdvd-audio-devel
+not-installed"libdvd-audio-doc
+not-installed"libdvd-audio-utils
+not-installed"libdvd-audio-utils-debuginfo
+not-installed"libdvd-audio1
+not-installed"libdvd-audio1-debuginfo
+not-installed"libdvdcss
+not-installed"libdvdcss-debugsource
+not-installed"libdvdcss-devel
+installed"libdvdcss2
+not-installed"libdvdcss2-debuginfo
+not-installed"libdvdnav-devel
+installed"libdvdnav4
+not-installed"libdvdnav4-32bit
+not-installed"libdvdplay-devel
+not-installed"libdvdplay0
+not-installed"libdvdplay0
+not-installed"libdvdplay0-debuginfo
+not-installed"libdvdplay0-debugsource
+not-installed"libdvdread-devel
+not-installed"libdvdread3
+not-installed"libdvdread3
+not-installed"libdvdread3-debuginfo
+not-installed"libdvdread3-debugsource
+not-installed"libdvdread3-devel
+installed"libdvdread4
+not-installed"libdvdread4-32bit
+not-installed"libdw-devel
+installed"libdw1
+installed"libdw1-32bit
+not-installed"libdwarf-devel
+not-installed"libdwarf-devel-static
+not-installed"libdwarf-doc
+not-installed"libdwarf-tools
+not-installed"libdwarf1
+not-installed"libdwarves-devel
+not-installed"libdwarves-devel-32bit
+not-installed"libdwarves1
+not-installed"libdwarves1-32bit
+not-installed"libdxflib-3_17_0-1
+not-installed"libdxfrw-devel
+not-installed"libdxfrw-tools
+not-installed"libdxfrw0
+installed"libe-book-0_1-1
+not-installed"libe-book-devel
+not-installed"libe-book-devel-doc
+not-installed"libe-book-tools
+not-installed"libeXosip2
+not-installed"libeXosip2-12
+not-installed"libeXosip2-devel
+not-installed"libeb16
+not-installed"libebackend-1_2-10
+not-installed"libebackend-1_2-10-32bit
+not-installed"libebl-devel
+installed"libebl-plugins
+installed"libebl-plugins-32bit
+not-installed"libebml-devel
+installed"libebml4
+not-installed"libebml4-32bit
+not-installed"libebook-1_2-19
+not-installed"libebook-1_2-19-32bit
+not-installed"libebook-contacts-1_2-2
+not-installed"libebook-contacts-1_2-2-32bit
+installed"libebur128-1
+not-installed"libebur128-devel
+not-installed"libecal-1_2-19
+not-installed"libecal-1_2-19-32bit
+not-installed"libecasound-devel
+not-installed"libecholib1_3
+not-installed"libecholib1_3-devel
+not-installed"libechonest-qt5-devel
+not-installed"libechonest5-2_3
+not-installed"libechonest5-2_3-32bit
+not-installed"libecm1
+not-installed"libecore1
+not-installed"libecpg6
+not-installed"libecpg6-32bit
+not-installed"libecryptfs1
+not-installed"libecryptfs1-32bit
+not-installed"libector1
+not-installed"libedata-book-1_2-25
+not-installed"libedata-book-1_2-25-32bit
+not-installed"libedata-cal-1_2-29
+not-installed"libedata-cal-1_2-29-32bit
+not-installed"libedataserver-1_2-24
+not-installed"libedataserver-1_2-24-32bit
+not-installed"libedataserverui-1_2-2
+not-installed"libedataserverui-1_2-2-32bit
+not-installed"libedc_ecc1_0
+not-installed"libedc_ecc_dec1_0
+not-installed"libedit-devel
+installed"libedit0
+installed"libedit0-32bit
+not-installed"libeditorconfig-devel
+not-installed"libeditorconfig-devel-32bit
+installed"libeditorconfig0
+not-installed"libeditorconfig0-32bit
+not-installed"libedje1
+not-installed"libeet1
+not-installed"libeeze1
+installed"libefivar1
+not-installed"libefl1
+not-installed"libefreet1
+not-installed"libefreet_mime1
+not-installed"libefreet_trash1
+not-installed"libegbb3
+not-installed"libegbb3
+not-installed"libegbb3-debuginfo
+not-installed"libegbb3-debugsource
+not-installed"libegbb3-devel
+not-installed"libeina1
+not-installed"libeio1
+not-installed"libeldbus1
+not-installed"libelektra-augeas
+not-installed"libelektra-devel
+not-installed"libelektra-devel-doc
+not-installed"libelektra4
+not-installed"libelementary1
+installed"libelf-devel
+not-installed"libelf-devel-32bit
+installed"libelf1
+installed"libelf1-32bit
+not-installed"libell0
+not-installed"libelocation1
+not-installed"libelput1
+not-installed"libelua1
+not-installed"libembryo1
+not-installed"libemf2svg-devel
+not-installed"libemf2svg1
+not-installed"libemile1
+not-installed"libemotion1
+not-installed"libenca0
+not-installed"libenca0-32bit
+installed"libenchant-2-2
+not-installed"libenchant-2-2-32bit
+not-installed"libenchant1
+not-installed"libenchant1-32bit
+not-installed"libenet7
+not-installed"libeo1
+not-installed"libeolian1
+not-installed"libeot-devel
+not-installed"libeot-tools
+installed"libeot0
+not-installed"libepc-1_0-2
+not-installed"libepc-devel
+not-installed"libepc-lang
+not-installed"libephysics1
+not-installed"libepoxy-devel
+installed"libepoxy0
+installed"libepoxy0-32bit
+not-installed"libeppic-devel
+not-installed"libepub-devel
+installed"libepub0
+not-installed"libepub0-32bit
+installed"libepubgen-0_1-1
+not-installed"libepubgen-devel
+not-installed"libepubgen-devel-doc
+not-installed"liberasurecode-devel
+not-installed"liberasurecode1
+installed"liberation-fonts
+not-installed"liberfa1
+not-installed"libertinus-fonts
+not-installed"libesedb-devel
+not-installed"libesedb-tools
+not-installed"libesedb1
+not-installed"libesmtp-devel
+installed"libesmtp6
+installed"libespeak-ng1
+not-installed"libestr-devel
+installed"libestr0
+not-installed"libethumb1
+not-installed"libethumb_client1
+installed"libetonyek-0_1-1
+not-installed"libetonyek-devel
+not-installed"libetonyek-devel-doc
+not-installed"libetonyek-tools
+not-installed"libetpan-devel
+not-installed"libetpan20
+not-installed"libetrophy0
+not-installed"libev-devel
+not-installed"libev4
+not-installed"libev4-32bit
+not-installed"libevas1
+not-installed"libevdev-devel
+not-installed"libevdev-tools
+installed"libevdev2
+not-installed"libevdev2-32bit
+not-installed"libevdocument3-4
+not-installed"libevemu3
+installed"libevent-2_1-6
+not-installed"libevent-2_1-6-32bit
+not-installed"libevent-devel
+not-installed"libevent-devel-static
+not-installed"libevt-devel
+not-installed"libevt-tools
+not-installed"libevt1
+not-installed"libevtlog-3_19-0
+not-installed"libevtlog-devel
+not-installed"libevtlog0
+not-installed"libevtx-devel
+not-installed"libevtx-tools
+not-installed"libevtx1
+not-installed"libevview3-3
+not-installed"libewf-devel
+not-installed"libewf-tools
+not-installed"libewf2
+not-installed"libexe-devel
+not-installed"libexe-tools
+not-installed"libexe1
+not-installed"libexempi-devel
+not-installed"libexempi3
+not-installed"libexempi3-32bit
+not-installed"libexif-devel
+not-installed"libexif-devel-32bit
+not-installed"libexif-gtk
+not-installed"libexif-gtk-devel
+not-installed"libexif-gtk5
+installed"libexif12
+installed"libexif12-32bit
+installed"libexiv2-27
+not-installed"libexiv2-27-32bit
+not-installed"libexiv2-devel
+not-installed"libexiv2-doc
+not-installed"libexiv2-xmp-static
+not-installed"libexo-1-0
+not-installed"libexo-2-0
+not-installed"libexoIIv2for-5_14_0
+not-installed"libexodus-5_14_0
+not-installed"libexpat-devel
+not-installed"libexpat-devel-32bit
+installed"libexpat1
+installed"libexpat1-32bit
+not-installed"libexplain-devel
+not-installed"libexplain51
+not-installed"libext2fs-devel
+not-installed"libext2fs-devel-32bit
+not-installed"libext2fs-devel-static
+installed"libext2fs2
+not-installed"libext2fs2-32bit
+installed"libexttextcat
+installed"libexttextcat-2_0-0
+not-installed"libexttextcat-devel
+not-installed"libexttextcat-tools
+not-installed"libf2c0
+not-installed"libf2fs6
+not-installed"libf2fs_format5
+not-installed"libf95getdata7
+not-installed"libfaac-devel
+not-installed"libfaac0
+not-installed"libfaac0-32bit
+not-installed"libfaac0-32bit-debuginfo
+not-installed"libfaac0-debuginfo
+not-installed"libfaad-devel
+installed"libfaad2
+not-installed"libfaad2-32bit
+not-installed"libfaad2-32bit-debuginfo
+not-installed"libfaad2-debuginfo
+not-installed"libfaad_drm2
+not-installed"libfaad_drm2-debuginfo
+not-installed"libfabric
+not-installed"libfabric-devel
+not-installed"libfabric-devel-32bit
+not-installed"libfabric1
+not-installed"libfabric1-32bit
+not-installed"libfakekey-devel
+installed"libfakekey0
+not-installed"libfaketime
+not-installed"libfallocate-devel
+not-installed"libfallocate-devel-static
+not-installed"libfallocate0
+installed"libfam0-gamin
+installed"libfam0-gamin-32bit
+not-installed"libfame-0_9-1
+not-installed"libfame-0_9-1
+not-installed"libfame-0_9-1-debuginfo
+not-installed"libfame-0_9-1-debugsource
+not-installed"libfame-devel
+not-installed"libfann-devel
+not-installed"libfann2
+not-installed"libfarstream-0_2-5
+not-installed"libfarstream-0_2-5-32bit
+not-installed"libfastjet0
+not-installed"libfastjson-devel
+installed"libfastjson4
+not-installed"libfastlz1
+not-installed"libfaxutil7_0_0
+not-installed"libfbclient-devel
+installed"libfbclient2
+not-installed"libfbclient2-32bit
+not-installed"libfcache-devel
+not-installed"libfcache1
+not-installed"libfcgi0
+not-installed"libfcitx-4_2_9
+not-installed"libfcitx-4_2_9-32bit
+not-installed"libfdata-devel
+not-installed"libfdata1
+not-installed"libfdatetime-devel
+not-installed"libfdatetime1
+not-installed"libfdisk-devel
+not-installed"libfdisk-devel-static
+installed"libfdisk1
+installed"libfdk-aac1
+not-installed"libfdk-aac1-32bit
+not-installed"libfdk-aac1-32bit-debuginfo
+not-installed"libfdk-aac1-debuginfo
+not-installed"libfdt-devel
+not-installed"libfdt-devel-32bit
+installed"libfdt1
+not-installed"libfdt1-32bit
+not-installed"libfec3
+not-installed"libffado-devel
+installed"libffado2
+not-installed"libffado2-32bit
+not-installed"libffcall0
+not-installed"libffi-devel
+installed"libffi7
+installed"libffi7-32bit
+not-installed"libffmpegthumbnailer-devel
+not-installed"libffmpegthumbnailer4
+not-installed"libffms2-4
+not-installed"libffms2-4-32bit
+not-installed"libffms2-devel
+installed"libfftw3-3
+not-installed"libfftw3-3-32bit
+not-installed"libfftw3-gnu-hpc
+not-installed"libfftw3-gnu-mpich-hpc
+not-installed"libfftw3-gnu-mvapich2-hpc
+not-installed"libfftw3-gnu-openmpi1-hpc
+not-installed"libfftw3-gnu-openmpi2-hpc
+not-installed"libfftw3-gnu-openmpi3-hpc
+not-installed"libfftw3_3_3_8-gnu-hpc
+not-installed"libfftw3_3_3_8-gnu-mpich-hpc
+not-installed"libfftw3_3_3_8-gnu-mvapich2-hpc
+not-installed"libfftw3_3_3_8-gnu-openmpi1-hpc
+not-installed"libfftw3_3_3_8-gnu-openmpi2-hpc
+not-installed"libfftw3_3_3_8-gnu-openmpi3-hpc
+not-installed"libfftw3_mpi3
+not-installed"libfftw3_mpi3-32bit
+not-installed"libfftw3_omp3
+not-installed"libfftw3_omp3-32bit
+not-installed"libfftw3_threads3
+not-installed"libfftw3_threads3-32bit
+not-installed"libfgetdata6
+not-installed"libfguid-devel
+not-installed"libfguid1
+not-installed"libfido2-1
+not-installed"libfido2-devel
+not-installed"libfido2-utils
+not-installed"libfife0_4_2
+not-installed"libfifechan0_1_5
+not-installed"libfifechan_opengl0_1_5
+not-installed"libfifechan_sdl0_1_5
+installed"libfile1_0
+not-installed"libfilezilla-devel
+not-installed"libfilezilla0
+not-installed"libfilteraudio0
+not-installed"libfinal-devel
+not-installed"libfinal-examples
+not-installed"libfinal0
+installed"libfind3_0
+not-installed"libfipscheck1
+not-installed"libfipscheck1-32bit
+not-installed"libfishsound-devel
+not-installed"libfishsound1
+not-installed"libfityk4
+not-installed"libfko-devel
+not-installed"libfko3
+not-installed"libfl-devel
+not-installed"libfl-devel-32bit
+not-installed"libfl2
+not-installed"libfl2-32bit
+not-installed"libflann1_9
+not-installed"libflatbuffers1
+installed"libflatpak0
+not-installed"libflickcurl-devel
+not-installed"libflickcurl0
+not-installed"libflickcurl0-32bit
+not-installed"libflint0
+not-installed"libflorence-1_0-1
+installed"libfltk1
+not-installed"libfltk1-32bit
+installed"libfluidsynth2
+not-installed"libfluidsynth2-32bit
+not-installed"libflxmlrpc1
+not-installed"libfm
+not-installed"libfm-devel
+not-installed"libfm-doc
+not-installed"libfm-extra-devel
+not-installed"libfm-extra4
+not-installed"libfm-gtk-devel
+not-installed"libfm-gtk4
+not-installed"libfm-lang
+not-installed"libfm-qt-devel
+not-installed"libfm-qt-lang
+not-installed"libfm-qt6
+not-installed"libfm4
+not-installed"libfmapi-devel
+not-installed"libfmapi1
+not-installed"libfmt5
+not-installed"libfmt5-32bit
+not-installed"libfole-devel
+not-installed"libfole1
+not-installed"libfolks-data
+not-installed"libfolks-eds25
+not-installed"libfolks-telepathy25
+not-installed"libfolks-tracker25
+not-installed"libfolks25
+not-installed"libfoma-hfst0
+not-installed"libfoma0
+installed"libfont-specimen0
+installed"libfontconfig1
+installed"libfontconfig1-32bit
+not-installed"libfontenc-devel
+not-installed"libfontenc-devel-32bit
+installed"libfontenc1
+not-installed"libfontenc1-32bit
+installed"libfonts
+not-installed"libfonts-javadoc
+installed"libformula
+not-installed"libformula-javadoc
+not-installed"libfparser-4_5_2
+not-installed"libfplll5
+not-installed"libfpm_pb0
+not-installed"libfprint-devel
+not-installed"libfprint0
+not-installed"libfprint0-32bit
+not-installed"libframe6
+not-installed"libframe6-32bit
+installed"libfreebl3
+installed"libfreebl3-32bit
+installed"libfreecell-solver0
+not-installed"libfreefare-devel
+not-installed"libfreefare-tools
+not-installed"libfreefare0
+installed"libfreehand-0_1-1
+not-installed"libfreehand-devel
+not-installed"libfreehand-devel-doc
+not-installed"libfreehand-tools
+not-installed"libfreeimage3
+not-installed"libfreeimageplus3
+not-installed"libfreeipmi17
+not-installed"libfreerdp2
+not-installed"libfreesrp0
+installed"libfreetype6
+installed"libfreetype6-32bit
+not-installed"libfreexl1
+installed"libfribidi0
+installed"libfribidi0-32bit
+not-installed"libfsm0
+not-installed"libfsntfs-devel
+not-installed"libfsntfs-tools
+not-installed"libfsntfs1
+not-installed"libfst-hfst0
+not-installed"libfstrcmp0
+installed"libfstrm0
+not-installed"libftdi0-binding-python
+not-installed"libftdi0-devel
+not-installed"libftdi1
+not-installed"libftdi1-2
+not-installed"libftdi1-devel
+not-installed"libftgl2
+not-installed"libftgl2-32bit
+not-installed"libftoa0_3
+not-installed"libfunambol-9_0_1
+not-installed"libfunambol-devel
+installed"libfuse2
+not-installed"libfuse2-32bit
+installed"libfuse3-3
+not-installed"libfuse3-3-32bit
+not-installed"libfuzzy-devel
+not-installed"libfuzzy2
+not-installed"libfvalue-devel
+not-installed"libfvalue1
+not-installed"libfvde-devel
+not-installed"libfvde-tools
+not-installed"libfvde1
+not-installed"libfwevt-devel
+not-installed"libfwevt1
+not-installed"libfwnt-devel
+not-installed"libfwnt1
+not-installed"libfwsi-devel
+not-installed"libfwsi1
+not-installed"libfwupd2
+not-installed"libgadu-devel
+not-installed"libgadu3
+not-installed"libgamemode-devel
+not-installed"libgamemode0
+not-installed"libgamemode0-32bit
+not-installed"libgamemodeauto0
+not-installed"libgamemodeauto0-32bit
+not-installed"libgamin-1-0
+not-installed"libgamin-1-0-32bit
+not-installed"libgaminggear
+not-installed"libgaminggear-devel
+not-installed"libgaminggear-lang
+not-installed"libgaminggear0
+not-installed"libgaminggearfx0
+not-installed"libgaminggearwidget0
+not-installed"libganesha_nfsd-devel
+not-installed"libganesha_nfsd2_8
+not-installed"libganglia0
+not-installed"libgarcon-1-0
+not-installed"libgarcon-branding-openSUSE
+not-installed"libgarcon-branding-upstream
+not-installed"libgarcon-data
+not-installed"libgarcon-devel
+not-installed"libgarcon-doc
+not-installed"libgarcon-lang
+not-installed"libgasnet-1_30_0
+not-installed"libgavl-devel
+not-installed"libgavl1
+not-installed"libgbm-devel
+not-installed"libgbm-devel-32bit
+installed"libgbm1
+not-installed"libgbm1-32bit
+installed"libgc1
+installed"libgcab-1_0-0
+installed"libgcc_s1
+installed"libgcc_s1-32bit
+not-installed"libgcc_s1-gcc7
+not-installed"libgcc_s1-gcc7-32bit
+not-installed"libgcc_s1-gcc8
+not-installed"libgcc_s1-gcc8-32bit
+not-installed"libgcin-im-client1
+not-installed"libgcin-im-client1-32bit
+not-installed"libgcj-devel-gcc6
+not-installed"libgcj-devel-gcc6-debuginfo
+not-installed"libgcj-gcc6
+not-installed"libgcj-gcc6
+not-installed"libgcj-gcc6-debuginfo
+not-installed"libgcj-gcc6-debugsource
+not-installed"libgcj-jar-gcc6
+not-installed"libgcj_bc1
+installed"libgck-1-0
+not-installed"libgck-1-0-32bit
+not-installed"libgck-devel
+not-installed"libgck-devel-32bit
+installed"libgck-modules-gnome-keyring
+installed"libgcr-3-1
+not-installed"libgcr-3-1-32bit
+not-installed"libgcr-devel
+not-installed"libgcr-devel-32bit
+not-installed"libgcrypt-cavs
+not-installed"libgcrypt-devel
+not-installed"libgcrypt-devel-32bit
+installed"libgcrypt20
+installed"libgcrypt20-32bit
+installed"libgcrypt20-hmac
+not-installed"libgcrypt20-hmac-32bit
+installed"libgd3
+installed"libgd3-32bit
+not-installed"libgda-5_0-4
+not-installed"libgda-5_0-4-lang
+not-installed"libgda-5_0-bdb
+not-installed"libgda-5_0-devel
+not-installed"libgda-5_0-doc
+not-installed"libgda-5_0-firebird
+not-installed"libgda-5_0-jdbc
+not-installed"libgda-5_0-ldap
+not-installed"libgda-5_0-mdb
+not-installed"libgda-5_0-mysql
+not-installed"libgda-5_0-postgres
+not-installed"libgda-5_0-sqlcipher
+not-installed"libgda-5_0-sqlite
+not-installed"libgda-5_0-tools
+not-installed"libgda-5_0-web
+not-installed"libgda-report-5_0-4
+not-installed"libgda-tools
+not-installed"libgda-ui-5_0-4
+not-installed"libgda-ui-5_0-plugins
+not-installed"libgda-ui-5_0-tools
+not-installed"libgda-xslt-5_0-4
+not-installed"libgdal26
+not-installed"libgdamm-5_0-13
+not-installed"libgdamm-devel
+not-installed"libgdata-devel
+installed"libgdata-lang
+installed"libgdata22
+not-installed"libgdata22-32bit
+installed"libgdbm6
+installed"libgdbm6-32bit
+installed"libgdbm_compat4
+installed"libgdbm_compat4-32bit
+not-installed"libgdiplus-devel
+installed"libgdiplus0
+installed"libgdk_pixbuf-2_0-0
+installed"libgdk_pixbuf-2_0-0-32bit
+not-installed"libgdl-3-5
+not-installed"libgdlmm-3_0-2
+not-installed"libgdm1
+not-installed"libgdruntime76
+not-installed"libgdruntime76-32bit
+not-installed"libgeany0
+not-installed"libgeda-data
+not-installed"libgeda-devel
+not-installed"libgeda45
+not-installed"libgedacairo-devel
+not-installed"libgedacairo1
+installed"libgee-0_8-2
+not-installed"libgee-0_8-2-32bit
+not-installed"libgee-devel
+not-installed"libgee06-devel
+not-installed"libgee2
+not-installed"libgegl-0_4-0
+not-installed"libgegl-0_4-0-32bit
+not-installed"libgeis1
+not-installed"libgeis1-32bit
+not-installed"libgenders0
+not-installed"libgendersplusplus2
+not-installed"libgeners0
+not-installed"libgeocode-glib0
+not-installed"libgeocode-glib0-32bit
+not-installed"libgeos-3_7_2
+not-installed"libgeos_c1
+not-installed"libgeotiff5
+not-installed"libgepub-0_6-0
+not-installed"libgepub-devel
+not-installed"libgerbv1
+not-installed"libges-1_0-0
+not-installed"libgetdata++7
+not-installed"libgetdata8
+not-installed"libgexiv2-2
+not-installed"libgexiv2-2-32bit
+not-installed"libgexiv2-devel
+not-installed"libgf2x-1_2
+installed"libgfapi0
+not-installed"libgfbgraph-0_2-0
+not-installed"libgfchangelog0
+not-installed"libgfdb0
+not-installed"libgflags2
+not-installed"libgfortran4
+not-installed"libgfortran4-32bit
+installed"libgfortran5
+not-installed"libgfortran5-32bit
+not-installed"libgfortran5-gcc8
+not-installed"libgfortran5-gcc8-32bit
+installed"libgfrpc0
+installed"libgfxdr0
+not-installed"libggz2
+not-installed"libggz2-devel
+not-installed"libgiblib1
+installed"libgif7
+not-installed"libgif7-32bit
+not-installed"libgig-devel
+not-installed"libgig-tools
+not-installed"libgig8
+not-installed"libgimp-2_0-0
+not-installed"libgimp-2_0-0-32bit
+not-installed"libgimpui-2_0-0
+not-installed"libgimpui-2_0-0-32bit
+not-installed"libginac-devel
+not-installed"libginac6
+installed"libgio-2_0-0
+installed"libgio-2_0-0-32bit
+not-installed"libgio-fam
+not-installed"libgio-fam-32bit
+installed"libgiomm-2_4-1
+not-installed"libgiomm-2_4-1-32bit
+not-installed"libgiomm-2_60-1
+not-installed"libgiomm-2_60-1-32bit
+not-installed"libgirara-gtk3-3
+installed"libgirepository-1_0-1
+not-installed"libgirepository-1_0-1-32bit
+installed"libgit2-28
+not-installed"libgit2-28-32bit
+not-installed"libgit2-devel
+not-installed"libgit2-glib-1_0-0
+not-installed"libgit2-glib-devel
+not-installed"libgitg-1_0-0
+not-installed"libgitg-devel
+not-installed"libgitg-ext-1_0-0
+not-installed"libgivaro9
+not-installed"libgjs-devel
+not-installed"libgjs0
+not-installed"libgl2ps1
+installed"libglade-2_0-0
+not-installed"libglade-2_0-0-32bit
+not-installed"libglade2-devel
+not-installed"libglade2-doc
+not-installed"libgladeui-2-6
+not-installed"libgladeui-2-devel
+not-installed"libgle-devel
+not-installed"libgle3
+not-installed"libglfw-devel
+not-installed"libglfw2
+not-installed"libglfw3
+installed"libglib-2_0-0
+installed"libglib-2_0-0-32bit
+installed"libglibmm-2_4-1
+not-installed"libglibmm-2_4-1-32bit
+not-installed"libglibmm-2_60-1
+not-installed"libglibmm-2_60-1-32bit
+not-installed"libglog0
+not-installed"libglom-1_32-0
+not-installed"libglom-devel
+not-installed"libgloox17
+not-installed"libgloox17-32bit
+not-installed"libglpk40
+installed"libglslang-suse6
+not-installed"libgltf-0_1-1
+not-installed"libgltf-devel
+not-installed"libglue-devel
+not-installed"libglue-devel-32bit
+not-installed"libglue2
+not-installed"libglue2-32bit
+installed"libglusterfs0
+not-installed"libglut3
+not-installed"libglut3-32bit
+installed"libglvnd
+installed"libglvnd-32bit
+not-installed"libglvnd-devel
+not-installed"libglvnd-devel-32bit
+not-installed"libglyr1
+not-installed"libglyr1-32bit
+not-installed"libgme-devel
+installed"libgme0
+not-installed"libgme0-32bit
+not-installed"libgmerlin-devel
+not-installed"libgmerlin0
+not-installed"libgmerlin0-debuginfo
+not-installed"libgmerlin_avdec-devel
+not-installed"libgmerlin_avdec1
+not-installed"libgmerlin_avdec1-debuginfo
+not-installed"libgmerlin_gtk-devel
+not-installed"libgmerlin_gtk0
+not-installed"libgmerlin_gtk0-debuginfo
+not-installed"libgmime-2_6-0
+not-installed"libgmime-2_6-0-32bit
+not-installed"libgmime-3_0-0
+not-installed"libgmime-3_0-0-32bit
+installed"libgmodule-2_0-0
+installed"libgmodule-2_0-0-32bit
+installed"libgmp10
+installed"libgmp10-32bit
+installed"libgmpxx4
+not-installed"libgmpxx4-32bit
+not-installed"libgnome
+not-installed"libgnome-32bit
+not-installed"libgnome-autoar-0-0
+not-installed"libgnome-autoar-gtk-0-0
+not-installed"libgnome-bluetooth13
+not-installed"libgnome-desktop-2-17
+not-installed"libgnome-desktop-2-17-32bit
+not-installed"libgnome-desktop-2-devel
+installed"libgnome-desktop-3-17
+not-installed"libgnome-desktop-3-17-32bit
+not-installed"libgnome-desktop-3-devel
+installed"libgnome-desktop-3_0-common
+not-installed"libgnome-devel
+not-installed"libgnome-games-support-1-3
+not-installed"libgnome-games-support-devel
+not-installed"libgnome-games-support-lang
+not-installed"libgnome-keyring-devel
+installed"libgnome-keyring-lang
+installed"libgnome-keyring0
+not-installed"libgnome-keyring0-32bit
+not-installed"libgnome-lang
+not-installed"libgnome-menu-3-0
+not-installed"libgnome-menu-3-0-32bit
+not-installed"libgnomecanvas-2-0
+not-installed"libgnomecanvas-2-0-32bit
+not-installed"libgnomecanvas-devel
+not-installed"libgnomecanvas-lang
+not-installed"libgnomekbd-devel
+not-installed"libgnomekbd-lang
+not-installed"libgnomekbd8
+not-installed"libgnomesu
+not-installed"libgnomesu-devel
+not-installed"libgnomesu-lang
+not-installed"libgnomesu0
+not-installed"libgnomeui
+not-installed"libgnomeui-32bit
+not-installed"libgnomeui-devel
+not-installed"libgnomeui-doc
+not-installed"libgnomeui-lang
+not-installed"libgnuastro6
+not-installed"libgnuradio-3_7_12-0_0_0
+not-installed"libgnuradio-fcdproplus-3_7_2_0-0_0_0
+not-installed"libgnuradio-fcdproplus-devel
+not-installed"libgnuradio-iqbalance
+not-installed"libgnuradio-iqbalance-devel
+not-installed"libgnuradio-osmosdr-0_1_5git0_0_0
+not-installed"libgnustep-base1_26
+not-installed"libgnutls-dane-devel
+installed"libgnutls-dane0
+installed"libgnutls-devel
+not-installed"libgnutls-devel-32bit
+installed"libgnutls30
+installed"libgnutls30-32bit
+not-installed"libgnutlsxx-devel
+not-installed"libgnutlsxx28
+not-installed"libgo11
+not-installed"libgo11-32bit
+not-installed"libgo13
+not-installed"libgo13-32bit
+not-installed"libgo14
+not-installed"libgo14-32bit
+installed"libgoa-1_0-0
+not-installed"libgoa-1_0-0-32bit
+installed"libgoa-backend-1_0-1
+not-installed"libgoa-backend-1_0-1-32bit
+installed"libgobject-2_0-0
+installed"libgobject-2_0-0-32bit
+not-installed"libgoffice-0_10-10
+not-installed"libgom-1_0-0
+installed"libgomp1
+not-installed"libgomp1-32bit
+not-installed"libgomp1-gcc7
+not-installed"libgomp1-gcc7-32bit
+not-installed"libgomp1-gcc8
+not-installed"libgomp1-gcc8-32bit
+not-installed"libgoocanvas-2_0-9
+not-installed"libgoocanvas3
+not-installed"libgoocanvas3-devel
+not-installed"libgoocanvas3-lang
+not-installed"libgoocanvasmm-2_0-6
+not-installed"libgoocanvasmm-devel
+not-installed"libgooglepinyin-devel
+not-installed"libgooglepinyin0
+not-installed"libgovf-0_1
+not-installed"libgovirt-devel
+not-installed"libgovirt-lang
+not-installed"libgovirt2
+not-installed"libgpac-devel
+not-installed"libgpac8
+not-installed"libgpaste11
+not-installed"libgpg-error-devel
+not-installed"libgpg-error-devel-32bit
+installed"libgpg-error0
+installed"libgpg-error0-32bit
+not-installed"libgpgme-devel
+installed"libgpgme11
+not-installed"libgpgme11-32bit
+not-installed"libgpgmepp-devel
+installed"libgpgmepp6
+not-installed"libgpgmepp6-32bit
+not-installed"libgphobos76
+not-installed"libgphobos76-32bit
+installed"libgphoto2-6
+installed"libgphoto2-6-32bit
+installed"libgphoto2-6-lang
+not-installed"libgphoto2-devel
+not-installed"libgphoto2-devel-32bit
+not-installed"libgphoto2-devel-doc
+not-installed"libgphoto2-doc
+not-installed"libgpiod
+not-installed"libgpiod-devel
+not-installed"libgpiod2
+not-installed"libgpiodcxx1
+not-installed"libgpiomockup0
+installed"libgpm2
+not-installed"libgpm2-32bit
+not-installed"libgpod-devel
+not-installed"libgpod-doc
+not-installed"libgpod-lang
+not-installed"libgpod-tools
+not-installed"libgpod4
+not-installed"libgpod4-32bit
+installed"libgps24
+not-installed"libgrail6
+not-installed"libgrail6-32bit
+not-installed"libgranite5
+not-installed"libgraphblas2
+installed"libgraphene-1_0-0
+not-installed"libgraphene-1_0-0-32bit
+not-installed"libgraphene-devel
+installed"libgraphite2-3
+installed"libgraphite2-3-32bit
+installed"libgraphviz6
+installed"libgravatar
+not-installed"libgravatar-devel
+installed"libgravatar-lang
+not-installed"libgrilo-0_3-0
+not-installed"libgrlnet-0_3-0
+not-installed"libgrlpls-0_3-0
+not-installed"libgromacs4
+not-installed"libgroove-devel
+not-installed"libgroove4
+not-installed"libgroovefingerprinter-devel
+not-installed"libgroovefingerprinter4
+not-installed"libgrooveloudness-devel
+not-installed"libgrooveloudness4
+not-installed"libgrooveplayer-devel
+not-installed"libgrooveplayer4
+installed"libgroupsock8
+not-installed"libgrpc-httpjson-transcoding0
+not-installed"libgrpc6
+not-installed"libgrss-devel
+not-installed"libgrss0
+not-installed"libgsasl-devel
+not-installed"libgsasl-lang
+not-installed"libgsasl7
+not-installed"libgsequencer0
+not-installed"libgsettings-qt1
+not-installed"libgsf-1-114
+not-installed"libgsf-1-114-32bit
+not-installed"libgsf-devel
+not-installed"libgsf-lang
+not-installed"libgsf-tools
+not-installed"libgsl-gnu-hpc
+installed"libgsl23
+not-installed"libgsl25
+not-installed"libgsl_2_6-gnu-hpc
+not-installed"libgslcblas-gnu-hpc
+installed"libgslcblas0
+not-installed"libgslcblas_2_6-gnu-hpc
+not-installed"libgsm-devel
+not-installed"libgsm-devel-32bit
+not-installed"libgsm-utils
+installed"libgsm1
+installed"libgsm1-32bit
+not-installed"libgsmsd8
+not-installed"libgsoap-2_8_91
+not-installed"libgsound0
+not-installed"libgspell-1-2
+installed"libgssdp-1_2-0
+not-installed"libgssdp-1_2-0-32bit
+not-installed"libgssdp-devel
+not-installed"libgssglue-devel
+not-installed"libgssglue1
+not-installed"libgssglue1-32bit
+installed"libgstadaptivedemux-1_0-0
+not-installed"libgstadaptivedemux-1_0-0-32bit
+not-installed"libgstadaptivedemux-1_0-0-32bit-debuginfo
+not-installed"libgstadaptivedemux-1_0-0-debuginfo
+installed"libgstallocators-1_0-0
+not-installed"libgstallocators-1_0-0-32bit
+installed"libgstapp-1_0-0
+not-installed"libgstapp-1_0-0-32bit
+installed"libgstaudio-1_0-0
+installed"libgstaudio-1_0-0-32bit
+installed"libgstbadaudio-1_0-0
+not-installed"libgstbadaudio-1_0-0-32bit
+not-installed"libgstbadaudio-1_0-0-32bit-debuginfo
+not-installed"libgstbadaudio-1_0-0-debuginfo
+installed"libgstbasecamerabinsrc-1_0-0
+not-installed"libgstbasecamerabinsrc-1_0-0-32bit
+not-installed"libgstbasecamerabinsrc-1_0-0-32bit-debuginfo
+not-installed"libgstbasecamerabinsrc-1_0-0-debuginfo
+installed"libgstcodecparsers-1_0-0
+not-installed"libgstcodecparsers-1_0-0-32bit
+not-installed"libgstcodecparsers-1_0-0-32bit-debuginfo
+not-installed"libgstcodecparsers-1_0-0-debuginfo
+installed"libgstfft-1_0-0
+not-installed"libgstfft-1_0-0-32bit
+installed"libgstgl-1_0-0
+not-installed"libgstgl-1_0-0-32bit
+not-installed"libgstinsertbin-1_0-0
+not-installed"libgstinsertbin-1_0-0-32bit
+not-installed"libgstinsertbin-1_0-0-32bit-debuginfo
+not-installed"libgstinsertbin-1_0-0-debuginfo
+installed"libgstisoff-1_0-0
+not-installed"libgstisoff-1_0-0-32bit
+not-installed"libgstisoff-1_0-0-32bit-debuginfo
+not-installed"libgstisoff-1_0-0-debuginfo
+installed"libgstmpegts-1_0-0
+not-installed"libgstmpegts-1_0-0-32bit
+not-installed"libgstmpegts-1_0-0-32bit-debuginfo
+not-installed"libgstmpegts-1_0-0-debuginfo
+installed"libgstpbutils-1_0-0
+not-installed"libgstpbutils-1_0-0-32bit
+installed"libgstphotography-1_0-0
+not-installed"libgstphotography-1_0-0-32bit
+not-installed"libgstphotography-1_0-0-32bit-debuginfo
+not-installed"libgstphotography-1_0-0-debuginfo
+not-installed"libgstplayer-1_0-0
+not-installed"libgstplayer-1_0-0-32bit
+not-installed"libgstplayer-1_0-0-32bit-debuginfo
+not-installed"libgstplayer-1_0-0-debuginfo
+installed"libgstreamer-1_0-0
+installed"libgstreamer-1_0-0-32bit
+not-installed"libgstreamerd-3-0
+not-installed"libgstreamermm-1_0-1
+installed"libgstriff-1_0-0
+not-installed"libgstriff-1_0-0-32bit
+installed"libgstrtp-1_0-0
+not-installed"libgstrtp-1_0-0-32bit
+installed"libgstrtsp-1_0-0
+not-installed"libgstrtsp-1_0-0-32bit
+not-installed"libgstrtspserver-1_0-0
+installed"libgstsctp-1_0-0
+not-installed"libgstsctp-1_0-0-32bit
+not-installed"libgstsctp-1_0-0-32bit-debuginfo
+not-installed"libgstsctp-1_0-0-debuginfo
+installed"libgstsdp-1_0-0
+not-installed"libgstsdp-1_0-0-32bit
+installed"libgsttag-1_0-0
+installed"libgsttag-1_0-0-32bit
+not-installed"libgsttranscoder-1_0-0
+installed"libgsturidownloader-1_0-0
+not-installed"libgsturidownloader-1_0-0-32bit
+not-installed"libgsturidownloader-1_0-0-32bit-debuginfo
+not-installed"libgsturidownloader-1_0-0-debuginfo
+not-installed"libgstvalidate-1_0-0
+installed"libgstvideo-1_0-0
+installed"libgstvideo-1_0-0-32bit
+installed"libgstwayland-1_0-0
+not-installed"libgstwayland-1_0-0-32bit
+not-installed"libgstwayland-1_0-0-32bit-debuginfo
+not-installed"libgstwayland-1_0-0-debuginfo
+installed"libgstwebrtc-1_0-0
+not-installed"libgstwebrtc-1_0-0-32bit
+not-installed"libgstwebrtc-1_0-0-32bit-debuginfo
+not-installed"libgstwebrtc-1_0-0-debuginfo
+installed"libgthread-2_0-0
+not-installed"libgthread-2_0-0-32bit
+installed"libgtk-2_0-0
+installed"libgtk-2_0-0-32bit
+installed"libgtk-3-0
+installed"libgtk-3-0-32bit
+not-installed"libgtk-4-0
+not-installed"libgtk-4-0-32bit
+not-installed"libgtk-frdp-0_1
+installed"libgtk-vnc-2_0-0
+not-installed"libgtkd-3-0
+not-installed"libgtkdatabox-0_9_3-0
+not-installed"libgtkdatabox-devel
+not-installed"libgtkdgl-3-0
+not-installed"libgtkdsv-3-0
+not-installed"libgtkglext-x11-1_0-0
+not-installed"libgtkglext-x11-1_0-0-32bit
+not-installed"libgtkhex-3-0
+not-installed"libgtkhotkey-devel
+not-installed"libgtkhotkey1
+not-installed"libgtkhtml-4_0-0
+not-installed"libgtkhtml-4_0-0-32bit
+not-installed"libgtkhtml-editor-4_0-0
+not-installed"libgtkhtml-editor-4_0-0-32bit
+not-installed"libgtkimageview0
+not-installed"libgtkmm-2_4-1
+not-installed"libgtkmm-2_4-1-32bit
+installed"libgtkmm-3_0-1
+not-installed"libgtkmm-3_0-1-32bit
+not-installed"libgtkpod1
+not-installed"libgtksourceview-2_0-0
+installed"libgtksourceview-3_0-1
+installed"libgtksourceview-4-0
+not-installed"libgtksourceviewmm-3_0-0
+not-installed"libgtkspell0
+not-installed"libgtkspell3-3-0
+not-installed"libgtop
+not-installed"libgtop-2_0-11
+not-installed"libgtop-2_0-11-32bit
+not-installed"libgtop-devel
+not-installed"libgtop-doc
+not-installed"libgtop-lang
+not-installed"libgtp-devel
+not-installed"libgtp5
+not-installed"libgtpnl-devel
+not-installed"libgtpnl0
+installed"libgts-0_7-5
+not-installed"libgucharmap_2_90-7
+installed"libgudev-1_0-0
+not-installed"libgudev-1_0-0-32bit
+not-installed"libgudev-1_0-devel
+not-installed"libguess-devel
+not-installed"libguess1
+not-installed"libguess1-32bit
+not-installed"libguestfs-devel
+not-installed"libguestfs-test
+installed"libguestfs0
+not-installed"libguile-2_2-1
+not-installed"libguile-cairo0
+not-installed"libguile-srfi-srfi-1-v-3-3
+not-installed"libguile-srfi-srfi-13-14-v-3-3
+not-installed"libguile-srfi-srfi-4-v-3-3
+not-installed"libguile-srfi-srfi-60-v-2-2
+not-installed"libguile-ssh11
+not-installed"libguile1-devel
+not-installed"libguile17
+not-installed"libguilereadline-v-17-17
+installed"libgupnp-1_2-0
+not-installed"libgupnp-1_2-0-32bit
+not-installed"libgupnp-av-1_0-2
+not-installed"libgupnp-av-devel
+not-installed"libgupnp-devel
+not-installed"libgupnp-dlna-2_0-3
+not-installed"libgupnp-dlna-backend-gstreamer
+not-installed"libgupnp-dlna-devel
+installed"libgupnp-igd-1_0-4
+not-installed"libgupnp-igd-1_0-4-32bit
+not-installed"libgupnp-igd-devel
+not-installed"libgusb-devel
+not-installed"libgusb2
+not-installed"libgviewaudio-2_0-2
+not-installed"libgviewencoder-2_0-2
+not-installed"libgviewrender-2_0-2
+not-installed"libgviewv4l2core-2_0-2
+not-installed"libgviewv4l2core-lang
+installed"libgvnc-1_0-0
+not-installed"libgvncpulse-1_0-0
+not-installed"libgweather-3-15
+not-installed"libgweather-3-15-32bit
+not-installed"libgweather-devel
+not-installed"libgweather-lang
+not-installed"libgwengui-cpp0
+not-installed"libgwengui-fox16-0
+not-installed"libgwengui-gtk2-0
+not-installed"libgwengui-gtk3-0
+not-installed"libgwengui-qt4-0
+not-installed"libgwengui-qt5-0
+not-installed"libgwenhywfar60
+not-installed"libgwenhywfar60-plugins
+not-installed"libgxps-devel
+not-installed"libgxps-tools
+not-installed"libgxps2
+not-installed"libgxw0
+not-installed"libgxwmm0
+not-installed"libgypsy-devel
+not-installed"libgypsy0
+not-installed"libgypsy0-32bit
+not-installed"libhackrf0
+not-installed"libhal1
+not-installed"libhamlib++2
+not-installed"libhamlib2
+not-installed"libhandle1
+not-installed"libhandy-0_0-0
+not-installed"libhandy-devel
+not-installed"libhangul-devel
+not-installed"libhangul1
+not-installed"libhangul1-32bit
+not-installed"libharfbuzz-gobject0
+not-installed"libharfbuzz-gobject0-32bit
+installed"libharfbuzz-icu0
+not-installed"libharfbuzz-icu0-32bit
+not-installed"libharfbuzz-subset0
+not-installed"libharfbuzz-subset0-32bit
+installed"libharfbuzz0
+installed"libharfbuzz0-32bit
+not-installed"libharminv3
+not-installed"libharu-devel
+installed"libhavege1
+not-installed"libhavoc0
+not-installed"libhavoc0-debuginfo
+not-installed"libhdf4
+not-installed"libhdf4-32bit
+not-installed"libhdf4-openmpi
+not-installed"libhdf4-openmpi-32bit
+installed"libhdf5-103
+not-installed"libhdf5-103-32bit
+not-installed"libhdf5-103-mvapich2
+not-installed"libhdf5-103-mvapich2-32bit
+not-installed"libhdf5-103-openmpi
+not-installed"libhdf5-103-openmpi-32bit
+not-installed"libhdf5-103-openmpi2
+not-installed"libhdf5-103-openmpi2-32bit
+not-installed"libhdf5-103-openmpi3
+not-installed"libhdf5-103-openmpi3-32bit
+not-installed"libhdf5-gnu-hpc
+not-installed"libhdf5-gnu-mpich-hpc
+not-installed"libhdf5-gnu-mvapich2-hpc
+not-installed"libhdf5-gnu-openmpi1-hpc
+not-installed"libhdf5-gnu-openmpi2-hpc
+not-installed"libhdf5-gnu-openmpi3-hpc
+not-installed"libhdf5_1_10_4-gnu-hpc
+not-installed"libhdf5_1_10_4-gnu-mpich-hpc
+not-installed"libhdf5_1_10_4-gnu-mvapich2-hpc
+not-installed"libhdf5_1_10_4-gnu-openmpi1-hpc
+not-installed"libhdf5_1_10_4-gnu-openmpi2-hpc
+not-installed"libhdf5_1_10_4-gnu-openmpi3-hpc
+not-installed"libhdf5_cpp-gnu-hpc
+not-installed"libhdf5_cpp-gnu-mpich-hpc
+not-installed"libhdf5_cpp-gnu-mvapich2-hpc
+not-installed"libhdf5_cpp-gnu-openmpi1-hpc
+not-installed"libhdf5_cpp-gnu-openmpi2-hpc
+not-installed"libhdf5_cpp-gnu-openmpi3-hpc
+not-installed"libhdf5_cpp103
+not-installed"libhdf5_cpp103-32bit
+not-installed"libhdf5_cpp103-mvapich2
+not-installed"libhdf5_cpp103-mvapich2-32bit
+not-installed"libhdf5_cpp103-openmpi
+not-installed"libhdf5_cpp103-openmpi-32bit
+not-installed"libhdf5_cpp103-openmpi2
+not-installed"libhdf5_cpp103-openmpi2-32bit
+not-installed"libhdf5_cpp103-openmpi3
+not-installed"libhdf5_cpp103-openmpi3-32bit
+not-installed"libhdf5_cpp_1_10_4-gnu-hpc
+not-installed"libhdf5_cpp_1_10_4-gnu-mpich-hpc
+not-installed"libhdf5_cpp_1_10_4-gnu-mvapich2-hpc
+not-installed"libhdf5_cpp_1_10_4-gnu-openmpi1-hpc
+not-installed"libhdf5_cpp_1_10_4-gnu-openmpi2-hpc
+not-installed"libhdf5_cpp_1_10_4-gnu-openmpi3-hpc
+not-installed"libhdf5_fortran-gnu-hpc
+not-installed"libhdf5_fortran-gnu-mpich-hpc
+not-installed"libhdf5_fortran-gnu-mvapich2-hpc
+not-installed"libhdf5_fortran-gnu-openmpi1-hpc
+not-installed"libhdf5_fortran-gnu-openmpi2-hpc
+not-installed"libhdf5_fortran-gnu-openmpi3-hpc
+not-installed"libhdf5_fortran100
+not-installed"libhdf5_fortran100-32bit
+not-installed"libhdf5_fortran100-mvapich2
+not-installed"libhdf5_fortran100-mvapich2-32bit
+not-installed"libhdf5_fortran100-openmpi
+not-installed"libhdf5_fortran100-openmpi-32bit
+not-installed"libhdf5_fortran100-openmpi2
+not-installed"libhdf5_fortran100-openmpi2-32bit
+not-installed"libhdf5_fortran100-openmpi3
+not-installed"libhdf5_fortran100-openmpi3-32bit
+not-installed"libhdf5_fortran_1_10_4-gnu-hpc
+not-installed"libhdf5_fortran_1_10_4-gnu-mpich-hpc
+not-installed"libhdf5_fortran_1_10_4-gnu-mvapich2-hpc
+not-installed"libhdf5_fortran_1_10_4-gnu-openmpi1-hpc
+not-installed"libhdf5_fortran_1_10_4-gnu-openmpi2-hpc
+not-installed"libhdf5_fortran_1_10_4-gnu-openmpi3-hpc
+not-installed"libhdf5_hl-gnu-hpc
+not-installed"libhdf5_hl-gnu-mpich-hpc
+not-installed"libhdf5_hl-gnu-mvapich2-hpc
+not-installed"libhdf5_hl-gnu-openmpi1-hpc
+not-installed"libhdf5_hl-gnu-openmpi2-hpc
+not-installed"libhdf5_hl-gnu-openmpi3-hpc
+installed"libhdf5_hl100
+not-installed"libhdf5_hl100-32bit
+not-installed"libhdf5_hl100-mvapich2
+not-installed"libhdf5_hl100-mvapich2-32bit
+not-installed"libhdf5_hl100-openmpi
+not-installed"libhdf5_hl100-openmpi-32bit
+not-installed"libhdf5_hl100-openmpi2
+not-installed"libhdf5_hl100-openmpi2-32bit
+not-installed"libhdf5_hl100-openmpi3
+not-installed"libhdf5_hl100-openmpi3-32bit
+not-installed"libhdf5_hl_1_10_4-gnu-hpc
+not-installed"libhdf5_hl_1_10_4-gnu-mpich-hpc
+not-installed"libhdf5_hl_1_10_4-gnu-mvapich2-hpc
+not-installed"libhdf5_hl_1_10_4-gnu-openmpi1-hpc
+not-installed"libhdf5_hl_1_10_4-gnu-openmpi2-hpc
+not-installed"libhdf5_hl_1_10_4-gnu-openmpi3-hpc
+not-installed"libhdf5_hl_cpp-gnu-hpc
+not-installed"libhdf5_hl_cpp-gnu-mpich-hpc
+not-installed"libhdf5_hl_cpp-gnu-mvapich2-hpc
+not-installed"libhdf5_hl_cpp-gnu-openmpi1-hpc
+not-installed"libhdf5_hl_cpp-gnu-openmpi2-hpc
+not-installed"libhdf5_hl_cpp-gnu-openmpi3-hpc
+not-installed"libhdf5_hl_cpp100
+not-installed"libhdf5_hl_cpp100-32bit
+not-installed"libhdf5_hl_cpp100-mvapich2
+not-installed"libhdf5_hl_cpp100-mvapich2-32bit
+not-installed"libhdf5_hl_cpp100-openmpi
+not-installed"libhdf5_hl_cpp100-openmpi-32bit
+not-installed"libhdf5_hl_cpp100-openmpi2
+not-installed"libhdf5_hl_cpp100-openmpi2-32bit
+not-installed"libhdf5_hl_cpp100-openmpi3
+not-installed"libhdf5_hl_cpp100-openmpi3-32bit
+not-installed"libhdf5_hl_cpp_1_10_4-gnu-hpc
+not-installed"libhdf5_hl_cpp_1_10_4-gnu-mpich-hpc
+not-installed"libhdf5_hl_cpp_1_10_4-gnu-mvapich2-hpc
+not-installed"libhdf5_hl_cpp_1_10_4-gnu-openmpi1-hpc
+not-installed"libhdf5_hl_cpp_1_10_4-gnu-openmpi2-hpc
+not-installed"libhdf5_hl_cpp_1_10_4-gnu-openmpi3-hpc
+not-installed"libhdf5_hl_fortran-gnu-hpc
+not-installed"libhdf5_hl_fortran-gnu-mpich-hpc
+not-installed"libhdf5_hl_fortran-gnu-mvapich2-hpc
+not-installed"libhdf5_hl_fortran-gnu-openmpi1-hpc
+not-installed"libhdf5_hl_fortran-gnu-openmpi2-hpc
+not-installed"libhdf5_hl_fortran-gnu-openmpi3-hpc
+not-installed"libhdf5hl_fortran100
+not-installed"libhdf5hl_fortran100-32bit
+not-installed"libhdf5hl_fortran100-mvapich2
+not-installed"libhdf5hl_fortran100-mvapich2-32bit
+not-installed"libhdf5hl_fortran100-openmpi
+not-installed"libhdf5hl_fortran100-openmpi-32bit
+not-installed"libhdf5hl_fortran100-openmpi2
+not-installed"libhdf5hl_fortran100-openmpi2-32bit
+not-installed"libhdf5hl_fortran100-openmpi3
+not-installed"libhdf5hl_fortran100-openmpi3-32bit
+not-installed"libhdf5hl_fortran_1_10_4-gnu-hpc
+not-installed"libhdf5hl_fortran_1_10_4-gnu-mpich-hpc
+not-installed"libhdf5hl_fortran_1_10_4-gnu-mvapich2-hpc
+not-installed"libhdf5hl_fortran_1_10_4-gnu-openmpi1-hpc
+not-installed"libhdf5hl_fortran_1_10_4-gnu-openmpi2-hpc
+not-installed"libhdf5hl_fortran_1_10_4-gnu-openmpi3-hpc
+not-installed"libhdhomerun
+not-installed"libhdhomerun-debuginfo
+not-installed"libhdhomerun-debugsource
+not-installed"libhdhomerun-devel
+not-installed"libhdhomerun2
+not-installed"libhdhomerun20150826
+not-installed"libhdhomerun20150826-debuginfo
+not-installed"libheimdal
+not-installed"libheimdal-devel
+not-installed"libhfst52
+not-installed"libhfstospell10
+not-installed"libhfstospell10-32bit
+not-installed"libhidapi-devel
+not-installed"libhidapi-hidraw0
+not-installed"libhidapi-libusb0
+not-installed"libhinawa-devel
+not-installed"libhinawa1
+not-installed"libhiredis0_13
+installed"libhivex0
+not-installed"libhmac-devel
+not-installed"libhmac-tools
+not-installed"libhmac1
+installed"libhogweed4
+installed"libhogweed4-32bit
+not-installed"libhowl0
+not-installed"libhpdf2_3_0
+not-installed"libhpx1
+not-installed"libhs5
+not-installed"libhssi-io0
+not-installed"libhtp-devel
+not-installed"libhtp2
+installed"libhttp_parser2_7_1
+not-installed"libhttp_parser2_7_1-32bit
+not-installed"libhttrack2
+not-installed"libhubbub-devel
+not-installed"libhubbub-doc
+not-installed"libhubbub0
+not-installed"libhugetlbfs
+not-installed"libhugetlbfs-32bit
+not-installed"libhugetlbfs-devel
+not-installed"libhugetlbfs-tests
+installed"libhunspell-1_7-0
+not-installed"libhunspell-1_7-0-32bit
+not-installed"libhwloc5
+not-installed"libhwsd2
+not-installed"libhwsd2-debuginfo
+not-installed"libhydrogen-core-devel
+not-installed"libhydrogen-core1
+installed"libhyphen0
+not-installed"libhyphen0-32bit
+not-installed"libi2c0
+not-installed"libi2c0-devel
+installed"libib_util
+not-installed"libib_util-32bit
+not-installed"libib_util-devel
+not-installed"libibdm1
+not-installed"libibmad5
+not-installed"libibmad5-32bit
+not-installed"libibmtss0
+not-installed"libibnetdisc5
+not-installed"libibnetdisc5-32bit
+not-installed"libibumad3
+not-installed"libibumad3-32bit
+installed"libibus-1_0-5
+not-installed"libibus-1_0-5-32bit
+installed"libibverbs
+not-installed"libibverbs-32bit
+not-installed"libibverbs-utils
+installed"libibverbs1
+not-installed"libibverbs1-32bit
+not-installed"libical-devel
+not-installed"libical-doc
+installed"libical3
+not-installed"libical3-32bit
+not-installed"libicecream-devel
+not-installed"libicns-devel
+not-installed"libicns1
+not-installed"libiconv_hook-devel
+not-installed"libiconv_hook1
+not-installed"libicu-devel
+not-installed"libicu-devel-32bit
+not-installed"libicu-doc
+installed"libicu-suse64_2
+not-installed"libicu-suse64_2-32bit
+not-installed"libicu64_2-bedata
+installed"libicu64_2-ledata
+not-installed"libid3tag-devel
+installed"libid3tag0
+not-installed"libid3tag0-32bit
+not-installed"libidl-devel
+not-installed"libidn-devel
+not-installed"libidn-tools
+installed"libidn12
+not-installed"libidn12-32bit
+installed"libidn2-0
+installed"libidn2-0-32bit
+not-installed"libidn2-devel
+installed"libidn2-lang
+not-installed"libidn2-tools
+not-installed"libido3-0_1-0
+not-installed"libido3-0_1-0-32bit
+installed"libiec61883-0
+not-installed"libiec61883-0-32bit
+not-installed"libiec61883-devel
+not-installed"libiec61883-tools
+not-installed"libigdgmm-devel
+not-installed"libigdgmm9
+not-installed"libigfxcmrt-devel
+not-installed"libigfxcmrt7
+not-installed"libilbc0
+not-installed"libimaevm1
+not-installed"libimagequant-devel
+installed"libimagequant0
+not-installed"libiml0
+not-installed"libimobiledevice-devel
+installed"libimobiledevice6
+not-installed"libimobiledevice6-32bit
+not-installed"libinchi0
+not-installed"libinchi0-32bit
+not-installed"libindi
+not-installed"libindi-devel
+not-installed"libindi-plugins
+not-installed"libindiAlignmentDriver1
+not-installed"libindicator-devel
+installed"libindicator3-7
+not-installed"libindicator3-devel
+not-installed"libindicator7
+not-installed"libindidriver1
+not-installed"libindilx200-1
+not-installed"libinfinipath4
+not-installed"libinfinipath4-32bit
+not-installed"libinfinity-1_0-0
+not-installed"libinfinity-devel
+not-installed"libinfinity-lang
+not-installed"libini_config-devel
+not-installed"libini_config-devel-32bit
+not-installed"libini_config5
+not-installed"libini_config5-32bit
+not-installed"libiniparser-devel
+not-installed"libiniparser1
+not-installed"libiniparser1-32bit
+not-installed"libinjeqt1
+not-installed"libinotifytools0
+not-installed"libinput-devel
+not-installed"libinput-tools
+installed"libinput-udev
+installed"libinput10
+not-installed"libinput10-32bit
+not-installed"libinstpatch-1_0-0
+not-installed"libinstpatch-devel
+not-installed"libiodbc-devel
+not-installed"libiodbc3
+installed"libip4tc2
+installed"libip6tc2
+not-installed"libipa_hbac-devel
+not-installed"libipa_hbac0
+installed"libiperf0
+not-installed"libipmiconsole2
+not-installed"libipmidetect0
+not-installed"libipmimonitoring6
+not-installed"libipq-devel
+not-installed"libipq0
+installed"libipset13
+not-installed"libiptc-devel
+not-installed"libiptcdata
+not-installed"libiptcdata-devel
+not-installed"libiptcdata-doc
+not-installed"libiptcdata-lang
+not-installed"libiptcdata0
+not-installed"libircclient-devel
+not-installed"libircclient-doc
+not-installed"libircclient1
+not-installed"libirman-devel
+not-installed"libirman0
+not-installed"libirrecord0
+not-installed"libirs-devel
+installed"libirs160
+not-installed"libirs160-32bit
+installed"libisc166
+not-installed"libisc166-32bit
+installed"libisccc160
+not-installed"libisccc160-32bit
+installed"libisccfg160
+not-installed"libisccfg160-32bit
+not-installed"libiscsi-devel
+not-installed"libiscsi-test
+not-installed"libiscsi-utils
+installed"libiscsi9
+not-installed"libisds-devel
+not-installed"libisds5
+installed"libisl19
+not-installed"libisl19-32bit
+installed"libiso9660-11
+not-installed"libiso9660-11-32bit
+not-installed"libisoburn-devel
+installed"libisoburn1
+not-installed"libisofs-devel
+installed"libisofs6
+not-installed"libite-devel
+not-installed"libite5
+not-installed"libiterm-devel
+not-installed"libiterm1
+installed"libitm1
+not-installed"libitm1-32bit
+not-installed"libitm1-gcc7
+not-installed"libitm1-gcc7-32bit
+not-installed"libitm1-gcc8
+not-installed"libitm1-gcc8-32bit
+not-installed"libitpp8
+not-installed"libivykis0
+not-installed"libiw-devel
+installed"libiw30
+installed"libixion-0_15-0
+not-installed"libixion-devel
+not-installed"libixion-tools
+installed"libixml10
+not-installed"libixml10-32bit
+not-installed"libjack-devel
+not-installed"libjack-devel-32bit
+installed"libjack0
+installed"libjack0-32bit
+installed"libjacknet0
+not-installed"libjacknet0-32bit
+installed"libjackserver0
+not-installed"libjackserver0-32bit
+not-installed"libjansson-devel
+installed"libjansson4
+installed"libjansson4-32bit
+not-installed"libjasper-devel
+installed"libjasper4
+not-installed"libjasper4-32bit
+installed"libjavascriptcoregtk-4_0-18
+not-installed"libjavascriptcoregtk-4_0-18-32bit
+not-installed"libjaylink
+not-installed"libjaylink-devel
+not-installed"libjaylink0
+not-installed"libjbig-devel
+not-installed"libjbig-devel-32bit
+installed"libjbig2
+installed"libjbig2-32bit
+not-installed"libjbig2dec0
+not-installed"libjbig2dec0-32bit
+not-installed"libjd0
+installed"libjemalloc2
+not-installed"libjim0_75
+not-installed"libjnidispatch
+not-installed"libjoschy-devel
+not-installed"libjoschy0
+not-installed"libjoschy0-debuginfo
+not-installed"libjpeg-turbo
+not-installed"libjpeg62
+not-installed"libjpeg62-32bit
+not-installed"libjpeg62-devel
+not-installed"libjpeg62-devel-32bit
+installed"libjpeg8
+installed"libjpeg8-32bit
+not-installed"libjpeg8-devel
+not-installed"libjpeg8-devel-32bit
+not-installed"libjpegxr0
+not-installed"libjq-devel
+not-installed"libjq1
+not-installed"libjreen-qt5-1
+not-installed"libjreen-qt5-devel
+not-installed"libjrtp3_11_1
+not-installed"libjsmn0
+not-installed"libjson-c-devel
+not-installed"libjson-c-doc
+installed"libjson-c4
+not-installed"libjson-c4-32bit
+installed"libjson-glib-1_0-0
+installed"libjson-glib-1_0-0-32bit
+not-installed"libjsoncpp21
+not-installed"libjsonrpc-glib-1_0-1
+not-installed"libjte-devel
+installed"libjte1
+not-installed"libjthread1_3_3
+not-installed"libjwt_verify_lib0
+not-installed"libjxrglue0
+installed"libkaccounts1
+not-installed"libkaccounts1-32bit
+not-installed"libkactivities-devel
+installed"libkactivities6
+not-installed"libkactivities6-32bit
+not-installed"libkasten-lang
+not-installed"libkate-devel
+not-installed"libkate-tools
+installed"libkate1
+not-installed"libkate1-32bit
+not-installed"libkatepartinterfaces4
+not-installed"libkcapi-devel
+not-installed"libkcapi-tools
+not-installed"libkcapi0
+not-installed"libkcarchiver0
+not-installed"libkcarchivercore0
+not-installed"libkcddb
+not-installed"libkcddb-devel
+not-installed"libkcddb-lang
+not-installed"libkcddb4
+not-installed"libkcddb4-devel
+not-installed"libkcfreebusy0
+not-installed"libkchart-lang
+not-installed"libkcicalmapi0
+not-installed"libkcinetmapi0
+not-installed"libkcompactdisc-devel
+installed"libkcompactdisc-lang
+not-installed"libkcompactdisc4
+not-installed"libkcompactdisc4-devel
+not-installed"libkcpyplug0
+not-installed"libkcrosie0
+not-installed"libkcserver0
+not-installed"libkcsoap0
+not-installed"libkcutil0
+not-installed"libkdcraw-devel
+installed"libkde4
+not-installed"libkde4-32bit
+not-installed"libkde4-devel
+not-installed"libkdecoration2-devel
+not-installed"libkdecoration2-devel-32bit
+installed"libkdecorations2-5
+not-installed"libkdecorations2-5-32bit
+installed"libkdecorations2-5-lang
+installed"libkdecorations2private6
+not-installed"libkdecorations2private6-32bit
+installed"libkdecore4
+not-installed"libkdecore4-32bit
+not-installed"libkdecore4-devel
+installed"libkdegames
+not-installed"libkdegames-devel
+installed"libkdegames-lang
+installed"libkdepim
+not-installed"libkdepim-devel
+installed"libkdepim-lang
+not-installed"libkdevplatform54
+not-installed"libkdstatemachineeditor_core1_2_5
+not-installed"libkdstatemachineeditor_view1_2_5
+not-installed"libkdumpfile-devel
+not-installed"libkdumpfile7
+not-installed"libkea1_4
+not-installed"libkeccak-devel
+not-installed"libkeccak1
+not-installed"libkeduvocdocument-devel
+not-installed"libkeduvocdocument-lang
+installed"libkerfuffle19
+not-installed"libkexiv2-devel
+installed"libkeybinder-3_0-0
+not-installed"libkeybinder0
+installed"libkeyutils1
+installed"libkeyutils1-32bit
+installed"libkf5kdegames6
+installed"libkgantt-lang
+not-installed"libkgapi-devel
+installed"libkgapi-lang
+not-installed"libkgeomap
+not-installed"libkgeomap-devel
+not-installed"libkgeomap-lang
+not-installed"libkim-api2
+not-installed"libkioarchive-devel
+installed"libkioarchive5
+installed"libkipi-data
+not-installed"libkipi-devel
+not-installed"libkkc-devel
+not-installed"libkkc2
+not-installed"libkkc2-32bit
+installed"libkleo
+not-installed"libkleo-devel
+installed"libkleo-lang
+not-installed"libklfbackend4
+not-installed"libklftools4
+not-installed"libklu1
+installed"libkmahjongg
+not-installed"libkmahjongg-devel
+installed"libkmahjongg-lang
+not-installed"libkmod-devel
+installed"libkmod2
+not-installed"libkms-devel
+not-installed"libkms-devel-32bit
+not-installed"libkms1
+not-installed"libkms1-32bit
+not-installed"libknet1
+not-installed"libknet1-compress-bzip2-plugin
+not-installed"libknet1-compress-lz4-plugin
+not-installed"libknet1-compress-lzma-plugin
+not-installed"libknet1-compress-lzo2-plugin
+not-installed"libknet1-compress-plugins-all
+not-installed"libknet1-compress-zlib-plugin
+not-installed"libknet1-crypto-nss-plugin
+not-installed"libknet1-crypto-openssl-plugin
+not-installed"libknet1-crypto-plugins-all
+not-installed"libknet1-devel
+not-installed"libknet1-plugins-all
+not-installed"libkolabxml-devel
+installed"libkolabxml1
+installed"libkomparediff2-5
+not-installed"libkomparediff2-devel
+installed"libkomparediff2-lang
+not-installed"libkonkretcmpi0
+not-installed"libkpathsea6
+not-installed"libkpmcore7
+not-installed"libksane-devel
+installed"libksane-lang
+not-installed"libksba-devel
+installed"libksba8
+not-installed"libkscreen2-devel
+not-installed"libkscreen2-devel-32bit
+installed"libkscreen2-plugin
+not-installed"libkscreen2-plugin-32bit
+not-installed"libksi-devel
+not-installed"libksi1
+installed"libksieve
+not-installed"libksieve-devel
+installed"libksieve-lang
+not-installed"libksuseinstall-devel
+installed"libksuseinstall1
+not-installed"libksuseinstall1-32bit
+installed"libksysguard5
+not-installed"libksysguard5-32bit
+not-installed"libksysguard5-devel
+not-installed"libksysguard5-devel-32bit
+installed"libksysguard5-helper
+installed"libksysguard5-lang
+not-installed"libktoblzcheck1
+not-installed"libktorrent-devel
+not-installed"libktorrent-lang
+not-installed"libktpaccountskcminternal9
+not-installed"libkvazaar-devel
+not-installed"libkvazaar4
+not-installed"libkvazaar4-debuginfo
+not-installed"libkvkontakte-devel
+not-installed"libkvkontakte-lang
+installed"libkwalletbackend5-5
+not-installed"libkwalletbackend5-5-32bit
+not-installed"libkwnn0
+not-installed"libkyotocabinet-devel
+not-installed"libkyotocabinet16
+not-installed"libkyotocabinet16-32bit
+not-installed"liblammps0
+not-installed"liblangtag-devel
+not-installed"liblangtag-doc
+installed"liblangtag1
+installed"liblapack3
+not-installed"liblapack3-32bit
+not-installed"liblapacke3
+not-installed"liblapacke3-32bit
+not-installed"liblasem-0_4-4
+installed"liblash1
+not-installed"liblash1-32bit
+not-installed"liblash1-32bit-debuginfo
+not-installed"liblash1-debuginfo
+not-installed"liblastfm-devel
+not-installed"liblastfm-qt5-devel
+not-installed"liblastfm1
+not-installed"liblastfm5-1
+not-installed"liblastfm5-1-32bit
+not-installed"liblastfm_fingerprint5-1
+not-installed"liblastfm_fingerprint5-1-32bit
+not-installed"liblaszip8
+not-installed"liblaszip_api8
+installed"liblavfile-2_0-0
+installed"liblavjpeg-2_0-0
+installed"liblavplay-2_0-0
+installed"liblavrec-2_0-0
+installed"liblayout
+not-installed"liblayout-javadoc
+not-installed"liblazy-devel
+not-installed"liblazy1
+not-installed"liblazy1-32bit
+not-installed"liblbxutil-devel
+not-installed"liblbxutil-devel-32bit
+not-installed"liblbxutil1
+not-installed"liblbxutil1-32bit
+installed"liblcms2-2
+installed"liblcms2-2-32bit
+not-installed"liblcms2-devel
+not-installed"liblcms2-devel-32bit
+not-installed"liblcms2-doc
+not-installed"libldac2
+installed"libldap-2_4-2
+installed"libldap-2_4-2-32bit
+installed"libldap-data
+not-installed"libldapcpp-devel
+installed"libldapcpp1
+not-installed"libldb-devel
+installed"libldb1
+installed"libldb1-32bit
+not-installed"libldl-doc
+not-installed"libldl2
+installed"libldm-1_0-0
+not-installed"libldm-1_0-0-devel
+not-installed"libldns3
+not-installed"libleechcraft-util-db-qt5-0_6_75_1
+not-installed"libleechcraft-util-gui-qt5-0_6_75_1
+not-installed"libleechcraft-util-models-qt5-0_6_75_1
+not-installed"libleechcraft-util-network-qt5-0_6_75_1
+not-installed"libleechcraft-util-qml-qt5-0_6_75_2
+not-installed"libleechcraft-util-shortcuts-qt5-0_6_75
+not-installed"libleechcraft-util-sll-qt5-0_6_75_1
+not-installed"libleechcraft-util-svcauth-qt5-0_6_75
+not-installed"libleechcraft-util-sys-qt5-0_6_75_1
+not-installed"libleechcraft-util-tags-qt5-0_6_75_1
+not-installed"libleechcraft-util-threads-qt5-0_6_75
+not-installed"libleechcraft-util-x11-qt5-0_6_75
+not-installed"libleechcraft-util-xdg-qt5-0_6_75
+not-installed"libleechcraft-util-xpc-qt5-0_6_75_2
+not-installed"libleechcraft-util-xsd-qt5-0_6_75
+not-installed"liblegion1
+not-installed"liblensfun1
+not-installed"liblept5
+not-installed"liblept5-32bit
+not-installed"libleveldb1
+not-installed"liblhasa0
+installed"liblightdm-gobject-1-0
+not-installed"liblightdm-qt5-3-0
+not-installed"liblightgrep-devel
+not-installed"liblightgrep0
+not-installed"liblightmediascanner0
+not-installed"liblightstep_tracer0
+installed"liblilv-0-0
+not-installed"liblilv-0-0-32bit
+not-installed"liblilv-0-devel
+not-installed"liblinbox0
+not-installed"liblinebreak-devel
+not-installed"liblinebreak2
+not-installed"liblink-grammar5
+not-installed"liblinphone++9
+not-installed"liblinphone++9-32bit
+not-installed"liblinphone-data
+not-installed"liblinphone-devel
+not-installed"liblinphone-lang
+not-installed"liblinphone9
+not-installed"liblinphone9-32bit
+not-installed"liblinuxsampler-devel
+not-installed"liblinuxsampler5
+not-installed"liblinuxsampler5-debuginfo
+not-installed"libliquid-devel
+not-installed"liblirc0
+not-installed"liblirc0-32bit
+installed"liblirc_client0
+not-installed"liblirc_client0-32bit
+not-installed"liblirc_driver0
+not-installed"liblirc_driver0-32bit
+not-installed"liblittleb0
+not-installed"libliveMedia-devel
+installed"libliveMedia66
+not-installed"liblldb6
+not-installed"liblldb7
+not-installed"liblldb8
+not-installed"liblldp_clif1
+not-installed"liblldpctl4
+installed"liblmdb-0_9_23
+not-installed"liblmdb-0_9_23-32bit
+not-installed"liblms7002m-devel
+not-installed"liblms7compact0
+not-installed"liblnk-devel
+not-installed"liblnk-tools
+not-installed"liblnk1
+not-installed"liblo-devel
+not-installed"liblo10k1-0
+installed"liblo7
+not-installed"liblo7-32bit
+installed"libloader
+not-installed"libloader-javadoc
+installed"liblockdev1
+installed"liblockdev1-32bit
+not-installed"liblodepng-r84
+not-installed"liblog4c-devel
+not-installed"liblog4c-doc
+not-installed"liblog4c3
+not-installed"liblog4c3-32bit
+not-installed"liblog4cplus-1_1-5
+not-installed"liblog4cpp5
+not-installed"liblog4cxx-devel
+not-installed"liblog4cxx10
+not-installed"liblog4shib-devel
+not-installed"liblog4shib2
+not-installed"liblogging-devel
+installed"liblogging0
+not-installed"liblognorm-devel
+installed"liblognorm5
+not-installed"libloki-devel
+not-installed"libloki-doc
+not-installed"libloki0_1_7
+not-installed"libloudmouth-1-0
+not-installed"liblouis-data
+not-installed"liblouis-devel
+not-installed"liblouis-doc
+not-installed"liblouis-tools
+not-installed"liblouis17
+installed"liblpsolve55-0
+installed"liblqr-1-0
+not-installed"liblqr-1-0-32bit
+not-installed"liblqr-devel
+not-installed"liblrdf-devel
+installed"liblrdf2
+not-installed"liblrdf2-32bit
+not-installed"liblrs-7_0-0
+installed"liblsan0
+not-installed"liblsan0-gcc7
+not-installed"liblsan0-gcc8
+not-installed"liblscp-devel
+not-installed"liblscp6
+not-installed"liblsmash2
+not-installed"liblsmash2-debuginfo
+not-installed"libltc-devel
+not-installed"libltc11
+installed"libltdl7
+installed"libltdl7-32bit
+not-installed"liblttng-ctl0
+not-installed"liblttng-ust-ctl4
+not-installed"liblttng-ust-python-agent0
+installed"liblttng-ust0
+installed"liblua5_1-5
+not-installed"liblua5_1-5-32bit
+installed"liblua5_3-5
+installed"liblua5_3-5-32bit
+not-installed"libluabind0_9_1
+installed"libluajit-5_1-2
+not-installed"libluajit-5_1-2-32bit
+not-installed"liblucene++0
+not-installed"liblur3
+installed"liblvm2app2_2
+installed"liblvm2cmd2_02
+installed"liblwres160
+not-installed"liblwres160-32bit
+not-installed"liblxc-devel
+not-installed"liblxc1
+not-installed"liblxpanel0
+not-installed"liblxqt-devel
+not-installed"liblxqt-globalkeys-ui0
+not-installed"liblxqt-globalkeys0
+not-installed"liblxqt-lang
+not-installed"liblxqt0
+not-installed"liblz1
+installed"liblz4-1
+installed"liblz4-1-32bit
+not-installed"liblz4-devel
+installed"liblzma5
+installed"liblzma5-32bit
+installed"liblzo2-2
+not-installed"liblzo2-2-32bit
+not-installed"libm17n0
+not-installed"libm17n0-32bit
+not-installed"libm4ri-0_0_20140914
+not-installed"libm4ri-devel
+not-installed"libm4rie-0_0_20150908
+not-installed"libm4rie-devel
+not-installed"libmaa-devel
+not-installed"libmaa-doc
+not-installed"libmaa4
+not-installed"libmac
+not-installed"libmac-debuginfo
+not-installed"libmac-debugsource
+not-installed"libmac-devel
+not-installed"libmac2
+not-installed"libmac2-debuginfo
+not-installed"libmad-devel
+installed"libmad0
+not-installed"libmad0-32bit
+installed"libmagic1
+installed"libmagic1-32bit
+not-installed"libmaia-devel
+not-installed"libmaia1
+not-installed"libmailutils5
+not-installed"libmakemkv1
+not-installed"libmanette-0_2-0
+not-installed"libmanette-devel
+not-installed"libmapi1
+not-installed"libmapidb-devel
+not-installed"libmapidb1
+installed"libmarblewidget-qt5-28
+not-installed"libmarco-private1
+not-installed"libmariadb-devel
+installed"libmariadb3
+not-installed"libmariadb3-32bit
+not-installed"libmariadb_plugins
+not-installed"libmariadbd-devel
+not-installed"libmariadbd19
+not-installed"libmariadbprivate
+not-installed"libmarisa0
+not-installed"libmarisa0-32bit
+not-installed"libmarkdown-devel
+installed"libmarkdown2
+not-installed"libmate-desktop-2-17
+not-installed"libmate-menu2
+not-installed"libmate-menu2-32bit
+not-installed"libmate-panel-applet-4-1
+not-installed"libmate-panel-applet-4-1-32bit
+not-installed"libmate-sensors-applet-plugin0
+not-installed"libmate-sensors-applet-plugin0-32bit
+not-installed"libmate-slab-devel
+not-installed"libmate-slab0
+not-installed"libmate-window-settings1
+not-installed"libmatedict-devel
+not-installed"libmatedict6
+not-installed"libmatekbd-devel
+not-installed"libmatekbd-lang
+not-installed"libmatekbd4
+not-installed"libmatekbd4-32bit
+not-installed"libmatemixer-devel
+not-installed"libmatemixer-lang
+not-installed"libmatemixer0
+not-installed"libmatemixer0-32bit
+not-installed"libmateweather-devel
+not-installed"libmateweather-lang
+not-installed"libmateweather1
+not-installed"libmateweather1-32bit
+not-installed"libmatio-devel
+not-installed"libmatio4
+not-installed"libmatroska-devel
+installed"libmatroska6
+not-installed"libmatroska6-32bit
+not-installed"libmaxminddb-devel
+not-installed"libmaxminddb0
+not-installed"libmbedcrypto3
+not-installed"libmbedcrypto3-32bit
+not-installed"libmbedtls12
+not-installed"libmbedtls12-32bit
+not-installed"libmbedx509-0
+not-installed"libmbedx509-0-32bit
+installed"libmbim
+not-installed"libmbim-devel
+installed"libmbim-glib4
+not-installed"libmcli
+not-installed"libmcli-debuginfo
+not-installed"libmcpp0
+not-installed"libmcs-devel
+not-installed"libmcs1
+not-installed"libmcs1
+not-installed"libmcs1-debuginfo
+not-installed"libmcs1-debugsource
+not-installed"libmd-devel
+installed"libmd0
+not-installed"libmdb2
+not-installed"libmdbsql2
+not-installed"libmeanwhile1
+not-installed"libmed-devel
+not-installed"libmed-python
+not-installed"libmed11
+not-installed"libmedC11
+not-installed"libmedfwrap11
+not-installed"libmediaart-2_0-0
+not-installed"libmediaart-devel
+not-installed"libmediacheck-devel
+installed"libmediacheck5
+not-installed"libmediainfo-devel
+not-installed"libmediainfo0
+not-installed"libmediainfo0-32bit
+not-installed"libmediastreamer_base10
+not-installed"libmediastreamer_base10-32bit
+not-installed"libmediastreamer_voip10
+not-installed"libmediastreamer_voip10-32bit
+not-installed"libmediawiki-devel
+not-installed"libmedimport0
+not-installed"libmeep14
+not-installed"libmemcache-devel
+not-installed"libmemcache0
+not-installed"libmemcached
+not-installed"libmemcached-devel
+not-installed"libmemcached11
+not-installed"libmemcachedutil2
+not-installed"libmemkind0
+not-installed"libmemphis-0_2-0
+not-installed"libmenu-cache3
+not-installed"libmesode-devel
+not-installed"libmesode0
+not-installed"libmetacity1
+not-installed"libmetalink-devel
+installed"libmetalink3
+not-installed"libmetis-gnu-hpc
+not-installed"libmetis5
+not-installed"libmetis_5_1_0-gnu-hpc
+not-installed"libmetrics-devel
+not-installed"libmetrics0
+installed"libmfx
+not-installed"libmfx-devel
+installed"libmfx1
+not-installed"libmgl-fltk7_5_0
+not-installed"libmgl-glut7_5_0
+not-installed"libmgl-mpi7_5_0
+not-installed"libmgl-qt5-7_5_0
+not-installed"libmgl-wnd7_5_0
+not-installed"libmgl-wx7_5_0
+not-installed"libmgl7_5_0
+not-installed"libmhash2
+not-installed"libmicro
+not-installed"libmicrohttpd-devel
+not-installed"libmicrohttpd12
+not-installed"libmidori-core0
+not-installed"libmikmod-devel
+installed"libmikmod3
+not-installed"libmikmod3-32bit
+not-installed"libmilter-doc
+not-installed"libmilter1_0
+not-installed"libmimetic-devel
+not-installed"libmimetic0
+not-installed"libminisat2
+not-installed"libminiupnpc-devel
+installed"libminiupnpc17
+not-installed"libminiupnpc17-32bit
+installed"libminizip1
+not-installed"libminizip1-32bit
+not-installed"libmirage-3_2
+not-installed"libmirage-data
+not-installed"libmirage-devel
+not-installed"libmirage-lang
+not-installed"libmirage11
+not-installed"libmirisdr-devel
+not-installed"libmirisdr0
+not-installed"libmisdn1
+not-installed"libmission-control-plugins0
+installed"libmjpegutils-2_0-0
+not-installed"libmjpegutils-2_0-0-32bit
+not-installed"libmjpegutils-devel
+not-installed"libmlt++-devel
+not-installed"libmlt++3
+not-installed"libmlt-devel
+not-installed"libmlt6
+not-installed"libmlt6-data
+not-installed"libmlt6-modules
+installed"libmlx4-1
+not-installed"libmlx4-1-32bit
+installed"libmlx5-1
+not-installed"libmlx5-1-32bit
+installed"libmm-glib0
+not-installed"libmmbd0
+not-installed"libmms-devel
+installed"libmms0
+not-installed"libmms0-32bit
+not-installed"libmng-devel
+installed"libmng2
+not-installed"libmng2-32bit
+not-installed"libmnl-devel
+installed"libmnl0
+not-installed"libmnl0-32bit
+not-installed"libmodglue1
+not-installed"libmodman-devel
+installed"libmodman1
+not-installed"libmodman1-32bit
+not-installed"libmodplug-devel
+installed"libmodplug1
+not-installed"libmodplug1-32bit
+not-installed"libmodsecurity3
+not-installed"libmodulemd-devel
+not-installed"libmodulemd1
+not-installed"libmodulemd1-devel
+not-installed"libmodulemd2
+not-installed"libmolsketch-qt5-1
+not-installed"libmongoose-doc
+not-installed"libmongoose2
+not-installed"libmono-2_0-1
+not-installed"libmono-2_0-devel
+not-installed"libmono-profiler-gui-thread-check0
+not-installed"libmono-profiler-gui-thread-check0-devel
+not-installed"libmonoboehm-2_0-1
+not-installed"libmonoboehm-2_0-devel
+not-installed"libmonosgen-2_0-1
+not-installed"libmonosgen-2_0-devel
+not-installed"libmopac7-1
+not-installed"libmopac7-1-devel
+not-installed"libmosquitto1
+not-installed"libmosquittopp1
+not-installed"libmount-devel
+not-installed"libmount-devel-32bit
+not-installed"libmount-devel-static
+installed"libmount1
+installed"libmount1-32bit
+not-installed"libmovit8
+not-installed"libmowgli
+not-installed"libmowgli-2-0
+not-installed"libmowgli-debugsource
+not-installed"libmowgli-devel
+not-installed"libmowgli2
+not-installed"libmowgli2-32bit
+not-installed"libmowgli2-32bit-debuginfo
+not-installed"libmowgli2-debuginfo
+not-installed"libmowgli2-devel
+not-installed"libmozjs-38
+not-installed"libmozjs-38-32bit
+installed"libmozjs-52
+installed"libmozjs-60
+not-installed"libmozjs185-1_0
+not-installed"libmozjs185-1_0-32bit
+not-installed"libmozjs185-1_0-32bit-debuginfo
+not-installed"libmozjs185-1_0-debuginfo
+not-installed"libmp3lame-devel
+installed"libmp3lame0
+not-installed"libmp3lame0-32bit
+not-installed"libmp3splt
+not-installed"libmp3splt-debuginfo
+not-installed"libmp3splt-debugsource
+not-installed"libmp3splt-devel
+not-installed"libmp3splt0
+not-installed"libmp3splt0-debuginfo
+not-installed"libmp3splt0-mp3
+not-installed"libmp3splt0-mp3-debuginfo
+not-installed"libmp3splt0-ogg
+not-installed"libmp3splt0-ogg-debuginfo
+installed"libmpath0
+installed"libmpc3
+not-installed"libmpc3-32bit
+not-installed"libmpcdec-devel
+installed"libmpcdec5
+not-installed"libmpcdec5-32bit
+installed"libmpcdec6
+not-installed"libmpcdec6-32bit
+not-installed"libmpd-devel
+not-installed"libmpd1
+not-installed"libmpd1-32bit
+not-installed"libmpdclient-devel
+installed"libmpdclient2
+installed"libmpeg2-0
+not-installed"libmpeg2-0-32bit
+not-installed"libmpeg2-devel
+not-installed"libmpeg2convert0
+installed"libmpeg2encpp-2_0-0
+not-installed"libmpeg2encpp-2_0-0-32bit
+not-installed"libmpeg3-1
+not-installed"libmpeg3-1
+not-installed"libmpeg3-1-debuginfo
+not-installed"libmpeg3-1-debugsource
+not-installed"libmpeg3-devel
+not-installed"libmpeg3-utils
+not-installed"libmpeg3-utils-debuginfo
+not-installed"libmpeg4ip-devel
+not-installed"libmpeg4ip0
+not-installed"libmpeg4ip0-debuginfo
+not-installed"libmpfc-devel
+not-installed"libmpfc2
+not-installed"libmpfc2-debuginfo
+not-installed"libmpfi0
+installed"libmpfr6
+not-installed"libmpfr6-32bit
+installed"libmpg123-0
+installed"libmpg123-0-32bit
+not-installed"libmpir-devel
+not-installed"libmpir23
+not-installed"libmpirxx8
+installed"libmplex2-2_0-0
+not-installed"libmplex2-2_0-0-32bit
+not-installed"libmpris-qt5-1
+not-installed"libmpris-qt5-devel
+installed"libmpv1
+installed"libmpx2
+not-installed"libmpx2-32bit
+not-installed"libmpx2-gcc7
+not-installed"libmpx2-gcc7-32bit
+installed"libmpxwrappers2
+not-installed"libmpxwrappers2-32bit
+not-installed"libmpxwrappers2-gcc7
+not-installed"libmpxwrappers2-gcc7-32bit
+not-installed"libmraa2
+not-installed"libmrss-devel
+not-installed"libmrss0
+not-installed"libmrss0-32bit
+installed"libmsgpackc2
+not-installed"libmsi0
+not-installed"libmsiecf-devel
+not-installed"libmsiecf-tools
+not-installed"libmsiecf1
+not-installed"libmspack-devel
+installed"libmspack0
+not-installed"libmspack0-32bit
+installed"libmspub-0_1-1
+not-installed"libmspub-devel
+not-installed"libmspub-devel-doc
+not-installed"libmspub-tools
+installed"libmtdev1
+not-installed"libmtdev1-32bit
+not-installed"libmtp-devel
+installed"libmtp-udev
+installed"libmtp9
+not-installed"libmuffin0
+not-installed"libmumps-gnu-mpich-hpc
+not-installed"libmumps-gnu-mvapich2-hpc
+not-installed"libmumps-gnu-openmpi1-hpc
+not-installed"libmumps-gnu-openmpi2-hpc
+not-installed"libmumps-gnu-openmpi3-hpc
+not-installed"libmumps-ptscotch5-openmpi
+not-installed"libmumps-ptscotch5-openmpi2
+not-installed"libmumps-scotch5
+not-installed"libmumps5
+not-installed"libmumps5-mvapich2
+not-installed"libmumps5-openmpi
+not-installed"libmumps5-openmpi2
+not-installed"libmumps_5_1_2-gnu-mpich-hpc
+not-installed"libmumps_5_1_2-gnu-mvapich2-hpc
+not-installed"libmumps_5_1_2-gnu-openmpi1-hpc
+not-installed"libmumps_5_1_2-gnu-openmpi2-hpc
+not-installed"libmumps_5_1_2-gnu-openmpi3-hpc
+not-installed"libmunge2
+not-installed"libmunge2-32bit
+not-installed"libmuparser2_2_6
+not-installed"libmuparser2_2_6-32bit
+not-installed"libmuroar0
+not-installed"libmuroar0-debuginfo
+not-installed"libmuroard3
+not-installed"libmuroard3-debuginfo
+not-installed"libmusicbrainz-devel
+not-installed"libmusicbrainz4
+not-installed"libmusicbrainz4-32bit
+installed"libmusicbrainz5-1
+not-installed"libmusicbrainz5-1-32bit
+not-installed"libmusicbrainz5-devel
+not-installed"libmutter-4-0
+installed"libmwaw-0_3-3
+not-installed"libmwaw-devel
+not-installed"libmwaw-devel-doc
+not-installed"libmwaw-tools
+not-installed"libmxml1
+not-installed"libmxml1-32bit
+not-installed"libmygpo-qt-devel
+not-installed"libmygpo-qt1
+not-installed"libmygpo-qt5-1
+not-installed"libmygpo-qt5-devel
+not-installed"libmypaint-1_3-0
+not-installed"libmypaint-devel
+not-installed"libmypaint-gegl-devel
+not-installed"libmypaint-gegl0
+not-installed"libmypaint-lang
+not-installed"libmysofa-devel
+installed"libmysofa0
+not-installed"libmysofa0-32bit
+not-installed"libmysqlcppconn-devel
+not-installed"libmysqlcppconn7
+not-installed"libmysqlcppconn8-1
+not-installed"libmysqlcppconn8-devel
+not-installed"libmyth-29-29
+not-installed"libmyth-29-29-debuginfo
+installed"libmythes-1_2-0
+not-installed"libnanomsg5
+not-installed"libnautilus-extension1
+not-installed"libnautilus-extension1-32bit
+not-installed"libnauty-2_7_rc2
+not-installed"libncurses5
+not-installed"libncurses5-32bit
+installed"libncurses6
+installed"libncurses6-32bit
+not-installed"libndctl-devel
+not-installed"libndctl6
+not-installed"libndp
+not-installed"libndp-devel
+installed"libndp0
+not-installed"libndpi-devel
+not-installed"libndpi2
+not-installed"libndr-devel
+not-installed"libndr-krb5pac-devel
+installed"libndr-krb5pac0
+installed"libndr-krb5pac0-32bit
+not-installed"libndr-nbt-devel
+installed"libndr-nbt0
+installed"libndr-nbt0-32bit
+not-installed"libndr-standard-devel
+installed"libndr-standard0
+installed"libndr-standard0-32bit
+installed"libndr0
+installed"libndr0-32bit
+not-installed"libneko2
+not-installed"libnemo-extension1
+not-installed"libneon-devel
+installed"libneon27
+not-installed"libneon27-32bit
+not-installed"libnet-devel
+not-installed"libnet-doc
+installed"libnet9
+not-installed"libnetapi-devel
+installed"libnetapi0
+installed"libnetapi0-32bit
+not-installed"libnetcdf-cxx4-gnu-hpc
+not-installed"libnetcdf-cxx4-gnu-hpc-devel
+not-installed"libnetcdf-cxx4_4_3_0-gnu-hpc
+not-installed"libnetcdf-cxx4_4_3_0-gnu-hpc-devel
+not-installed"libnetcdf-cxx4_4_3_0-gnu-hpc-devel-static
+not-installed"libnetcdf-fortran-gnu-mpich-hpc
+not-installed"libnetcdf-fortran-gnu-openmpi1-hpc
+not-installed"libnetcdf-fortran-gnu-openmpi2-hpc
+not-installed"libnetcdf-fortran-gnu-openmpi3-hpc
+not-installed"libnetcdf-fortran_4_4_4-gnu-mpich-hpc
+not-installed"libnetcdf-fortran_4_4_4-gnu-openmpi1-hpc
+not-installed"libnetcdf-fortran_4_4_4-gnu-openmpi2-hpc
+not-installed"libnetcdf-fortran_4_4_4-gnu-openmpi3-hpc
+not-installed"libnetcdf-gnu-hpc
+not-installed"libnetcdf-gnu-mpich-hpc
+not-installed"libnetcdf-gnu-mvapich2-hpc
+not-installed"libnetcdf-gnu-openmpi1-hpc
+not-installed"libnetcdf-gnu-openmpi2-hpc
+not-installed"libnetcdf-gnu-openmpi3-hpc
+not-installed"libnetcdf13
+not-installed"libnetcdf13-32bit
+not-installed"libnetcdf13-openmpi
+not-installed"libnetcdf13-openmpi-32bit
+not-installed"libnetcdf13-openmpi2
+not-installed"libnetcdf13-openmpi2-32bit
+not-installed"libnetcdf_4_6_1-gnu-hpc
+not-installed"libnetcdf_4_6_1-gnu-mpich-hpc
+not-installed"libnetcdf_4_6_1-gnu-mvapich2-hpc
+not-installed"libnetcdf_4_6_1-gnu-openmpi1-hpc
+not-installed"libnetcdf_4_6_1-gnu-openmpi2-hpc
+not-installed"libnetcdf_4_6_1-gnu-openmpi3-hpc
+not-installed"libnetcdf_c++-devel
+not-installed"libnetcdf_c++4
+not-installed"libnetcdf_c++4-1
+not-installed"libnetcdf_c++4-devel
+not-installed"libnetcontrol-devel
+installed"libnetcontrol0
+not-installed"libnetcontrol0-32bit
+not-installed"libnetfilter_acct-devel
+not-installed"libnetfilter_acct1
+not-installed"libnetfilter_acct1-32bit
+not-installed"libnetfilter_conntrack-devel
+installed"libnetfilter_conntrack3
+not-installed"libnetfilter_conntrack3-32bit
+not-installed"libnetfilter_cthelper-devel
+not-installed"libnetfilter_cthelper0
+not-installed"libnetfilter_cthelper0-32bit
+not-installed"libnetfilter_cttimeout-devel
+not-installed"libnetfilter_cttimeout1
+not-installed"libnetfilter_cttimeout1-32bit
+not-installed"libnetfilter_log-devel
+not-installed"libnetfilter_log1
+not-installed"libnetfilter_log1-32bit
+not-installed"libnetfilter_queue-devel
+not-installed"libnetfilter_queue1
+not-installed"libnetfilter_queue1-32bit
+not-installed"libnetlink-devel
+not-installed"libnetpbm-devel
+installed"libnetpbm11
+not-installed"libnetpbm11-32bit
+installed"libnettle-devel
+not-installed"libnettle-devel-32bit
+installed"libnettle6
+installed"libnettle6-32bit
+installed"libnewt0_52
+not-installed"libnewt0_52-32bit
+not-installed"libnextcloudsync-devel
+not-installed"libnextcloudsync0
+not-installed"libnf2ff0
+not-installed"libnfc-devel
+not-installed"libnfc-tools
+not-installed"libnfc5
+not-installed"libnfnetlink-devel
+installed"libnfnetlink0
+not-installed"libnfnetlink0-32bit
+not-installed"libnfs-devel
+installed"libnfs13
+not-installed"libnfsidmap-sss
+not-installed"libnfsjunct0
+installed"libnftables0
+not-installed"libnftables1
+not-installed"libnftnl-devel
+installed"libnftnl11
+installed"libnghttp2-14
+installed"libnghttp2-14-32bit
+not-installed"libnghttp2-devel
+not-installed"libnghttp2_asio-devel
+not-installed"libnghttp2_asio1
+not-installed"libnghttp2_asio1-32bit
+not-installed"libngspice-devel
+not-installed"libngspice0
+not-installed"libnice
+not-installed"libnice-devel
+installed"libnice10
+not-installed"libnice10-32bit
+not-installed"libnilfs0
+not-installed"libnilfscleaner0
+not-installed"libnilfsgc0
+not-installed"libnjb
+not-installed"libnjb-devel
+not-installed"libnjb5
+installed"libnl-config
+not-installed"libnl-doc
+not-installed"libnl-tools
+installed"libnl3-200
+installed"libnl3-200-32bit
+not-installed"libnl3-devel
+not-installed"libnl3-devel-32bit
+not-installed"libnlopt0
+not-installed"libnm-glib-vpn1
+not-installed"libnm-glib-vpn1-32bit
+not-installed"libnm-glib4
+installed"libnm-glib4-32bit
+not-installed"libnm-util2
+installed"libnm-util2-32bit
+installed"libnm0
+not-installed"libnma-devel
+not-installed"libnma0
+not-installed"libnordlicht0
+not-installed"libnordlicht0-debuginfo
+not-installed"libnormaliz3
+not-installed"libnoson1
+not-installed"libnotify-devel
+not-installed"libnotify-devel-32bit
+not-installed"libnotify-tools
+installed"libnotify4
+not-installed"libnotify4-32bit
+not-installed"libnotmuch5
+not-installed"libnova-0_15-0
+not-installed"libnova-devel
+installed"libnpth0
+not-installed"libnscd-devel
+installed"libnscd1
+installed"libnscd1-32bit
+not-installed"libnsl-devel
+installed"libnsl2
+installed"libnsl2-32bit
+not-installed"libnss_nis2
+not-installed"libnss_nis2-32bit
+not-installed"libnss_usrfiles2
+not-installed"libnss_usrfiles2-32bit
+not-installed"libnsssharedhelper0
+not-installed"libnsssharedhelper0-32bit
+not-installed"libntfs-3g-devel
+installed"libntfs-3g88
+not-installed"libntirpc-devel
+not-installed"libntirpc1_7
+not-installed"libntk1
+not-installed"libntl39
+not-installed"libntlm-devel
+not-installed"libntlm0
+not-installed"libnuma-devel
+installed"libnuma1
+not-installed"libnuma1-32bit
+installed"libnumbertext-1_0-0
+installed"libnumbertext-data
+not-installed"libnumbertext-devel
+not-installed"libnumbertext-tools
+not-installed"libnxml-devel
+not-installed"libnxml0
+not-installed"libnxml0-32bit
+not-installed"libo2scl0
+not-installed"liboaml_shared1
+not-installed"liboath-devel
+not-installed"liboath0
+not-installed"liboauth-devel
+installed"liboauth0
+not-installed"liboauth0-32bit
+not-installed"libobby-0_4-1
+not-installed"libobjc2-devel
+not-installed"libobjc4
+not-installed"libobjc4-32bit
+not-installed"libobjc4-gcc7
+not-installed"libobjc4-gcc7-32bit
+not-installed"libobjc4-gcc8
+not-installed"libobjc4-gcc8-32bit
+not-installed"libobjc4_6
+not-installed"libobrender32
+not-installed"libobt2
+not-installed"libode8
+installed"libodfgen-0_1-1
+not-installed"libodfgen-devel
+not-installed"libodfgen-devel-doc
+not-installed"libodraw-devel
+not-installed"libodraw-tools
+not-installed"libodraw1
+not-installed"libofa-devel
+installed"libofa0
+not-installed"libofa0-32bit
+not-installed"libofx
+not-installed"libofx-devel
+not-installed"libofx7
+not-installed"libogg-devel
+installed"libogg0
+installed"libogg0-32bit
+installed"liboggkate1
+not-installed"liboggkate1-32bit
+not-installed"liboggz-devel
+not-installed"liboggz-doc
+not-installed"liboggz2
+not-installed"liboggz2-32bit
+not-installed"libogmrip-devel
+not-installed"libogmrip1
+not-installed"libogmrip1-debuginfo
+not-installed"liboil
+not-installed"liboil-32bit
+not-installed"liboil-devel
+not-installed"liboil-doc
+not-installed"libokteta-lang
+not-installed"liboldX-devel
+not-installed"liboldX-devel-32bit
+not-installed"liboldX6
+not-installed"liboldX6-32bit
+not-installed"libolecf-devel
+not-installed"libolecf-tools
+not-installed"libolecf1
+not-installed"libomp6-devel
+not-installed"libomp7-devel
+not-installed"libomp8-devel
+not-installed"libonig4
+not-installed"liboop-devel
+not-installed"liboop4
+not-installed"libopae-c0
+not-installed"libopagent1
+not-installed"libopagent1-32bit
+not-installed"libopal-devel
+not-installed"libopal3_10_10
+not-installed"libopamgt-devel
+not-installed"libopamgt0
+not-installed"libopasadb1_0_0
+not-installed"libopenCOLLADA-devel
+not-installed"libopenCOLLADA-doc
+not-installed"libopenCOLLADA-utils
+not-installed"libopenEMS0
+not-installed"libopenal0
+not-installed"libopenal0-32bit
+installed"libopenal1
+installed"libopenal1-32bit
+not-installed"libopenbabel5
+not-installed"libopenbabel5-32bit
+not-installed"libopenblas-gnu-hpc
+not-installed"libopenblas-gnu-hpc-devel
+not-installed"libopenblas-pthreads-gnu-hpc
+not-installed"libopenblas-pthreads-gnu-hpc-devel
+not-installed"libopenblas-pthreads_0_3_7-gnu-hpc
+not-installed"libopenblas-pthreads_0_3_7-gnu-hpc-devel
+not-installed"libopenblas_0_3_7-gnu-hpc
+not-installed"libopenblas_0_3_7-gnu-hpc-devel
+not-installed"libopenblas_openmp-devel
+not-installed"libopenblas_openmp0
+not-installed"libopenblas_pthreads-devel
+installed"libopenblas_pthreads0
+not-installed"libopenblas_serial-devel
+not-installed"libopenblas_serial0
+not-installed"libopencascade7
+not-installed"libopencc2
+installed"libopenconnect5
+not-installed"libopencore-amr-devel
+installed"libopencore-amrnb0
+not-installed"libopencore-amrnb0-32bit
+not-installed"libopencore-amrnb0-32bit-debuginfo
+not-installed"libopencore-amrnb0-debuginfo
+installed"libopencore-amrwb0
+not-installed"libopencore-amrwb0-32bit
+not-installed"libopencore-amrwb0-32bit-debuginfo
+not-installed"libopencore-amrwb0-debuginfo
+not-installed"libopencsg1
+installed"libopencv3_4
+not-installed"libopencv4_1
+not-installed"libopendkim10
+not-installed"libopenh264-5
+not-installed"libopenh264-5-debuginfo
+not-installed"libopenhpi4
+installed"libopeniscsiusr0_2_0
+installed"libopenjp2-7
+not-installed"libopenjp2-7-32bit
+installed"libopenjpeg1
+not-installed"libopenjpeg1-32bit
+not-installed"libopenlibm2
+not-installed"libopenmpi1-gnu-hpc
+not-installed"libopenmpi2-gnu-hpc
+not-installed"libopenmpi3-gnu-hpc
+not-installed"libopenmpi_1_10_7-gnu-hpc
+not-installed"libopenmpi_2_1_6-gnu-hpc
+not-installed"libopenmpi_3_1_4-gnu-hpc
+not-installed"libopenmpt-devel
+installed"libopenmpt0
+not-installed"libopenmpt0-32bit
+not-installed"libopenmpt_modplug1
+not-installed"libopenmpt_modplug1-32bit
+not-installed"libopenobex2
+not-installed"libopenraw-devel
+not-installed"libopenraw1
+not-installed"libopenraw1-32bit
+not-installed"libopenscap25
+not-installed"libopenscap_sce25
+not-installed"libopenshot-audio-devel
+not-installed"libopenshot-audio6
+not-installed"libopenshot-devel
+not-installed"libopenshot17
+not-installed"libopenslide-devel
+not-installed"libopenslide0
+not-installed"libopensm9
+not-installed"libopensm9-32bit
+not-installed"libopenspecfun1
+not-installed"libopenssl-1_0_0-devel
+not-installed"libopenssl-1_0_0-devel-32bit
+installed"libopenssl-1_1-devel
+not-installed"libopenssl-1_1-devel-32bit
+installed"libopenssl-devel
+installed"libopenssl1_0_0
+not-installed"libopenssl1_0_0-32bit
+not-installed"libopenssl1_0_0-hmac
+not-installed"libopenssl1_0_0-hmac-32bit
+installed"libopenssl1_0_0-steam
+installed"libopenssl1_0_0-steam-32bit
+installed"libopenssl1_1
+installed"libopenssl1_1-32bit
+not-installed"libopenssl_cbs_lib0
+not-installed"libopensync
+not-installed"libopensync-devel
+not-installed"libopensync-tools
+not-installed"libopentracing-cpp1
+not-installed"libopenvswitch-2_11-0
+not-installed"liboping-devel
+not-installed"liboping-devel-32bit
+not-installed"liboping0
+not-installed"liboping0-32bit
+installed"libopts25
+not-installed"libopus-devel
+installed"libopus0
+not-installed"libopus0-32bit
+not-installed"libopusenc-devel
+not-installed"libopusenc0
+not-installed"libopusfile0
+installed"liborc-0_4-0
+installed"liborc-0_4-0-32bit
+not-installed"liborcania2_0
+installed"liborcus-0_15-0
+not-installed"liborcus-devel
+not-installed"liborcus-tools
+not-installed"liborigin-devel
+not-installed"liborigin-doc
+not-installed"liborigin-tools
+not-installed"liborigin3
+not-installed"libortp13
+not-installed"libortp13-32bit
+installed"libosinfo
+installed"libosinfo-1_0-0
+not-installed"libosinfo-devel
+installed"libosinfo-lang
+not-installed"libosip2
+not-installed"libosip2-devel
+not-installed"liboslcomp1_9
+not-installed"liboslexec1_9
+not-installed"liboslnoise1_9
+not-installed"liboslquery1_9
+not-installed"libosmcomp5
+not-installed"libosmcomp5-32bit
+not-installed"libosmgpsmap-1_0-1
+not-installed"libosmgpsmap-devel
+not-installed"libosmo-dsp-devel
+not-installed"libosmo-dsp-doc
+not-installed"libosmo-fl2k0
+not-installed"libosmo-gsup-client-devel
+not-installed"libosmo-gsup-client0
+not-installed"libosmo-mgcp-client-devel
+not-installed"libosmo-mgcp-client5
+not-installed"libosmo-mgcp-devel
+not-installed"libosmo-mtp-1_1_0
+not-installed"libosmo-mtp-devel
+not-installed"libosmo-ranap-devel
+not-installed"libosmo-ranap2
+not-installed"libosmo-sccp-1_1_0
+not-installed"libosmo-sccp-devel
+not-installed"libosmo-sigtran-devel
+not-installed"libosmo-sigtran3
+not-installed"libosmo-xua-1_1_0
+not-installed"libosmo-xua-devel
+not-installed"libosmoabis-devel
+not-installed"libosmoabis6
+not-installed"libosmocodec-devel
+not-installed"libosmocodec0
+not-installed"libosmocoding-devel
+not-installed"libosmocoding0
+not-installed"libosmocore-devel
+not-installed"libosmocore-tools
+not-installed"libosmocore12
+not-installed"libosmoctrl-devel
+not-installed"libosmoctrl0
+not-installed"libosmodsp0
+not-installed"libosmogb-devel
+not-installed"libosmogb9
+not-installed"libosmogsm-devel
+not-installed"libosmogsm13
+not-installed"libosmonetif-devel
+not-installed"libosmonetif8
+not-installed"libosmosdr0
+not-installed"libosmosim-devel
+not-installed"libosmosim0
+not-installed"libosmotrau-devel
+not-installed"libosmotrau2
+not-installed"libosmovty-devel
+not-installed"libosmovty4
+not-installed"libosmvendor5
+not-installed"libosmvendor5-32bit
+not-installed"libospf0
+not-installed"libospfapiclient0
+not-installed"libossp-uuid++16
+not-installed"libossp-uuid16
+not-installed"libossp-uuid_dce16
+installed"libostree
+installed"libostree-1-1
+not-installed"libostree-devel
+not-installed"libostree-grub2
+not-installed"libotf
+not-installed"libotf-devel
+not-installed"libotf-devel-32bit
+not-installed"libotf0
+not-installed"libotf0-32bit
+not-installed"libotr-devel
+not-installed"libotr-tools
+installed"libotr5
+not-installed"libout123-0
+not-installed"libout123-0-32bit
+not-installed"libovf-glib-devel
+not-installed"libowncloudsync-devel
+not-installed"libowncloudsync0
+not-installed"liboyranos-alpha-devel
+not-installed"liboyranos-devel
+not-installed"liboyranos0
+not-installed"liboyranos0-cups
+not-installed"liboyranos0-lraw
+not-installed"liboyranos0-monitor
+not-installed"liboyranos0-sane
+not-installed"libp11-3
+not-installed"libp11-3-32bit
+not-installed"libp11-devel
+installed"libp11-kit0
+installed"libp11-kit0-32bit
+not-installed"libp8-platform2
+not-installed"libpacemaker-devel
+not-installed"libpacemaker3
+installed"libpackagekit-glib2-18
+not-installed"libpackagekit-glib2-18-32bit
+not-installed"libpackagekit-glib2-devel
+not-installed"libpackagekit-glib2-devel-32bit
+installed"libpackagekitqt5-1
+installed"libpagemaker-0_0-0
+not-installed"libpagemaker-devel
+not-installed"libpagemaker-devel-doc
+not-installed"libpagemaker-tools
+not-installed"libpainter0
+not-installed"libpamtest-devel
+not-installed"libpamtest-devel-doc
+not-installed"libpamtest0
+installed"libpango-1_0-0
+installed"libpango-1_0-0-32bit
+installed"libpangomm-1_4-1
+not-installed"libpangomm-1_4-1-32bit
+not-installed"libpangomm-2_44-1
+not-installed"libpangomm-2_44-1-32bit
+not-installed"libpangox-1_0-0
+not-installed"libpangox-1_0-0-32bit
+not-installed"libpano-devel
+not-installed"libpano-utils
+installed"libpano13-3
+not-installed"libpaper-devel
+not-installed"libpaper-utils
+not-installed"libpaper1
+not-installed"libpapi
+not-installed"libpapi-32bit
+not-installed"libpapi_5_7_0-hpc
+not-installed"libparanoia1_0
+not-installed"libpari-gmp-tls6
+not-installed"libparlatype-devel
+not-installed"libparlatype1
+not-installed"libparpack2-openmpi
+not-installed"libparpack2-openmpi-32bit
+not-installed"libparserutils-devel
+not-installed"libparserutils-doc
+not-installed"libparserutils0
+installed"libparted0
+not-installed"libparted0-32bit
+not-installed"libpasswdqc0
+not-installed"libpasswdqc0-32bit
+not-installed"libpath_utils-devel
+not-installed"libpath_utils-devel-32bit
+not-installed"libpath_utils1
+not-installed"libpath_utils1-32bit
+not-installed"libpcap-devel
+not-installed"libpcap-devel-32bit
+not-installed"libpcap-devel-static
+installed"libpcap1
+installed"libpcap1-32bit
+installed"libpcaudio0
+not-installed"libpcd-devel
+not-installed"libpcd2
+installed"libpci3
+not-installed"libpci3-32bit
+not-installed"libpciaccess-devel
+installed"libpciaccess0
+installed"libpciaccess0-32bit
+not-installed"libpcp-devel
+not-installed"libpcp3
+not-installed"libpcp_gui2
+not-installed"libpcp_import1
+not-installed"libpcp_mmv1
+not-installed"libpcp_trace2
+not-installed"libpcp_web1
+installed"libpcre1
+installed"libpcre1-32bit
+not-installed"libpcre16-0
+not-installed"libpcre16-0-32bit
+installed"libpcre2-16-0
+not-installed"libpcre2-16-0-32bit
+not-installed"libpcre2-32-0
+not-installed"libpcre2-32-0-32bit
+installed"libpcre2-8-0
+not-installed"libpcre2-8-0-32bit
+not-installed"libpcre2-posix2
+not-installed"libpcre2-posix2-32bit
+not-installed"libpcrecpp0
+not-installed"libpcrecpp0-32bit
+not-installed"libpcreposix0
+not-installed"libpcreposix0-32bit
+installed"libpcsclite1
+not-installed"libpcsclite1-32bit
+not-installed"libpcscspy0
+not-installed"libpcscspy0-32bit
+not-installed"libpeas-1_0-0
+not-installed"libpeas-demo
+not-installed"libpeas-devel
+not-installed"libpeas-gtk-1_0-0
+not-installed"libpeas-lang
+not-installed"libpeas-loader-python
+not-installed"libpeas-loader-python3
+not-installed"libpeasd-3-0
+not-installed"libpegclient1
+not-installed"libpegcommon1
+not-installed"libpegexportserver1
+not-installed"libpeglistener1
+not-installed"libperseus-sdr-devel
+not-installed"libperseus-sdr-udev
+not-installed"libperseus-sdr0
+not-installed"libpetsc-gnu-mpich-hpc
+not-installed"libpetsc-gnu-mvapich2-hpc
+not-installed"libpetsc-gnu-openmpi1-hpc
+not-installed"libpetsc-gnu-openmpi2-hpc
+not-installed"libpetsc-gnu-openmpi3-hpc
+not-installed"libpetsc3
+not-installed"libpetsc3-openmpi
+not-installed"libpetsc_3_11_3-gnu-mpich-hpc
+not-installed"libpetsc_3_11_3-gnu-mvapich2-hpc
+not-installed"libpetsc_3_11_3-gnu-openmpi1-hpc
+not-installed"libpetsc_3_11_3-gnu-openmpi2-hpc
+not-installed"libpetsc_3_11_3-gnu-openmpi3-hpc
+not-installed"libpff-devel
+not-installed"libpff-tools
+not-installed"libpff1
+not-installed"libpfm-devel
+not-installed"libpfm-devel-static
+not-installed"libpfm4
+not-installed"libpfm4-32bit
+not-installed"libpfs2
+not-installed"libpgeasy-devel
+not-installed"libpgeasy3
+not-installed"libpgf-devel
+not-installed"libpgf7
+installed"libpgm-5_2-0
+not-installed"libpgm-5_2-0-32bit
+not-installed"libphobos2-0_87
+not-installed"libphobos2-ldc86
+not-installed"libphodav-2_0-0
+not-installed"libphonenumber-devel
+not-installed"libphonenumber8
+installed"libphonon4
+not-installed"libphonon4-32bit
+installed"libphonon4qt5
+not-installed"libphonon4qt5-32bit
+not-installed"libphysfs-devel
+not-installed"libphysfs1
+not-installed"libpinyin-data
+not-installed"libpinyin-devel
+not-installed"libpinyin-tools
+not-installed"libpinyin13
+not-installed"libpinyin13-32bit
+not-installed"libpipeline-devel
+installed"libpipeline1
+installed"libpipewire-0_2-1
+not-installed"libpisock-devel
+not-installed"libpisock9
+not-installed"libpisync-devel
+not-installed"libpisync1
+installed"libpixman-1-0
+installed"libpixman-1-0-32bit
+not-installed"libpixman-1-0-devel
+installed"libpkcs11-helper1
+not-installed"libpkcs11-helper1-32bit
+not-installed"libpkgconf-devel
+installed"libpkgconf3
+not-installed"libplacebo-devel
+installed"libplacebo18
+not-installed"libplank1
+not-installed"libplayerctl2
+not-installed"libplib0
+not-installed"libplist++-devel
+not-installed"libplist++3
+not-installed"libplist++3-32bit
+not-installed"libplist-devel
+installed"libplist3
+not-installed"libplist3-32bit
+not-installed"libplot2
+not-installed"libplotter2
+not-installed"libplplot17
+not-installed"libplplotada4
+not-installed"libplplotcxx15
+not-installed"libplplotfortran0
+not-installed"libplplotqt2
+not-installed"libplplotwxwidgets1
+installed"libply-boot-client4
+installed"libply-splash-core4
+installed"libply-splash-graphics4
+installed"libply4
+not-installed"libpmem-devel
+installed"libpmem1
+not-installed"libpmemblk-devel
+not-installed"libpmemblk1
+not-installed"libpmemlog-devel
+not-installed"libpmemlog1
+not-installed"libpmemobj-cpp-devel
+not-installed"libpmemobj-cpp-devel-doc
+not-installed"libpmemobj-devel
+not-installed"libpmemobj1
+not-installed"libpmempool-devel
+not-installed"libpmempool1
+not-installed"libpmi0
+not-installed"libpnetcdf1-openmpi
+not-installed"libpng12-0
+installed"libpng12-0-32bit
+not-installed"libpng12-compat-devel
+not-installed"libpng12-compat-devel-32bit
+not-installed"libpng12-devel
+not-installed"libpng12-devel-32bit
+installed"libpng16-16
+installed"libpng16-16-32bit
+not-installed"libpng16-compat-devel
+not-installed"libpng16-compat-devel-32bit
+not-installed"libpng16-devel
+not-installed"libpng16-devel-32bit
+not-installed"libpng16-tools
+not-installed"libpnglite0
+not-installed"libpocketsphinx1
+not-installed"libpocl2
+not-installed"libpodofo-devel
+not-installed"libpodofo0_9_6
+installed"libpolkit-qt-1-1
+not-installed"libpolkit-qt-1-1-32bit
+not-installed"libpolkit-qt-1-devel
+installed"libpolkit-qt5-1-1
+not-installed"libpolkit-qt5-1-1-32bit
+not-installed"libpolkit-qt5-1-devel
+not-installed"libpolkit-qt5-1-devel-32bit
+installed"libpolkit0
+not-installed"libpolkit0-32bit
+installed"libpoppler-cpp0
+not-installed"libpoppler-cpp0-32bit
+not-installed"libpoppler-devel
+not-installed"libpoppler-glib-devel
+not-installed"libpoppler-glib8
+not-installed"libpoppler-glib8-32bit
+installed"libpoppler-qt5-1
+not-installed"libpoppler-qt5-1-32bit
+not-installed"libpoppler-qt5-devel
+installed"libpoppler89
+not-installed"libpoppler89-32bit
+installed"libpopt0
+installed"libpopt0-32bit
+installed"libportaudio2
+not-installed"libportaudio2-32bit
+not-installed"libportaudiocpp0
+not-installed"libportmidi0
+installed"libpostproc53
+not-installed"libpostproc53-32bit
+not-installed"libpostproc53-32bit-debuginfo
+not-installed"libpostproc53-debuginfo
+not-installed"libpostproc54
+not-installed"libpostproc54-32bit
+not-installed"libpostproc54-32bit-debuginfo
+not-installed"libpostproc54-debuginfo
+installed"libpostproc55
+not-installed"libpostproc55-32bit
+not-installed"libpostproc55-32bit-debuginfo
+not-installed"libpostproc55-debuginfo
+not-installed"libpotrace0
+not-installed"libpowerman0
+installed"libpq5
+not-installed"libpq5-32bit
+not-installed"libpqos-devel
+not-installed"libpqos3
+not-installed"libpqxx-5_0
+not-installed"libpqxx-devel
+not-installed"libpqxx-doc
+not-installed"libprelude-devel
+not-installed"libprelude-devel-bindings
+not-installed"libprelude-doc
+not-installed"libprelude28
+not-installed"libpreludecpp8
+not-installed"libpreludedb-devel
+not-installed"libpreludedb-devel-bindings
+not-installed"libpreludedb-doc
+not-installed"libpreludedb-mysql
+not-installed"libpreludedb-pgsql
+not-installed"libpreludedb-plugins
+not-installed"libpreludedb-sqlite
+not-installed"libpreludedb7
+not-installed"libpreludedbcpp2
+not-installed"libpresage-devel
+not-installed"libpresage-doc
+not-installed"libpresage1
+not-installed"libprimesieve-devel
+not-installed"libprimesieve9
+not-installed"libprison-devel
+not-installed"libprison0
+not-installed"libprison0-32bit
+installed"libprocps7
+not-installed"libprofiler0
+not-installed"libproj15
+installed"libprojectM3
+not-installed"libpromises-devel
+not-installed"libpromises3
+not-installed"libprotobuf-c-devel
+installed"libprotobuf-c1
+installed"libprotobuf-lite19
+not-installed"libprotobuf-lite20
+not-installed"libprotobuf-lite20-32bit
+not-installed"libprotobuf-mutator-devel
+not-installed"libprotobuf-mutator0
+not-installed"libprotobuf-nanopb0
+not-installed"libprotobuf20
+not-installed"libprotobuf20-32bit
+not-installed"libprotoc20
+not-installed"libprotoc20-32bit
+not-installed"libproxy-devel
+not-installed"libproxy-sharp
+not-installed"libproxy-tools
+installed"libproxy1
+not-installed"libproxy1-32bit
+not-installed"libproxy1-config-gnome3
+not-installed"libproxy1-config-gnome3-32bit
+installed"libproxy1-config-kde
+not-installed"libproxy1-config-kde-32bit
+installed"libproxy1-networkmanager
+not-installed"libproxy1-networkmanager-32bit
+installed"libproxy1-pacrunner-webkit
+not-installed"libproxy1-pacrunner-webkit-32bit
+not-installed"libpsiconv6
+not-installed"libpskc-devel
+installed"libpskc0
+not-installed"libpsl-devel
+installed"libpsl5
+installed"libpsl5-32bit
+not-installed"libpsm2-2
+not-installed"libpsm2-compat
+not-installed"libpsm2-devel
+not-installed"libpsm_infinipath1
+not-installed"libpsm_infinipath1-32bit
+not-installed"libpspell15
+not-installed"libpspell15-32bit
+not-installed"libpst
+not-installed"libpst-devel
+not-installed"libpst4
+not-installed"libpt-devel
+not-installed"libpt2_10_11
+not-installed"libpt2_10_11-plugins-avc
+not-installed"libpt2_10_11-plugins-pulse
+not-installed"libptexenc1
+not-installed"libptscotch-gnu-mpich-hpc
+not-installed"libptscotch-gnu-mvapich2-hpc
+not-installed"libptscotch-gnu-openmpi1-hpc
+not-installed"libptscotch-gnu-openmpi2-hpc
+not-installed"libptscotch-gnu-openmpi3-hpc
+not-installed"libptscotch0-mpich
+not-installed"libptscotch0-mvapich2
+not-installed"libptscotch0-openmpi
+not-installed"libptscotch0-openmpi2
+not-installed"libptscotch_6_0_6-gnu-mpich-hpc
+not-installed"libptscotch_6_0_6-gnu-mvapich2-hpc
+not-installed"libptscotch_6_0_6-gnu-openmpi1-hpc
+not-installed"libptscotch_6_0_6-gnu-openmpi2-hpc
+not-installed"libptscotch_6_0_6-gnu-openmpi3-hpc
+not-installed"libpugixml1
+not-installed"libpulse-devel
+not-installed"libpulse-devel-32bit
+installed"libpulse-mainloop-glib0
+not-installed"libpulse-mainloop-glib0-32bit
+installed"libpulse0
+installed"libpulse0-32bit
+not-installed"libpurple
+not-installed"libpurple-branding-openSUSE
+not-installed"libpurple-branding-upstream
+not-installed"libpurple-devel
+not-installed"libpurple-lang
+not-installed"libpurple-plugin-bot-sentry
+not-installed"libpurple-plugin-bot-sentry-lang
+not-installed"libpurple-plugin-carbons
+not-installed"libpurple-plugin-facebook
+not-installed"libpurple-plugin-gnome-keyring
+not-installed"libpurple-plugin-import-empathy
+not-installed"libpurple-plugin-libsteam
+not-installed"libpurple-plugin-lurch
+not-installed"libpurple-plugin-mattermost
+not-installed"libpurple-plugin-mrim
+not-installed"libpurple-plugin-mrim-lang
+not-installed"libpurple-plugin-pack
+not-installed"libpurple-plugin-pack-extras
+not-installed"libpurple-plugin-pack-lang
+not-installed"libpurple-plugin-prpltwtr
+not-installed"libpurple-plugin-prpltwtr-lang
+not-installed"libpurple-plugin-rocketchat
+not-installed"libpurple-plugin-sametime
+not-installed"libpurple-plugin-sipe
+not-installed"libpurple-plugin-sipe-lang
+not-installed"libpurple-plugin-skypeweb
+not-installed"libpurple-plugin-telegram
+not-installed"libpurple-plugin-telegram-lang
+not-installed"libpurple-tcl
+not-installed"libpw3270-5_1
+not-installed"libpwquality-devel
+installed"libpwquality-lang
+not-installed"libpwquality-tools
+installed"libpwquality1
+not-installed"libpythia8
+not-installed"libpythia8lhapdf6
+installed"libpython2_7-1_0
+not-installed"libpython2_7-1_0-32bit
+installed"libpython3_7m1_0
+not-installed"libpython3_7m1_0-32bit
+not-installed"libpyzy-1_0-0
+not-installed"libqalculate-devel
+installed"libqalculate21
+not-installed"libqb-devel
+not-installed"libqb-devel-32bit
+not-installed"libqb-tests
+not-installed"libqb-tools
+not-installed"libqb20
+not-installed"libqb20-32bit
+installed"libqca-qt5
+not-installed"libqca-qt5-32bit
+not-installed"libqca-qt5-devel
+not-installed"libqca-qt5-devel-32bit
+installed"libqca-qt5-plugins
+not-installed"libqca-qt5-plugins-32bit
+not-installed"libqca2
+not-installed"libqca2-32bit
+not-installed"libqca2-devel
+not-installed"libqca2-plugin-cyrus-sasl
+not-installed"libqca2-plugin-cyrus-sasl-32bit
+not-installed"libqca2-plugin-gcrypt
+not-installed"libqca2-plugin-nss
+not-installed"libqca2-plugin-nss-32bit
+not-installed"libqca2-plugin-pkcs11
+not-installed"libqcow-devel
+not-installed"libqcow-tools
+not-installed"libqcow1
+not-installed"libqcustomplot2
+not-installed"libqd0
+not-installed"libqgpgme-devel
+installed"libqgpgme7
+not-installed"libqgpgme7-32bit
+not-installed"libqhexedit4
+not-installed"libqhull7-7_2_0
+not-installed"libqimageblitz-devel
+not-installed"libqimageblitz4
+not-installed"libqimageblitz5-1
+not-installed"libqimageblitz5-devel
+not-installed"libqjack-devel
+not-installed"libqjack0
+not-installed"libqjson-devel
+not-installed"libqjson0
+not-installed"libqjson0-32bit
+not-installed"libqmatrixclient-devel
+not-installed"libqmi-devel
+installed"libqmi-glib5
+installed"libqmi-tools
+not-installed"libqmmp-devel
+not-installed"libqmmp-plugin-mplayer
+not-installed"libqmmp-plugin-mplayer-debuginfo
+not-installed"libqmmp-plugins
+not-installed"libqmmp-plugins-debuginfo
+not-installed"libqmmp1
+not-installed"libqmmp1-32bit
+not-installed"libqmmp1-32bit-debuginfo
+not-installed"libqmmp1-debuginfo
+not-installed"libqoauth2
+not-installed"libqobs-devel
+not-installed"libqobs1
+not-installed"libqore5
+installed"libqpdf21
+not-installed"libqpid-proton-cpp10
+not-installed"libqpid-proton10
+not-installed"libqqwing2
+installed"libqrencode4
+not-installed"libqrencode4-32bit
+not-installed"libqrupdate1
+not-installed"libqsastime0
+installed"libqscintilla2_qt5-15
+not-installed"libqscintilla_qt5-devel
+installed"libqt4
+not-installed"libqt4-32bit
+not-installed"libqt4-devel
+not-installed"libqt4-devel-32bit
+not-installed"libqt4-linguist
+not-installed"libqt4-private-headers-devel
+installed"libqt4-qt3support
+not-installed"libqt4-qt3support-32bit
+installed"libqt4-sql
+not-installed"libqt4-sql-32bit
+not-installed"libqt4-sql-postgresql
+not-installed"libqt4-sql-postgresql-32bit
+installed"libqt4-sql-sqlite
+not-installed"libqt4-sql-sqlite-32bit
+not-installed"libqt4-sql-unixODBC
+not-installed"libqt4-sql-unixODBC-32bit
+installed"libqt4-x11
+not-installed"libqt4-x11-32bit
+not-installed"libqt5-creator
+not-installed"libqt5-creator-plugin-devel
+not-installed"libqt5-linguist
+not-installed"libqt5-linguist-devel
+installed"libqt5-qdbus
+not-installed"libqt5-qt3d-devel
+not-installed"libqt5-qt3d-examples
+not-installed"libqt5-qt3d-imports
+not-installed"libqt5-qt3d-private-headers-devel
+not-installed"libqt5-qt3d-tools
+not-installed"libqt5-qtbase-common-devel
+not-installed"libqt5-qtbase-devel
+not-installed"libqt5-qtbase-examples
+not-installed"libqt5-qtbase-examples-32bit
+installed"libqt5-qtbase-platformtheme-gtk3
+not-installed"libqt5-qtbase-platformtheme-xdgdesktopportal
+not-installed"libqt5-qtbase-private-headers-devel
+not-installed"libqt5-qtcanvas3d
+not-installed"libqt5-qtcanvas3d-examples
+not-installed"libqt5-qtcharts-examples
+not-installed"libqt5-qtcharts-imports
+not-installed"libqt5-qtconnectivity-devel
+not-installed"libqt5-qtconnectivity-devel-32bit
+not-installed"libqt5-qtconnectivity-examples
+not-installed"libqt5-qtconnectivity-private-headers-devel
+installed"libqt5-qtconnectivity-tools
+not-installed"libqt5-qtdatavis3d-examples
+not-installed"libqt5-qtdatavis3d-imports
+not-installed"libqt5-qtdeclarative-devel
+not-installed"libqt5-qtdeclarative-devel-32bit
+not-installed"libqt5-qtdeclarative-examples
+not-installed"libqt5-qtdeclarative-private-headers-devel
+not-installed"libqt5-qtdeclarative-tools
+not-installed"libqt5-qtdoc
+not-installed"libqt5-qtdoc-devel
+not-installed"libqt5-qtdoc-html
+not-installed"libqt5-qtdoc-qch
+not-installed"libqt5-qtgamepad-devel
+not-installed"libqt5-qtgamepad-devel-32bit
+not-installed"libqt5-qtgamepad-examples
+not-installed"libqt5-qtgamepad-private-headers-devel
+installed"libqt5-qtgraphicaleffects
+installed"libqt5-qtimageformats
+not-installed"libqt5-qtimageformats-32bit
+not-installed"libqt5-qtimageformats-devel
+not-installed"libqt5-qtlocation-devel
+not-installed"libqt5-qtlocation-devel-32bit
+not-installed"libqt5-qtlocation-examples
+not-installed"libqt5-qtlocation-private-headers-devel
+not-installed"libqt5-qtlottie
+not-installed"libqt5-qtmultimedia-devel
+not-installed"libqt5-qtmultimedia-devel-32bit
+not-installed"libqt5-qtmultimedia-examples
+not-installed"libqt5-qtmultimedia-private-headers-devel
+not-installed"libqt5-qtnetworkauth-devel
+not-installed"libqt5-qtnetworkauth-devel-32bit
+not-installed"libqt5-qtnetworkauth-examples
+not-installed"libqt5-qtnetworkauth-private-headers-devel
+installed"libqt5-qtpaths
+installed"libqt5-qtquickcontrols
+not-installed"libqt5-qtquickcontrols-examples
+installed"libqt5-qtquickcontrols2
+not-installed"libqt5-qtquickcontrols2-examples
+not-installed"libqt5-qtquickcontrols2-private-headers-devel
+not-installed"libqt5-qtremoteobjects-devel
+not-installed"libqt5-qtremoteobjects-devel-32bit
+not-installed"libqt5-qtremoteobjects-examples
+not-installed"libqt5-qtremoteobjects-private-headers-devel
+not-installed"libqt5-qtremoteobjects-tools
+not-installed"libqt5-qtscript-devel
+not-installed"libqt5-qtscript-devel-32bit
+not-installed"libqt5-qtscript-examples
+not-installed"libqt5-qtscript-private-headers-devel
+not-installed"libqt5-qtscxml-devel
+not-installed"libqt5-qtscxml-devel-32bit
+not-installed"libqt5-qtscxml-examples
+not-installed"libqt5-qtscxml-private-headers-devel
+not-installed"libqt5-qtscxml-tools
+not-installed"libqt5-qtsensors-devel
+not-installed"libqt5-qtsensors-devel-32bit
+not-installed"libqt5-qtsensors-examples
+not-installed"libqt5-qtsensors-private-headers-devel
+not-installed"libqt5-qtserialbus
+not-installed"libqt5-qtserialbus-32bit
+not-installed"libqt5-qtserialbus-devel
+not-installed"libqt5-qtserialbus-devel-32bit
+not-installed"libqt5-qtserialbus-examples
+not-installed"libqt5-qtserialbus-private-headers-devel
+not-installed"libqt5-qtserialport-devel
+not-installed"libqt5-qtserialport-devel-32bit
+not-installed"libqt5-qtserialport-examples
+not-installed"libqt5-qtserialport-private-headers-devel
+not-installed"libqt5-qtspeech-devel
+not-installed"libqt5-qtspeech-devel-32bit
+not-installed"libqt5-qtspeech-examples
+not-installed"libqt5-qtspeech-plugin-speechd
+not-installed"libqt5-qtspeech-plugin-speechd-32bit
+not-installed"libqt5-qtstyleplugins
+not-installed"libqt5-qtstyleplugins-devel
+installed"libqt5-qtstyleplugins-platformtheme-gtk2
+not-installed"libqt5-qtsvg-devel
+not-installed"libqt5-qtsvg-devel-32bit
+not-installed"libqt5-qtsvg-examples
+not-installed"libqt5-qtsvg-private-headers-devel
+not-installed"libqt5-qttools
+not-installed"libqt5-qttools-32bit
+not-installed"libqt5-qttools-devel
+not-installed"libqt5-qttools-devel-32bit
+not-installed"libqt5-qttools-doc
+not-installed"libqt5-qttools-examples
+not-installed"libqt5-qttools-private-headers-devel
+installed"libqt5-qttranslations
+installed"libqt5-qtvirtualkeyboard
+not-installed"libqt5-qtvirtualkeyboard-devel
+not-installed"libqt5-qtvirtualkeyboard-examples
+installed"libqt5-qtvirtualkeyboard-hunspell
+not-installed"libqt5-qtvirtualkeyboard-private-headers-devel
+installed"libqt5-qtwayland
+not-installed"libqt5-qtwayland-32bit
+not-installed"libqt5-qtwayland-devel
+not-installed"libqt5-qtwayland-devel-32bit
+not-installed"libqt5-qtwayland-examples
+not-installed"libqt5-qtwayland-private-headers-devel
+not-installed"libqt5-qtwebchannel-devel
+not-installed"libqt5-qtwebchannel-devel-32bit
+not-installed"libqt5-qtwebchannel-examples
+not-installed"libqt5-qtwebchannel-private-headers-devel
+installed"libqt5-qtwebengine
+not-installed"libqt5-qtwebengine-32bit
+not-installed"libqt5-qtwebengine-devel
+not-installed"libqt5-qtwebengine-devel-32bit
+not-installed"libqt5-qtwebengine-examples
+not-installed"libqt5-qtwebengine-private-headers-devel
+not-installed"libqt5-qtwebsockets-devel
+not-installed"libqt5-qtwebsockets-devel-32bit
+not-installed"libqt5-qtwebsockets-examples
+not-installed"libqt5-qtwebsockets-private-headers-devel
+not-installed"libqt5-qtwebview-devel
+not-installed"libqt5-qtwebview-examples
+not-installed"libqt5-qtwebview-private-headers-devel
+not-installed"libqt5-qtx11extras-devel
+not-installed"libqt5-qtx11extras-devel-32bit
+not-installed"libqt5-qtxmlpatterns-devel
+not-installed"libqt5-qtxmlpatterns-devel-32bit
+not-installed"libqt5-qtxmlpatterns-examples
+installed"libqt5-qtxmlpatterns-imports
+not-installed"libqt5-qtxmlpatterns-imports-32bit
+not-installed"libqt5-qtxmlpatterns-private-headers-devel
+not-installed"libqt5keychain1
+not-installed"libqt5keychain1-32bit
+not-installed"libqt5keychain1-lang
+not-installed"libqt5xdg-devel
+not-installed"libqtcurve-cairo1
+not-installed"libqtcurve-cairo1-32bit
+not-installed"libqtcurve-utils2
+not-installed"libqtcurve-utils2-32bit
+not-installed"libqtermwidget5-0
+installed"libquadmath0
+not-installed"libquadmath0-32bit
+not-installed"libquadmath0-gcc7
+not-installed"libquadmath0-gcc7-32bit
+not-installed"libquadmath0-gcc8
+not-installed"libquadmath0-gcc8-32bit
+not-installed"libquagga_pb0
+installed"libquazip5-1
+not-installed"libquicktime
+not-installed"libquicktime
+not-installed"libquicktime-debuginfo
+not-installed"libquicktime-debugsource
+not-installed"libquicktime-devel
+not-installed"libquicktime-lang
+not-installed"libquicktime-orig-addon
+not-installed"libquicktime-orig-addon-debuginfo
+not-installed"libquicktime-tools
+not-installed"libquicktime-tools-debuginfo
+installed"libquicktime0
+not-installed"libquicktime0-32bit
+not-installed"libquicktime0-32bit-debuginfo
+not-installed"libquicktime0-debuginfo
+not-installed"libquo-devel
+not-installed"libquo6
+not-installed"libquorum5
+not-installed"libquorum5-32bit
+not-installed"libquvi-0_9-0_9_4
+not-installed"libquvi-devel
+not-installed"libquvi-scripts
+not-installed"libquvi-scripts-devel
+not-installed"libquvi-scripts-nsfw
+not-installed"libqwt5-qt5-5
+not-installed"libqwt6
+not-installed"libqwtplot3d-qt5-0
+not-installed"libqxmledit0
+not-installed"libqxmledit0-32bit
+not-installed"libqxmpp-devel
+not-installed"libqxmpp-doc
+not-installed"libqxmpp0
+not-installed"libqxmpp0-32bit
+installed"libqxp-0_0-0
+not-installed"libqxp-devel
+not-installed"libqxp-doc
+not-installed"libqxp-tools
+not-installed"libqxtglobalshortcut0
+not-installed"libradcli4
+not-installed"librados-devel
+installed"librados2
+not-installed"libradospp-devel
+not-installed"libradosstriper-devel
+not-installed"libradosstriper1
+not-installed"libragel0
+not-installed"librapi2
+not-installed"librapi2
+not-installed"librapi2-debuginfo
+not-installed"librapi2-debugsource
+not-installed"librapi2-devel
+not-installed"libraptor-devel
+installed"libraptor2-0
+not-installed"libraptor2-0-32bit
+not-installed"libraqm-devel
+not-installed"libraqm-doc
+not-installed"libraqm0
+not-installed"librasqal-devel
+not-installed"librasqal-devel-doc
+installed"librasqal3
+not-installed"librasqal3-32bit
+not-installed"libratbag-devel
+not-installed"libratbag-tools
+not-installed"libraw-devel
+not-installed"libraw-devel-static
+not-installed"libraw-tools
+installed"libraw1394-11
+not-installed"libraw1394-11-32bit
+not-installed"libraw1394-devel
+not-installed"libraw1394-devel-32bit
+not-installed"libraw1394-tools
+installed"libraw19
+not-installed"librawstudio-2_1
+not-installed"librawstudio-devel
+not-installed"libraylib2
+not-installed"librbd-devel
+installed"librbd1
+not-installed"librbio2
+not-installed"librbl1
+not-installed"librcc-devel
+not-installed"librcc0
+not-installed"librcc0-32bit
+not-installed"librcd-devel
+not-installed"librcd0
+not-installed"librcd0-32bit
+installed"librdf0
+not-installed"librdf0-32bit
+not-installed"librdkafka-devel
+not-installed"librdkafka1
+not-installed"librdmacm-utils
+installed"librdmacm1
+not-installed"librdmacm1-32bit
+installed"libre2-0
+not-installed"libre2-0-32bit
+not-installed"libreadline-java
+not-installed"libreadline-java-32bit
+not-installed"libreadline-java-javadoc
+not-installed"libreadline5
+not-installed"libreadline5-32bit
+not-installed"libreadline6
+not-installed"libreadline6-32bit
+installed"libreadline8
+not-installed"libreadline8-32bit
+not-installed"librecad
+not-installed"librecad-parts
+not-installed"librecode0
+not-installed"libredland-devel
+not-installed"libredwg-devel
+not-installed"libredwg-tools
+not-installed"libredwg0
+not-installed"libref_array-devel
+not-installed"libref_array-devel-32bit
+not-installed"libref_array1
+not-installed"libref_array1-32bit
+not-installed"libregf-devel
+not-installed"libregf-tools
+not-installed"libregf1
+not-installed"libregina3
+not-installed"libreiser4-1_2-1
+not-installed"libreiser4-minimal-1_2-1
+not-installed"libreiserfs-0_3-0
+not-installed"libreiserfs-0_3-0-32bit
+not-installed"libreiserfs-devel
+not-installed"libreiserfs-devel-32bit
+not-installed"libreiserfs-progs
+not-installed"libreiserfscore-devel
+installed"libreiserfscore0
+not-installed"librelp-devel
+not-installed"librelp0
+installed"libreoffice
+installed"libreoffice-base
+installed"libreoffice-base-drivers-firebird
+not-installed"libreoffice-base-drivers-postgresql
+installed"libreoffice-branding-openSUSE
+not-installed"libreoffice-branding-upstream
+installed"libreoffice-calc
+not-installed"libreoffice-calc-extensions
+installed"libreoffice-draw
+installed"libreoffice-filters-optional
+not-installed"libreoffice-gdb-pretty-printers
+not-installed"libreoffice-glade
+not-installed"libreoffice-gnome
+not-installed"libreoffice-gtk2
+not-installed"libreoffice-gtk3
+installed"libreoffice-icon-themes
+installed"libreoffice-impress
+not-installed"libreoffice-l10n-af
+not-installed"libreoffice-l10n-am
+not-installed"libreoffice-l10n-ar
+not-installed"libreoffice-l10n-as
+not-installed"libreoffice-l10n-ast
+not-installed"libreoffice-l10n-be
+not-installed"libreoffice-l10n-bg
+not-installed"libreoffice-l10n-bn
+not-installed"libreoffice-l10n-bn_IN
+not-installed"libreoffice-l10n-bo
+not-installed"libreoffice-l10n-br
+not-installed"libreoffice-l10n-brx
+not-installed"libreoffice-l10n-bs
+not-installed"libreoffice-l10n-ca
+not-installed"libreoffice-l10n-ca_valencia
+not-installed"libreoffice-l10n-cs
+not-installed"libreoffice-l10n-cy
+not-installed"libreoffice-l10n-da
+not-installed"libreoffice-l10n-de
+not-installed"libreoffice-l10n-dgo
+not-installed"libreoffice-l10n-dsb
+not-installed"libreoffice-l10n-dz
+not-installed"libreoffice-l10n-el
+installed"libreoffice-l10n-en
+installed"libreoffice-l10n-en_GB
+not-installed"libreoffice-l10n-en_ZA
+not-installed"libreoffice-l10n-eo
+not-installed"libreoffice-l10n-es
+not-installed"libreoffice-l10n-et
+not-installed"libreoffice-l10n-eu
+not-installed"libreoffice-l10n-fa
+not-installed"libreoffice-l10n-fi
+not-installed"libreoffice-l10n-fr
+not-installed"libreoffice-l10n-fy
+not-installed"libreoffice-l10n-ga
+not-installed"libreoffice-l10n-gd
+not-installed"libreoffice-l10n-gl
+not-installed"libreoffice-l10n-gu
+not-installed"libreoffice-l10n-gug
+not-installed"libreoffice-l10n-he
+not-installed"libreoffice-l10n-hi
+not-installed"libreoffice-l10n-hr
+not-installed"libreoffice-l10n-hsb
+not-installed"libreoffice-l10n-hu
+not-installed"libreoffice-l10n-id
+not-installed"libreoffice-l10n-is
+not-installed"libreoffice-l10n-it
+not-installed"libreoffice-l10n-ja
+not-installed"libreoffice-l10n-ka
+not-installed"libreoffice-l10n-kab
+not-installed"libreoffice-l10n-kk
+not-installed"libreoffice-l10n-km
+not-installed"libreoffice-l10n-kmr_Latn
+not-installed"libreoffice-l10n-kn
+not-installed"libreoffice-l10n-ko
+not-installed"libreoffice-l10n-kok
+not-installed"libreoffice-l10n-ks
+not-installed"libreoffice-l10n-lb
+not-installed"libreoffice-l10n-lo
+not-installed"libreoffice-l10n-lt
+not-installed"libreoffice-l10n-lv
+not-installed"libreoffice-l10n-mai
+not-installed"libreoffice-l10n-mk
+not-installed"libreoffice-l10n-ml
+not-installed"libreoffice-l10n-mn
+not-installed"libreoffice-l10n-mni
+not-installed"libreoffice-l10n-mr
+not-installed"libreoffice-l10n-my
+not-installed"libreoffice-l10n-nb
+not-installed"libreoffice-l10n-ne
+not-installed"libreoffice-l10n-nl
+not-installed"libreoffice-l10n-nn
+not-installed"libreoffice-l10n-nr
+not-installed"libreoffice-l10n-nso
+not-installed"libreoffice-l10n-oc
+not-installed"libreoffice-l10n-om
+not-installed"libreoffice-l10n-or
+not-installed"libreoffice-l10n-pa
+not-installed"libreoffice-l10n-pl
+not-installed"libreoffice-l10n-pt_BR
+not-installed"libreoffice-l10n-pt_PT
+not-installed"libreoffice-l10n-ro
+not-installed"libreoffice-l10n-ru
+not-installed"libreoffice-l10n-rw
+not-installed"libreoffice-l10n-sa_IN
+not-installed"libreoffice-l10n-sat
+not-installed"libreoffice-l10n-sd
+not-installed"libreoffice-l10n-si
+not-installed"libreoffice-l10n-sid
+not-installed"libreoffice-l10n-sk
+not-installed"libreoffice-l10n-sl
+not-installed"libreoffice-l10n-sq
+not-installed"libreoffice-l10n-sr
+not-installed"libreoffice-l10n-ss
+not-installed"libreoffice-l10n-st
+not-installed"libreoffice-l10n-sv
+not-installed"libreoffice-l10n-sw_TZ
+not-installed"libreoffice-l10n-ta
+not-installed"libreoffice-l10n-te
+not-installed"libreoffice-l10n-tg
+not-installed"libreoffice-l10n-th
+not-installed"libreoffice-l10n-tn
+not-installed"libreoffice-l10n-tr
+not-installed"libreoffice-l10n-ts
+not-installed"libreoffice-l10n-tt
+not-installed"libreoffice-l10n-ug
+not-installed"libreoffice-l10n-uk
+not-installed"libreoffice-l10n-uz
+not-installed"libreoffice-l10n-ve
+not-installed"libreoffice-l10n-vec
+not-installed"libreoffice-l10n-vi
+not-installed"libreoffice-l10n-xh
+not-installed"libreoffice-l10n-zh_CN
+not-installed"libreoffice-l10n-zh_TW
+not-installed"libreoffice-l10n-zu
+not-installed"libreoffice-librelogo
+installed"libreoffice-mailmerge
+installed"libreoffice-math
+not-installed"libreoffice-officebean
+installed"libreoffice-pyuno
+installed"libreoffice-qt5
+not-installed"libreoffice-sdk
+not-installed"libreoffice-sdk-doc
+installed"libreoffice-share-linker
+not-installed"libreoffice-voikko
+installed"libreoffice-writer
+not-installed"libreoffice-writer-extensions
+not-installed"libreofficekit
+not-installed"libreofficekit-devel
+not-installed"librep
+not-installed"librep-devel
+not-installed"librep16
+not-installed"librepair-1_2-1
+not-installed"librepilot
+not-installed"libreplaygain-devel
+not-installed"libreplaygain1
+not-installed"librepo-devel
+not-installed"librepo0
+installed"librepository
+not-installed"librepository-javadoc
+not-installed"librepute1
+not-installed"libressl
+not-installed"libressl-devel
+not-installed"libressl-devel-32bit
+not-installed"libressl-devel-doc
+installed"librest-0_7-0
+installed"librest-0_7-0-32bit
+not-installed"librest-devel
+not-installed"libretro-bsnes
+not-installed"libretro-gambatte
+not-installed"libretro-gtk-0_14-0
+not-installed"libretro-pcsx_rearmed
+installed"librevenge-0_0-0
+not-installed"librevenge-devel
+not-installed"librevenge-doc
+not-installed"librevenge-generators-0_0-0
+installed"librevenge-stream-0_0-0
+not-installed"librfxencode0
+not-installed"librgw-devel
+not-installed"librgw2
+not-installed"librhash0
+not-installed"librime-devel
+not-installed"librime1
+not-installed"librime1-32bit
+not-installed"librk0
+not-installed"librlog-devel
+not-installed"librlog5
+not-installed"librlog5-doc
+not-installed"librmt-devel-doc
+installed"librmt1_0
+not-installed"libroar2
+not-installed"libroar2-debuginfo
+not-installed"librocsgraphtheory0
+not-installed"librpmem-devel
+not-installed"librpmem1
+not-installed"librrd8
+not-installed"librsb-devel
+not-installed"librsb0
+installed"librscg1_0
+not-installed"librsound-devel
+not-installed"librsound-devel-static
+not-installed"librsound3
+not-installed"librsound3-32bit
+not-installed"librsound3-32bit-debuginfo
+not-installed"librsound3-debuginfo
+installed"librsvg-2-2
+not-installed"librsvg-2-2-32bit
+not-installed"librsvg-devel
+not-installed"librsync-devel
+not-installed"librsync2
+not-installed"librtaudio6
+not-installed"librtlsdr0
+not-installed"librtmidi5
+not-installed"librtmp-devel
+installed"librtmp1
+not-installed"librtmp1-32bit
+not-installed"librtmp1-32bit-debuginfo
+not-installed"librtmp1-debuginfo
+not-installed"librttr_core0_9_6
+not-installed"librubberband-devel
+installed"librubberband2
+not-installed"librubberband2-32bit
+installed"libruby2_6-2_6
+not-installed"librvngabw-0_0-0
+not-installed"librvngabw-devel
+not-installed"librvngabw-devel-doc
+not-installed"librygel-core-2_6-2
+not-installed"librygel-db-2_6-2
+not-installed"librygel-renderer-2_6-2
+not-installed"librygel-renderer-gst-2_6-2
+not-installed"librygel-ruih-2_0-1
+not-installed"librygel-server-2_6-2
+not-installed"libs3-4
+not-installed"libs3-devel
+not-installed"libs3-tools
+not-installed"libsam4
+not-installed"libsam4-32bit
+not-installed"libsamba-credentials-devel
+installed"libsamba-credentials0
+installed"libsamba-credentials0-32bit
+not-installed"libsamba-errors-devel
+installed"libsamba-errors0
+installed"libsamba-errors0-32bit
+not-installed"libsamba-hostconfig-devel
+installed"libsamba-hostconfig0
+installed"libsamba-hostconfig0-32bit
+not-installed"libsamba-passdb-devel
+installed"libsamba-passdb0
+installed"libsamba-passdb0-32bit
+not-installed"libsamba-policy-devel
+not-installed"libsamba-policy-python3-devel
+installed"libsamba-policy0-python3
+not-installed"libsamba-policy0-python3-32bit
+not-installed"libsamba-util-devel
+installed"libsamba-util0
+installed"libsamba-util0-32bit
+not-installed"libsamdb-devel
+installed"libsamdb0
+installed"libsamdb0-32bit
+not-installed"libsaml-devel
+not-installed"libsaml10
+not-installed"libsamplerate-devel
+not-installed"libsamplerate-progs
+installed"libsamplerate0
+not-installed"libsamplerate0-32bit
+not-installed"libsanlock1
+installed"libsasl2-3
+installed"libsasl2-3-32bit
+not-installed"libsass-3_6_1-1
+not-installed"libsass-devel
+installed"libsbc1
+not-installed"libsbc1-32bit
+not-installed"libsblim-cmpiutil1
+not-installed"libscalapack2-gnu-mpich-hpc
+not-installed"libscalapack2-gnu-mpich-hpc-devel
+not-installed"libscalapack2-gnu-mvapich2-hpc
+not-installed"libscalapack2-gnu-mvapich2-hpc-devel
+not-installed"libscalapack2-gnu-openmpi1-hpc
+not-installed"libscalapack2-gnu-openmpi1-hpc-devel
+not-installed"libscalapack2-gnu-openmpi2-hpc
+not-installed"libscalapack2-gnu-openmpi2-hpc-devel
+not-installed"libscalapack2-gnu-openmpi3-hpc
+not-installed"libscalapack2-gnu-openmpi3-hpc-devel
+not-installed"libscalapack2-mvapich2
+not-installed"libscalapack2-mvapich2-32bit
+not-installed"libscalapack2-mvapich2-devel
+not-installed"libscalapack2-mvapich2-devel-32bit
+not-installed"libscalapack2-mvapich2-devel-static
+not-installed"libscalapack2-openmpi
+not-installed"libscalapack2-openmpi-32bit
+not-installed"libscalapack2-openmpi-devel
+not-installed"libscalapack2-openmpi-devel-32bit
+not-installed"libscalapack2-openmpi-devel-static
+not-installed"libscalapack2-openmpi2
+not-installed"libscalapack2-openmpi2-32bit
+not-installed"libscalapack2-openmpi2-devel
+not-installed"libscalapack2-openmpi2-devel-32bit
+not-installed"libscalapack2-openmpi2-devel-static
+not-installed"libscalapack2-openmpi3
+not-installed"libscalapack2-openmpi3-32bit
+not-installed"libscalapack2-openmpi3-devel
+not-installed"libscalapack2-openmpi3-devel-32bit
+not-installed"libscalapack2-openmpi3-devel-static
+not-installed"libscalapack2_2_0_2-gnu-mpich-hpc
+not-installed"libscalapack2_2_0_2-gnu-mpich-hpc-devel
+not-installed"libscalapack2_2_0_2-gnu-mpich-hpc-devel-static
+not-installed"libscalapack2_2_0_2-gnu-mvapich2-hpc
+not-installed"libscalapack2_2_0_2-gnu-mvapich2-hpc-devel
+not-installed"libscalapack2_2_0_2-gnu-mvapich2-hpc-devel-static
+not-installed"libscalapack2_2_0_2-gnu-openmpi1-hpc
+not-installed"libscalapack2_2_0_2-gnu-openmpi1-hpc-devel
+not-installed"libscalapack2_2_0_2-gnu-openmpi1-hpc-devel-static
+not-installed"libscalapack2_2_0_2-gnu-openmpi2-hpc
+not-installed"libscalapack2_2_0_2-gnu-openmpi2-hpc-devel
+not-installed"libscalapack2_2_0_2-gnu-openmpi2-hpc-devel-static
+not-installed"libscalapack2_2_0_2-gnu-openmpi3-hpc
+not-installed"libscalapack2_2_0_2-gnu-openmpi3-hpc-devel
+not-installed"libscalapack2_2_0_2-gnu-openmpi3-hpc-devel-static
+not-installed"libscamperfile-devel
+not-installed"libscamperfile0
+not-installed"libscca-devel
+not-installed"libscca-tools
+not-installed"libscca1
+not-installed"libscg-devel
+installed"libscg1_0
+installed"libscgcmd1_0
+not-installed"libschily-devel
+not-installed"libschily-devel-doc
+installed"libschily2_0
+installed"libschroedinger-1_0-0
+not-installed"libschroedinger-1_0-0-32bit
+not-installed"libscilab6
+not-installed"libscintilla-devel
+not-installed"libscintilla3
+not-installed"libscotch0
+not-installed"libseccomp-devel
+not-installed"libseccomp-tools
+installed"libseccomp2
+not-installed"libseccomp2-32bit
+not-installed"libsecprog-devel
+not-installed"libsecprog0
+installed"libsecret-1-0
+not-installed"libsecret-1-0-32bit
+not-installed"libsecret-devel
+installed"libsecret-lang
+not-installed"libsecret-tools
+not-installed"libselinux-devel
+not-installed"libselinux-devel-static
+installed"libselinux1
+installed"libselinux1-32bit
+not-installed"libsemanage-devel
+not-installed"libsemanage-devel-static
+not-installed"libsemanage-migrate-store
+installed"libsemanage1
+not-installed"libsemanage1-32bit
+installed"libsensors4
+installed"libsensors4-32bit
+not-installed"libsensors4-devel
+not-installed"libsepol-devel
+not-installed"libsepol-devel-static
+not-installed"libsepol-utils
+installed"libsepol1
+not-installed"libsepol1-32bit
+installed"libserd-0-0
+not-installed"libserd-0-0-32bit
+installed"libserf-1-1
+not-installed"libserf-devel
+not-installed"libserialdv1
+installed"libserializer
+not-installed"libserializer-javadoc
+not-installed"libserialport-devel
+not-installed"libserialport0
+not-installed"libsfcUtil0
+not-installed"libsfml2-2_5
+not-installed"libsfml2-2_5-32bit
+not-installed"libsfst-hfst0
+not-installed"libsgutils-devel
+installed"libsgutils2-1_45-2
+not-installed"libsha1detectcoll-devel
+installed"libsha1detectcoll1
+installed"libshaderc_shared1
+not-installed"libshadowdive0_0_0-suse
+not-installed"libshadowsocks-libev2
+not-installed"libshairplay0
+not-installed"libshairplay0-debuginfo
+not-installed"libshibsp-lite8
+not-installed"libshibsp8
+not-installed"libshine-devel
+installed"libshine3
+not-installed"libshout-devel
+not-installed"libshout-idjc
+not-installed"libshout-idjc-debugsource
+not-installed"libshout-idjc-devel
+not-installed"libshout-idjc-devel-32bit
+not-installed"libshout-idjc3
+not-installed"libshout-idjc3-32bit
+not-installed"libshout-idjc3-32bit-debuginfo
+not-installed"libshout-idjc3-debuginfo
+installed"libshout3
+not-installed"libshout3-32bit
+not-installed"libshp-devel
+installed"libshp2
+not-installed"libsidplayfp-devel
+not-installed"libsidplayfp4
+not-installed"libsigc++2-devel
+not-installed"libsigc++3-devel
+installed"libsigc-2_0-0
+not-installed"libsigc-2_0-0-32bit
+not-installed"libsigc-3_0-0
+not-installed"libsigc-3_0-0-32bit
+not-installed"libsignal-protocol-c-devel
+not-installed"libsignal-protocol-c2
+not-installed"libsignon-glib-devel
+not-installed"libsignon-glib1
+installed"libsignon-qt5-1
+not-installed"libsignon-qt5-1-32bit
+not-installed"libsignon-qt5-devel
+not-installed"libsignon-qt5-docs
+not-installed"libsigrok-data
+not-installed"libsigrok-devel
+not-installed"libsigrok4
+not-installed"libsigrokcxx4
+not-installed"libsigrokdecode-devel
+not-installed"libsigrokdecode4
+not-installed"libsigscan-devel
+not-installed"libsigscan-tools
+not-installed"libsigscan1
+not-installed"libsigsegv-devel
+not-installed"libsigsegv-doc
+not-installed"libsigsegv2
+not-installed"libskk-devel
+not-installed"libskk0
+not-installed"libskk0-32bit
+installed"libslang2
+not-installed"libslang2-32bit
+installed"libslopy7_4
+installed"libslp1
+not-installed"libslurm33
+not-installed"libsmartcols-devel
+not-installed"libsmartcols-devel-static
+installed"libsmartcols1
+not-installed"libsmbclient-devel
+installed"libsmbclient0
+not-installed"libsmbclient0-32bit
+not-installed"libsmbconf-devel
+installed"libsmbconf0
+installed"libsmbconf0-32bit
+not-installed"libsmbios-devel
+not-installed"libsmbios-lang
+not-installed"libsmbios_c2
+not-installed"libsmbldap-devel
+installed"libsmbldap2
+installed"libsmbldap2-32bit
+not-installed"libsmdev-devel
+not-installed"libsmdev-tools
+not-installed"libsmdev1
+installed"libsmi
+not-installed"libsmi-devel
+installed"libsmi2
+not-installed"libsmpp34-1
+not-installed"libsmpp34-devel
+not-installed"libsmputils-devel
+installed"libsmputils1-1
+not-installed"libsmraw-devel
+not-installed"libsmraw-tools
+not-installed"libsmraw1
+not-installed"libsnapper-devel
+installed"libsnapper4
+installed"libsnappy1
+not-installed"libsnappy1-32bit
+not-installed"libsndfile-devel
+not-installed"libsndfile-progs
+installed"libsndfile1
+installed"libsndfile1-32bit
+not-installed"libsndio7_0
+installed"libsnmp30
+installed"libsnmp30-32bit
+not-installed"libsoc-common
+not-installed"libsoc-devel
+not-installed"libsoc2
+not-installed"libsocketcan-devel
+not-installed"libsocketcan2
+not-installed"libsocks0
+not-installed"libsocks0-32bit
+not-installed"libsodium-devel
+installed"libsodium23
+not-installed"libsodium23-32bit
+not-installed"libsofia-sip-ua-glib3
+not-installed"libsofia-sip-ua0
+installed"libsoftokn3
+installed"libsoftokn3-32bit
+not-installed"libsolarus-gui1
+not-installed"libsolarus1
+not-installed"libsolv-demo
+not-installed"libsolv-devel
+installed"libsolv-tools
+installed"libsord-0-0
+not-installed"libsord-0-0-32bit
+not-installed"libsoundio-devel
+not-installed"libsoundio1
+not-installed"libsoundio1-debuginfo
+installed"libsoup-2_4-1
+installed"libsoup-2_4-1-32bit
+not-installed"libsoup-devel
+not-installed"libsoup-devel-32bit
+installed"libsoup-lang
+not-installed"libsource-highlight-devel
+not-installed"libsource-highlight4
+not-installed"libsource-highlight4-32bit
+not-installed"libsox3
+not-installed"libsox3-debuginfo
+not-installed"libsoxr-lsr0
+not-installed"libsoxr-lsr0-32bit
+installed"libsoxr0
+not-installed"libsoxr0-32bit
+installed"libspandsp2
+not-installed"libspandsp2-32bit
+not-installed"libspatialindex4
+not-installed"libspatialite-devel
+not-installed"libspatialite7
+not-installed"libspdylay7
+not-installed"libspectre-devel
+not-installed"libspectre1
+not-installed"libspeechd-devel
+not-installed"libspeechd2
+not-installed"libspeechd2-32bit
+installed"libspeex1
+installed"libspeex1-32bit
+installed"libspeexdsp1
+not-installed"libspeexdsp1-32bit
+not-installed"libspf2-2
+not-installed"libspf2-devel
+not-installed"libspf2-tools
+not-installed"libsphinxbase1
+not-installed"libsphinxclient-0_0_1
+not-installed"libsphinxclient-devel
+installed"libspice-client-glib-2_0-8
+installed"libspice-client-glib-helper
+installed"libspice-client-gtk-3_0-5
+not-installed"libspice-server-devel
+installed"libspice-server1
+not-installed"libspiro-devel
+not-installed"libspiro0
+not-installed"libspirv-cross-c-shared-devel
+not-installed"libspirv-cross-c-shared0
+not-installed"libsplinter-3-0
+not-installed"libspnav-devel
+not-installed"libspnav0
+not-installed"libspqr2
+not-installed"libspread-sheet-widget0
+not-installed"libsqlcipher-3_27_2-0
+installed"libsqlite3-0
+installed"libsqlite3-0-32bit
+installed"libsratom-0-0
+not-installed"libsratom-0-0-32bit
+not-installed"libsrecord0
+installed"libsrt1
+not-installed"libsrt1-32bit
+not-installed"libsrtp-devel
+not-installed"libsrtp1
+not-installed"libsrtp1-32bit
+installed"libsrtp2-1
+not-installed"libsrtp2-1-32bit
+not-installed"libsrtp2-devel
+installed"libssh-config
+not-installed"libssh-devel
+installed"libssh2-1
+not-installed"libssh2-1-32bit
+not-installed"libssh2-devel
+installed"libssh4
+installed"libssh4-32bit
+not-installed"libssl47
+not-installed"libssl47-32bit
+not-installed"libssr-glinject
+not-installed"libssr-glinject-32bit
+not-installed"libsss_certmap-devel
+not-installed"libsss_certmap0
+not-installed"libsss_idmap-devel
+not-installed"libsss_idmap0
+not-installed"libsss_nss_idmap-devel
+not-installed"libsss_nss_idmap0
+not-installed"libsss_simpleifp-devel
+not-installed"libsss_simpleifp0
+installed"libstaroffice-0_0-0
+not-installed"libstaroffice-devel
+not-installed"libstaroffice-devel-doc
+not-installed"libstaroffice-tools
+installed"libstartup-notification-1-0
+not-installed"libstartup-notification-1-0-32bit
+not-installed"libstatgrab-devel
+not-installed"libstatgrab-devel-32bit
+not-installed"libstatgrab10
+not-installed"libstatgrab10-32bit
+not-installed"libstdc++-devel
+not-installed"libstdc++-devel-32bit
+installed"libstdc++6
+installed"libstdc++6-32bit
+not-installed"libstdc++6-devel-gcc7
+not-installed"libstdc++6-devel-gcc7-32bit
+not-installed"libstdc++6-devel-gcc8
+not-installed"libstdc++6-devel-gcc8-32bit
+not-installed"libstdc++6-devel-gcc9
+not-installed"libstdc++6-devel-gcc9-32bit
+not-installed"libstdc++6-gcc6-doc
+not-installed"libstdc++6-gcc7
+not-installed"libstdc++6-gcc7-32bit
+not-installed"libstdc++6-gcc7-locale
+not-installed"libstdc++6-gcc8
+not-installed"libstdc++6-gcc8-32bit
+not-installed"libstdc++6-gcc8-locale
+not-installed"libstdc++6-locale
+installed"libstdc++6-pp-gcc9
+installed"libstdc++6-pp-gcc9-32bit
+not-installed"libstfl-devel
+not-installed"libstfl0
+not-installed"libstilview-devel
+not-installed"libstilview0
+not-installed"libstk-devel
+not-installed"libstk4
+not-installed"libstk4-debuginfo
+not-installed"libstlink-shared1
+installed"libstoken1
+not-installed"libstorage-ng-devel
+not-installed"libstorage-ng-integration-tests
+installed"libstorage-ng-lang
+not-installed"libstorage-ng-python3
+installed"libstorage-ng-ruby
+not-installed"libstorage-ng-utils
+installed"libstorage-ng1
+not-installed"libstoragemgmt
+not-installed"libstoragemgmt-arcconf-plugin
+not-installed"libstoragemgmt-devel
+not-installed"libstoragemgmt-hpsa-plugin
+not-installed"libstoragemgmt-local-plugin
+not-installed"libstoragemgmt-megaraid-plugin
+not-installed"libstoragemgmt-netapp-plugin
+not-installed"libstoragemgmt-nfs-plugin
+not-installed"libstoragemgmt-nfs-plugin-clibs
+not-installed"libstoragemgmt-nstor-plugin
+not-installed"libstoragemgmt-smis-plugin
+not-installed"libstoragemgmt-targetd-plugin
+not-installed"libstoragemgmt-udev
+not-installed"libstoragemgmt1
+not-installed"libstp2_3
+not-installed"libstroke
+not-installed"libstroke-devel
+not-installed"libstrophe-devel
+not-installed"libstrophe0
+not-installed"libsubtitleeditor-devel
+not-installed"libsubtitleeditor0
+not-installed"libsubunit0
+not-installed"libsuil-0-0
+not-installed"libsuitesparseconfig5
+not-installed"libsunpinyin3
+not-installed"libsuperlu-gnu-hpc
+not-installed"libsuperlu5
+not-installed"libsuperlu5-32bit
+not-installed"libsuperlu_5_2_1-gnu-hpc
+not-installed"libsvn_auth_gnome_keyring-1-0
+installed"libsvn_auth_kwallet-1-0
+not-installed"libsvrcore0
+not-installed"libswitchboard-2_0-0
+not-installed"libsword-1_8_1
+installed"libswresample1
+not-installed"libswresample1-32bit
+not-installed"libswresample1-32bit-debuginfo
+not-installed"libswresample1-debuginfo
+not-installed"libswresample2
+not-installed"libswresample2-32bit
+not-installed"libswresample2-32bit-debuginfo
+not-installed"libswresample2-debuginfo
+installed"libswresample3
+not-installed"libswresample3-32bit
+not-installed"libswresample3-32bit-debuginfo
+not-installed"libswresample3-debuginfo
+installed"libswscale3
+not-installed"libswscale3-32bit
+not-installed"libswscale3-32bit-debuginfo
+not-installed"libswscale3-debuginfo
+not-installed"libswscale4
+not-installed"libswscale4-32bit
+not-installed"libswscale4-32bit-debuginfo
+not-installed"libswscale4-debuginfo
+installed"libswscale5
+not-installed"libswscale5-32bit
+not-installed"libswscale5-32bit-debuginfo
+not-installed"libswscale5-debuginfo
+not-installed"libsybdb5
+not-installed"libsympol0_1
+not-installed"libsynce-devel
+not-installed"libsynce0
+not-installed"libsynctex2
+not-installed"libsynfig0
+not-installed"libsynfig0-debuginfo
+not-installed"libsynfigapp0
+not-installed"libsynfigapp0-debuginfo
+not-installed"libsysstat-qt5-0
+not-installed"libsysstat-qt5-devel
+installed"libsystemd0
+installed"libsystemd0-32bit
+not-installed"libsz2
+not-installed"libsz2-32bit
+not-installed"libt3config-devel
+not-installed"libt3config0
+not-installed"libt3highlight-devel
+not-installed"libt3highlight-utils
+not-installed"libt3highlight2
+not-installed"libt3key-devel
+not-installed"libt3key-utils
+not-installed"libt3key1
+not-installed"libt3widget-devel
+not-installed"libt3widget2
+not-installed"libt3window-devel
+not-installed"libt3window0
+not-installed"libtachyon-0_99b6
+not-installed"libtachyon-devel
+not-installed"libtag-devel
+not-installed"libtag-doc
+not-installed"libtag-extras1
+installed"libtag1
+not-installed"libtag1-32bit
+not-installed"libtag_c0
+not-installed"libtag_c0-32bit
+not-installed"libtaginfo-devel
+not-installed"libtaginfo1
+not-installed"libtaginfo1-32bit
+not-installed"libtalloc-devel
+installed"libtalloc2
+installed"libtalloc2-32bit
+not-installed"libtar
+not-installed"libtar-devel
+not-installed"libtar1
+installed"libtasn1
+installed"libtasn1-6
+installed"libtasn1-6-32bit
+installed"libtasn1-devel
+not-installed"libtasn1-devel-32bit
+installed"libtbb2
+not-installed"libtbbmalloc2
+not-installed"libtcmalloc4
+not-installed"libtcmu2
+not-installed"libtcnative-1-0
+not-installed"libtcnative-1-0-devel
+not-installed"libtdb-devel
+installed"libtdb1
+installed"libtdb1-32bit
+not-installed"libtdsodbc0
+not-installed"libteam-devel
+not-installed"libteam-tools
+not-installed"libteam5
+installed"libteamdctl0
+not-installed"libtecla_r1
+not-installed"libteec1
+not-installed"libtelepathy-farstream3
+not-installed"libtelepathy-farstream3-32bit
+not-installed"libtelepathy-glib0
+not-installed"libtelepathy-glib0-32bit
+not-installed"libtelepathy-logger-qt5
+not-installed"libtelepathy-logger3
+not-installed"libtelepathy-qt5-0
+not-installed"libtelepathy-qt5-0-32bit
+not-installed"libtelepathy-qt5-farstream0
+not-installed"libtelepathy-qt5-farstream0-32bit
+not-installed"libtelepathy-qt5-service0
+not-installed"libtelepathy-qt5-service0-32bit
+not-installed"libtemplate_glib-1_0-0
+not-installed"libtepl-4-0
+not-installed"libteredo5
+not-installed"libtermkey-devel
+installed"libtermkey1
+not-installed"libtesseract3
+not-installed"libtestshade1_9
+not-installed"libtevent-devel
+not-installed"libtevent-util-devel
+installed"libtevent-util0
+installed"libtevent-util0-32bit
+installed"libtevent0
+installed"libtevent0-32bit
+not-installed"libtexlua53-5
+not-installed"libtexluajit2
+installed"libthai-data
+not-installed"libthai-devel
+installed"libthai0
+installed"libthai0-32bit
+not-installed"libtheora-devel
+installed"libtheora0
+installed"libtheora0-32bit
+installed"libtheoradec1
+not-installed"libtheoradec1-32bit
+installed"libtheoraenc1
+not-installed"libtheoraenc1-32bit
+not-installed"libthrift-0_12_0
+not-installed"libthrift-devel
+not-installed"libthrift_c_glib0
+not-installed"libthriftnb-0_12_0
+not-installed"libthriftz-0_12_0
+not-installed"libthunarx-3-0
+not-installed"libtidy-devel
+not-installed"libtidy5
+not-installed"libtidyp-1_04-0
+not-installed"libtidyp-devel
+not-installed"libtiff-devel
+not-installed"libtiff-devel-32bit
+installed"libtiff5
+installed"libtiff5-32bit
+not-installed"libtiger-devel
+not-installed"libtiger5
+not-installed"libtiled1
+not-installed"libtimidity-devel
+not-installed"libtimidity2
+not-installed"libtimidity2-32bit
+not-installed"libtins-devel
+not-installed"libtins3
+not-installed"libtinyb0
+not-installed"libtinygettext0
+not-installed"libtinyobjloader1
+not-installed"libtinyxml0
+not-installed"libtinyxml2-6
+not-installed"libtirpc-devel
+installed"libtirpc-netconfig
+installed"libtirpc3
+installed"libtirpc3-32bit
+not-installed"libtls19
+not-installed"libtls19-32bit
+not-installed"libtntdb-devel
+not-installed"libtntdb4
+not-installed"libtntnet-devel
+not-installed"libtntnet12
+not-installed"libtntnet12-debuginfo
+not-installed"libtolua++-5_1-1
+not-installed"libtolua++-5_1-devel
+not-installed"libtolua++-5_3-1
+not-installed"libtolua++-5_3-devel
+not-installed"libtolua-devel
+not-installed"libtolua5
+not-installed"libtomcrypt-devel
+not-installed"libtomcrypt-examples
+installed"libtomcrypt1
+not-installed"libtomcrypt1-32bit
+not-installed"libtommath-devel
+not-installed"libtommath-examples
+installed"libtommath1
+not-installed"libtommath1-32bit
+not-installed"libtomoe-gtk0
+not-installed"libtool
+not-installed"libtool-32bit
+not-installed"libtorrent-devel
+not-installed"libtorrent-rasterbar-devel
+not-installed"libtorrent-rasterbar-doc
+not-installed"libtorrent-rasterbar9
+not-installed"libtorrent21
+not-installed"libtotem-plparser-mini18
+not-installed"libtotem-plparser18
+not-installed"libtotem_pg5
+not-installed"libtotem_pg5-32bit
+not-installed"libtowitoko2
+not-installed"libtoxcore2
+not-installed"libtpl-extensions3
+not-installed"libtpm_unseal1
+not-installed"libtpms-devel
+not-installed"libtpms0
+not-installed"libtracker-common-2_0
+not-installed"libtracker-control-2_0-0
+not-installed"libtracker-miner-2_0-0
+not-installed"libtracker-sparql-2_0-0
+not-installed"libtranscript-devel
+not-installed"libtranscript1
+not-installed"libtranslate-devel
+not-installed"libtranslate-progs
+not-installed"libtranslate0
+not-installed"libtre5
+not-installed"libtrilinos-gnu-mpich-hpc
+not-installed"libtrilinos-gnu-mvapich2-hpc
+not-installed"libtrilinos-gnu-openmpi2-hpc
+not-installed"libtrilinos12
+not-installed"libtrilinos12-openmpi2
+not-installed"libtrilinos_12_10_1-gnu-mpich-hpc
+not-installed"libtrilinos_12_10_1-gnu-mvapich2-hpc
+not-installed"libtrilinos_12_10_1-gnu-openmpi2-hpc
+installed"libts0
+not-installed"libts0-32bit
+installed"libtsan0
+not-installed"libtsan0-gcc7
+not-installed"libtsan0-gcc8
+not-installed"libtsk13
+not-installed"libtsm-devel
+not-installed"libtsm4
+not-installed"libtspi1
+not-installed"libtspi1-32bit
+not-installed"libtss2-esys0
+not-installed"libtss2-esys0-32bit
+not-installed"libtss2-mu0
+not-installed"libtss2-mu0-32bit
+not-installed"libtss2-sys0
+not-installed"libtss2-sys0-32bit
+not-installed"libtss2-tcti-device0
+not-installed"libtss2-tcti-device0-32bit
+not-installed"libtss2-tcti-mssim0
+not-installed"libtss2-tcti-mssim0-32bit
+not-installed"libtss2-tcti-tabrmd0
+not-installed"libttf2
+not-installed"libttf2-32bit
+not-installed"libttsmimic0
+not-installed"libtumbler-1-0
+not-installed"libtun6-0
+not-installed"libturbojpeg0
+not-installed"libturbojpeg0-32bit
+not-installed"libturing0
+not-installed"libturing0-debuginfo
+not-installed"libturris-spectator-devel
+not-installed"libturris-spectator0
+not-installed"libtwolame-devel
+installed"libtwolame0
+not-installed"libtwolame0-32bit
+not-installed"libu2f-host-devel
+not-installed"libu2f-host-doc
+not-installed"libu2f-host0
+not-installed"libu2f-server-devel
+not-installed"libu2f-server0
+not-installed"libubsan0
+not-installed"libubsan0-32bit
+installed"libubsan1
+not-installed"libubsan1-32bit
+not-installed"libubsan1-gcc8
+not-installed"libubsan1-gcc8-32bit
+not-installed"libuchardet-devel
+installed"libuchardet0
+not-installed"libuchardet0-32bit
+not-installed"libucl1
+not-installed"libucm-devel
+not-installed"libucm0
+not-installed"libucommon8
+not-installed"libucp-devel
+not-installed"libucp0
+not-installed"libucpp13
+not-installed"libucs-devel
+not-installed"libucs0
+not-installed"libuct-devel
+not-installed"libuct0
+not-installed"libudev-devel
+not-installed"libudev-devel-32bit
+installed"libudev1
+installed"libudev1-32bit
+not-installed"libudf0
+not-installed"libudf0-32bit
+installed"libudisks2-0
+not-installed"libudisks2-0-devel
+not-installed"libudisks2-0_bcache
+installed"libudisks2-0_btrfs
+not-installed"libudisks2-0_lsm
+not-installed"libudisks2-0_lvm2
+not-installed"libudisks2-0_vdo
+not-installed"libudisks2-0_zram
+not-installed"libudns0
+not-installed"libudt-devel
+not-installed"libudt0
+not-installed"libuev-devel
+not-installed"libuev2
+not-installed"libuhd003
+not-installed"libuhttpmock-0_0-0
+not-installed"libulfius2_5
+not-installed"libulfius2_6
+not-installed"libulockmgr1
+not-installed"libumfpack5
+not-installed"libuna-devel
+not-installed"libuna-tools
+not-installed"libuna1
+not-installed"libunbound-devel-mini
+installed"libunbound8
+installed"libunibilium4
+not-installed"libunibreak-devel
+not-installed"libunibreak3
+not-installed"libunicap-devel
+not-installed"libunicap2
+not-installed"libunicap2-32bit
+not-installed"libuninameslist-devel
+not-installed"libuninameslist0
+not-installed"libunique-1_0-0
+not-installed"libunique1-devel
+not-installed"libuniraum0
+not-installed"libuniraum0-debuginfo
+not-installed"libunistring-devel
+not-installed"libunistring-devel-32bit
+installed"libunistring2
+installed"libunistring2-32bit
+not-installed"libunity-devel
+not-installed"libunity-gtk-parser-devel
+installed"libunity-gtk2-parser0
+not-installed"libunity-gtk2-parser0-32bit
+installed"libunity-gtk3-parser0
+not-installed"libunity-gtk3-parser0-32bit
+not-installed"libunity-tools
+not-installed"libunity9
+not-installed"libunity9-32bit
+not-installed"libunrar-devel
+not-installed"libunrar5_7_5
+not-installed"libunshield0
+installed"libunwind
+installed"libunwind-32bit
+not-installed"libunwind-devel
+not-installed"libupm1
+not-installed"libupnp-devel
+installed"libupnp13
+not-installed"libupnp13-32bit
+not-installed"libupower-glib-devel
+installed"libupower-glib3
+not-installed"libupsclient1
+not-installed"liburcu-devel
+installed"liburcu6
+not-installed"liburcu6-32bit
+not-installed"liburfkill-glib-devel
+not-installed"liburfkill-glib0
+not-installed"liburiparser1
+not-installed"liburiparser1-32bit
+not-installed"libusb-0_1-4
+not-installed"libusb-0_1-4-32bit
+installed"libusb-1_0-0
+installed"libusb-1_0-0-32bit
+not-installed"libusb-1_0-devel
+not-installed"libusb-1_0-devel-32bit
+not-installed"libusb-compat-devel
+not-installed"libusb3380-0
+not-installed"libusb3380-devel
+not-installed"libusbauth-configparser-devel
+not-installed"libusbauth-configparser1
+not-installed"libusbguard0
+not-installed"libusbgx-devel
+not-installed"libusbgx-tools
+not-installed"libusbgx1
+not-installed"libusbmuxd-devel
+installed"libusbmuxd4
+not-installed"libusbmuxd4-32bit
+not-installed"libusbprog0
+installed"libusbredirhost1
+installed"libusbredirparser1
+not-installed"libuser
+not-installed"libuser-devel
+not-installed"libuser-lang
+not-installed"libuser-python
+not-installed"libuser1
+not-installed"libusrp-3_4_4+git_20190808-0
+not-installed"libusrp-devel
+not-installed"libustr-1_0-1
+not-installed"libustr-1_0-1-32bit
+not-installed"libustr-devel
+not-installed"libut1
+not-installed"libut2
+installed"libutempter0
+not-installed"libutempter0-32bit
+installed"libutf8proc2
+not-installed"libuuid-devel
+not-installed"libuuid-devel-32bit
+not-installed"libuuid-devel-static
+installed"libuuid1
+installed"libuuid1-32bit
+not-installed"libuv-devel
+installed"libuv1
+not-installed"libuwac0-0
+installed"libv4l
+not-installed"libv4l-32bit
+not-installed"libv4l-devel
+not-installed"libv4l-devel-32bit
+installed"libv4l1-0
+installed"libv4l1-0-32bit
+installed"libv4l2-0
+installed"libv4l2-0-32bit
+not-installed"libv4l2rds0
+not-installed"libv4l2rds0-32bit
+installed"libv4lconvert0
+installed"libv4lconvert0-32bit
+not-installed"libva-devel
+not-installed"libva-devel-32bit
+installed"libva-drm2
+installed"libva-drm2-32bit
+not-installed"libva-gl-devel
+not-installed"libva-gl-devel-32bit
+installed"libva-glx2
+not-installed"libva-glx2-32bit
+not-installed"libva-utils
+not-installed"libva-vdpau-driver
+installed"libva-wayland2
+not-installed"libva-wayland2-32bit
+installed"libva-x11-2
+installed"libva-x11-2-32bit
+installed"libva2
+installed"libva2-32bit
+not-installed"libvacuumutils37
+not-installed"libvala-0_44-0
+not-installed"libvala-0_44-devel
+not-installed"libvaladoc-0_44-0
+not-installed"libvaladoc-0_44-devel
+not-installed"libvamp-hostsdk3
+not-installed"libvamp-hostsdk3-32bit
+not-installed"libvamp-sdk2
+not-installed"libvamp-sdk2-32bit
+installed"libvapoursynth-46
+not-installed"libvapoursynth-47
+installed"libvapoursynth-script0
+not-installed"libvarnishapi2
+not-installed"libvbr2
+not-installed"libvcdinfo0
+not-installed"libvcdinfo0-32bit
+not-installed"libvdehist-devel
+not-installed"libvdehist0
+not-installed"libvdemgmt-devel
+not-installed"libvdemgmt0
+not-installed"libvdeplug-devel
+installed"libvdeplug3
+not-installed"libvdesnmp-devel
+not-installed"libvdesnmp0
+not-installed"libvdpau-devel
+not-installed"libvdpau-devel-32bit
+installed"libvdpau1
+not-installed"libvdpau1-32bit
+installed"libvdpau_nouveau
+not-installed"libvdpau_nouveau-32bit
+not-installed"libvdpau_r300
+not-installed"libvdpau_r300-32bit
+not-installed"libvdpau_r600
+not-installed"libvdpau_r600-32bit
+not-installed"libvdpau_radeonsi
+not-installed"libvdpau_radeonsi-32bit
+not-installed"libvdpau_trace1
+not-installed"libvdpau_trace1-32bit
+not-installed"libvdpau_va_gl1
+not-installed"libvdpau_va_gl1-32bit
+not-installed"libventrilo3-0
+not-installed"libventrilo3-devel
+not-installed"libverto-devel
+not-installed"libverto-devel-32bit
+not-installed"libverto-glib-devel
+not-installed"libverto-glib1
+not-installed"libverto-glib1-32bit
+not-installed"libverto-libev-devel
+not-installed"libverto-libev1
+not-installed"libverto-libev1-32bit
+not-installed"libverto-tevent-devel
+not-installed"libverto-tevent1
+not-installed"libverto-tevent1-32bit
+installed"libverto1
+installed"libverto1-32bit
+not-installed"libvhdi-devel
+not-installed"libvhdi-tools
+not-installed"libvhdi1
+not-installed"libvidstab-devel
+installed"libvidstab1_1
+not-installed"libvidstab1_1-32bit
+installed"libvigraimpex11
+not-installed"libvigraimpex11-32bit
+not-installed"libvips-devel
+not-installed"libvips42
+installed"libvirglrenderer0
+not-installed"libvirt
+not-installed"libvirt-admin
+installed"libvirt-bash-completion
+not-installed"libvirt-cim
+installed"libvirt-client
+installed"libvirt-daemon
+installed"libvirt-daemon-config-network
+not-installed"libvirt-daemon-config-nwfilter
+installed"libvirt-daemon-driver-interface
+not-installed"libvirt-daemon-driver-libxl
+not-installed"libvirt-daemon-driver-lxc
+installed"libvirt-daemon-driver-network
+installed"libvirt-daemon-driver-nodedev
+installed"libvirt-daemon-driver-nwfilter
+installed"libvirt-daemon-driver-qemu
+installed"libvirt-daemon-driver-secret
+installed"libvirt-daemon-driver-storage
+installed"libvirt-daemon-driver-storage-core
+installed"libvirt-daemon-driver-storage-disk
+installed"libvirt-daemon-driver-storage-gluster
+installed"libvirt-daemon-driver-storage-iscsi
+installed"libvirt-daemon-driver-storage-iscsi-direct
+installed"libvirt-daemon-driver-storage-logical
+installed"libvirt-daemon-driver-storage-mpath
+installed"libvirt-daemon-driver-storage-rbd
+installed"libvirt-daemon-driver-storage-scsi
+not-installed"libvirt-daemon-hooks
+not-installed"libvirt-daemon-lxc
+installed"libvirt-daemon-qemu
+not-installed"libvirt-daemon-xen
+not-installed"libvirt-devel
+not-installed"libvirt-devel-32bit
+not-installed"libvirt-doc
+installed"libvirt-glib-1_0-0
+not-installed"libvirt-glib-devel
+installed"libvirt-libs
+not-installed"libvirt-lock-sanlock
+not-installed"libvirt-nss
+not-installed"libvirt-sandbox-1_0-5
+not-installed"libvirt-sandbox-devel
+installed"libvisio-0_1-1
+not-installed"libvisio-devel
+not-installed"libvisio-devel-doc
+not-installed"libvisio-tools
+not-installed"libvisio2svg-devel
+not-installed"libvisio2svg0
+installed"libvisual
+not-installed"libvisual-32bit
+not-installed"libvisual-devel
+not-installed"libvkd3d-utils1
+not-installed"libvkd3d-utils1-32bit
+installed"libvkd3d1
+installed"libvkd3d1-32bit
+not-installed"libvlc-gtk0
+not-installed"libvlc-gtk0-debuginfo
+not-installed"libvlc123
+not-installed"libvlc123-debuginfo
+installed"libvlc5
+not-installed"libvlc5-debuginfo
+not-installed"libvlccore123
+not-installed"libvlccore123-debuginfo
+installed"libvlccore9
+not-installed"libvlccore9-debuginfo
+not-installed"libvma
+not-installed"libvma-devel
+not-installed"libvma8
+not-installed"libvmdk-devel
+not-installed"libvmdk-tools
+not-installed"libvmdk1
+not-installed"libvmem-devel
+not-installed"libvmem1
+not-installed"libvmime-devel
+not-installed"libvmime-kopano2
+not-installed"libvmmalloc-devel
+not-installed"libvmmalloc1
+not-installed"libvmtools-devel
+not-installed"libvmtools0
+not-installed"libvncclient1
+not-installed"libvncserver1
+not-installed"libvo-aacenc-devel
+not-installed"libvo-aacenc0
+not-installed"libvo-aacenc0-32bit
+not-installed"libvo-aacenc0-32bit-debuginfo
+not-installed"libvo-aacenc0-debuginfo
+not-installed"libvo-amrwbenc-devel
+installed"libvo-amrwbenc0
+not-installed"libvo-amrwbenc0-32bit
+not-installed"libvo-amrwbenc0-32bit-debuginfo
+not-installed"libvo-amrwbenc0-debuginfo
+not-installed"libvoikko-devel
+not-installed"libvoikko1
+not-installed"libvoikko1-32bit
+not-installed"libvolk1_4
+not-installed"libvorbis-devel
+not-installed"libvorbis-devel-32bit
+not-installed"libvorbis-doc
+installed"libvorbis0
+installed"libvorbis0-32bit
+installed"libvorbisenc2
+installed"libvorbisenc2-32bit
+installed"libvorbisfile3
+installed"libvorbisfile3-32bit
+not-installed"libvoro++0
+not-installed"libvotca_csg5
+not-installed"libvotca_ctp5
+not-installed"libvotca_tools5
+not-installed"libvotca_xtp5
+not-installed"libvotequorum8
+not-installed"libvotequorum8-32bit
+not-installed"libvpd2
+not-installed"libvpd2-32bit
+not-installed"libvpd2-devel
+not-installed"libvpd2-devel-32bit
+not-installed"libvpp0
+not-installed"libvpx-devel
+installed"libvpx6
+not-installed"libvpx6-32bit
+not-installed"libvshadow-devel
+not-installed"libvshadow-tools
+not-installed"libvshadow1
+not-installed"libvslvm-devel
+not-installed"libvslvm-tools
+not-installed"libvslvm1
+not-installed"libvsqlitepp3
+installed"libvte-2_91-0
+not-installed"libvted-3-0
+not-installed"libvterm-devel
+not-installed"libvterm-tools
+installed"libvterm0
+not-installed"libvtk1
+not-installed"libvtk1-openmpi
+not-installed"libvtk1-openmpi2
+installed"libvulkan1
+installed"libvulkan1-32bit
+not-installed"libvulkan_intel
+not-installed"libvulkan_intel-32bit
+not-installed"libvulkan_radeon
+not-installed"libvulkan_radeon-32bit
+installed"libwacom-data
+not-installed"libwacom-devel
+not-installed"libwacom-tools
+installed"libwacom2
+not-installed"libwacom2-32bit
+not-installed"libwaffle-1-0
+not-installed"libwapcaplet-devel
+not-installed"libwapcaplet0
+installed"libwavpack1
+not-installed"libwavpack1-32bit
+installed"libwayland-client0
+installed"libwayland-client0-32bit
+installed"libwayland-cursor0
+installed"libwayland-cursor0-32bit
+installed"libwayland-egl1
+installed"libwayland-egl1-32bit
+installed"libwayland-server0
+not-installed"libwayland-server0-32bit
+not-installed"libwaylandpp0
+not-installed"libwbclient-devel
+installed"libwbclient0
+installed"libwbclient0-32bit
+not-installed"libwbxml2-1
+not-installed"libwbxml2-devel
+not-installed"libwcs6
+not-installed"libwebcam-devel
+not-installed"libwebcam0
+installed"libwebkit2gtk-4_0-37
+not-installed"libwebkit2gtk-4_0-37-32bit
+installed"libwebkit2gtk3-lang
+not-installed"libwebp-devel
+not-installed"libwebp-devel-32bit
+not-installed"libwebp-tools
+installed"libwebp7
+installed"libwebp7-32bit
+not-installed"libwebpdecoder3
+not-installed"libwebpdecoder3-32bit
+installed"libwebpdemux2
+not-installed"libwebpdemux2-32bit
+installed"libwebpmux3
+not-installed"libwebpmux3-32bit
+not-installed"libwebrtc_audio_processing-devel
+not-installed"libwebrtc_audio_processing-devel-static
+installed"libwebrtc_audio_processing1
+not-installed"libwebrtc_audio_processing1-32bit
+not-installed"libwebsockets-devel
+not-installed"libwebsockets13
+not-installed"libwebvfx1
+not-installed"libweed-devel
+not-installed"libweed0
+not-installed"libweed0-debuginfo
+not-installed"libweston-7
+not-installed"libweston-7-0
+not-installed"libweston-desktop-7-0
+installed"libwicked-0-6
+not-installed"libwiiuse0
+not-installed"libwim15
+not-installed"libwinpr2
+not-installed"libwireshark12
+not-installed"libwiretap9
+not-installed"libwkhtmltox0
+not-installed"libwlc0
+not-installed"libwlroots3
+not-installed"libwmf-0_2-7
+not-installed"libwmf-0_2-7-32bit
+not-installed"libwmf-devel
+not-installed"libwmf-gnome
+not-installed"libwmf-gnome-32bit
+not-installed"libwmf-tools
+not-installed"libwnck-1-22
+not-installed"libwnck-1-22-32bit
+not-installed"libwnck-3-0
+not-installed"libwnck-3-0-32bit
+not-installed"libwnck-devel
+not-installed"libwnck-lang
+not-installed"libwnck-tools
+not-installed"libwnck2-devel
+not-installed"libwnck2-lang
+not-installed"libwnn0
+installed"libwoff2common1_0_2
+not-installed"libwoff2common1_0_2-32bit
+installed"libwoff2dec1_0_2
+not-installed"libwoff2dec1_0_2-32bit
+not-installed"libwoff2enc1_0_2
+not-installed"libwoff2enc1_0_2-32bit
+installed"libwpd-0_10-10
+not-installed"libwpd-devel
+not-installed"libwpd-devel-doc
+not-installed"libwpd-tools
+installed"libwpg-0_3-3
+not-installed"libwpg-devel
+not-installed"libwpg-devel-doc
+not-installed"libwpg-tools
+installed"libwps-0_4-4
+not-installed"libwps-devel
+not-installed"libwps-tools
+installed"libwrap0
+installed"libwrap0-32bit
+not-installed"libwrc-devel
+not-installed"libwrc-tools
+not-installed"libwrc1
+not-installed"libwscodecs2
+not-installed"libwslay0
+not-installed"libwsman-devel
+not-installed"libwsman3
+not-installed"libwsman_clientpp-devel
+not-installed"libwsman_clientpp1
+not-installed"libwsutil10
+not-installed"libwtdbo51
+not-installed"libwtdbomysql51
+not-installed"libwtdbopostgres51
+not-installed"libwv-1_2-4
+not-installed"libwv2-4
+not-installed"libwx_baseu-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_baseu-2_8-0-wxcontainer
+not-installed"libwx_baseu-2_8-0-wxcontainer-32bit
+not-installed"libwx_baseu-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_baseu-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_baseu-suse-nostl3_0_4
+installed"libwx_baseu-suse3_0_4
+not-installed"libwx_baseu-suse3_0_4-32bit
+not-installed"libwx_baseu-suse3_1_3
+not-installed"libwx_baseu_net-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_baseu_net-2_8-0-wxcontainer
+not-installed"libwx_baseu_net-2_8-0-wxcontainer-32bit
+not-installed"libwx_baseu_net-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_baseu_net-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_baseu_net-suse-nostl3_0_4
+installed"libwx_baseu_net-suse3_0_4
+not-installed"libwx_baseu_net-suse3_0_4-32bit
+not-installed"libwx_baseu_net-suse3_1_3
+not-installed"libwx_baseu_xml-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_baseu_xml-2_8-0-wxcontainer
+not-installed"libwx_baseu_xml-2_8-0-wxcontainer-32bit
+not-installed"libwx_baseu_xml-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_baseu_xml-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_baseu_xml-suse-nostl3_0_4
+installed"libwx_baseu_xml-suse3_0_4
+not-installed"libwx_baseu_xml-suse3_0_4-32bit
+not-installed"libwx_baseu_xml-suse3_1_3
+not-installed"libwx_gtk2u_adv-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_adv-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_adv-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_adv-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_adv-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_adv-suse-nostl3_0_4
+installed"libwx_gtk2u_adv-suse3_0_4
+not-installed"libwx_gtk2u_adv-suse3_0_4-32bit
+not-installed"libwx_gtk2u_adv-suse3_1_3
+not-installed"libwx_gtk2u_aui-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_aui-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_aui-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_aui-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_aui-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_aui-suse-nostl3_0_4
+installed"libwx_gtk2u_aui-suse3_0_4
+not-installed"libwx_gtk2u_aui-suse3_0_4-32bit
+not-installed"libwx_gtk2u_aui-suse3_1_3
+not-installed"libwx_gtk2u_core-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_core-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_core-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_core-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_core-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_core-suse-nostl3_0_4
+installed"libwx_gtk2u_core-suse3_0_4
+not-installed"libwx_gtk2u_core-suse3_0_4-32bit
+not-installed"libwx_gtk2u_core-suse3_1_3
+not-installed"libwx_gtk2u_fl-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_fl-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_fl-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_fl-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_fl-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_gizmos-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_gizmos-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_gizmos-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_gizmos-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_gizmos-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_gizmos_xrc-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_gl-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_gl-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_gl-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_gl-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_gl-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_gl-suse-nostl3_0_4
+installed"libwx_gtk2u_gl-suse3_0_4
+not-installed"libwx_gtk2u_gl-suse3_0_4-32bit
+not-installed"libwx_gtk2u_gl-suse3_1_3
+not-installed"libwx_gtk2u_html-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_html-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_html-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_html-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_html-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_html-suse-nostl3_0_4
+installed"libwx_gtk2u_html-suse3_0_4
+not-installed"libwx_gtk2u_html-suse3_0_4-32bit
+not-installed"libwx_gtk2u_html-suse3_1_3
+not-installed"libwx_gtk2u_media-suse-nostl3_0_4
+not-installed"libwx_gtk2u_media-suse3_0_4
+not-installed"libwx_gtk2u_media-suse3_0_4-32bit
+not-installed"libwx_gtk2u_media-suse3_1_3
+not-installed"libwx_gtk2u_mmedia-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_mmedia-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_mmedia-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_mmedia-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_mmedia-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_ogl-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_ogl-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_ogl-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_ogl-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_ogl-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_plot-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_plot-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_plot-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_plot-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_plot-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_propgrid-suse-nostl3_0_4
+not-installed"libwx_gtk2u_propgrid-suse3_0_4
+not-installed"libwx_gtk2u_propgrid-suse3_0_4-32bit
+not-installed"libwx_gtk2u_propgrid-suse3_1_3
+not-installed"libwx_gtk2u_qa-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_qa-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_qa-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_qa-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_qa-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_qa-suse-nostl3_0_4
+installed"libwx_gtk2u_qa-suse3_0_4
+not-installed"libwx_gtk2u_qa-suse3_0_4-32bit
+not-installed"libwx_gtk2u_qa-suse3_1_3
+not-installed"libwx_gtk2u_ribbon-suse-nostl3_0_4
+not-installed"libwx_gtk2u_ribbon-suse3_0_4
+not-installed"libwx_gtk2u_ribbon-suse3_0_4-32bit
+not-installed"libwx_gtk2u_ribbon-suse3_1_3
+not-installed"libwx_gtk2u_richtext-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_richtext-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_richtext-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_richtext-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_richtext-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_richtext-suse-nostl3_0_4
+not-installed"libwx_gtk2u_richtext-suse3_0_4
+not-installed"libwx_gtk2u_richtext-suse3_0_4-32bit
+not-installed"libwx_gtk2u_richtext-suse3_1_3
+not-installed"libwx_gtk2u_stc-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_stc-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_stc-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_stc-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_stc-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_stc-suse-nostl3_0_4
+not-installed"libwx_gtk2u_stc-suse3_0_4
+not-installed"libwx_gtk2u_stc-suse3_0_4-32bit
+not-installed"libwx_gtk2u_stc-suse3_1_3
+not-installed"libwx_gtk2u_svg-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_svg-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_svg-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_svg-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_svg-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_xrc-2_8-0-compat-lib-wxcontainer
+not-installed"libwx_gtk2u_xrc-2_8-0-wxcontainer
+not-installed"libwx_gtk2u_xrc-2_8-0-wxcontainer-32bit
+not-installed"libwx_gtk2u_xrc-2_8-0-wxcontainer-32bit-debuginfo
+not-installed"libwx_gtk2u_xrc-2_8-0-wxcontainer-debuginfo
+not-installed"libwx_gtk2u_xrc-suse-nostl3_0_4
+installed"libwx_gtk2u_xrc-suse3_0_4
+not-installed"libwx_gtk2u_xrc-suse3_0_4-32bit
+not-installed"libwx_gtk2u_xrc-suse3_1_3
+not-installed"libwx_gtk3u_adv-suse3_1_3
+not-installed"libwx_gtk3u_aui-suse3_1_3
+not-installed"libwx_gtk3u_core-suse3_1_3
+not-installed"libwx_gtk3u_gl-suse3_1_3
+not-installed"libwx_gtk3u_html-suse3_1_3
+not-installed"libwx_gtk3u_media-suse3_1_3
+not-installed"libwx_gtk3u_propgrid-suse3_1_3
+not-installed"libwx_gtk3u_qa-suse3_1_3
+not-installed"libwx_gtk3u_ribbon-suse3_1_3
+not-installed"libwx_gtk3u_richtext-suse3_1_3
+not-installed"libwx_gtk3u_stc-suse3_1_3
+not-installed"libwx_gtk3u_webview-suse3_1_3
+not-installed"libwx_gtk3u_xrc-suse3_1_3
+not-installed"libwx_qtu_adv-suse3_1_3
+not-installed"libwx_qtu_aui-suse3_1_3
+not-installed"libwx_qtu_core-suse3_1_3
+not-installed"libwx_qtu_gl-suse3_1_3
+not-installed"libwx_qtu_html-suse3_1_3
+not-installed"libwx_qtu_media-suse3_1_3
+not-installed"libwx_qtu_propgrid-suse3_1_3
+not-installed"libwx_qtu_qa-suse3_1_3
+not-installed"libwx_qtu_ribbon-suse3_1_3
+not-installed"libwx_qtu_richtext-suse3_1_3
+not-installed"libwx_qtu_stc-suse3_1_3
+not-installed"libwx_qtu_xrc-suse3_1_3
+not-installed"libwxcode_gtk2u_wxsqlite3-3_0-0
+not-installed"libwxlua
+not-installed"libwxstedit-wx30gtk2u-1_6_0
+not-installed"libwxsvg-devel
+not-installed"libwxsvg3
+not-installed"libx264
+installed"libx264-155
+not-installed"libx264-155-32bit
+not-installed"libx264-155-32bit-debuginfo
+not-installed"libx264-155-debuginfo
+not-installed"libx264-debugsource
+not-installed"libx264-devel
+not-installed"libx264-x264
+not-installed"libx264-x264-debugsource
+installed"libx265-169
+installed"libx265-176
+not-installed"libx265-176-32bit
+not-installed"libx265-176-32bit-debuginfo
+not-installed"libx265-176-debuginfo
+not-installed"libx265-devel
+not-installed"libx86-1
+not-installed"libx86-devel
+not-installed"libx86-devel-static
+not-installed"libx86emu-devel
+installed"libx86emu2
+not-installed"libxalan-c-devel
+not-installed"libxalan-c111
+not-installed"libxapian-devel
+installed"libxapian30
+not-installed"libxapian30-32bit
+not-installed"libxapp-devel
+not-installed"libxapp1
+not-installed"libxar-devel
+not-installed"libxar1
+not-installed"libxatracker-devel
+not-installed"libxatracker2
+not-installed"libxbase64-1
+not-installed"libxbrz-1_6
+not-installed"libxbsql0
+not-installed"libxc-devel
+not-installed"libxc5
+not-installed"libxcam-devel
+not-installed"libxcam1
+installed"libxcb-composite0
+not-installed"libxcb-composite0-32bit
+installed"libxcb-cursor0
+not-installed"libxcb-cursor0-32bit
+installed"libxcb-damage0
+not-installed"libxcb-damage0-32bit
+not-installed"libxcb-devel
+not-installed"libxcb-devel-32bit
+not-installed"libxcb-devel-doc
+installed"libxcb-dpms0
+not-installed"libxcb-dpms0-32bit
+installed"libxcb-dri2-0
+installed"libxcb-dri2-0-32bit
+installed"libxcb-dri3-0
+installed"libxcb-dri3-0-32bit
+not-installed"libxcb-errors0
+not-installed"libxcb-errors0-32bit
+not-installed"libxcb-ewmh2
+not-installed"libxcb-ewmh2-32bit
+installed"libxcb-glx0
+installed"libxcb-glx0-32bit
+installed"libxcb-icccm4
+not-installed"libxcb-icccm4-32bit
+installed"libxcb-image0
+not-installed"libxcb-image0-32bit
+installed"libxcb-keysyms1
+not-installed"libxcb-keysyms1-32bit
+installed"libxcb-present0
+installed"libxcb-present0-32bit
+installed"libxcb-randr0
+not-installed"libxcb-randr0-32bit
+installed"libxcb-record0
+not-installed"libxcb-record0-32bit
+installed"libxcb-render-util0
+not-installed"libxcb-render-util0-32bit
+installed"libxcb-render0
+installed"libxcb-render0-32bit
+installed"libxcb-res0
+not-installed"libxcb-res0-32bit
+not-installed"libxcb-screensaver0
+not-installed"libxcb-screensaver0-32bit
+installed"libxcb-shape0
+not-installed"libxcb-shape0-32bit
+installed"libxcb-shm0
+installed"libxcb-shm0-32bit
+installed"libxcb-sync1
+installed"libxcb-sync1-32bit
+installed"libxcb-util1
+not-installed"libxcb-util1-32bit
+not-installed"libxcb-xf86dri0
+not-installed"libxcb-xf86dri0-32bit
+installed"libxcb-xfixes0
+not-installed"libxcb-xfixes0-32bit
+installed"libxcb-xinerama0
+not-installed"libxcb-xinerama0-32bit
+installed"libxcb-xinput0
+not-installed"libxcb-xinput0-32bit
+installed"libxcb-xkb1
+not-installed"libxcb-xkb1-32bit
+not-installed"libxcb-xrm0
+not-installed"libxcb-xtest0
+not-installed"libxcb-xtest0-32bit
+installed"libxcb-xv0
+not-installed"libxcb-xv0-32bit
+not-installed"libxcb-xvmc0
+not-installed"libxcb-xvmc0-32bit
+installed"libxcb1
+installed"libxcb1-32bit
+not-installed"libxclass-0_9_2
+installed"libxcrypt-devel
+not-installed"libxcrypt-devel-32bit
+not-installed"libxcrypt-devel-static
+not-installed"libxdg-basedir-devel
+not-installed"libxdg-basedir1
+installed"libxerces-c-3_2
+not-installed"libxerces-c-3_2-32bit
+not-installed"libxerces-c-devel
+not-installed"libxfce4panel-1_0-4
+not-installed"libxfce4panel-2_0-4
+not-installed"libxfce4ui-1-0
+not-installed"libxfce4ui-2-0
+not-installed"libxfce4ui-branding-openSUSE
+not-installed"libxfce4ui-branding-upstream
+not-installed"libxfce4ui-devel
+not-installed"libxfce4ui-doc
+not-installed"libxfce4ui-lang
+not-installed"libxfce4ui-tools
+not-installed"libxfce4util-devel
+not-installed"libxfce4util-lang
+not-installed"libxfce4util-tools
+not-installed"libxfce4util7
+not-installed"libxfconf-0-3
+not-installed"libxfconf-devel
+not-installed"libxfdashboard0
+not-installed"libxine-devel
+not-installed"libxine2
+not-installed"libxine2-32bit
+not-installed"libxine2-32bit-debuginfo
+not-installed"libxine2-aa
+not-installed"libxine2-aa-debuginfo
+not-installed"libxine2-codecs
+not-installed"libxine2-debuginfo
+not-installed"libxine2-jack
+not-installed"libxine2-jack-debuginfo
+not-installed"libxine2-pulse
+not-installed"libxine2-pulse-debuginfo
+not-installed"libxine2-sdl
+not-installed"libxine2-sdl-debuginfo
+not-installed"libxkbcommon-devel
+not-installed"libxkbcommon-devel-32bit
+installed"libxkbcommon-x11-0
+not-installed"libxkbcommon-x11-0-32bit
+not-installed"libxkbcommon-x11-devel
+not-installed"libxkbcommon-x11-devel-32bit
+installed"libxkbcommon0
+installed"libxkbcommon0-32bit
+not-installed"libxkbfile-devel
+not-installed"libxkbfile-devel-32bit
+installed"libxkbfile1
+not-installed"libxkbfile1-32bit
+not-installed"libxkbui-devel
+not-installed"libxkbui-devel-32bit
+not-installed"libxkbui1
+not-installed"libxkbui1-32bit
+not-installed"libxklavier-devel
+not-installed"libxklavier-doc
+installed"libxklavier16
+not-installed"libxklavier16-32bit
+not-installed"libxmi0
+installed"libxml++-2_6-2
+not-installed"libxml++-2_6-2-32bit
+not-installed"libxml++-3_0-1
+not-installed"libxml++-3_0-1-32bit
+not-installed"libxml++-devel
+not-installed"libxml++26-devel
+not-installed"libxml-security-c-devel
+not-installed"libxml-security-c20
+installed"libxml2-2
+installed"libxml2-2-32bit
+not-installed"libxml2-devel
+not-installed"libxml2-devel-32bit
+not-installed"libxml2-doc
+installed"libxml2-tools
+not-installed"libxmlb-devel
+not-installed"libxmlb1
+not-installed"libxmlbird1
+not-installed"libxmlrpc++8
+not-installed"libxmlrpc3
+not-installed"libxmlrpc_abyss++8
+not-installed"libxmlrpc_abyss3
+not-installed"libxmlrpc_client++8
+not-installed"libxmlrpc_client3
+not-installed"libxmlrpc_cpp8
+not-installed"libxmlrpc_packetsocket8
+not-installed"libxmlrpc_server++8
+not-installed"libxmlrpc_server3
+not-installed"libxmlrpc_server_abyss++8
+not-installed"libxmlrpc_server_abyss3
+not-installed"libxmlrpc_server_cgi++8
+not-installed"libxmlrpc_server_cgi3
+not-installed"libxmlrpc_server_pstream++8
+not-installed"libxmlrpc_util++8
+not-installed"libxmlrpc_util3
+installed"libxmlsec1-1
+not-installed"libxmlsec1-gcrypt1
+not-installed"libxmlsec1-gnutls1
+installed"libxmlsec1-nss1
+not-installed"libxmlsec1-openssl1
+not-installed"libxmltooling-devel
+not-installed"libxmltooling-lite8
+not-installed"libxmltooling8
+not-installed"libxmmsclient++-glib1
+not-installed"libxmmsclient++4
+not-installed"libxmmsclient-glib1
+not-installed"libxmmsclient6
+not-installed"libxmp-devel
+not-installed"libxmp4
+not-installed"libxnoise-devel
+not-installed"libxnoise0
+not-installed"libxosd2
+not-installed"libxpaintrw0
+not-installed"libxpaintrw0-debuginfo
+not-installed"libxplayer-plparser-mini18
+not-installed"libxplayer-plparser-mini18-32bit
+not-installed"libxplayer-plparser18
+not-installed"libxplayer-plparser18-32bit
+not-installed"libxreaderdocument3
+not-installed"libxreaderview3
+not-installed"libxshmfence-devel
+installed"libxshmfence1
+installed"libxshmfence1-32bit
+not-installed"libxslt-devel
+not-installed"libxslt-devel-32bit
+not-installed"libxslt-python
+installed"libxslt-tools
+installed"libxslt1
+installed"libxslt1-32bit
+not-installed"libxspf-devel
+not-installed"libxspf4
+not-installed"libxtables-devel
+installed"libxtables12
+not-installed"libxtermcap1_0
+not-installed"libxtract-devel
+not-installed"libxtract0
+not-installed"libxtract0
+not-installed"libxtract0-debuginfo
+not-installed"libxtract0-debugsource
+not-installed"libxtrx-devel
+not-installed"libxtrx0
+not-installed"libxtrx_lms7002m0_0_0-SUSE
+not-installed"libxtrxdsp-devel
+not-installed"libxtrxdsp0
+not-installed"libxtrxll-devel
+not-installed"libxtrxll0
+not-installed"libxvidcore-devel
+installed"libxvidcore4
+not-installed"libxvidcore4-32bit
+not-installed"libxvidcore4-32bit-debuginfo
+not-installed"libxvidcore4-debuginfo
+not-installed"libxxhash0
+not-installed"libxy4
+not-installed"libyajl-devel
+not-installed"libyajl-devel-32bit
+not-installed"libyajl-devel-static
+installed"libyajl2
+not-installed"libyajl2-32bit
+not-installed"libyami-devel
+not-installed"libyami-utils
+not-installed"libyami1
+installed"libyaml-0-2
+not-installed"libyaml-cpp0_6
+not-installed"libyaml-devel
+not-installed"libyang-cpp-devel
+not-installed"libyang-cpp0_16
+not-installed"libyang-devel
+not-installed"libyang-doc
+not-installed"libyang0_16
+not-installed"libyara-devel
+not-installed"libyara3
+not-installed"libyate6
+not-installed"libyate6-debuginfo
+not-installed"libyaz-devel
+not-installed"libyaz-devel-32bit
+not-installed"libyaz5
+not-installed"libyaz5-32bit
+not-installed"libyder1_4
+not-installed"libyelp0
+not-installed"libykclient-devel
+not-installed"libykclient3
+not-installed"libykcs11-1
+not-installed"libykcs11-devel
+installed"libykpers-1-1
+not-installed"libykpers-devel
+not-installed"libykpiv-devel
+not-installed"libykpiv1
+not-installed"libyubikey-devel
+not-installed"libyubikey-tools
+installed"libyubikey0
+not-installed"libyui-devel
+not-installed"libyui-doc
+not-installed"libyui-ncurses-devel
+not-installed"libyui-ncurses-doc
+not-installed"libyui-ncurses-pkg-devel
+not-installed"libyui-ncurses-pkg-doc
+installed"libyui-ncurses-pkg10
+not-installed"libyui-ncurses-rest-api-devel
+not-installed"libyui-ncurses-rest-api10
+not-installed"libyui-ncurses-tools
+installed"libyui-ncurses10
+not-installed"libyui-qt-devel
+not-installed"libyui-qt-doc
+not-installed"libyui-qt-graph-devel
+not-installed"libyui-qt-graph-doc
+installed"libyui-qt-graph10
+not-installed"libyui-qt-pkg-devel
+not-installed"libyui-qt-pkg-doc
+installed"libyui-qt-pkg10
+not-installed"libyui-qt-rest-api-devel
+not-installed"libyui-qt-rest-api10
+installed"libyui-qt10
+not-installed"libyui-rest-api-devel
+not-installed"libyui-rest-api10
+installed"libyui10
+installed"libz1
+installed"libz1-32bit
+not-installed"libz3-4_8
+not-installed"libzapojit-0_0-0
+not-installed"libzapojit-devel
+not-installed"libzbar-devel
+installed"libzbar0
+not-installed"libzbar0-32bit
+not-installed"libzbarqt-devel
+not-installed"libzbarqt0
+not-installed"libzbarqt0-32bit
+not-installed"libzbc-5_8_0
+not-installed"libzbc-devel
+not-installed"libzbc-gui
+not-installed"libzbc-tools
+not-installed"libzck-devel
+installed"libzck1
+not-installed"libzebra1
+not-installed"libzeitgeist-1_0-1
+not-installed"libzeitgeist-1_0-1-32bit
+not-installed"libzeitgeist-2_0-0
+not-installed"libzeitgeist-devel
+not-installed"libzen-devel
+not-installed"libzen0
+not-installed"libzen0-32bit
+not-installed"libzhuyin-1_1-data
+not-installed"libzhuyin-1_1-devel
+not-installed"libzhuyin13
+not-installed"libzhuyin13-32bit
+not-installed"libzhuyin7
+installed"libzimg2
+not-installed"libzimg2-32bit
+not-installed"libzinnia0
+not-installed"libzio-devel
+installed"libzio1
+not-installed"libzio1-32bit
+not-installed"libzip-devel
+not-installed"libzip-tools
+installed"libzip5
+not-installed"libzip5-32bit
+not-installed"libzipkin-cpp-opentracing0
+installed"libzita-convolver4
+not-installed"libzita-convolver4-32bit
+not-installed"libzlui0_99
+installed"libzmf-0_0-0
+not-installed"libzmf-devel
+not-installed"libzmf-devel-doc
+not-installed"libzmf-tools
+installed"libzmq5
+not-installed"libzmq5-32bit
+not-installed"libzn_poly-0_9
+not-installed"libzopfli-devel
+not-installed"libzopfli1
+not-installed"libzopflipng1
+not-installed"libzrtpcpp-devel
+not-installed"libzrtpcpp4
+not-installed"libzsolve0
+not-installed"libzstd-devel
+not-installed"libzstd-devel-static
+installed"libzstd1
+installed"libzstd1-32bit
+not-installed"libzvbi-chains0
+not-installed"libzvbi-chains0-32bit
+installed"libzvbi0
+not-installed"libzvbi0-32bit
+installed"libzypp
+not-installed"libzypp-devel
+not-installed"libzypp-devel-doc
+installed"libzypp-plugin-appdata
+not-installed"libzypp-testsuite-tools
+installed"libzzip-0-13
+not-installed"libzzip-0-13-32bit
+installed"lifecycle-data-openSUSE
+not-installed"lifelines
+not-installed"liferea
+not-installed"liferea-lang
+not-installed"light-locker
+not-installed"light-locker-lang
+installed"lightdm
+not-installed"lightdm-gobject-devel
+installed"lightdm-gtk-greeter
+installed"lightdm-gtk-greeter-branding-openSUSE
+not-installed"lightdm-gtk-greeter-branding-upstream
+installed"lightdm-gtk-greeter-lang
+not-installed"lightdm-gtk-greeter-settings
+not-installed"lightdm-gtk-greeter-settings-lang
+installed"lightdm-lang
+not-installed"lightdm-qt5-devel
+not-installed"lightdm-slick-greeter
+not-installed"lightdm-slick-greeter-branding-openSUSE
+not-installed"lightdm-slick-greeter-branding-upstream
+not-installed"lightdm-slick-greeter-lang
+not-installed"lightmediascanner
+not-installed"lightmediascanner-devel
+not-installed"lightsoff
+not-installed"lightsoff-lang
+not-installed"lightspark
+not-installed"lightspark
+not-installed"lightspark-debuginfo
+not-installed"lightspark-debugsource
+not-installed"lightspark-lang
+not-installed"lightspark-plugin
+not-installed"lightspark-plugin-debuginfo
+not-installed"lightstep-tracer-cpp-devel
+not-installed"lightstep-tracer-cpp-source
+not-installed"lighttpd
+not-installed"lighttpd-mod_authn_gssapi
+not-installed"lighttpd-mod_authn_ldap
+not-installed"lighttpd-mod_authn_mysql
+not-installed"lighttpd-mod_authn_sasl
+not-installed"lighttpd-mod_cml
+not-installed"lighttpd-mod_geoip
+not-installed"lighttpd-mod_magnet
+not-installed"lighttpd-mod_mysql_vhost
+not-installed"lighttpd-mod_rrdtool
+not-installed"lighttpd-mod_trigger_b4_dl
+not-installed"lighttpd-mod_vhostdb_dbi
+not-installed"lighttpd-mod_vhostdb_ldap
+not-installed"lighttpd-mod_vhostdb_mysql
+not-installed"lighttpd-mod_vhostdb_pgsql
+not-installed"lighttpd-mod_webdav
+not-installed"lilo
+not-installed"lilv
+not-installed"lilypond
+not-installed"lilypond-century-schoolbook-l-fonts
+not-installed"lilypond-doc
+not-installed"lilypond-doc-cs
+not-installed"lilypond-doc-de
+not-installed"lilypond-doc-es
+not-installed"lilypond-doc-fr
+not-installed"lilypond-doc-hu
+not-installed"lilypond-doc-it
+not-installed"lilypond-doc-ja
+not-installed"lilypond-doc-nl
+not-installed"lilypond-doc-zh
+not-installed"lilypond-emmentaler-fonts
+not-installed"lilypond-fonts-common
+not-installed"limesuite
+not-installed"limesuite-devel
+not-installed"limesuite-udev
+not-installed"linbox-devel
+not-installed"link-grammar
+not-installed"link-grammar-devel
+not-installed"linkchecker
+not-installed"linkloop
+not-installed"links
+not-installed"linphone
+not-installed"linphone-cli
+not-installed"linssid
+not-installed"linux-atm
+not-installed"linux-atm-devel
+not-installed"linux-ftools
+installed"linux-glibc-devel
+not-installed"linux-libertine-fonts
+not-installed"linux32
+not-installed"linuxconsoletools
+not-installed"linuxptp
+not-installed"linuxrc
+not-installed"linuxrc-devtools
+not-installed"linuxsampler
+not-installed"linuxsampler
+not-installed"linuxsampler-debuginfo
+not-installed"linuxsampler-debugsource
+not-installed"linuxsampler-doc
+not-installed"lirc-config
+not-installed"lirc-core
+not-installed"lirc-devel
+not-installed"lirc-disable-kernel-rc
+not-installed"lirc-drv-ftdi
+not-installed"lirc-drv-portaudio
+not-installed"lirc-tools-gui
+not-installed"listres
+not-installed"litetran
+not-installed"littleb-devel
+not-installed"littleb-examples
+not-installed"littlewizard
+not-installed"littlewizard-devel
+not-installed"littlewizard-examples
+not-installed"live-add-yast-repos
+not-installed"live-fat-stick
+not-installed"live-grub-stick
+not-installed"live-kiwi-hook
+not-installed"live-langset-data
+not-installed"live-net-installer
+not-installed"live-usb-gui
+not-installed"live555
+not-installed"live555-devel
+not-installed"liveMedia
+not-installed"liveMedia
+not-installed"liveMedia-debuginfo
+not-installed"liveMedia-debugsource
+not-installed"livedtd
+installed"livestreamer
+not-installed"lklug-fonts
+installed"lksctp-tools
+not-installed"lksctp-tools-devel
+not-installed"llcbench
+not-installed"lld
+not-installed"lld6
+not-installed"lld7
+not-installed"lld8
+not-installed"lldb
+not-installed"lldb-devel
+not-installed"lldb6
+not-installed"lldb6-devel
+not-installed"lldb7
+not-installed"lldb7-devel
+not-installed"lldb8
+not-installed"lldb8-devel
+not-installed"lldpd
+not-installed"lldpd-devel
+not-installed"llmnrd
+not-installed"llvm
+not-installed"llvm-LTO-devel
+not-installed"llvm-devel
+not-installed"llvm-emacs-plugins
+not-installed"llvm-gold
+not-installed"llvm-vim-plugins
+not-installed"llvm6
+not-installed"llvm6-LTO-devel
+not-installed"llvm6-LTO-devel-32bit
+not-installed"llvm6-devel
+not-installed"llvm6-devel-32bit
+not-installed"llvm6-emacs-plugins
+not-installed"llvm6-gold
+not-installed"llvm6-opt-viewer
+not-installed"llvm6-polly
+not-installed"llvm6-polly-devel
+not-installed"llvm6-vim-plugins
+not-installed"llvm7
+not-installed"llvm7-LTO-devel
+not-installed"llvm7-LTO-devel-32bit
+not-installed"llvm7-devel
+not-installed"llvm7-devel-32bit
+not-installed"llvm7-emacs-plugins
+not-installed"llvm7-gold
+not-installed"llvm7-opt-viewer
+not-installed"llvm7-polly
+not-installed"llvm7-polly-devel
+not-installed"llvm7-vim-plugins
+not-installed"llvm8
+not-installed"llvm8-LTO-devel
+not-installed"llvm8-LTO-devel-32bit
+not-installed"llvm8-devel
+not-installed"llvm8-devel-32bit
+not-installed"llvm8-emacs-plugins
+not-installed"llvm8-gold
+not-installed"llvm8-opt-viewer
+not-installed"llvm8-polly
+not-installed"llvm8-polly-devel
+not-installed"llvm8-vim-plugins
+not-installed"lmarbles
+not-installed"lmdb
+not-installed"lmdb-devel
+not-installed"lmms
+not-installed"lmms-devel
+not-installed"lnav
+not-installed"lndir
+not-installed"loadlin
+installed"lockdev
+not-installed"lockdev-devel
+not-installed"lodepng-devel
+not-installed"log4cplus-devel
+not-installed"log4cpp-devel
+not-installed"log4cpp-doc
+not-installed"log4j
+not-installed"log4j-javadoc
+not-installed"log4j-manual
+not-installed"log4j-mini
+not-installed"log4j-over-slf4j
+not-installed"log4net
+not-installed"logdigest
+installed"logrotate
+not-installed"logstalgia
+not-installed"logtail
+not-installed"logtop
+not-installed"logwarn
+not-installed"logwarn-nagios-plugin
+not-installed"logwatch
+not-installed"lokalize
+not-installed"lokalize-lang
+not-installed"lollypop
+not-installed"lollypop-lang
+not-installed"lomoco
+not-installed"lomt-blackout-fonts
+not-installed"lomt-chunk-fonts
+not-installed"lomt-fanwood-fonts
+not-installed"lomt-goudybookletter-fonts
+not-installed"lomt-junction-fonts
+not-installed"lomt-knewave-fonts
+not-installed"lomt-leaguegothic-fonts
+not-installed"lomt-lindenhill-fonts
+not-installed"lomt-orbitron-fonts
+not-installed"lomt-ostrichsans-fonts
+not-installed"lomt-prociono-fonts
+not-installed"lomt-script1-fonts
+not-installed"lomt-sniglet-fonts
+not-installed"lomt-sortsmillgoudy-fonts
+not-installed"lonote
+not-installed"lookbook
+not-installed"loook
+not-installed"lostfeathers
+not-installed"loudmouth-devel
+not-installed"loudmouth-doc
+not-installed"lout
+not-installed"love
+not-installed"love-0_7_2
+not-installed"lpairs
+not-installed"lpe
+not-installed"lpsolve
+not-installed"lpsolve-devel
+not-installed"lrslib
+not-installed"lrslib-devel
+not-installed"lsb
+not-installed"lsb-release
+not-installed"lsdvd
+not-installed"lshw
+not-installed"lshw-gui
+not-installed"lshw-lang
+not-installed"lskat
+not-installed"lskat-lang
+installed"lsof
+installed"lsp-plugins
+not-installed"lsp-plugins-doc
+installed"lsscsi
+not-installed"lswm
+not-installed"lsyncd
+not-installed"ltrace
+not-installed"ltrace-32bit
+not-installed"lttng-modules
+not-installed"lttng-modules-kmp-default
+not-installed"lttng-modules-kmp-pae
+not-installed"lttng-tools
+not-installed"lttng-tools-devel
+not-installed"lttng-ust-devel
+not-installed"lttng-ust-doc
+not-installed"ltxml
+not-installed"ltxml-devel
+not-installed"lua-Hamliblua
+not-installed"lua-genders
+not-installed"lua-libguestfs
+not-installed"lua-libprelude
+not-installed"lua-lmod
+not-installed"lua-lmod-doc
+not-installed"lua-macros
+not-installed"lua-rrdtool
+installed"lua51
+not-installed"lua51-BitOp
+not-installed"lua51-bit32
+not-installed"lua51-compat-5.3
+not-installed"lua51-devel
+not-installed"lua51-doc
+installed"lua51-ldbus
+not-installed"lua51-lgi
+not-installed"lua51-lgi-doc
+not-installed"lua51-lpeg
+not-installed"lua51-lpeg-doc
+installed"lua51-lua-dbus
+installed"lua51-lua-mpris
+not-installed"lua51-luadbi
+not-installed"lua51-luaevent
+not-installed"lua51-luaexpat
+not-installed"lua51-luafilesystem
+not-installed"lua51-luajit
+not-installed"lua51-luajit-devel
+not-installed"lua51-luaposix
+not-installed"lua51-luarocks
+not-installed"lua51-luasec
+not-installed"lua51-luasocket
+not-installed"lua51-luasocket-devel
+not-installed"lua51-luasql
+not-installed"lua51-luaterm
+not-installed"lua51-luv
+not-installed"lua51-luv-devel
+not-installed"lua51-messagepack
+not-installed"lua51-mpack
+not-installed"lua51-zlib
+not-installed"lua53
+not-installed"lua53-compat-5.3
+not-installed"lua53-devel
+not-installed"lua53-doc
+not-installed"lua53-ldbus
+not-installed"lua53-lgi
+not-installed"lua53-lgi-doc
+not-installed"lua53-lpeg
+not-installed"lua53-lpeg-doc
+not-installed"lua53-lua-dbus
+not-installed"lua53-lua-mpris
+not-installed"lua53-luadbi
+not-installed"lua53-luaevent
+not-installed"lua53-luaexpat
+not-installed"lua53-luafilesystem
+not-installed"lua53-luaposix
+not-installed"lua53-luarocks
+not-installed"lua53-luasec
+not-installed"lua53-luasocket
+not-installed"lua53-luasocket-devel
+not-installed"lua53-luasql
+not-installed"lua53-luaterm
+not-installed"lua53-luv
+not-installed"lua53-luv-devel
+not-installed"lua53-messagepack
+not-installed"lua53-mpack
+not-installed"lua53-zlib
+not-installed"luabind-devel
+not-installed"luaposix-doc
+not-installed"lucene
+not-installed"lucene++-devel
+not-installed"lucene-analyzers-common
+not-installed"lucene-analyzers-smartcn
+not-installed"lucene-analyzers-stempel
+not-installed"lucene-backward-codecs
+not-installed"lucene-classification
+not-installed"lucene-codecs
+not-installed"lucene-facet
+not-installed"lucene-grouping
+not-installed"lucene-highlighter
+not-installed"lucene-join
+not-installed"lucene-memory
+not-installed"lucene-misc
+not-installed"lucene-queries
+not-installed"lucene-queryparser
+not-installed"lucene-sandbox
+not-installed"lucene-spatial
+not-installed"lucene-spatial3d
+not-installed"luckybackup
+not-installed"lugaru
+not-installed"lugaru-data
+installed"luit
+installed"lutris
+not-installed"luvcview
+not-installed"lv
+not-installed"lv2
+installed"lv2-calf
+not-installed"lv2-calf-debuginfo
+not-installed"lv2-devel
+not-installed"lv2-docs
+not-installed"lv2-examples
+not-installed"lv2-guitarix
+not-installed"lv2-linuxsampler
+not-installed"lv2-linuxsampler-debuginfo
+not-installed"lv2-swh-plugins
+installed"lvm2
+not-installed"lvm2-clvm
+not-installed"lvm2-cmirrord
+not-installed"lvm2-devel
+not-installed"lvm2-lockd
+not-installed"lvm2-testsuite
+not-installed"lxappearance
+not-installed"lxappearance-devel
+not-installed"lxappearance-lang
+not-installed"lxappearance-obconf
+not-installed"lxappearance-obconf-lang
+not-installed"lxc
+not-installed"lxc-bash-completion
+not-installed"lxcc
+not-installed"lxcfs
+not-installed"lxcfs-hooks-lxc
+not-installed"lxd
+not-installed"lxd-bash-completion
+not-installed"lxde
+not-installed"lxde-common
+not-installed"lxde-common-branding-openSUSE
+not-installed"lxde-common-branding-upstream
+not-installed"lxdvdrip
+not-installed"lxdvdrip
+not-installed"lxdvdrip-debuginfo
+not-installed"lxdvdrip-debugsource
+not-installed"lximage-qt
+not-installed"lximage-qt-lang
+not-installed"lxinput
+not-installed"lxinput-lang
+not-installed"lxlauncher
+not-installed"lxmenu-data
+not-installed"lxmusic
+not-installed"lxmusic-lang
+not-installed"lxpanel
+not-installed"lxpanel-devel
+not-installed"lxpanel-lang
+not-installed"lxqt
+not-installed"lxqt-about
+not-installed"lxqt-about-lang
+not-installed"lxqt-build-tools-devel
+not-installed"lxqt-config
+not-installed"lxqt-config-lang
+not-installed"lxqt-globalkeys
+not-installed"lxqt-globalkeys-devel
+not-installed"lxqt-globalkeys-lang
+not-installed"lxqt-notificationd
+not-installed"lxqt-notificationd-lang
+not-installed"lxqt-openssh-askpass
+not-installed"lxqt-openssh-askpass-lang
+not-installed"lxqt-panel
+not-installed"lxqt-panel-devel
+not-installed"lxqt-panel-lang
+not-installed"lxqt-policykit
+not-installed"lxqt-policykit-lang
+not-installed"lxqt-powermanagement
+not-installed"lxqt-powermanagement-lang
+not-installed"lxqt-qtplugin
+not-installed"lxqt-runner
+not-installed"lxqt-runner-lang
+not-installed"lxqt-session
+not-installed"lxqt-session-lang
+not-installed"lxqt-sudo
+not-installed"lxqt-sudo-lang
+not-installed"lxqt-theme-openSUSE-default
+not-installed"lxqt-theme-openSUSE-leaper
+not-installed"lxqt-theme-openSUSE-light
+not-installed"lxqt-themes
+not-installed"lxrandr
+not-installed"lxrandr-lang
+not-installed"lxsession
+not-installed"lxshortcut
+not-installed"lxtask
+not-installed"lxtask-lang
+not-installed"lxterminal
+not-installed"lxterminal-lang
+not-installed"lynis
+not-installed"lynx
+not-installed"lyx
+not-installed"lz4
+not-installed"lzfse
+not-installed"lzfse-devel
+not-installed"lzham_codec-devel
+not-installed"lzham_codec-libs
+not-installed"lzip
+not-installed"lziprecover
+not-installed"lzlib-devel
+not-installed"lzma-sdk-devel
+not-installed"lzo-devel
+not-installed"lzo-devel-32bit
+not-installed"lzo-devel-static
+installed"lzop
+not-installed"m17n-db
+not-installed"m17n-db-lang
+not-installed"m17n-lib
+not-installed"m17n-lib-devel
+installed"m4
+not-installed"mISDNuser
+not-installed"mISDNuser-devel
+not-installed"mac
+not-installed"mac-debuginfo
+not-installed"mac-robber
+not-installed"macchanger
+not-installed"machinery
+not-installed"machinery-doc
+not-installed"macrofusion
+not-installed"madplay
+not-installed"madplay-lang
+not-installed"maelstrom
+not-installed"mail_server
+installed"mailcommon
+not-installed"mailcommon-devel
+installed"mailcommon-lang
+not-installed"maildir-utils
+not-installed"mailgraph
+installed"mailimporter
+not-installed"mailimporter-devel
+installed"mailimporter-lang
+not-installed"mailman
+not-installed"mailnag
+not-installed"mailnag-lang
+not-installed"mailprocessing
+not-installed"mailsync
+not-installed"mailutils
+not-installed"mailutils-devel
+not-installed"mailutils-imap4d
+not-installed"mailutils-mh
+not-installed"mailutils-notify
+not-installed"mailutils-pop3d
+installed"mailx
+installed"maim
+not-installed"mairix
+installed"make
+installed"make-lang
+not-installed"makebootfat
+not-installed"makedepend
+not-installed"makedev
+installed"makedumpfile
+not-installed"makeinfo
+not-installed"makeinfo4
+not-installed"makemkv
+not-installed"makemkv
+not-installed"makeself
+not-installed"makewhat
+not-installed"mako
+not-installed"malaga-suomi
+not-installed"mame
+not-installed"mame-data
+not-installed"mame-mess
+not-installed"mame-tools
+installed"man
+installed"man-pages
+not-installed"man-pages-de
+not-installed"man-pages-de
+not-installed"man-pages-fr
+not-installed"man-pages-fr-extra
+not-installed"man-pages-ja
+installed"man-pages-posix
+not-installed"man-pages-zh_CN
+not-installed"manaplus
+not-installed"manaplus-lang
+not-installed"manchu-fonts
+not-installed"mandvd
+not-installed"mandvd
+not-installed"mandvd-debuginfo
+not-installed"mandvd-debugsource
+not-installed"mangler
+not-installed"manpageeditor
+not-installed"manufacturer-PPDs
+installed"marble
+installed"marble-data
+not-installed"marble-devel
+installed"marble-doc
+installed"marble-kde
+installed"marble-lang
+not-installed"marble-qt
+not-installed"marco
+not-installed"marco-devel
+not-installed"marco-lang
+not-installed"marco-themes
+installed"mariadb
+not-installed"mariadb-bench
+installed"mariadb-client
+not-installed"mariadb-connector-odbc
+installed"mariadb-errormessages
+not-installed"mariadb-galera
+not-installed"mariadb-test
+not-installed"mariadb-tools
+not-installed"marisa
+not-installed"marisa-devel
+not-installed"mate
+not-installed"mate-applet-appmenu
+not-installed"mate-applet-dock
+not-installed"mate-applet-indicator
+not-installed"mate-applet-indicator-lang
+not-installed"mate-applet-sensors
+not-installed"mate-applet-sensors-devel
+not-installed"mate-applet-sensors-lang
+not-installed"mate-applet-softupd
+not-installed"mate-applet-softupd-lang
+not-installed"mate-applets
+not-installed"mate-applets-lang
+not-installed"mate-backgrounds
+not-installed"mate-backgrounds-lang
+not-installed"mate-calc
+not-installed"mate-calc-lang
+not-installed"mate-common
+not-installed"mate-control-center
+not-installed"mate-control-center-branding-openSUSE
+not-installed"mate-control-center-branding-upstream
+not-installed"mate-control-center-devel
+not-installed"mate-control-center-lang
+not-installed"mate-desktop
+not-installed"mate-desktop-devel
+not-installed"mate-desktop-gschemas
+not-installed"mate-desktop-gschemas-branding-openSUSE
+not-installed"mate-desktop-gschemas-branding-upstream
+not-installed"mate-desktop-lang
+not-installed"mate-dictionary
+not-installed"mate-disk-usage-analyzer
+not-installed"mate-eiciel
+not-installed"mate-eiciel-lang
+not-installed"mate-icon-theme
+not-installed"mate-icon-theme-faenza
+not-installed"mate-icon-theme-faenza-dark
+not-installed"mate-icon-theme-faenza-gray
+not-installed"mate-media
+not-installed"mate-media-lang
+not-installed"mate-menu
+not-installed"mate-menu-lang
+not-installed"mate-menus
+not-installed"mate-menus-branding-openSUSE
+not-installed"mate-menus-branding-upstream
+not-installed"mate-menus-devel
+not-installed"mate-menus-lang
+not-installed"mate-netbook
+not-installed"mate-netbook-lang
+not-installed"mate-notification-daemon
+not-installed"mate-notification-daemon-lang
+not-installed"mate-panel
+not-installed"mate-panel-branding-openSUSE
+not-installed"mate-panel-branding-upstream
+not-installed"mate-panel-devel
+not-installed"mate-panel-lang
+not-installed"mate-polkit
+not-installed"mate-polkit-lang
+not-installed"mate-power-manager
+not-installed"mate-power-manager-lang
+not-installed"mate-screensaver
+not-installed"mate-screensaver-devel
+not-installed"mate-screensaver-lang
+not-installed"mate-screenshot
+not-installed"mate-search-tool
+not-installed"mate-session-manager
+not-installed"mate-session-manager-branding-openSUSE
+not-installed"mate-session-manager-branding-upstream
+not-installed"mate-session-manager-gschemas
+not-installed"mate-session-manager-lang
+not-installed"mate-settings-daemon
+not-installed"mate-settings-daemon-devel
+not-installed"mate-settings-daemon-lang
+not-installed"mate-system-log
+not-installed"mate-system-monitor
+not-installed"mate-system-monitor-lang
+not-installed"mate-terminal
+not-installed"mate-terminal-lang
+not-installed"mate-themes
+not-installed"mate-tweak
+not-installed"mate-tweak-lang
+not-installed"mate-user-guide
+not-installed"mate-user-guide-lang
+not-installed"mate-user-share
+not-installed"mate-user-share-lang
+not-installed"mate-utils-common-lang
+not-installed"matekbd-common
+not-installed"materia-gtk-theme
+not-installed"mateweather-common
+not-installed"mathgl-cgi
+not-installed"mathgl-devel
+not-installed"mathgl-devel-static
+not-installed"mathgl-doc
+not-installed"mathgl-doc-pdf
+not-installed"mathgl-doc-ru
+not-installed"mathgl-examples
+not-installed"mathgl-fonts
+not-installed"mathgl-lang
+not-installed"mathgl-lua
+not-installed"mathgl-tex
+not-installed"mathgl-tex-doc
+not-installed"mathgl-tools
+not-installed"mathjax
+not-installed"mathjax-ams-fonts
+not-installed"mathjax-caligraphic-fonts
+not-installed"mathjax-fraktur-fonts
+not-installed"mathjax-main-fonts
+not-installed"mathjax-math-fonts
+not-installed"mathjax-sansserif-fonts
+not-installed"mathjax-script-fonts
+not-installed"mathjax-size1-fonts
+not-installed"mathjax-size2-fonts
+not-installed"mathjax-size3-fonts
+not-installed"mathjax-size4-fonts
+not-installed"mathjax-typewriter-fonts
+not-installed"mathjax-winchrome-fonts
+not-installed"mathjax-winie6-fonts
+not-installed"mathml-dtd
+not-installed"mathomatic
+not-installed"mathomatic-devel
+not-installed"matio-tools
+not-installed"matomo
+not-installed"matrix-quaternion
+not-installed"matrix-quaternion-lang
+not-installed"matthewlib-java
+not-installed"matthewlib-java-javadoc
+not-installed"maven
+not-installed"maven-ant-plugin
+not-installed"maven-ant-plugin-javadoc
+not-installed"maven-antrun-plugin
+not-installed"maven-antrun-plugin-javadoc
+not-installed"maven-archiver
+not-installed"maven-archiver-javadoc
+not-installed"maven-artifact
+not-installed"maven-artifact-manager
+not-installed"maven-artifact-resolver
+not-installed"maven-artifact-resolver-javadoc
+not-installed"maven-artifact-transfer
+not-installed"maven-artifact-transfer-javadoc
+not-installed"maven-assembly-plugin
+not-installed"maven-assembly-plugin-javadoc
+not-installed"maven-clean-plugin
+not-installed"maven-clean-plugin-javadoc
+not-installed"maven-common-artifact-filters
+not-installed"maven-common-artifact-filters-javadoc
+not-installed"maven-compiler-plugin
+not-installed"maven-compiler-plugin-bootstrap
+not-installed"maven-compiler-plugin-javadoc
+not-installed"maven-dependency-analyzer
+not-installed"maven-dependency-analyzer-javadoc
+not-installed"maven-dependency-plugin
+not-installed"maven-dependency-plugin-javadoc
+not-installed"maven-dependency-tree
+not-installed"maven-dependency-tree-javadoc
+not-installed"maven-deploy-plugin
+not-installed"maven-deploy-plugin-javadoc
+not-installed"maven-doxia-core
+not-installed"maven-doxia-javadoc
+not-installed"maven-doxia-logging-api
+not-installed"maven-doxia-module-apt
+not-installed"maven-doxia-module-confluence
+not-installed"maven-doxia-module-docbook-simple
+not-installed"maven-doxia-module-fml
+not-installed"maven-doxia-module-fo
+not-installed"maven-doxia-module-latex
+not-installed"maven-doxia-module-markdown
+not-installed"maven-doxia-module-rtf
+not-installed"maven-doxia-module-twiki
+not-installed"maven-doxia-module-xdoc
+not-installed"maven-doxia-module-xhtml
+not-installed"maven-doxia-sink-api
+not-installed"maven-doxia-sitetools
+not-installed"maven-doxia-sitetools-javadoc
+not-installed"maven-doxia-test-docs
+not-installed"maven-enforcer
+not-installed"maven-enforcer-api
+not-installed"maven-enforcer-javadoc
+not-installed"maven-enforcer-plugin
+not-installed"maven-enforcer-rules
+not-installed"maven-failsafe-plugin
+not-installed"maven-failsafe-plugin-bootstrap
+not-installed"maven-file-management
+not-installed"maven-file-management-javadoc
+not-installed"maven-filtering
+not-installed"maven-filtering-javadoc
+not-installed"maven-install-plugin
+not-installed"maven-install-plugin-javadoc
+not-installed"maven-invoker
+not-installed"maven-invoker-javadoc
+not-installed"maven-invoker-plugin
+not-installed"maven-invoker-plugin-javadoc
+not-installed"maven-jar-plugin
+not-installed"maven-jar-plugin-bootstrap
+not-installed"maven-jar-plugin-javadoc
+not-installed"maven-jarsigner-plugin
+not-installed"maven-jarsigner-plugin-javadoc
+not-installed"maven-javadoc
+not-installed"maven-javadoc-plugin
+not-installed"maven-javadoc-plugin-bootstrap
+not-installed"maven-javadoc-plugin-javadoc
+not-installed"maven-jlink-plugin
+not-installed"maven-jlink-plugin-javadoc
+not-installed"maven-jmod-plugin
+not-installed"maven-jmod-plugin-javadoc
+not-installed"maven-lib
+not-installed"maven-local
+not-installed"maven-mapping
+not-installed"maven-mapping-javadoc
+not-installed"maven-model
+not-installed"maven-monitor
+not-installed"maven-native
+not-installed"maven-native-components
+not-installed"maven-native-javadoc
+not-installed"maven-osgi
+not-installed"maven-osgi-javadoc
+not-installed"maven-parent
+not-installed"maven-plugin-annotations
+not-installed"maven-plugin-build-helper
+not-installed"maven-plugin-build-helper-javadoc
+not-installed"maven-plugin-bundle
+not-installed"maven-plugin-bundle-javadoc
+not-installed"maven-plugin-descriptor
+not-installed"maven-plugin-plugin
+not-installed"maven-plugin-plugin-bootstrap
+not-installed"maven-plugin-plugin-javadoc
+not-installed"maven-plugin-registry
+not-installed"maven-plugin-testing
+not-installed"maven-plugin-testing-harness
+not-installed"maven-plugin-testing-javadoc
+not-installed"maven-plugin-testing-tools
+not-installed"maven-plugin-tools-annotations
+not-installed"maven-plugin-tools-ant
+not-installed"maven-plugin-tools-api
+not-installed"maven-plugin-tools-beanshell
+not-installed"maven-plugin-tools-generators
+not-installed"maven-plugin-tools-java
+not-installed"maven-plugin-tools-javadoc
+not-installed"maven-plugin-tools-javadocs
+not-installed"maven-plugin-tools-model
+not-installed"maven-plugins-pom
+not-installed"maven-profile
+not-installed"maven-project
+not-installed"maven-remote-resources-plugin
+not-installed"maven-remote-resources-plugin-javadoc
+not-installed"maven-reporting-api
+not-installed"maven-reporting-api-javadoc
+not-installed"maven-reporting-exec
+not-installed"maven-reporting-exec-javadoc
+not-installed"maven-reporting-impl
+not-installed"maven-reporting-impl-javadoc
+not-installed"maven-resolver
+not-installed"maven-resolver-api
+not-installed"maven-resolver-connector-basic
+not-installed"maven-resolver-impl
+not-installed"maven-resolver-javadoc
+not-installed"maven-resolver-spi
+not-installed"maven-resolver-test-util
+not-installed"maven-resolver-transport-classpath
+not-installed"maven-resolver-transport-file
+not-installed"maven-resolver-transport-http
+not-installed"maven-resolver-transport-wagon
+not-installed"maven-resolver-util
+not-installed"maven-resources-plugin
+not-installed"maven-resources-plugin-bootstrap
+not-installed"maven-resources-plugin-javadoc
+not-installed"maven-script-ant
+not-installed"maven-script-beanshell
+not-installed"maven-script-interpreter
+not-installed"maven-script-interpreter-javadoc
+not-installed"maven-settings
+not-installed"maven-shade-plugin
+not-installed"maven-shade-plugin-javadoc
+not-installed"maven-shared
+not-installed"maven-shared-incremental
+not-installed"maven-shared-incremental-javadoc
+not-installed"maven-shared-io
+not-installed"maven-shared-io-javadoc
+not-installed"maven-shared-jarsigner
+not-installed"maven-shared-jarsigner-javadoc
+not-installed"maven-shared-utils
+not-installed"maven-shared-utils-javadoc
+not-installed"maven-source-plugin
+not-installed"maven-source-plugin-javadoc
+not-installed"maven-surefire
+not-installed"maven-surefire-javadoc
+not-installed"maven-surefire-plugin
+not-installed"maven-surefire-plugin-bootstrap
+not-installed"maven-surefire-plugins-javadoc
+not-installed"maven-surefire-provider-junit
+not-installed"maven-surefire-provider-junit5
+not-installed"maven-surefire-provider-junit5-javadoc
+not-installed"maven-surefire-provider-testng
+not-installed"maven-surefire-report-parser
+not-installed"maven-surefire-report-plugin
+not-installed"maven-surefire-report-plugin-bootstrap
+not-installed"maven-test-tools
+not-installed"maven-toolchain
+not-installed"maven-verifier
+not-installed"maven-verifier-javadoc
+not-installed"maven-wagon-file
+not-installed"maven-wagon-ftp
+not-installed"maven-wagon-http
+not-installed"maven-wagon-http-lightweight
+not-installed"maven-wagon-http-shared
+not-installed"maven-wagon-javadoc
+not-installed"maven-wagon-provider-api
+not-installed"maven-war-plugin
+not-installed"maven-war-plugin-javadoc
+not-installed"maven2-javadoc
+not-installed"mawk
+not-installed"maxima
+not-installed"maxima-exec-clisp
+not-installed"maxima-lang-de-utf8
+not-installed"maxima-lang-es-utf8
+not-installed"maxima-lang-pt-utf8
+not-installed"maxima-lang-pt_BR-utf8
+not-installed"maxima-xmaxima
+not-installed"mayavi
+not-installed"mayavi-doc
+not-installed"mbedtls-devel
+installed"mbimcli-bash-completion
+installed"mbox-importer
+installed"mbox-importer-lang
+not-installed"mbrola
+not-installed"mbrola
+not-installed"mbrola-de1
+not-installed"mbrola-de1
+not-installed"mbrola-de2
+not-installed"mbrola-de2
+not-installed"mbrola-de3
+not-installed"mbrola-de3
+not-installed"mbrola-de4
+not-installed"mbrola-de4
+not-installed"mbrola-de5
+not-installed"mbrola-de5
+not-installed"mbrola-de6
+not-installed"mbrola-de6
+not-installed"mbrola-de7
+not-installed"mbrola-de7
+not-installed"mbrola-de8
+not-installed"mbrola-de8
+not-installed"mbrola-debuginfo
+not-installed"mbrola-debugsource
+not-installed"mbuffer
+not-installed"mc
+not-installed"mc-lang
+not-installed"mcabber
+not-installed"mcabber-devel
+not-installed"mccs
+installed"mcelog
+not-installed"mchange-commons
+not-installed"mchange-commons-javadoc
+not-installed"mcjoin
+not-installed"mcomix
+not-installed"mcpp
+not-installed"mcpp-devel
+not-installed"mcs
+not-installed"mcs-debuginfo
+not-installed"mcstrans
+installed"mda-lv2
+installed"mdadm
+not-installed"mdbtools
+not-installed"mdbtools-devel
+not-installed"mdds-1_4-devel
+not-installed"mdds-1_5-devel
+not-installed"mdf2iso
+not-installed"mdf2iso
+not-installed"mdf2iso-debuginfo
+not-installed"mdf2iso-debugsource
+not-installed"mdtest
+not-installed"meabo
+not-installed"meanwhile-devel
+not-installed"meanwhile-doc
+not-installed"med
+not-installed"med
+not-installed"med-debuginfo
+not-installed"med-debugsource
+not-installed"med-devel
+not-installed"med-tools
+not-installed"med-tools-doc
+installed"media-player-info
+not-installed"mediainfo
+not-installed"mediainfo-gui
+not-installed"mediastreamer2
+not-installed"mediastreamer2-devel
+not-installed"mediatomb
+not-installed"mediatomb
+not-installed"mediatomb-debuginfo
+not-installed"mediatomb-debugsource
+not-installed"mediatomb-mysql
+not-installed"mediatomb-mysql-debuginfo
+not-installed"mediatomb-sqlite
+not-installed"mediatomb-sqlite-debuginfo
+not-installed"medit
+not-installed"medit-lang
+not-installed"mednafen
+not-installed"mednafen-doc
+not-installed"mednafen-lang
+not-installed"mednafen-server
+not-installed"meep
+not-installed"meep-devel
+not-installed"megaglest
+not-installed"megaglest-data
+not-installed"megatools
+not-installed"meld
+not-installed"meld-lang
+not-installed"melody
+not-installed"melody-lang
+not-installed"melt
+not-installed"memcached
+not-installed"memcached-devel
+not-installed"memkind
+not-installed"memkind-devel
+not-installed"memory-constraints
+not-installed"memphis-devel
+not-installed"memprof
+not-installed"memprof-lang
+not-installed"memtest86+
+not-installed"menu-cache
+not-installed"menu-cache-devel
+not-installed"menulibre
+not-installed"mercurial
+not-installed"mercurial-lang
+not-installed"meslo-lg-fonts
+not-installed"meson
+not-installed"meson-test
+not-installed"meson-tools
+not-installed"meson-vim
+installed"messagelib
+not-installed"messagelib-devel
+installed"messagelib-lang
+not-installed"metacity
+not-installed"metacity-devel
+not-installed"metacity-lang
+not-installed"metacity-theme-adapta
+not-installed"metacity-theme-plata
+not-installed"metacity-tools
+not-installed"metallb-controller
+not-installed"metallb-k8s-yaml
+not-installed"metallb-speaker
+installed"metamail
+not-installed"metamath
+not-installed"metamath-book
+not-installed"metamath-data
+not-installed"metatheme-adapta-common
+installed"metatheme-adwaita-common
+not-installed"metatheme-ambiance-common
+not-installed"metatheme-ambiant-mate-common
+not-installed"metatheme-arc-common
+not-installed"metatheme-bluebird-common
+installed"metatheme-breeze-common
+not-installed"metatheme-e17gtk-common
+not-installed"metatheme-elementary-common
+not-installed"metatheme-greybird-common
+not-installed"metatheme-greybird-geeko-common
+not-installed"metatheme-mint-common
+not-installed"metatheme-numix-common
+not-installed"metatheme-paper-common
+not-installed"metatheme-plata-common
+not-installed"metatheme-radiance-common
+not-installed"metatheme-radiant-mate-common
+not-installed"metatheme-sonar-common
+not-installed"metatheme-vertex-common
+not-installed"metatheme-yaru-common
+not-installed"metatheme-yuyo-common
+not-installed"meteo
+not-installed"meteo-lang
+not-installed"meterbridge
+not-installed"metis
+not-installed"metis-devel
+not-installed"metis-doc
+not-installed"metis-examples
+not-installed"metis-gnu-hpc
+not-installed"metis-gnu-hpc-devel
+not-installed"metis-gnu-hpc-doc
+not-installed"metis_5_1_0-gnu-hpc
+not-installed"metis_5_1_0-gnu-hpc-devel
+not-installed"metis_5_1_0-gnu-hpc-doc
+not-installed"metis_5_1_0-gnu-hpc-examples
+not-installed"metronome
+not-installed"metronome-lang
+not-installed"mfoc
+not-installed"mfsm
+not-installed"mftrace
+not-installed"mgdiff
+not-installed"mgetty
+not-installed"mgopen-fonts
+not-installed"mgp
+not-installed"mhash-devel
+not-installed"mhvtl
+not-installed"mhvtl-kmp-default
+not-installed"mhvtl-kmp-pae
+not-installed"miam-player
+not-installed"miam-player
+not-installed"miam-player-debuginfo
+not-installed"miam-player-debugsource
+not-installed"miam-player-devel
+not-installed"miao-fonts
+not-installed"microos-tools
+not-installed"microos_apparmor
+not-installed"microos_base
+not-installed"microos_cloud
+not-installed"microos_hardware
+not-installed"microos_ima_evm
+not-installed"microos_sssd_ldap
+not-installed"midori
+not-installed"midori-devel
+not-installed"midori-lang
+not-installed"mii-tool
+not-installed"mii-tool
+not-installed"mii-tool-debuginfo
+not-installed"mii-tool-debugsource
+not-installed"mikachan-fonts
+not-installed"miller
+installed"milou5
+installed"milou5-lang
+not-installed"miltertest
+not-installed"mimic
+not-installed"mimic-devel
+not-installed"minder
+not-installed"minder-lang
+not-installed"mined
+not-installed"minetest
+not-installed"minetest-data
+not-installed"minetest-game
+not-installed"minetest-lang
+not-installed"minetestserver
+not-installed"mingetty
+not-installed"mingw32-filesystem
+not-installed"mingw32-filesystem
+not-installed"mingzat-fonts
+not-installed"minicom
+not-installed"minicom-lang
+not-installed"minidlna
+not-installed"minikube
+installed"minimal_base
+not-installed"minimodem
+not-installed"mininet
+not-installed"mininews
+not-installed"minisat
+not-installed"minisat-devel
+not-installed"minitube
+not-installed"minitube-lang
+not-installed"miniupnpc
+not-installed"minizip-devel
+not-installed"minuet
+not-installed"minuet-devel
+not-installed"minuet-lang
+not-installed"mipv6d
+not-installed"miredo-client
+not-installed"miredo-common
+not-installed"miredo-devel
+not-installed"miredo-server
+not-installed"mirisdr
+not-installed"mirisdr-udev
+not-installed"mirovideoconverter
+not-installed"mirovideoconverter
+not-installed"mirror
+not-installed"mirrormagic
+not-installed"mixxx-unstable
+not-installed"mixxx-unstable
+not-installed"mixxx-unstable-debuginfo
+not-installed"mixxx-unstable-debugsource
+installed"mjpegtools
+not-installed"mjpg-streamer
+not-installed"mk-configure
+not-installed"mk-configure-doc
+not-installed"mkcomposecache
+not-installed"mkdud
+not-installed"mkelfImage
+installed"mkfontscale
+installed"mkisofs
+not-installed"mkosi
+not-installed"mksh
+not-installed"mksusecd
+not-installed"mktorrent
+not-installed"mkvtoolnix
+not-installed"mkvtoolnix-gui
+not-installed"mlmmj
+not-installed"mlocate
+not-installed"mlocate-lang
+not-installed"mlterm
+not-installed"mlterm-canna
+not-installed"mlterm-ibus
+not-installed"mlterm-m17n
+not-installed"mlterm-scim
+not-installed"mlterm-uim
+not-installed"mlterm-wnn
+not-installed"mm-common
+not-installed"mm-common-docs
+not-installed"mmc-utils
+not-installed"mmdblookup
+not-installed"mmv
+not-installed"moarvm
+not-installed"moarvm-devel
+not-installed"mobidict
+installed"mobile-broadband-provider-info
+installed"mobipocket
+not-installed"mobipocket-devel
+not-installed"moc
+not-installed"mockito
+not-installed"mockito-javadoc
+not-installed"modello
+not-installed"modello-javadoc
+not-installed"modello-maven-plugin
+not-installed"modello-maven-plugin-javadoc
+not-installed"modem-manager-gui
+not-installed"modem-manager-gui-lang
+not-installed"modglue-devel
+not-installed"modsecurity
+not-installed"modsecurity-devel
+not-installed"modulemd-validator
+not-installed"moe
+not-installed"moinmoin-wiki
+not-installed"mojave-gtk-theme
+not-installed"mojo-parent
+not-installed"moka-icon-theme
+not-installed"mokutil
+not-installed"molsketch
+not-installed"molsketch-devel
+not-installed"molsketch-doc
+not-installed"monapo-fonts
+not-installed"moneyplex-daten
+not-installed"moneyplex-suse
+not-installed"mongodb
+not-installed"mongodb-mongoperf
+not-installed"mongodb-mongos
+not-installed"mongodb-server
+not-installed"mongodb-shell
+not-installed"mongolian-fonts
+not-installed"monitor
+not-installed"monitor-lang
+not-installed"monitoring-plugins
+not-installed"monitoring-plugins-all
+not-installed"monitoring-plugins-apcupsd
+not-installed"monitoring-plugins-bind
+not-installed"monitoring-plugins-bind9
+not-installed"monitoring-plugins-bl
+not-installed"monitoring-plugins-bonding
+not-installed"monitoring-plugins-breeze
+not-installed"monitoring-plugins-by_ssh
+not-installed"monitoring-plugins-clamav
+not-installed"monitoring-plugins-cluster
+not-installed"monitoring-plugins-common
+not-installed"monitoring-plugins-contentage
+not-installed"monitoring-plugins-count_file
+not-installed"monitoring-plugins-cups
+not-installed"monitoring-plugins-dbi
+not-installed"monitoring-plugins-dbi-mysql
+not-installed"monitoring-plugins-dbi-pgsql
+not-installed"monitoring-plugins-dbi-sqlite3
+not-installed"monitoring-plugins-dhcp
+not-installed"monitoring-plugins-dig
+not-installed"monitoring-plugins-disk
+not-installed"monitoring-plugins-disk_smb
+not-installed"monitoring-plugins-dns
+not-installed"monitoring-plugins-dns.pl
+not-installed"monitoring-plugins-drbd9
+not-installed"monitoring-plugins-dummy
+not-installed"monitoring-plugins-extras
+not-installed"monitoring-plugins-fail2ban
+not-installed"monitoring-plugins-file_age
+not-installed"monitoring-plugins-flexlm
+not-installed"monitoring-plugins-fping
+not-installed"monitoring-plugins-haproxy
+not-installed"monitoring-plugins-hpjd
+not-installed"monitoring-plugins-http
+not-installed"monitoring-plugins-icmp
+not-installed"monitoring-plugins-ide_smart
+not-installed"monitoring-plugins-ifoperstatus
+not-installed"monitoring-plugins-ifstatus
+not-installed"monitoring-plugins-ipmi-sensor1
+not-installed"monitoring-plugins-ircd
+not-installed"monitoring-plugins-keepalived
+not-installed"monitoring-plugins-ldap
+not-installed"monitoring-plugins-load
+not-installed"monitoring-plugins-log
+not-installed"monitoring-plugins-mailq
+not-installed"monitoring-plugins-mailstat
+not-installed"monitoring-plugins-mem
+not-installed"monitoring-plugins-metadata
+not-installed"monitoring-plugins-mrtg
+not-installed"monitoring-plugins-mrtgtraf
+not-installed"monitoring-plugins-mysql
+not-installed"monitoring-plugins-mysql_health
+not-installed"monitoring-plugins-nagios
+not-installed"monitoring-plugins-nis
+not-installed"monitoring-plugins-nrpe
+not-installed"monitoring-plugins-nt
+not-installed"monitoring-plugins-ntp_peer
+not-installed"monitoring-plugins-ntp_time
+not-installed"monitoring-plugins-nwstat
+not-installed"monitoring-plugins-openvpn
+not-installed"monitoring-plugins-oracle
+not-installed"monitoring-plugins-overcr
+not-installed"monitoring-plugins-pgsql
+not-installed"monitoring-plugins-ping
+not-installed"monitoring-plugins-postgres
+not-installed"monitoring-plugins-procs
+not-installed"monitoring-plugins-qlogic_sanbox
+not-installed"monitoring-plugins-radius
+not-installed"monitoring-plugins-real
+not-installed"monitoring-plugins-repomd
+not-installed"monitoring-plugins-rpc
+not-installed"monitoring-plugins-rsync
+not-installed"monitoring-plugins-sar-perf
+not-installed"monitoring-plugins-sensors
+not-installed"monitoring-plugins-sentry3
+not-installed"monitoring-plugins-sip
+not-installed"monitoring-plugins-smart
+not-installed"monitoring-plugins-smtp
+not-installed"monitoring-plugins-snmp
+not-installed"monitoring-plugins-ssh
+not-installed"monitoring-plugins-swap
+not-installed"monitoring-plugins-tcp
+not-installed"monitoring-plugins-tftp
+not-installed"monitoring-plugins-time
+not-installed"monitoring-plugins-traffic_limit
+not-installed"monitoring-plugins-ups
+not-installed"monitoring-plugins-users
+not-installed"monitoring-plugins-wave
+not-installed"monitoring-plugins-zypper
+not-installed"mono-addins
+not-installed"mono-addins-devel
+not-installed"mono-addins-msbuild
+not-installed"mono-basic
+not-installed"mono-complete
+not-installed"mono-core
+not-installed"mono-data
+not-installed"mono-data-oracle
+not-installed"mono-data-sqlite
+not-installed"mono-debugger
+not-installed"mono-devel
+not-installed"mono-extras
+not-installed"mono-libkolabxml1
+not-installed"mono-locale-extras
+not-installed"mono-mvc
+not-installed"mono-nat
+not-installed"mono-nat-devel
+not-installed"mono-nunit
+not-installed"mono-reactive
+not-installed"mono-uia
+not-installed"mono-uia-devel
+not-installed"mono-upnp
+not-installed"mono-upnp-devel
+not-installed"mono-wcf
+not-installed"mono-web
+not-installed"mono-winforms
+not-installed"mono-winfxcore
+not-installed"mono-zeroconf
+not-installed"mono-zeroconf-devel
+not-installed"mono-zeroconf-doc
+not-installed"mono-zeroconf-provider-avahi
+not-installed"monodoc-core
+not-installed"mopac7
+not-installed"moreutils
+not-installed"moreutils-parallel
+not-installed"mosh
+not-installed"mosquitto
+not-installed"mosquitto-clients
+not-installed"mosquitto-devel
+not-installed"most
+not-installed"motif
+not-installed"motif-devel
+not-installed"motif-devel-32bit
+not-installed"motion
+not-installed"motoya-lcedar-fonts
+not-installed"motoya-lmaru-fonts
+not-installed"motv
+not-installed"mousepad
+not-installed"mousepad-lang
+not-installed"mousetweaks
+not-installed"mousetweaks-lang
+not-installed"moviethumbnailer
+not-installed"moviethumbnailer
+not-installed"movit-devel
+not-installed"movit8-data
+not-installed"mozaddon-devel
+not-installed"mozc
+not-installed"mozc-gui-tools
+not-installed"mozilla-jss
+not-installed"mozilla-jss-javadoc
+installed"mozilla-nspr
+installed"mozilla-nspr-32bit
+not-installed"mozilla-nspr-devel
+installed"mozilla-nss
+installed"mozilla-nss-32bit
+installed"mozilla-nss-certs
+installed"mozilla-nss-certs-32bit
+not-installed"mozilla-nss-devel
+not-installed"mozilla-nss-sysinit
+not-installed"mozilla-nss-sysinit-32bit
+not-installed"mozilla-nss-tools
+not-installed"mozjs38
+not-installed"mozjs38-devel
+not-installed"mozjs52
+not-installed"mozjs52-devel
+not-installed"mozjs60
+not-installed"mozjs60-devel
+not-installed"mozldap-devel
+not-installed"mozldap-libs
+not-installed"mozldap-tools
+not-installed"mozo
+not-installed"mozo-lang
+not-installed"mp
+not-installed"mp-gtk3
+not-installed"mp3_check
+not-installed"mp3blaster
+not-installed"mp3blaster
+not-installed"mp3blaster-debuginfo
+not-installed"mp3blaster-debugsource
+not-installed"mp3diags
+not-installed"mp3diags
+not-installed"mp3diags-debuginfo
+not-installed"mp3diags-debugsource
+not-installed"mp3diags-unstable
+not-installed"mp3diags-unstable
+not-installed"mp3diags-unstable-debuginfo
+not-installed"mp3diags-unstable-debugsource
+not-installed"mp3gain
+not-installed"mp3info
+not-installed"mp3info
+not-installed"mp3info-debuginfo
+not-installed"mp3info-debugsource
+not-installed"mp3splt
+not-installed"mp3splt
+not-installed"mp3splt-debuginfo
+not-installed"mp3splt-debugsource
+not-installed"mp3splt-gtk
+not-installed"mp3splt-gtk
+not-installed"mp3splt-gtk-debuginfo
+not-installed"mp3splt-gtk-debugsource
+not-installed"mp3val
+not-installed"mp3val
+not-installed"mp3val-debuginfo
+not-installed"mp3val-debugsource
+not-installed"mp3wrap
+not-installed"mp3wrap
+not-installed"mp3wrap-debuginfo
+not-installed"mp3wrap-debugsource
+not-installed"mp4als
+not-installed"mp4als
+not-installed"mp4als-debuginfo
+not-installed"mpDris2
+not-installed"mpDris2-lang
+not-installed"mpc-devel
+not-installed"mpc-devel-32bit
+not-installed"mpc-qt
+not-installed"mpclient
+installed"mpd
+not-installed"mpeg2dec
+not-installed"mpeg2demux
+not-installed"mpeg2demux-debuginfo
+not-installed"mpeg4ip
+not-installed"mpeg4ip
+not-installed"mpeg4ip-debuginfo
+not-installed"mpeg4ip-debugsource
+not-installed"mpfc
+not-installed"mpfc
+not-installed"mpfc-debuginfo
+not-installed"mpfc-debugsource
+not-installed"mpfi-devel
+not-installed"mpfr-devel
+not-installed"mpfr-devel-32bit
+not-installed"mpg123
+not-installed"mpg123-devel
+not-installed"mpg123-devel-32bit
+installed"mpg123-jack
+not-installed"mpg123-jack-32bit
+installed"mpg123-openal
+not-installed"mpg123-openal-32bit
+not-installed"mpg123-portaudio
+not-installed"mpg123-portaudio-32bit
+installed"mpg123-pulse
+not-installed"mpg123-pulse-32bit
+not-installed"mpg123-sdl
+not-installed"mpg123-sdl-32bit
+not-installed"mpgtx
+not-installed"mpgtx
+not-installed"mpi-selector
+not-installed"mpiP-gnu-mpich-hpc
+not-installed"mpiP-gnu-mpich-hpc-doc
+not-installed"mpiP-gnu-mvapich2-hpc
+not-installed"mpiP-gnu-mvapich2-hpc-doc
+not-installed"mpiP-gnu-openmpi1-hpc
+not-installed"mpiP-gnu-openmpi1-hpc-doc
+not-installed"mpiP-gnu-openmpi2-hpc
+not-installed"mpiP-gnu-openmpi2-hpc-doc
+not-installed"mpiP-gnu-openmpi3-hpc
+not-installed"mpiP-gnu-openmpi3-hpc-doc
+not-installed"mpiP_3_4_1-gnu-mpich-hpc
+not-installed"mpiP_3_4_1-gnu-mpich-hpc-devel-static
+not-installed"mpiP_3_4_1-gnu-mpich-hpc-doc
+not-installed"mpiP_3_4_1-gnu-mvapich2-hpc
+not-installed"mpiP_3_4_1-gnu-mvapich2-hpc-devel-static
+not-installed"mpiP_3_4_1-gnu-mvapich2-hpc-doc
+not-installed"mpiP_3_4_1-gnu-openmpi1-hpc
+not-installed"mpiP_3_4_1-gnu-openmpi1-hpc-devel-static
+not-installed"mpiP_3_4_1-gnu-openmpi1-hpc-doc
+not-installed"mpiP_3_4_1-gnu-openmpi2-hpc
+not-installed"mpiP_3_4_1-gnu-openmpi2-hpc-devel-static
+not-installed"mpiP_3_4_1-gnu-openmpi2-hpc-doc
+not-installed"mpiP_3_4_1-gnu-openmpi3-hpc
+not-installed"mpiP_3_4_1-gnu-openmpi3-hpc-devel-static
+not-installed"mpiP_3_4_1-gnu-openmpi3-hpc-doc
+not-installed"mpibash
+not-installed"mpibash-examples
+not-installed"mpich
+not-installed"mpich-devel
+not-installed"mpich-gnu-hpc
+not-installed"mpich-gnu-hpc-devel
+not-installed"mpich-gnu-hpc-devel-static
+not-installed"mpich-gnu-hpc-macros-devel
+not-installed"mpich-ofi
+not-installed"mpich-ofi-devel
+not-installed"mpich-ofi-gnu-hpc
+not-installed"mpich-ofi-gnu-hpc-devel
+not-installed"mpich-ofi-gnu-hpc-devel-static
+not-installed"mpich-ofi-gnu-hpc-macros-devel
+not-installed"mpich-ofi_3_3-gnu-hpc
+not-installed"mpich-ofi_3_3-gnu-hpc-devel
+not-installed"mpich-ofi_3_3-gnu-hpc-devel-static
+not-installed"mpich-ofi_3_3-gnu-hpc-macros-devel
+not-installed"mpich_3_3-gnu-hpc
+not-installed"mpich_3_3-gnu-hpc-devel
+not-installed"mpich_3_3-gnu-hpc-devel-static
+not-installed"mpich_3_3-gnu-hpc-macros-devel
+not-installed"mpitests
+not-installed"mpitests-mpich
+not-installed"mpitests-mpich-gnu-hpc
+not-installed"mpitests-mpich-ofi
+not-installed"mpitests-mpich-ofi-gnu-hpc
+not-installed"mpitests-mvapich2
+not-installed"mpitests-mvapich2-gnu-hpc
+not-installed"mpitests-mvapich2-psm
+not-installed"mpitests-mvapich2-psm-gnu-hpc
+not-installed"mpitests-mvapich2-psm2
+not-installed"mpitests-mvapich2-psm2-gnu-hpc
+not-installed"mpitests-openmpi
+not-installed"mpitests-openmpi1-gnu-hpc
+not-installed"mpitests-openmpi2
+not-installed"mpitests-openmpi2-gnu-hpc
+not-installed"mpitests-openmpi3
+not-installed"mpitests-openmpi3-gnu-hpc
+not-installed"mplus-fonts
+not-installed"mppenc
+not-installed"mppenc
+not-installed"mppenc-debuginfo
+not-installed"mppenc-debugsource
+not-installed"mpt-firmware
+installed"mpt-status
+installed"mpv
+installed"mpv-bash-completion
+not-installed"mpv-devel
+installed"mpv-plugin-mpris
+installed"mpv-zsh-completion
+not-installed"mr
+not-installed"mraa
+not-installed"mraa-devel
+not-installed"mraa-examples
+not-installed"mrboom
+not-installed"mrouted
+not-installed"mrrescue
+not-installed"mrsh
+not-installed"mrsh-rsh-compat
+not-installed"mrsh-rsh-server-compat
+not-installed"mrsh-server
+not-installed"ms-sys
+not-installed"ms-sys
+not-installed"ms-sys-debuginfo
+not-installed"ms-sys-debugsource
+not-installed"mscgen
+not-installed"msgpack-devel
+not-installed"msitools
+not-installed"msitools-devel
+not-installed"msitools-lang
+not-installed"msmtp
+not-installed"msmtp-doc
+not-installed"msmtp-mta
+not-installed"mspack-examples
+not-installed"msr-tools
+not-installed"mstflint
+not-installed"msv-demo
+not-installed"msv-javadoc
+not-installed"msv-manual
+not-installed"msv-msv
+not-installed"msv-rngconv
+not-installed"msv-xmlgen
+not-installed"msv-xsdlib
+not-installed"mt-st
+not-installed"mtd-utils
+not-installed"mtdev
+not-installed"mtdev-devel
+installed"mtools
+not-installed"mtools-doc
+not-installed"mtp-tools
+not-installed"mtpaint
+not-installed"mtpaint-handbook
+not-installed"mtpaint-lang
+not-installed"mtpfs
+not-installed"mtpfs
+not-installed"mtpfs-debuginfo
+not-installed"mtpfs-debugsource
+not-installed"mtr
+not-installed"mtr-gtk
+not-installed"mtree
+not-installed"mtx
+not-installed"mu4e
+not-installed"muffin
+not-installed"muffin-devel
+not-installed"muffin-lang
+not-installed"mugshot
+installed"multimedia
+not-installed"multimon-ng
+installed"multipath-tools
+not-installed"multipath-tools-devel
+not-installed"multitail
+not-installed"multus
+not-installed"mumble
+not-installed"mumble-32bit
+not-installed"mumble-server
+not-installed"mumps-devel
+not-installed"mumps-devel-static
+not-installed"mumps-doc
+not-installed"mumps-examples
+not-installed"mumps-gnu-mpich-hpc-devel
+not-installed"mumps-gnu-mpich-hpc-doc
+not-installed"mumps-gnu-mpich-hpc-examples
+not-installed"mumps-gnu-mvapich2-hpc-devel
+not-installed"mumps-gnu-mvapich2-hpc-doc
+not-installed"mumps-gnu-mvapich2-hpc-examples
+not-installed"mumps-gnu-openmpi1-hpc-devel
+not-installed"mumps-gnu-openmpi1-hpc-doc
+not-installed"mumps-gnu-openmpi1-hpc-examples
+not-installed"mumps-gnu-openmpi2-hpc-devel
+not-installed"mumps-gnu-openmpi2-hpc-doc
+not-installed"mumps-gnu-openmpi2-hpc-examples
+not-installed"mumps-gnu-openmpi3-hpc-devel
+not-installed"mumps-gnu-openmpi3-hpc-doc
+not-installed"mumps-gnu-openmpi3-hpc-examples
+not-installed"mumps-mvapich2-5-compat
+not-installed"mumps-mvapich2-devel
+not-installed"mumps-mvapich2-devel-static
+not-installed"mumps-mvapich2-devel-static-compat
+not-installed"mumps-mvapich2-examples
+not-installed"mumps-openmpi-5-compat
+not-installed"mumps-openmpi-devel
+not-installed"mumps-openmpi-devel-static
+not-installed"mumps-openmpi-devel-static-compat
+not-installed"mumps-openmpi-examples
+not-installed"mumps-openmpi2-5-compat
+not-installed"mumps-openmpi2-devel
+not-installed"mumps-openmpi2-devel-static
+not-installed"mumps-openmpi2-devel-static-compat
+not-installed"mumps-openmpi2-examples
+not-installed"mumps-ptscotch-openmpi-5-compat
+not-installed"mumps-ptscotch-openmpi-devel
+not-installed"mumps-ptscotch-openmpi-devel-static
+not-installed"mumps-ptscotch-openmpi-devel-static-compat
+not-installed"mumps-ptscotch-openmpi-examples
+not-installed"mumps-ptscotch-openmpi2-5-compat
+not-installed"mumps-ptscotch-openmpi2-devel
+not-installed"mumps-ptscotch-openmpi2-devel-static
+not-installed"mumps-ptscotch-openmpi2-devel-static-compat
+not-installed"mumps-ptscotch-openmpi2-examples
+not-installed"mumps-scotch-devel
+not-installed"mumps-scotch-devel-static
+not-installed"mumps-scotch-examples
+not-installed"mumps_5_1_2-gnu-mpich-hpc-devel
+not-installed"mumps_5_1_2-gnu-mpich-hpc-devel-static
+not-installed"mumps_5_1_2-gnu-mpich-hpc-doc
+not-installed"mumps_5_1_2-gnu-mpich-hpc-examples
+not-installed"mumps_5_1_2-gnu-mvapich2-hpc-devel
+not-installed"mumps_5_1_2-gnu-mvapich2-hpc-devel-static
+not-installed"mumps_5_1_2-gnu-mvapich2-hpc-doc
+not-installed"mumps_5_1_2-gnu-mvapich2-hpc-examples
+not-installed"mumps_5_1_2-gnu-openmpi1-hpc-devel
+not-installed"mumps_5_1_2-gnu-openmpi1-hpc-devel-static
+not-installed"mumps_5_1_2-gnu-openmpi1-hpc-doc
+not-installed"mumps_5_1_2-gnu-openmpi1-hpc-examples
+not-installed"mumps_5_1_2-gnu-openmpi2-hpc-devel
+not-installed"mumps_5_1_2-gnu-openmpi2-hpc-devel-static
+not-installed"mumps_5_1_2-gnu-openmpi2-hpc-doc
+not-installed"mumps_5_1_2-gnu-openmpi2-hpc-examples
+not-installed"mumps_5_1_2-gnu-openmpi3-hpc-devel
+not-installed"mumps_5_1_2-gnu-openmpi3-hpc-devel-static
+not-installed"mumps_5_1_2-gnu-openmpi3-hpc-doc
+not-installed"mumps_5_1_2-gnu-openmpi3-hpc-examples
+not-installed"munge
+not-installed"munge-devel
+not-installed"munge-devel-32bit
+not-installed"munge-maven-plugin
+not-installed"munge-maven-plugin-javadoc
+not-installed"munin
+not-installed"munin-node
+not-installed"muparser-devel
+not-installed"muparser-devel-32bit
+not-installed"mupdf
+not-installed"mupdf-devel-static
+not-installed"muroar
+not-installed"muroar
+not-installed"muroar-debuginfo
+not-installed"muroar-debugsource
+not-installed"muroar-devel
+not-installed"muroard
+not-installed"muroard
+not-installed"muroard-debuginfo
+not-installed"muroard-debugsource
+not-installed"muroard-devel
+not-installed"museic
+not-installed"musepack
+not-installed"musepack-devel
+not-installed"musescore
+not-installed"musescore-fonts
+not-installed"mutt
+not-installed"mutt-doc
+not-installed"mutt-lang
+not-installed"mutter
+not-installed"mutter-data
+not-installed"mutter-devel
+not-installed"mutter-lang
+not-installed"mvapich2
+not-installed"mvapich2-devel
+not-installed"mvapich2-devel-static
+not-installed"mvapich2-doc
+not-installed"mvapich2-gnu-hpc
+not-installed"mvapich2-gnu-hpc-devel
+not-installed"mvapich2-gnu-hpc-doc
+not-installed"mvapich2-gnu-hpc-macros-devel
+not-installed"mvapich2-psm
+not-installed"mvapich2-psm-devel
+not-installed"mvapich2-psm-devel-static
+not-installed"mvapich2-psm-doc
+not-installed"mvapich2-psm-gnu-hpc
+not-installed"mvapich2-psm-gnu-hpc-devel
+not-installed"mvapich2-psm-gnu-hpc-doc
+not-installed"mvapich2-psm-gnu-hpc-macros-devel
+not-installed"mvapich2-psm2
+not-installed"mvapich2-psm2-devel
+not-installed"mvapich2-psm2-devel-static
+not-installed"mvapich2-psm2-doc
+not-installed"mvapich2-psm2-gnu-hpc
+not-installed"mvapich2-psm2-gnu-hpc-devel
+not-installed"mvapich2-psm2-gnu-hpc-doc
+not-installed"mvapich2-psm2-gnu-hpc-macros-devel
+not-installed"mvapich2-psm2_2_3_1-gnu-hpc
+not-installed"mvapich2-psm2_2_3_1-gnu-hpc-devel
+not-installed"mvapich2-psm2_2_3_1-gnu-hpc-devel-static
+not-installed"mvapich2-psm2_2_3_1-gnu-hpc-doc
+not-installed"mvapich2-psm2_2_3_1-gnu-hpc-macros-devel
+not-installed"mvapich2-psm_2_3_1-gnu-hpc
+not-installed"mvapich2-psm_2_3_1-gnu-hpc-devel
+not-installed"mvapich2-psm_2_3_1-gnu-hpc-devel-static
+not-installed"mvapich2-psm_2_3_1-gnu-hpc-doc
+not-installed"mvapich2-psm_2_3_1-gnu-hpc-macros-devel
+not-installed"mvapich2_2_3_1-gnu-hpc
+not-installed"mvapich2_2_3_1-gnu-hpc-devel
+not-installed"mvapich2_2_3_1-gnu-hpc-devel-static
+not-installed"mvapich2_2_3_1-gnu-hpc-doc
+not-installed"mvapich2_2_3_1-gnu-hpc-macros-devel
+not-installed"mwic
+not-installed"mx4j
+not-installed"mxml
+not-installed"mxml-devel
+not-installed"mxml-doc
+not-installed"mybashburn
+not-installed"mybashburn
+not-installed"mycroft-core
+not-installed"mylvmbackup
+not-installed"myman
+not-installed"mypaint
+not-installed"mypaint-brushes
+not-installed"mypaint-brushes-devel
+not-installed"mypaint-lang
+not-installed"mypy
+not-installed"myspell-af_NA
+not-installed"myspell-af_ZA
+not-installed"myspell-an
+not-installed"myspell-an_ES
+not-installed"myspell-ar
+not-installed"myspell-ar_AE
+not-installed"myspell-ar_BH
+not-installed"myspell-ar_DZ
+not-installed"myspell-ar_EG
+not-installed"myspell-ar_IQ
+not-installed"myspell-ar_JO
+not-installed"myspell-ar_KW
+not-installed"myspell-ar_LB
+not-installed"myspell-ar_LY
+not-installed"myspell-ar_MA
+not-installed"myspell-ar_OM
+not-installed"myspell-ar_QA
+not-installed"myspell-ar_SA
+not-installed"myspell-ar_SD
+not-installed"myspell-ar_SY
+not-installed"myspell-ar_TN
+not-installed"myspell-ar_YE
+not-installed"myspell-be_BY
+not-installed"myspell-bg_BG
+not-installed"myspell-bn_BD
+not-installed"myspell-bn_IN
+not-installed"myspell-bo
+not-installed"myspell-bo_CN
+not-installed"myspell-bo_IN
+not-installed"myspell-br_FR
+not-installed"myspell-bs
+not-installed"myspell-bs_BA
+not-installed"myspell-ca
+not-installed"myspell-ca_AD
+not-installed"myspell-ca_ES
+not-installed"myspell-ca_ES_valencia
+not-installed"myspell-ca_FR
+not-installed"myspell-ca_IT
+not-installed"myspell-cs_CZ
+not-installed"myspell-da_DK
+not-installed"myspell-de
+not-installed"myspell-de_AT
+not-installed"myspell-de_CH
+not-installed"myspell-de_DE
+installed"myspell-dictionaries
+not-installed"myspell-el_GR
+installed"myspell-en
+not-installed"myspell-en_AU
+not-installed"myspell-en_BS
+not-installed"myspell-en_BZ
+not-installed"myspell-en_CA
+installed"myspell-en_GB
+not-installed"myspell-en_GH
+not-installed"myspell-en_IE
+not-installed"myspell-en_IN
+not-installed"myspell-en_JM
+not-installed"myspell-en_MW
+not-installed"myspell-en_NA
+not-installed"myspell-en_NZ
+not-installed"myspell-en_PH
+not-installed"myspell-en_TT
+installed"myspell-en_US
+not-installed"myspell-en_ZA
+not-installed"myspell-en_ZW
+not-installed"myspell-es
+not-installed"myspell-es_AR
+not-installed"myspell-es_BO
+not-installed"myspell-es_CL
+not-installed"myspell-es_CO
+not-installed"myspell-es_CR
+not-installed"myspell-es_CU
+not-installed"myspell-es_DO
+not-installed"myspell-es_EC
+not-installed"myspell-es_ES
+not-installed"myspell-es_GT
+not-installed"myspell-es_HN
+not-installed"myspell-es_MX
+not-installed"myspell-es_NI
+not-installed"myspell-es_PA
+not-installed"myspell-es_PE
+not-installed"myspell-es_PR
+not-installed"myspell-es_PY
+not-installed"myspell-es_SV
+not-installed"myspell-es_UY
+not-installed"myspell-es_VE
+not-installed"myspell-et_EE
+not-installed"myspell-fr_BE
+not-installed"myspell-fr_CA
+not-installed"myspell-fr_CH
+not-installed"myspell-fr_FR
+not-installed"myspell-fr_LU
+not-installed"myspell-fr_MC
+not-installed"myspell-gd_GB
+not-installed"myspell-german-old
+not-installed"myspell-gl
+not-installed"myspell-gl_ES
+not-installed"myspell-gu_IN
+not-installed"myspell-gug
+not-installed"myspell-gug_PY
+not-installed"myspell-he_IL
+not-installed"myspell-hi_IN
+not-installed"myspell-hr_HR
+not-installed"myspell-hu_HU
+not-installed"myspell-id
+not-installed"myspell-id_ID
+not-installed"myspell-is
+not-installed"myspell-is_IS
+not-installed"myspell-it_IT
+not-installed"myspell-kmr_Latn
+not-installed"myspell-kmr_Latn_SY
+not-installed"myspell-kmr_Latn_TR
+installed"myspell-lightproof-en
+not-installed"myspell-lightproof-hu_HU
+not-installed"myspell-lightproof-pt_BR
+not-installed"myspell-lightproof-ru_RU
+not-installed"myspell-lo_LA
+not-installed"myspell-lt_LT
+not-installed"myspell-lv_LV
+not-installed"myspell-nb_NO
+not-installed"myspell-ne_NP
+not-installed"myspell-nl_BE
+not-installed"myspell-nl_NL
+not-installed"myspell-nn_NO
+not-installed"myspell-no
+not-installed"myspell-oc_FR
+not-installed"myspell-pl_PL
+not-installed"myspell-pt_AO
+not-installed"myspell-pt_BR
+not-installed"myspell-pt_PT
+not-installed"myspell-ro
+not-installed"myspell-ro_RO
+not-installed"myspell-ru_RU
+not-installed"myspell-si_LK
+not-installed"myspell-sk_SK
+not-installed"myspell-sl_SI
+not-installed"myspell-sq_AL
+not-installed"myspell-sr
+not-installed"myspell-sr_CS
+not-installed"myspell-sr_Latn_CS
+not-installed"myspell-sr_Latn_RS
+not-installed"myspell-sr_RS
+not-installed"myspell-sv_FI
+not-installed"myspell-sv_SE
+not-installed"myspell-sw_TZ
+not-installed"myspell-te
+not-installed"myspell-te_IN
+not-installed"myspell-th_TH
+not-installed"myspell-tr
+not-installed"myspell-tr_TR
+not-installed"myspell-uk_UA
+not-installed"myspell-vi
+not-installed"myspell-vi_VN
+not-installed"myspell-zu_ZA
+not-installed"mysql-connector-java
+not-installed"mysql-workbench
+not-installed"mythes-devel
+not-installed"mythplugins-mytharchive
+not-installed"mythplugins-mytharchive-debuginfo
+not-installed"mythplugins-mythbrowser
+not-installed"mythplugins-mythbrowser-debuginfo
+not-installed"mythplugins-mythgallery
+not-installed"mythplugins-mythgallery-debuginfo
+not-installed"mythplugins-mythgame
+not-installed"mythplugins-mythgame-debuginfo
+not-installed"mythplugins-mythmusic
+not-installed"mythplugins-mythmusic-debuginfo
+not-installed"mythplugins-mythnews
+not-installed"mythplugins-mythnews-debuginfo
+not-installed"mythplugins-mythweather
+not-installed"mythplugins-mythweather-debuginfo
+not-installed"mythplugins-mythzoneminder
+not-installed"mythplugins-mythzoneminder-debuginfo
+not-installed"mythtv
+not-installed"mythtv-backend
+not-installed"mythtv-backend-debuginfo
+not-installed"mythtv-base-themes
+not-installed"mythtv-common
+not-installed"mythtv-common-debuginfo
+not-installed"mythtv-debuginfo
+not-installed"mythtv-debugsource
+not-installed"mythtv-devel
+not-installed"mythtv-docs
+not-installed"mythtv-frontend
+not-installed"mythtv-frontend-debuginfo
+not-installed"mythtv-setup
+not-installed"mythtv-setup-debuginfo
+not-installed"mythweb
+not-installed"mythweb
+not-installed"mythweb-0_28
+not-installed"mythweb-0_28
+not-installed"mytop
+not-installed"naev
+not-installed"naev-data
+not-installed"nagios
+not-installed"nagios-contrib
+not-installed"nagios-devel
+not-installed"nagios-rpm-macros
+not-installed"nagios-theme-exfoliation
+not-installed"nagios-theme-switcher
+not-installed"nagios-www
+not-installed"nagios-www-dch
+not-installed"nagstamon
+not-installed"namdhinggo-fonts
+installed"nano
+not-installed"nano-icinga2
+installed"nano-lang
+not-installed"nano-plugin-conky
+not-installed"nanomsg-devel
+not-installed"nanopb-devel
+not-installed"nanopb-source
+not-installed"nanoxml
+not-installed"nanoxml-javadoc
+not-installed"nanoxml-lite
+not-installed"nanoxml-manual
+not-installed"nanoxml-manual-lite
+not-installed"nant
+not-installed"nant-devel
+not-installed"nanum-fonts
+not-installed"nanum-gothic-coding-fonts
+not-installed"nasc
+not-installed"nasm
+not-installed"nast
+not-installed"native-maven-plugin
+not-installed"nautilus
+not-installed"nautilus-deja-dup
+not-installed"nautilus-devel
+not-installed"nautilus-eiciel
+not-installed"nautilus-evince
+not-installed"nautilus-extension-actions
+not-installed"nautilus-extension-dropbox
+not-installed"nautilus-extension-folder-color
+not-installed"nautilus-extension-nextcloud
+not-installed"nautilus-extension-nitroshare
+not-installed"nautilus-extension-seahorse
+not-installed"nautilus-extension-terminal
+not-installed"nautilus-extension-tilix
+not-installed"nautilus-image-converter
+not-installed"nautilus-image-converter-lang
+not-installed"nautilus-lang
+not-installed"nautilus-plugin-easytag
+not-installed"nautilus-sendto
+not-installed"nautilus-sendto-lang
+not-installed"nautilus-share
+not-installed"nautilus-share-lang
+not-installed"nautilus-terminal
+not-installed"nauty
+not-installed"nauty-devel
+not-installed"nbd
+not-installed"ncat
+not-installed"ncdc
+not-installed"ncdc
+not-installed"ncdc-debuginfo
+not-installed"ncdc-debugsource
+installed"ncdu
+not-installed"ncftp
+not-installed"ncmpc
+not-installed"ncmpc
+not-installed"ncmpc-debuginfo
+not-installed"ncmpc-debugsource
+not-installed"ncmpc-lang
+not-installed"ncmpcpp
+not-installed"ncompress
+not-installed"ncrack
+not-installed"ncrack
+not-installed"ncrack-debuginfo
+not-installed"ncrack-debugsource
+not-installed"ncurses-devel
+not-installed"ncurses-devel-32bit
+not-installed"ncurses-devel-static
+installed"ncurses-utils
+not-installed"ncurses5-devel
+not-installed"ncurses5-devel-32bit
+not-installed"ncurses5-devel-static
+not-installed"ndctl
+not-installed"ndesk-dbus
+not-installed"ndesk-dbus-glib
+not-installed"ndesk-dbus-glib-devel
+not-installed"ndpi-tools
+not-installed"ndpmon
+not-installed"ndppd
+not-installed"neard
+not-installed"neard-devel
+not-installed"neard-test
+not-installed"nedit
+not-installed"neko
+not-installed"neko-devel
+not-installed"neko-mysql
+not-installed"nemesis
+not-installed"nemiver
+not-installed"nemiver-devel
+not-installed"nemiver-lang
+not-installed"nemo
+not-installed"nemo-devel
+not-installed"nemo-extension-actions
+not-installed"nemo-extension-audio-tab
+not-installed"nemo-extension-compare
+not-installed"nemo-extension-dropbox
+not-installed"nemo-extension-emblems
+not-installed"nemo-extension-fileroller
+not-installed"nemo-extension-gtkhash
+not-installed"nemo-extension-image-converter
+not-installed"nemo-extension-nextcloud
+not-installed"nemo-extension-nitroshare
+not-installed"nemo-extension-pastebin
+not-installed"nemo-extension-preview
+not-installed"nemo-extension-repairer
+not-installed"nemo-extension-seahorse
+not-installed"nemo-extension-share
+not-installed"nemo-extension-terminal
+not-installed"nemo-extensions-lang
+not-installed"nemo-lang
+installed"neofetch
+not-installed"neomutt
+not-installed"neomutt-doc
+not-installed"neomutt-lang
+not-installed"neovim
+not-installed"neovim-lang
+not-installed"nero-aac
+not-installed"nested
+not-installed"nestopia
+installed"net-snmp
+not-installed"net-snmp-devel
+not-installed"net-snmp-devel-32bit
+installed"net-tools
+not-installed"net-tools-deprecated
+installed"net-tools-lang
+not-installed"net6
+not-installed"net6-devel
+not-installed"net6-lang
+not-installed"netbeans-javaparser
+not-installed"netbeans-resolver
+not-installed"netbeans-svnclientadapter
+installed"netcat-openbsd
+not-installed"netcdf
+not-installed"netcdf-cxx4-gnu-hpc-tools
+not-installed"netcdf-cxx4-tools
+not-installed"netcdf-cxx4_4_3_0-gnu-hpc-tools
+not-installed"netcdf-devel
+not-installed"netcdf-devel-data
+not-installed"netcdf-devel-static
+not-installed"netcdf-fortran-gnu-mpich-hpc
+not-installed"netcdf-fortran-gnu-mpich-hpc-devel
+not-installed"netcdf-fortran-gnu-openmpi1-hpc
+not-installed"netcdf-fortran-gnu-openmpi1-hpc-devel
+not-installed"netcdf-fortran-gnu-openmpi2-hpc
+not-installed"netcdf-fortran-gnu-openmpi2-hpc-devel
+not-installed"netcdf-fortran-gnu-openmpi3-hpc
+not-installed"netcdf-fortran-gnu-openmpi3-hpc-devel
+not-installed"netcdf-fortran_4_4_4-gnu-mpich-hpc
+not-installed"netcdf-fortran_4_4_4-gnu-mpich-hpc-devel
+not-installed"netcdf-fortran_4_4_4-gnu-mpich-hpc-devel-static
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi1-hpc
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi1-hpc-devel
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi1-hpc-devel-static
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi2-hpc
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi2-hpc-devel
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi2-hpc-devel-static
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi3-hpc
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi3-hpc-devel
+not-installed"netcdf-fortran_4_4_4-gnu-openmpi3-hpc-devel-static
+not-installed"netcdf-gnu-hpc
+not-installed"netcdf-gnu-hpc-devel
+not-installed"netcdf-gnu-mpich-hpc
+not-installed"netcdf-gnu-mpich-hpc-devel
+not-installed"netcdf-gnu-mvapich2-hpc
+not-installed"netcdf-gnu-mvapich2-hpc-devel
+not-installed"netcdf-gnu-openmpi1-hpc
+not-installed"netcdf-gnu-openmpi1-hpc-devel
+not-installed"netcdf-gnu-openmpi2-hpc
+not-installed"netcdf-gnu-openmpi2-hpc-devel
+not-installed"netcdf-gnu-openmpi3-hpc
+not-installed"netcdf-gnu-openmpi3-hpc-devel
+not-installed"netcdf-openmpi
+not-installed"netcdf-openmpi-devel
+not-installed"netcdf-openmpi-devel-static
+not-installed"netcdf-openmpi2
+not-installed"netcdf-openmpi2-devel
+not-installed"netcdf-openmpi2-devel-static
+not-installed"netcdf_4_6_1-gnu-hpc
+not-installed"netcdf_4_6_1-gnu-hpc-devel
+not-installed"netcdf_4_6_1-gnu-hpc-devel-data
+not-installed"netcdf_4_6_1-gnu-hpc-devel-static
+not-installed"netcdf_4_6_1-gnu-mpich-hpc
+not-installed"netcdf_4_6_1-gnu-mpich-hpc-devel
+not-installed"netcdf_4_6_1-gnu-mpich-hpc-devel-static
+not-installed"netcdf_4_6_1-gnu-mvapich2-hpc
+not-installed"netcdf_4_6_1-gnu-mvapich2-hpc-devel
+not-installed"netcdf_4_6_1-gnu-mvapich2-hpc-devel-static
+not-installed"netcdf_4_6_1-gnu-openmpi1-hpc
+not-installed"netcdf_4_6_1-gnu-openmpi1-hpc-devel
+not-installed"netcdf_4_6_1-gnu-openmpi1-hpc-devel-static
+not-installed"netcdf_4_6_1-gnu-openmpi2-hpc
+not-installed"netcdf_4_6_1-gnu-openmpi2-hpc-devel
+not-installed"netcdf_4_6_1-gnu-openmpi2-hpc-devel-static
+not-installed"netcdf_4_6_1-gnu-openmpi3-hpc
+not-installed"netcdf_4_6_1-gnu-openmpi3-hpc-devel
+not-installed"netcdf_4_6_1-gnu-openmpi3-hpc-devel-static
+not-installed"netceiver-tools
+not-installed"netceiver-tools-debuginfo
+installed"netcfg
+not-installed"netcomponents
+not-installed"netcomponents-javadoc
+not-installed"netconsole-tools
+not-installed"netdata
+not-installed"netdate
+not-installed"netdiscover
+not-installed"netgen
+not-installed"netgen-devel
+not-installed"nethogs
+not-installed"netlabel-tools
+installed"netpbm
+not-installed"netperf
+not-installed"netsniff-ng
+not-installed"netsurf-buildsystem
+not-installed"nettle
+not-installed"network-autoconfig
+not-installed"network_admin
+not-installed"neverball
+not-installed"neverball-doc
+not-installed"neverball-mapc
+not-installed"neverball-neverputt
+not-installed"newlib
+not-installed"newsboat
+not-installed"newsboat-lang
+not-installed"newt
+not-installed"newt-devel
+not-installed"newt-doc
+not-installed"newt-static
+not-installed"newtonsoft-json
+not-installed"newtonsoft-json-devel
+not-installed"nextcloud
+not-installed"nextcloud-client
+not-installed"nextcloud-client-doc
+not-installed"nextcloud-client-dolphin
+not-installed"nextcloud-client-lang
+not-installed"nf3d
+not-installed"nfacct
+not-installed"nfc-eventd
+not-installed"nfcutils
+not-installed"nfoview
+not-installed"nfoview-lang
+installed"nfs-client
+not-installed"nfs-doc
+not-installed"nfs-ganesha
+not-installed"nfs-ganesha-ceph
+not-installed"nfs-ganesha-mount-9P
+not-installed"nfs-ganesha-nullfs
+not-installed"nfs-ganesha-proxy
+not-installed"nfs-ganesha-rados-grace
+not-installed"nfs-ganesha-rgw
+not-installed"nfs-ganesha-vfs
+not-installed"nfs-ganesha-xfs
+installed"nfs-kernel-server
+not-installed"nfs4-acl-tools
+installed"nfsidmap
+not-installed"nfsidmap-devel
+not-installed"nfswatch
+installed"nftables
+not-installed"nftables-devel
+not-installed"nghttp2
+not-installed"nginx
+not-installed"nginx-source
+not-installed"ngrep
+not-installed"ngspice
+not-installed"ngspice-doc
+not-installed"ngspice-scripts
+not-installed"ngspice-xspice-cm
+not-installed"ngspice-xspice-cm-devel
+not-installed"nh2ps
+not-installed"nicotine-plus
+not-installed"nicotine-plus
+not-installed"nicotine-plus-debuginfo
+not-installed"nicotine-plus-debugsource
+not-installed"nilfs-utils
+not-installed"nilfs-utils-devel
+not-installed"nim
+not-installed"nimbus-icon-theme
+not-installed"nini
+not-installed"ninja
+not-installed"ninvaders
+not-installed"nip2
+not-installed"nitrogen
+not-installed"nitrogen-lang
+not-installed"nitroshare
+not-installed"nitroshare-kde
+not-installed"nkf
+not-installed"nload
+not-installed"nlohmann_json-devel
+not-installed"nlopt-devel
+not-installed"nm-tray
+not-installed"nm-tray-lang
+not-installed"nma-data
+not-installed"nmap
+not-installed"nmapsi4
+not-installed"nmcli-dmenu
+not-installed"nmh
+not-installed"nml
+not-installed"nmon
+not-installed"nnn
+not-installed"no-more-secrets
+installed"nodejs-common
+not-installed"nodejs-emojione
+not-installed"nodejs-emojione-awesome
+not-installed"nodejs-emojione-demo
+not-installed"nodejs-emojione-meteor
+not-installed"nodejs-emojione-python
+not-installed"nodejs-emojione-swift
+not-installed"nodejs-packaging
+not-installed"nodejs-underscore
+installed"nodejs10
+installed"nodejs10-devel
+not-installed"nodejs10-docs
+not-installed"nodejs12
+not-installed"nodejs12-devel
+not-installed"nodejs12-docs
+not-installed"nodejs8
+not-installed"nodejs8-devel
+not-installed"nodejs8-docs
+not-installed"nomacs
+not-installed"nomacs-lang
+not-installed"non-mixer
+not-installed"non-ntk
+not-installed"non-ntk-devel
+not-installed"non-ntk-fluid
+not-installed"non-sequencer
+not-installed"non-session-manager
+not-installed"non-timeline
+not-installed"non_oss
+not-installed"noping
+not-installed"nordlicht
+not-installed"nordlicht
+not-installed"nordlicht-debuginfo
+not-installed"nordlicht-debugsource
+not-installed"nordlicht-devel
+not-installed"normaliz
+not-installed"normaliz-devel
+not-installed"normalize
+not-installed"normalize
+not-installed"normalize-debuginfo
+not-installed"normalize-debugsource
+not-installed"noson-app
+not-installed"noson-devel
+not-installed"notejot
+not-installed"notejot-lang
+not-installed"notepadqq
+not-installed"notes-up
+not-installed"notes-up-lang
+installed"notification-daemon
+installed"notification-daemon-lang
+not-installed"notify-osd
+not-installed"notify-sharp
+not-installed"notify-sharp-devel
+not-installed"notify-sharp3
+not-installed"notify-sharp3-devel
+not-installed"notmuch
+not-installed"notmuch-devel
+not-installed"notmuch-doc
+not-installed"notmuch-emacs
+installed"noto-coloremoji-fonts
+not-installed"noto-kufiarabic-fonts
+not-installed"noto-mono-fonts
+not-installed"noto-naskharabic-fonts
+not-installed"noto-naskharabic-ui-fonts
+not-installed"noto-nastaliqurdu-fonts
+not-installed"noto-sans-adlam-fonts
+not-installed"noto-sans-adlamunjoined-fonts
+not-installed"noto-sans-anatolianhieroglyphs-fonts
+not-installed"noto-sans-arabic-fonts
+not-installed"noto-sans-arabic-ui-fonts
+not-installed"noto-sans-armenian-fonts
+not-installed"noto-sans-avestan-fonts
+not-installed"noto-sans-balinese-fonts
+not-installed"noto-sans-bamum-fonts
+not-installed"noto-sans-batak-fonts
+not-installed"noto-sans-bengali-fonts
+not-installed"noto-sans-bengali-ui-fonts
+not-installed"noto-sans-brahmi-fonts
+not-installed"noto-sans-buginese-fonts
+not-installed"noto-sans-buhid-fonts
+not-installed"noto-sans-canadianaboriginal-fonts
+not-installed"noto-sans-carian-fonts
+not-installed"noto-sans-chakma-fonts
+not-installed"noto-sans-cham-fonts
+not-installed"noto-sans-cherokee-fonts
+not-installed"noto-sans-cjk-fonts
+not-installed"noto-sans-coptic-fonts
+not-installed"noto-sans-cuneiform-fonts
+not-installed"noto-sans-cypriot-fonts
+not-installed"noto-sans-deseret-fonts
+not-installed"noto-sans-devanagari-fonts
+not-installed"noto-sans-devanagari-ui-fonts
+not-installed"noto-sans-display-fonts
+not-installed"noto-sans-egyptianhieroglyphs-fonts
+not-installed"noto-sans-ethiopic-fonts
+installed"noto-sans-fonts
+not-installed"noto-sans-georgian-fonts
+not-installed"noto-sans-glagolitic-fonts
+not-installed"noto-sans-gothic-fonts
+not-installed"noto-sans-gujarati-fonts
+not-installed"noto-sans-gujarati-ui-fonts
+not-installed"noto-sans-gurmukhi-fonts
+not-installed"noto-sans-gurmukhi-ui-fonts
+not-installed"noto-sans-hanunoo-fonts
+not-installed"noto-sans-hebrew-fonts
+not-installed"noto-sans-imperialaramaic-fonts
+not-installed"noto-sans-inscriptionalpahlavi-fonts
+not-installed"noto-sans-inscriptionalparthian-fonts
+not-installed"noto-sans-javanese-fonts
+not-installed"noto-sans-jp-black-fonts
+not-installed"noto-sans-jp-bold-fonts
+not-installed"noto-sans-jp-demilight-fonts
+not-installed"noto-sans-jp-fonts
+not-installed"noto-sans-jp-fonts-full
+not-installed"noto-sans-jp-light-fonts
+not-installed"noto-sans-jp-medium-fonts
+not-installed"noto-sans-jp-mono-fonts
+not-installed"noto-sans-jp-regular-fonts
+not-installed"noto-sans-jp-thin-fonts
+not-installed"noto-sans-kaithi-fonts
+not-installed"noto-sans-kannada-fonts
+not-installed"noto-sans-kannada-ui-fonts
+not-installed"noto-sans-kayahli-fonts
+not-installed"noto-sans-kharoshthi-fonts
+not-installed"noto-sans-khmer-fonts
+not-installed"noto-sans-khmer-ui-fonts
+not-installed"noto-sans-kr-black-fonts
+not-installed"noto-sans-kr-bold-fonts
+not-installed"noto-sans-kr-demilight-fonts
+not-installed"noto-sans-kr-fonts
+not-installed"noto-sans-kr-fonts-full
+not-installed"noto-sans-kr-light-fonts
+not-installed"noto-sans-kr-medium-fonts
+not-installed"noto-sans-kr-mono-fonts
+not-installed"noto-sans-kr-regular-fonts
+not-installed"noto-sans-kr-thin-fonts
+not-installed"noto-sans-lao-fonts
+not-installed"noto-sans-lao-ui-fonts
+not-installed"noto-sans-lepcha-fonts
+not-installed"noto-sans-limbu-fonts
+not-installed"noto-sans-linearb-fonts
+not-installed"noto-sans-lisu-fonts
+not-installed"noto-sans-lycian-fonts
+not-installed"noto-sans-lydian-fonts
+not-installed"noto-sans-malayalam-fonts
+not-installed"noto-sans-malayalam-ui-fonts
+not-installed"noto-sans-mandaic-fonts
+not-installed"noto-sans-meeteimayek-fonts
+not-installed"noto-sans-mongolian-fonts
+not-installed"noto-sans-mono-fonts
+not-installed"noto-sans-myanmar-fonts
+not-installed"noto-sans-myanmar-ui-fonts
+not-installed"noto-sans-newtailue-fonts
+not-installed"noto-sans-nko-fonts
+not-installed"noto-sans-ogham-fonts
+not-installed"noto-sans-olchiki-fonts
+not-installed"noto-sans-olditalic-fonts
+not-installed"noto-sans-oldpersian-fonts
+not-installed"noto-sans-oldsoutharabian-fonts
+not-installed"noto-sans-oldturkic-fonts
+not-installed"noto-sans-oriya-fonts
+not-installed"noto-sans-oriya-ui-fonts
+not-installed"noto-sans-osage-fonts
+not-installed"noto-sans-osmanya-fonts
+not-installed"noto-sans-phagspa-fonts
+not-installed"noto-sans-phoenician-fonts
+not-installed"noto-sans-rejang-fonts
+not-installed"noto-sans-runic-fonts
+not-installed"noto-sans-samaritan-fonts
+not-installed"noto-sans-saurashtra-fonts
+not-installed"noto-sans-sc-black-fonts
+not-installed"noto-sans-sc-bold-fonts
+not-installed"noto-sans-sc-demilight-fonts
+not-installed"noto-sans-sc-fonts
+not-installed"noto-sans-sc-fonts-full
+not-installed"noto-sans-sc-light-fonts
+not-installed"noto-sans-sc-medium-fonts
+not-installed"noto-sans-sc-mono-fonts
+not-installed"noto-sans-sc-regular-fonts
+not-installed"noto-sans-sc-thin-fonts
+not-installed"noto-sans-shavian-fonts
+not-installed"noto-sans-sinhala-fonts
+not-installed"noto-sans-sinhala-ui-fonts
+not-installed"noto-sans-sundanese-fonts
+not-installed"noto-sans-sylotinagri-fonts
+not-installed"noto-sans-symbols-fonts
+not-installed"noto-sans-symbols2-fonts
+not-installed"noto-sans-syriaceastern-fonts
+not-installed"noto-sans-syriacestrangela-fonts
+not-installed"noto-sans-syriacwestern-fonts
+not-installed"noto-sans-tagalog-fonts
+not-installed"noto-sans-tagbanwa-fonts
+not-installed"noto-sans-taile-fonts
+not-installed"noto-sans-taitham-fonts
+not-installed"noto-sans-taiviet-fonts
+not-installed"noto-sans-tamil-fonts
+not-installed"noto-sans-tamil-ui-fonts
+not-installed"noto-sans-tc-black-fonts
+not-installed"noto-sans-tc-bold-fonts
+not-installed"noto-sans-tc-demilight-fonts
+not-installed"noto-sans-tc-fonts
+not-installed"noto-sans-tc-fonts-full
+not-installed"noto-sans-tc-light-fonts
+not-installed"noto-sans-tc-medium-fonts
+not-installed"noto-sans-tc-mono-fonts
+not-installed"noto-sans-tc-regular-fonts
+not-installed"noto-sans-tc-thin-fonts
+not-installed"noto-sans-telugu-fonts
+not-installed"noto-sans-telugu-ui-fonts
+not-installed"noto-sans-thaana-fonts
+not-installed"noto-sans-thai-fonts
+not-installed"noto-sans-thai-ui-fonts
+not-installed"noto-sans-tibetan-fonts
+not-installed"noto-sans-tifinagh-fonts
+not-installed"noto-sans-ugaritic-fonts
+not-installed"noto-sans-vai-fonts
+not-installed"noto-sans-yi-fonts
+not-installed"noto-serif-armenian-fonts
+not-installed"noto-serif-bengali-fonts
+not-installed"noto-serif-devanagari-fonts
+not-installed"noto-serif-display-fonts
+not-installed"noto-serif-ethiopic-fonts
+not-installed"noto-serif-fonts
+not-installed"noto-serif-georgian-fonts
+not-installed"noto-serif-gujarati-fonts
+not-installed"noto-serif-hebrew-fonts
+not-installed"noto-serif-jp-black-fonts
+not-installed"noto-serif-jp-bold-fonts
+not-installed"noto-serif-jp-extralight-fonts
+not-installed"noto-serif-jp-fonts
+not-installed"noto-serif-jp-fonts-full
+not-installed"noto-serif-jp-light-fonts
+not-installed"noto-serif-jp-medium-fonts
+not-installed"noto-serif-jp-regular-fonts
+not-installed"noto-serif-jp-semibold-fonts
+not-installed"noto-serif-kannada-fonts
+not-installed"noto-serif-khmer-fonts
+not-installed"noto-serif-kr-black-fonts
+not-installed"noto-serif-kr-bold-fonts
+not-installed"noto-serif-kr-extralight-fonts
+not-installed"noto-serif-kr-fonts
+not-installed"noto-serif-kr-fonts-full
+not-installed"noto-serif-kr-light-fonts
+not-installed"noto-serif-kr-medium-fonts
+not-installed"noto-serif-kr-regular-fonts
+not-installed"noto-serif-kr-semibold-fonts
+not-installed"noto-serif-lao-fonts
+not-installed"noto-serif-malayalam-fonts
+not-installed"noto-serif-myanmar-fonts
+not-installed"noto-serif-sc-black-fonts
+not-installed"noto-serif-sc-bold-fonts
+not-installed"noto-serif-sc-extralight-fonts
+not-installed"noto-serif-sc-fonts
+not-installed"noto-serif-sc-fonts-full
+not-installed"noto-serif-sc-light-fonts
+not-installed"noto-serif-sc-medium-fonts
+not-installed"noto-serif-sc-regular-fonts
+not-installed"noto-serif-sc-semibold-fonts
+not-installed"noto-serif-sinhala-fonts
+not-installed"noto-serif-tamil-fonts
+not-installed"noto-serif-tc-black-fonts
+not-installed"noto-serif-tc-bold-fonts
+not-installed"noto-serif-tc-extralight-fonts
+not-installed"noto-serif-tc-fonts
+not-installed"noto-serif-tc-fonts-full
+not-installed"noto-serif-tc-light-fonts
+not-installed"noto-serif-tc-medium-fonts
+not-installed"noto-serif-tc-regular-fonts
+not-installed"noto-serif-tc-semibold-fonts
+not-installed"noto-serif-telugu-fonts
+not-installed"noto-serif-thai-fonts
+not-installed"novdoc
+not-installed"novnc
+not-installed"novprog
+not-installed"novprog-lang
+not-installed"nping
+not-installed"npkg
+installed"npm10
+not-installed"npm12
+not-installed"npm8
+not-installed"npth-devel
+not-installed"nqp
+not-installed"nrpe
+not-installed"nrpe-doc
+installed"nscd
+not-installed"nsd
+not-installed"nsjail
+not-installed"nsnake
+installed"nss-mdns
+installed"nss-mdns-32bit
+not-installed"nss-myhostname
+not-installed"nss-myhostname-32bit
+not-installed"nss-mymachines
+not-installed"nss-mymachines-32bit
+not-installed"nss-pam-ldapd
+not-installed"nss-pam-ldapd-32bit
+not-installed"nss-resolve
+not-installed"nss-shared-helper-devel
+not-installed"nss-systemd
+not-installed"nss_ldap
+not-installed"nss_ldap-32bit
+not-installed"nss_wrapper
+installed"ntfs-3g
+installed"ntfsprogs
+not-installed"ntfsprogs-extra
+not-installed"ntl-devel
+not-installed"ntl-doc
+installed"ntp
+not-installed"ntp-doc
+not-installed"ntp2chrony
+not-installed"ntpsec
+not-installed"ntpsec-utils
+not-installed"nudoku
+not-installed"nudoku-lang
+not-installed"nulloy
+not-installed"nulloy-gstreamer
+not-installed"nulloy-phonon
+not-installed"nulloy-taglib
+not-installed"nulloy-vlc
+installed"numactl
+installed"numad
+not-installed"numatop
+installed"numlockx
+not-installed"nunit
+not-installed"nunit-devel
+not-installed"nuntius
+not-installed"nuntius-lang
+not-installed"nuosu-fonts
+not-installed"nuoveXT2-icon-theme
+not-installed"nut
+not-installed"nut-cgi
+not-installed"nut-devel
+not-installed"nut-drivers-net
+not-installed"nvdock
+not-installed"nvidia-computeG04
+installed"nvidia-computeG05
+not-installed"nvidia-gfxG04-kmp-default
+not-installed"nvidia-gfxG04-kmp-pae
+installed"nvidia-gfxG05-kmp-default
+not-installed"nvidia-glG04
+installed"nvidia-glG05
+not-installed"nvidia-texture-tools
+not-installed"nvme-cli
+not-installed"nvme-cli-regress-script
+not-installed"nvmetcli
+not-installed"nvptx-tools
+not-installed"nxtvepg
+not-installed"o2locktop
+not-installed"o2scl-devel
+not-installed"o2scl-doc
+not-installed"oaml-devel
+not-installed"oath-toolkit
+not-installed"oath-toolkit-xml
+not-installed"obantoo
+not-installed"obby
+not-installed"obby-devel
+not-installed"obby-lang
+not-installed"obconf
+not-installed"obconf-qt
+not-installed"obconf-qt-lang
+not-installed"obex-data-server
+not-installed"obexd
+not-installed"obexd-client
+not-installed"obexd-server
+not-installed"obexfs
+not-installed"obexftp
+not-installed"obexftp-devel
+not-installed"objectweb-anttask
+not-installed"objectweb-asm
+not-installed"objectweb-asm-javadoc
+not-installed"objectweb-pom
+not-installed"objenesis
+not-installed"objenesis-javadoc
+not-installed"obs-service-appimage
+not-installed"obs-service-download_files
+not-installed"obs-service-download_url
+not-installed"obs-service-extract_file
+not-installed"obs-service-format_spec_file
+not-installed"obs-service-kiwi_label_helper
+not-installed"obs-service-kiwi_metainfo_helper
+not-installed"obs-service-obs_scm
+not-installed"obs-service-obs_scm-common
+not-installed"obs-service-product_converter
+not-installed"obs-service-recompress
+not-installed"obs-service-refresh_patches
+not-installed"obs-service-replace_using_package_version
+not-installed"obs-service-rust2rpm
+not-installed"obs-service-set_version
+not-installed"obs-service-snapcraft
+not-installed"obs-service-source_validator
+not-installed"obs-service-tar
+not-installed"obs-service-tar_scm
+not-installed"obs-service-verify_file
+not-installed"obs-studio
+not-installed"obs-studio
+not-installed"obs-studio-debuginfo
+not-installed"obs-studio-debugsource
+not-installed"obs-studio-devel
+not-installed"obs-v4l2sink
+not-installed"obs-v4l2sink
+not-installed"obs-v4l2sink-debuginfo
+not-installed"obs-v4l2sink-debugsource
+not-installed"ocaml
+not-installed"ocaml-benchmark
+not-installed"ocaml-benchmark-devel
+not-installed"ocaml-brlapi
+not-installed"ocaml-calendar
+not-installed"ocaml-calendar-devel
+not-installed"ocaml-camlp4
+not-installed"ocaml-camlp4-devel
+not-installed"ocaml-camlp5
+not-installed"ocaml-camlp5-devel
+not-installed"ocaml-camomile
+not-installed"ocaml-camomile-data
+not-installed"ocaml-camomile-devel
+not-installed"ocaml-cmdliner
+not-installed"ocaml-cmdliner-devel
+not-installed"ocaml-compiler-libs
+not-installed"ocaml-compiler-libs-devel
+not-installed"ocaml-cppo
+not-installed"ocaml-cppo-devel
+not-installed"ocaml-csv
+not-installed"ocaml-csv-devel
+not-installed"ocaml-cudf
+not-installed"ocaml-cudf-devel
+not-installed"ocaml-curses
+not-installed"ocaml-curses-devel
+not-installed"ocaml-dose
+not-installed"ocaml-dose-devel
+not-installed"ocaml-dune
+not-installed"ocaml-easy-format
+not-installed"ocaml-easy-format-devel
+not-installed"ocaml-emacs
+not-installed"ocaml-extlib
+not-installed"ocaml-extlib-devel
+not-installed"ocaml-facile
+not-installed"ocaml-facile-devel
+not-installed"ocaml-fileutils
+not-installed"ocaml-fileutils-devel
+not-installed"ocaml-findlib
+not-installed"ocaml-findlib-camlp4
+not-installed"ocaml-findlib-devel
+not-installed"ocaml-gen
+not-installed"ocaml-gen-devel
+not-installed"ocaml-gettext
+not-installed"ocaml-gettext-camomile
+not-installed"ocaml-gettext-camomile-devel
+not-installed"ocaml-gettext-devel
+not-installed"ocaml-gettext-stub
+not-installed"ocaml-gettext-stub-devel
+not-installed"ocaml-hivex
+not-installed"ocaml-hivex-devel
+not-installed"ocaml-jsonm
+not-installed"ocaml-jsonm-devel
+not-installed"ocaml-lablgl
+not-installed"ocaml-lablgl-devel
+not-installed"ocaml-lablgtk2
+not-installed"ocaml-lablgtk2-devel
+not-installed"ocaml-labltk
+not-installed"ocaml-labltk-devel
+not-installed"ocaml-libguestfs
+not-installed"ocaml-libguestfs-devel
+not-installed"ocaml-libvirt
+not-installed"ocaml-libvirt-devel
+not-installed"ocaml-mccs
+not-installed"ocaml-mccs-devel
+not-installed"ocaml-menhir
+not-installed"ocaml-menhir-devel
+not-installed"ocaml-migrate-parsetree
+not-installed"ocaml-migrate-parsetree-devel
+not-installed"ocaml-oasis
+not-installed"ocaml-oasis-devel
+not-installed"ocaml-obuild
+not-installed"ocaml-ocamlbuild
+not-installed"ocaml-ocamlbuild-devel
+not-installed"ocaml-ocamldoc
+not-installed"ocaml-ocamlgraph
+not-installed"ocaml-ocamlgraph-devel
+not-installed"ocaml-odn
+not-installed"ocaml-odn-devel
+not-installed"ocaml-ounit
+not-installed"ocaml-ounit-devel
+not-installed"ocaml-parmap
+not-installed"ocaml-parmap-devel
+not-installed"ocaml-pcre
+not-installed"ocaml-pcre-devel
+not-installed"ocaml-ppx_derivers
+not-installed"ocaml-ppx_derivers-devel
+not-installed"ocaml-ppx_tools_versioned
+not-installed"ocaml-ppx_tools_versioned-devel
+not-installed"ocaml-ptmap
+not-installed"ocaml-ptmap-devel
+not-installed"ocaml-qcheck
+not-installed"ocaml-qcheck-devel
+not-installed"ocaml-qtest
+not-installed"ocaml-qtest-devel
+not-installed"ocaml-re
+not-installed"ocaml-re-devel
+not-installed"ocaml-result
+not-installed"ocaml-result-devel
+not-installed"ocaml-rope
+not-installed"ocaml-rope-devel
+not-installed"ocaml-rpm-macros
+not-installed"ocaml-runtime
+not-installed"ocaml-sedlex
+not-installed"ocaml-sedlex-devel
+not-installed"ocaml-sha
+not-installed"ocaml-sha-devel
+not-installed"ocaml-source
+not-installed"ocaml-type-conv
+not-installed"ocaml-type-conv-devel
+not-installed"ocaml-uutf
+not-installed"ocaml-uutf-devel
+not-installed"ocaml-x11
+not-installed"ocaml-xml-light
+not-installed"ocaml-xml-light-devel
+not-installed"ocamlify
+not-installed"ocamlmod
+not-installed"occt
+not-installed"occt-DRAWEXE
+not-installed"occt-devel
+not-installed"occt-devel-doc
+not-installed"oce
+not-installed"oce-DRAWEXE
+not-installed"oce-devel
+not-installed"ocfs2-tools
+not-installed"ocfs2-tools-devel
+not-installed"ocfs2-tools-devel-static
+not-installed"ocfs2-tools-o2cb
+not-installed"ocl-icd-devel
+not-installed"oclock
+not-installed"ocp
+not-installed"ocp
+not-installed"ocp-debuginfo
+not-installed"ocp-debugsource
+not-installed"ocr-gnu-hpc
+not-installed"ocr-gnu-hpc-devel
+not-installed"ocr-gnu-hpc-doc
+not-installed"ocr-gnu-hpc-examples
+not-installed"ocr-gnu-mpich-hpc
+not-installed"ocr-gnu-mpich-hpc-devel
+not-installed"ocr-gnu-mpich-hpc-doc
+not-installed"ocr-gnu-mpich-hpc-examples
+not-installed"ocr-gnu-mvapich2-hpc
+not-installed"ocr-gnu-mvapich2-hpc-devel
+not-installed"ocr-gnu-mvapich2-hpc-doc
+not-installed"ocr-gnu-mvapich2-hpc-examples
+not-installed"ocr-gnu-openmpi1-hpc
+not-installed"ocr-gnu-openmpi1-hpc-devel
+not-installed"ocr-gnu-openmpi1-hpc-doc
+not-installed"ocr-gnu-openmpi1-hpc-examples
+not-installed"ocr-gnu-openmpi2-hpc
+not-installed"ocr-gnu-openmpi2-hpc-devel
+not-installed"ocr-gnu-openmpi2-hpc-doc
+not-installed"ocr-gnu-openmpi2-hpc-examples
+not-installed"ocr-gnu-openmpi3-hpc
+not-installed"ocr-gnu-openmpi3-hpc-devel
+not-installed"ocr-gnu-openmpi3-hpc-doc
+not-installed"ocr-gnu-openmpi3-hpc-examples
+not-installed"ocr_1_0_1-gnu-hpc
+not-installed"ocr_1_0_1-gnu-hpc-devel
+not-installed"ocr_1_0_1-gnu-hpc-doc
+not-installed"ocr_1_0_1-gnu-hpc-examples
+not-installed"ocr_1_0_1-gnu-mpich-hpc
+not-installed"ocr_1_0_1-gnu-mpich-hpc-devel
+not-installed"ocr_1_0_1-gnu-mpich-hpc-doc
+not-installed"ocr_1_0_1-gnu-mpich-hpc-examples
+not-installed"ocr_1_0_1-gnu-mvapich2-hpc
+not-installed"ocr_1_0_1-gnu-mvapich2-hpc-devel
+not-installed"ocr_1_0_1-gnu-mvapich2-hpc-doc
+not-installed"ocr_1_0_1-gnu-mvapich2-hpc-examples
+not-installed"ocr_1_0_1-gnu-openmpi1-hpc
+not-installed"ocr_1_0_1-gnu-openmpi1-hpc-devel
+not-installed"ocr_1_0_1-gnu-openmpi1-hpc-doc
+not-installed"ocr_1_0_1-gnu-openmpi1-hpc-examples
+not-installed"ocr_1_0_1-gnu-openmpi2-hpc
+not-installed"ocr_1_0_1-gnu-openmpi2-hpc-devel
+not-installed"ocr_1_0_1-gnu-openmpi2-hpc-doc
+not-installed"ocr_1_0_1-gnu-openmpi2-hpc-examples
+not-installed"ocr_1_0_1-gnu-openmpi3-hpc
+not-installed"ocr_1_0_1-gnu-openmpi3-hpc-devel
+not-installed"ocr_1_0_1-gnu-openmpi3-hpc-doc
+not-installed"ocr_1_0_1-gnu-openmpi3-hpc-examples
+not-installed"ocrad
+not-installed"ocrad-devel
+not-installed"ocserv
+not-installed"octave
+not-installed"octave-CSXCAD
+not-installed"octave-cli
+not-installed"octave-devel
+not-installed"octave-doc
+not-installed"octave-forge-bim
+not-installed"octave-forge-cgi
+not-installed"octave-forge-communications
+not-installed"octave-forge-control
+not-installed"octave-forge-data-smoothing
+not-installed"octave-forge-database
+not-installed"octave-forge-dataframe
+not-installed"octave-forge-divand
+not-installed"octave-forge-doctest
+not-installed"octave-forge-econometrics
+not-installed"octave-forge-financial
+not-installed"octave-forge-fits
+not-installed"octave-forge-fpl
+not-installed"octave-forge-fuzzy-logic-toolkit
+not-installed"octave-forge-ga
+not-installed"octave-forge-general
+not-installed"octave-forge-generate_html
+not-installed"octave-forge-geometry
+not-installed"octave-forge-gsl
+not-installed"octave-forge-image
+not-installed"octave-forge-image-acquisition
+not-installed"octave-forge-instrument-control
+not-installed"octave-forge-interval
+not-installed"octave-forge-io
+not-installed"octave-forge-level-set
+not-installed"octave-forge-linear-algebra
+not-installed"octave-forge-lssa
+not-installed"octave-forge-ltfat
+not-installed"octave-forge-mapping
+not-installed"octave-forge-mechanics
+not-installed"octave-forge-miscellaneous
+not-installed"octave-forge-msh
+not-installed"octave-forge-mvn
+not-installed"octave-forge-nan
+not-installed"octave-forge-ncarray
+not-installed"octave-forge-netcdf
+not-installed"octave-forge-nurbs
+not-installed"octave-forge-octclip
+not-installed"octave-forge-optics
+not-installed"octave-forge-optim
+not-installed"octave-forge-parallel
+not-installed"octave-forge-quaternion
+not-installed"octave-forge-queueing
+not-installed"octave-forge-secs1d
+not-installed"octave-forge-secs2d
+not-installed"octave-forge-secs3d
+not-installed"octave-forge-signal
+not-installed"octave-forge-sockets
+not-installed"octave-forge-specfun
+not-installed"octave-forge-splines
+not-installed"octave-forge-statistics
+not-installed"octave-forge-stk
+not-installed"octave-forge-strings
+not-installed"octave-forge-struct
+not-installed"octave-forge-symbolic
+not-installed"octave-forge-tisean
+not-installed"octave-forge-tsa
+not-installed"octave-forge-vrml
+not-installed"octave-nlopt_optimize
+not-installed"octave-openEMS
+not-installed"ode-devel
+not-installed"odp-devel
+not-installed"odp-libs
+not-installed"odt2txt
+not-installed"odvr
+not-installed"odvr
+not-installed"odvr-debuginfo
+not-installed"odvr-debugsource
+installed"office
+not-installed"offlineimap
+not-installed"offlineimap-htmldoc
+not-installed"ofl
+not-installed"ofono
+not-installed"ofono-devel
+not-installed"ofono-tests
+not-installed"oggfwd
+not-installed"oggfwd
+not-installed"oggfwd-debuginfo
+not-installed"oggvideotools
+not-installed"oggvideotools
+not-installed"oggvideotools-debuginfo
+not-installed"oggvideotools-debugsource
+not-installed"oggz-tools
+not-installed"ogmrip
+not-installed"ogmrip
+not-installed"ogmrip-ac3
+not-installed"ogmrip-ac3
+not-installed"ogmrip-ac3-debuginfo
+not-installed"ogmrip-ac3-debugsource
+not-installed"ogmrip-ac3-lang
+not-installed"ogmrip-debuginfo
+not-installed"ogmrip-debugsource
+not-installed"ogmrip-dirac
+not-installed"ogmrip-dirac
+not-installed"ogmrip-dirac-debuginfo
+not-installed"ogmrip-dirac-debugsource
+not-installed"ogmrip-dirac-lang
+not-installed"ogmrip-flac
+not-installed"ogmrip-flac
+not-installed"ogmrip-flac-debuginfo
+not-installed"ogmrip-flac-debugsource
+not-installed"ogmrip-lang
+not-installed"ogmrip-mpeg
+not-installed"ogmrip-mpeg
+not-installed"ogmrip-mpeg-debuginfo
+not-installed"ogmrip-mpeg-debugsource
+not-installed"ogmrip-nero-aac
+not-installed"ogmrip-nero-aac
+not-installed"ogmrip-nero-aac-lang
+not-installed"ogmrip-oggz
+not-installed"ogmrip-oggz
+not-installed"ogmrip-oggz-debuginfo
+not-installed"ogmrip-oggz-debugsource
+not-installed"ogmrip-oggz-lang
+not-installed"ogmrip-profiles
+not-installed"ogmrip-profiles
+not-installed"ogmrip-video-copy
+not-installed"ogmrip-video-copy
+not-installed"ogmrip-video-copy-debuginfo
+not-installed"ogmrip-video-copy-debugsource
+not-installed"ogmtools
+not-installed"ogre-demos
+not-installed"ogre-demos-devel
+not-installed"ogre-docs
+not-installed"ogre-tools
+not-installed"ohpc
+not-installed"oidentd
+not-installed"okteta
+not-installed"okteta-data
+not-installed"okteta-devel
+not-installed"okteta-lang
+not-installed"okteta-part
+not-installed"okteta-part-lang
+installed"okular
+not-installed"okular-devel
+installed"okular-lang
+not-installed"okular-spectre
+not-installed"omnisharp-server
+not-installed"omping
+not-installed"onboard
+not-installed"onboard-data
+not-installed"onboard-lang
+not-installed"oneko
+not-installed"oniguruma-devel
+not-installed"onscripter
+not-installed"onscripter
+not-installed"onscripter-debuginfo
+not-installed"onscripter-debugsource
+not-installed"ooRexx
+not-installed"ooRexx-devel
+not-installed"opa-address-resolution
+not-installed"opa-address-resolution-devel
+not-installed"opa-basic-tools
+not-installed"opa-fastfabric
+not-installed"opa-fm
+not-installed"opa-fmgui
+not-installed"opa-snapconfig
+not-installed"opae
+not-installed"opae-devel
+not-installed"opam
+not-installed"opam-file-format-devel
+not-installed"opam-installer
+installed"open-iscsi
+not-installed"open-iscsi-devel
+not-installed"open-isns
+not-installed"open-isns-devel
+not-installed"open-lldp
+not-installed"open-lldp-devel
+not-installed"open-vm-tools
+not-installed"open-vm-tools-desktop
+not-installed"openCryptoki
+not-installed"openCryptoki-32bit
+not-installed"openCryptoki-64bit
+not-installed"openCryptoki-devel
+not-installed"openEMS
+not-installed"openEMS-devel
+not-installed"openEMS-matlab
+not-installed"openQA
+not-installed"openQA-bootstrap
+not-installed"openQA-client
+not-installed"openQA-common
+not-installed"openQA-doc
+not-installed"openQA-local-db
+not-installed"openQA-worker
+installed"openSUSE
+not-installed"openSUSE-Addon-NonOss
+not-installed"openSUSE-Addon-NonOss-release
+not-installed"openSUSE-EULAs
+not-installed"openSUSE-MicroOS
+not-installed"openSUSE-MicroOS-release
+not-installed"openSUSE-MicroOS-release-appliance
+not-installed"openSUSE-MicroOS-release-appliance-kubic
+not-installed"openSUSE-MicroOS-release-dvd
+not-installed"openSUSE-MicroOS-release-kubic-dvd
+not-installed"openSUSE-appdata-extra
+not-installed"openSUSE-appstream-process
+installed"openSUSE-build-key
+installed"openSUSE-release
+installed"openSUSE-release-dvd
+installed"openSUSE-release-ftp
+not-installed"openSUSE-release-tools
+not-installed"openSUSE-release-tools-abichecker
+not-installed"openSUSE-release-tools-announcer
+not-installed"openSUSE-release-tools-check-source
+not-installed"openSUSE-release-tools-devel
+not-installed"openSUSE-release-tools-leaper
+not-installed"openSUSE-release-tools-maintenance
+not-installed"openSUSE-release-tools-metrics
+not-installed"openSUSE-release-tools-metrics-access
+not-installed"openSUSE-release-tools-obs-operator
+not-installed"openSUSE-release-tools-origin-manager
+not-installed"openSUSE-release-tools-pkglistgen
+not-installed"openSUSE-release-tools-repo-checker
+not-installed"openSUSE-release-tools-staging-bot
+not-installed"openSUSE-xfce-icon-theme
+not-installed"openafs
+not-installed"openafs-authlibs
+not-installed"openafs-authlibs-devel
+not-installed"openafs-client
+not-installed"openafs-devel
+not-installed"openafs-fuse_client
+not-installed"openafs-kernel-source
+not-installed"openafs-kmp-default
+not-installed"openafs-server
+installed"openal-soft-data
+not-installed"openal-soft-devel
+not-installed"openal-soft-devel-32bit
+not-installed"openal-soft-makehrtf
+installed"openal-soft-tools
+not-installed"openarena
+not-installed"openarena-data
+not-installed"openbabel
+not-installed"openbabel-devel
+not-installed"openblas-devel
+not-installed"openblas-devel-headers
+not-installed"openblas-pthreads_0_3_7-gnu-hpc-devel-static
+not-installed"openblas_0_3_7-gnu-hpc-devel-static
+not-installed"openblas_openmp-devel-static
+not-installed"openblas_pthreads-devel-static
+not-installed"openblas_serial-devel-static
+not-installed"openbox
+not-installed"openbox-adwaita-ob-theme
+not-installed"openbox-devel
+not-installed"openbox-gnome
+not-installed"openbox-kde
+not-installed"openbox-theme-adapta
+not-installed"openbox-theme-plata
+not-installed"openbsc
+not-installed"openbsc-bs11-utils
+not-installed"openbsc-bsc-sccplite
+not-installed"opencc
+not-installed"opencc-data
+not-installed"opencc-devel
+not-installed"opencensus-proto-source
+not-installed"opencl-cpp-headers
+not-installed"opencl-headers
+not-installed"opencl-headers-1_2
+not-installed"openclonk
+not-installed"openclonk-data
+installed"openconnect
+not-installed"openconnect-devel
+not-installed"openconnect-doc
+installed"openconnect-lang
+not-installed"opencore-amr
+not-installed"opencore-amr-debugsource
+not-installed"opencsg-devel
+not-installed"opencv
+not-installed"opencv-devel
+not-installed"opencv-doc
+not-installed"opencv3
+not-installed"opencv3-devel
+not-installed"opencv3-doc
+not-installed"opendchub
+not-installed"opendkim
+not-installed"opendkim-devel
+not-installed"opendvdproducer
+not-installed"opendvdproducer
+not-installed"openexr
+not-installed"openexr-devel
+not-installed"openexr-doc
+not-installed"openfortivpn
+not-installed"opengl-games-utils
+not-installed"opengost-otf-fonts
+not-installed"opengost-ttf-fonts
+not-installed"openh264
+not-installed"openh264-debugsource
+not-installed"openh264-devel
+not-installed"openhpi
+not-installed"openhpi-clients
+not-installed"openhpi-daemon
+not-installed"openhpi-devel
+not-installed"openjade
+not-installed"openjade-devel
+not-installed"openjpeg
+not-installed"openjpeg-devel
+not-installed"openjpeg-devel-32bit
+not-installed"openjpeg2
+not-installed"openjpeg2-devel
+not-installed"openkim-models
+not-installed"openldap2
+not-installed"openldap2-back-meta
+not-installed"openldap2-back-perl
+not-installed"openldap2-back-sock
+not-installed"openldap2-back-sql
+installed"openldap2-client
+not-installed"openldap2-contrib
+not-installed"openldap2-devel
+not-installed"openldap2-devel-32bit
+not-installed"openldap2-devel-static
+not-installed"openldap2-doc
+not-installed"openldap2-ppolicy-check-password
+not-installed"openlibm-devel
+not-installed"openlierox
+not-installed"openlmi
+not-installed"openlmi-account
+not-installed"openlmi-fan
+not-installed"openlmi-hardware
+not-installed"openlmi-journald
+not-installed"openlmi-locale
+not-installed"openlmi-logicalfile
+not-installed"openlmi-networking
+not-installed"openlmi-pcp
+not-installed"openlmi-pegasus-compat
+not-installed"openlmi-powermanagement
+not-installed"openlmi-providers
+not-installed"openlmi-providers-devel
+not-installed"openlmi-providers-doc
+not-installed"openlmi-providers-libs
+not-installed"openlmi-python-base
+not-installed"openlmi-python-providers
+not-installed"openlmi-python-test
+not-installed"openlmi-service
+not-installed"openlmi-software
+not-installed"openlmi-sssd
+not-installed"openmarkup
+not-installed"openmarkup-javadoc
+not-installed"openmarkup-manual
+not-installed"openmpi
+not-installed"openmpi-config
+not-installed"openmpi-devel
+not-installed"openmpi-libs
+not-installed"openmpi-libs-32bit
+not-installed"openmpi-testsuite
+not-installed"openmpi1-gnu-hpc
+not-installed"openmpi1-gnu-hpc-devel
+not-installed"openmpi1-gnu-hpc-devel-static
+not-installed"openmpi1-gnu-hpc-macros-devel
+not-installed"openmpi2
+not-installed"openmpi2-config
+not-installed"openmpi2-devel
+not-installed"openmpi2-docs
+not-installed"openmpi2-gnu-hpc
+not-installed"openmpi2-gnu-hpc-devel
+not-installed"openmpi2-gnu-hpc-devel-static
+not-installed"openmpi2-gnu-hpc-docs
+not-installed"openmpi2-gnu-hpc-macros-devel
+not-installed"openmpi2-libs
+not-installed"openmpi2-libs-32bit
+not-installed"openmpi2-testsuite
+not-installed"openmpi3
+not-installed"openmpi3-config
+not-installed"openmpi3-devel
+not-installed"openmpi3-docs
+not-installed"openmpi3-gnu-hpc
+not-installed"openmpi3-gnu-hpc-devel
+not-installed"openmpi3-gnu-hpc-devel-static
+not-installed"openmpi3-gnu-hpc-docs
+not-installed"openmpi3-gnu-hpc-macros-devel
+not-installed"openmpi3-libs
+not-installed"openmpi3-libs-32bit
+not-installed"openmpi3-testsuite
+not-installed"openmpi_1_10_7-gnu-hpc
+not-installed"openmpi_1_10_7-gnu-hpc-devel
+not-installed"openmpi_1_10_7-gnu-hpc-devel-static
+not-installed"openmpi_1_10_7-gnu-hpc-macros-devel
+not-installed"openmpi_1_10_7-gnu-hpc-testsuite
+not-installed"openmpi_2_1_6-gnu-hpc
+not-installed"openmpi_2_1_6-gnu-hpc-devel
+not-installed"openmpi_2_1_6-gnu-hpc-devel-static
+not-installed"openmpi_2_1_6-gnu-hpc-docs
+not-installed"openmpi_2_1_6-gnu-hpc-macros-devel
+not-installed"openmpi_2_1_6-gnu-hpc-testsuite
+not-installed"openmpi_3_1_4-gnu-hpc
+not-installed"openmpi_3_1_4-gnu-hpc-devel
+not-installed"openmpi_3_1_4-gnu-hpc-devel-static
+not-installed"openmpi_3_1_4-gnu-hpc-docs
+not-installed"openmpi_3_1_4-gnu-hpc-macros-devel
+not-installed"openmpi_3_1_4-gnu-hpc-testsuite
+not-installed"openmpt123
+not-installed"openmw
+not-installed"openobex-apps
+not-installed"openobex-devel
+not-installed"openocd
+not-installed"openocd-data
+not-installed"openomf
+not-installed"openpgm-devel
+not-installed"openrct2
+not-installed"openrct2-titlesequences
+not-installed"openrdate
+not-installed"openresolv
+not-installed"opensaml-bin
+not-installed"opensaml-schemas
+not-installed"opensc
+not-installed"opensc-32bit
+not-installed"openscad
+not-installed"openscap
+not-installed"openscap-content
+not-installed"openscap-devel
+not-installed"openscap-docker
+not-installed"openscap-utils
+not-installed"openshot-qt
+not-installed"openslide-doc
+not-installed"openslide-tools
+installed"openslp
+not-installed"openslp-devel
+not-installed"openslp-server
+not-installed"opensm
+not-installed"opensm-devel
+not-installed"opensm-devel-32bit
+not-installed"opensnc
+not-installed"opensnc
+not-installed"opensnc-debuginfo
+not-installed"opensnc-debugsource
+not-installed"opensp
+not-installed"opensp-devel
+not-installed"opensp-doc
+not-installed"openspades
+not-installed"openspades
+not-installed"openspades-debuginfo
+not-installed"openspades-debugsource
+not-installed"openspecfun-devel
+installed"openssh
+installed"openssh-askpass-gnome
+not-installed"openssh-cavs
+not-installed"openssh-fips
+installed"openssh-helpers
+installed"openssl
+not-installed"openssl-1_0_0
+not-installed"openssl-1_0_0-cavs
+not-installed"openssl-1_0_0-doc
+installed"openssl-1_1
+not-installed"openssl-1_1-doc
+not-installed"openssl-cbs-devel
+not-installed"openssl-engine-libp11
+not-installed"openssl-ibmpkcs11
+not-installed"openssl_tpm_engine
+not-installed"openstack-macros
+not-installed"openstack-suse-macros
+not-installed"openstack-suse-sudo
+not-installed"openstack-tempest
+not-installed"openstack-tempest-doc
+not-installed"openstack-utils
+installed"opensuse-welcome
+installed"opensuse-welcome-lang
+not-installed"opentest4j
+not-installed"opentest4j-javadoc
+not-installed"opentoonz
+not-installed"opentracing-cpp-devel
+not-installed"opentracing-cpp-source
+not-installed"openttd
+not-installed"openttd-data
+not-installed"openttd-dedicated
+not-installed"openttd-opengfx
+not-installed"openttd-openmsx
+not-installed"openttd-opensfx
+not-installed"openucx-tools
+installed"openvpn
+not-installed"openvpn-auth-pam-plugin
+not-installed"openvpn-devel
+not-installed"openvpn-down-root-plugin
+not-installed"openvswitch
+not-installed"openvswitch-devel
+not-installed"openvswitch-doc
+not-installed"openvswitch-ipsec
+not-installed"openvswitch-ovn-central
+not-installed"openvswitch-ovn-common
+not-installed"openvswitch-ovn-docker
+not-installed"openvswitch-ovn-host
+not-installed"openvswitch-ovn-vtep
+not-installed"openvswitch-pki
+not-installed"openvswitch-test
+not-installed"openvswitch-vtep
+not-installed"openwsman-java
+not-installed"openwsman-perl
+not-installed"openwsman-ruby
+not-installed"openwsman-ruby-docs
+not-installed"openwsman-server
+not-installed"openwsman-server-plugin-ruby
+not-installed"openxcom
+not-installed"openxcom-doc
+not-installed"opera
+not-installed"opera-uget-integrator
+not-installed"opi
+not-installed"opie
+not-installed"opie-32bit
+not-installed"oping
+not-installed"opmsg
+not-installed"oprofile
+not-installed"oprofile-32bit
+not-installed"oprofile-devel
+not-installed"optee-client
+not-installed"optee-client-devel
+not-installed"optipng
+not-installed"opus-tools
+not-installed"opusfile-devel
+not-installed"orage
+not-installed"orage-doc
+not-installed"orage-lang
+not-installed"orbit2
+not-installed"orbit2-32bit
+not-installed"orbit2-devel
+not-installed"orbit2-doc
+not-installed"orc
+not-installed"orc-doc
+not-installed"orca
+not-installed"orca-lang
+not-installed"orcania-devel
+not-installed"origami-icon-theme
+installed"orion
+not-installed"orkhon-fonts
+not-installed"oro
+not-installed"oro-javadoc
+not-installed"ortp
+not-installed"ortp-devel
+not-installed"os-autoinst
+not-installed"os-autoinst-distri-opensuse-deps
+not-installed"os-autoinst-openvswitch
+installed"os-prober
+not-installed"os-service-types-doc
+not-installed"osc
+not-installed"osc-plugin-collab
+not-installed"osc-plugin-cycle
+not-installed"osc-plugin-install
+not-installed"osc-plugin-origin
+not-installed"osc-plugin-staging
+not-installed"osc-plugin-vdelreq
+not-installed"osclib
+not-installed"osdlyrics
+not-installed"osdlyrics-lang
+not-installed"osgi-annotation
+not-installed"osgi-annotation-javadoc
+not-installed"osgi-compendium
+not-installed"osgi-compendium-javadoc
+not-installed"osgi-core
+not-installed"osgi-core-javadoc
+installed"osinfo-db
+not-installed"osinfo-db-tools
+not-installed"osl.imageio1_9
+not-installed"osmo-bsc
+not-installed"osmo-bsc-abisip-find
+not-installed"osmo-bsc-bs11-utils
+not-installed"osmo-bsc-ipaccess-utils
+not-installed"osmo-bsc-meas-utils
+not-installed"osmo-bts
+not-installed"osmo-bts-omldummy
+not-installed"osmo-bts-virtual
+not-installed"osmo-fl2k
+not-installed"osmo-fl2k-devel
+not-installed"osmo-fl2k-udev
+not-installed"osmo-gbproxy
+not-installed"osmo-ggsn
+not-installed"osmo-gtphub
+not-installed"osmo-hlr
+not-installed"osmo-iuh
+not-installed"osmo-mgw
+not-installed"osmo-msc
+not-installed"osmo-pcu
+not-installed"osmo-sgsn
+not-installed"osmo-sip-connector
+not-installed"osmo-stp
+not-installed"osmo-trx
+not-installed"osmo-trx-lms
+not-installed"osmo-trx-uhd
+not-installed"osmo-trx-usrp1
+not-installed"osmosdr
+not-installed"osmosdr-devel
+not-installed"osslsigncode
+not-installed"ossp-uuid
+not-installed"oto
+not-installed"otrs
+not-installed"otrs-doc
+not-installed"otrs-itsm
+not-installed"otter-browser
+not-installed"ovirt-guest-agent-common
+installed"ovmf
+not-installed"ovmf-tools
+not-installed"owasp-modsecurity-crs
+not-installed"owasp-modsecurity-crs-base_rules
+not-installed"owasp-modsecurity-crs-experimental_rules
+not-installed"owasp-modsecurity-crs-optional_rules
+not-installed"owasp-modsecurity-crs-slr_rules
+not-installed"owncloud-client
+not-installed"owncloud-client-caja
+not-installed"owncloud-client-dolphin
+not-installed"owncloud-client-l10n
+not-installed"owncloud-client-nautilus
+not-installed"owncloud-client-nemo
+not-installed"oxygen4-cursors
+not-installed"oxygen5
+not-installed"oxygen5-cursors
+not-installed"oxygen5-decoration
+installed"oxygen5-icon-theme
+installed"oxygen5-icon-theme-large
+not-installed"oxygen5-icon-theme-scalable
+not-installed"oxygen5-lang
+installed"oxygen5-sounds
+not-installed"oxygen5-style
+not-installed"oxygen5-style-32bit
+not-installed"oyranos
+not-installed"oyranos-monitor
+not-installed"oyranos-profile-graph
+not-installed"oyranos-qcmsevents
+not-installed"oyranos-ui-fltk
+not-installed"p0f
+installed"p11-kit
+installed"p11-kit-32bit
+installed"p11-kit-devel
+not-installed"p11-kit-nss-trust
+not-installed"p11-kit-nss-trust-32bit
+not-installed"p11-kit-server
+installed"p11-kit-tools
+installed"p7zip
+not-installed"p7zip-doc
+installed"p7zip-full
+not-installed"p8-platform-devel
+not-installed"pacemaker
+not-installed"pacemaker-cli
+not-installed"pacemaker-cts
+not-installed"pacemaker-remote
+not-installed"packETH
+not-installed"package-translations
+not-installed"package-update-indicator
+not-installed"package-update-indicator-lang
+not-installed"packit
+not-installed"pacpl
+not-installed"pacpl
+not-installed"paexec
+not-installed"paexec-examples
+not-installed"pagein
+not-installed"pagemon
+not-installed"pagetools
+not-installed"paglinawan-quicksand-fonts
+not-installed"pagul-fonts
+not-installed"pagure
+not-installed"pagure-ci
+not-installed"pagure-ev
+not-installed"pagure-loadjson
+not-installed"pagure-logcom
+not-installed"pagure-milters
+not-installed"pagure-mirror
+not-installed"pagure-theme-chameleon
+not-installed"pagure-theme-default-openSUSE
+not-installed"pagure-theme-default-upstream
+not-installed"pagure-theme-pagureio
+not-installed"pagure-theme-srcfpo
+not-installed"pagure-theme-upstream
+not-installed"pagure-webhook
+not-installed"palapeli
+not-installed"palapeli-data
+not-installed"palapeli-devel
+not-installed"palapeli-lang
+not-installed"palaura
+not-installed"palette
+not-installed"palette-lang
+not-installed"palm-db-tools
+installed"pam
+installed"pam-32bit
+installed"pam-config
+not-installed"pam-devel
+not-installed"pam-devel-32bit
+not-installed"pam-doc
+not-installed"pam-python
+not-installed"pam_apparmor
+not-installed"pam_apparmor-32bit
+not-installed"pam_cap
+not-installed"pam_cap-32bit
+not-installed"pam_ccreds
+not-installed"pam_ccreds-32bit
+not-installed"pam_cgfs
+not-installed"pam_chroot
+not-installed"pam_chroot-32bit
+not-installed"pam_cifscreds
+not-installed"pam_csync
+not-installed"pam_csync-32bit
+not-installed"pam_dbus
+not-installed"pam_krb5
+not-installed"pam_krb5-32bit
+not-installed"pam_kwallet
+not-installed"pam_kwallet-32bit
+not-installed"pam_kwallet-common
+not-installed"pam_mktemp
+not-installed"pam_mktemp-32bit
+not-installed"pam_mount
+not-installed"pam_mount-32bit
+not-installed"pam_oath
+not-installed"pam_p11
+not-installed"pam_p11-32bit
+not-installed"pam_passwdqc
+not-installed"pam_passwdqc-32bit
+not-installed"pam_pkcs11
+not-installed"pam_pkcs11-32bit
+not-installed"pam_pkcs11-devel-doc
+not-installed"pam_pwquality
+not-installed"pam_radius
+not-installed"pam_radius-32bit
+not-installed"pam_script
+not-installed"pam_snapper
+not-installed"pam_ssh
+not-installed"pam_ssh-32bit
+not-installed"pam_u2f
+not-installed"pam_userpass
+not-installed"pam_userpass-32bit
+not-installed"pam_wrapper
+not-installed"pam_yubico
+not-installed"pamix
+not-installed"pamixer
+not-installed"pan
+not-installed"pan-lang
+not-installed"pandoc
+not-installed"pandoc-pdf
+not-installed"pango-devel
+not-installed"pango-devel-32bit
+not-installed"pango-tools
+not-installed"pangomm-devel
+not-installed"pangomm-doc
+not-installed"pangomm1_4-devel
+not-installed"pangomm1_4-doc
+not-installed"pangox-compat
+not-installed"pangox-devel
+not-installed"panini
+not-installed"pantheon-wallpapers-branding-upstream
+not-installed"paper-icon-theme
+not-installed"paperclips
+not-installed"paperclips-javadoc
+not-installed"paperkey
+not-installed"paperwork
+not-installed"papi
+not-installed"papi-devel
+not-installed"papi-devel-32bit
+not-installed"papi-devel-static
+not-installed"papi-hpc
+not-installed"papi-hpc-devel
+not-installed"papi_5_7_0-hpc
+not-installed"papi_5_7_0-hpc-devel
+not-installed"papi_5_7_0-hpc-devel-static
+not-installed"papirus-icon-theme
+not-installed"paprefs
+not-installed"paprefs-lang
+not-installed"paps
+not-installed"par
+not-installed"par2cmdline
+not-installed"parallel-netcdf-devel-data
+not-installed"parallel-netcdf-openmpi
+not-installed"parallel-netcdf-openmpi-devel
+not-installed"parallel-netcdf-openmpi-devel-static
+installed"parallel-printer-support
+not-installed"paratype-pt-mono-fonts
+not-installed"paratype-pt-sans-fonts
+not-installed"paratype-pt-serif-fonts
+not-installed"paraview
+not-installed"paraview-devel
+not-installed"paraviewdata
+not-installed"parboiled
+not-installed"parboiled-javadoc
+not-installed"parboiled-scala
+not-installed"parcellite
+not-installed"pari-devel
+not-installed"pari-elldata
+not-installed"pari-galdata
+not-installed"pari-galpol
+not-installed"pari-gp
+not-installed"pari-nftables
+not-installed"pari-seadata
+not-installed"parkverbot
+not-installed"parlatype
+not-installed"parlatype-lang
+not-installed"parley
+not-installed"parley-lang
+not-installed"parole
+not-installed"parole-devel
+not-installed"parole-lang
+not-installed"parpack-openmpi
+not-installed"parpack-openmpi-devel
+not-installed"parpack-openmpi-devel-32bit
+not-installed"partclone
+not-installed"partclone-lang
+installed"parted
+not-installed"parted-devel
+installed"parted-lang
+not-installed"parti
+not-installed"partitionmanager
+not-installed"partitionmanager-lang
+not-installed"parzip
+not-installed"pass-otp
+not-installed"passwdqc
+not-installed"passwdqc-devel
+not-installed"password-store
+not-installed"password-store-dmenu
+not-installed"pasystray
+installed"patch
+not-installed"patch2mail
+not-installed"patchelf
+not-installed"patchutils
+not-installed"patool
+not-installed"patool-bash-completion
+not-installed"patterns-base-32bit
+installed"patterns-base-apparmor
+not-installed"patterns-base-apparmor-32bit
+installed"patterns-base-apparmor_opt
+installed"patterns-base-base
+not-installed"patterns-base-base-32bit
+installed"patterns-base-basesystem
+not-installed"patterns-base-basic_desktop
+not-installed"patterns-base-console
+not-installed"patterns-base-documentation
+installed"patterns-base-enhanced_base
+not-installed"patterns-base-enhanced_base-32bit
+installed"patterns-base-enhanced_base_opt
+installed"patterns-base-minimal_base
+not-installed"patterns-base-minimal_base-32bit
+installed"patterns-base-sw_management
+not-installed"patterns-base-sw_management-32bit
+not-installed"patterns-base-transactional_base
+not-installed"patterns-base-update_test
+installed"patterns-base-x11
+not-installed"patterns-base-x11-32bit
+installed"patterns-base-x11_enhanced
+not-installed"patterns-base-x11_enhanced-32bit
+installed"patterns-base-x11_opt
+not-installed"patterns-ceph-containers-ceph_base
+not-installed"patterns-containers-container_runtime
+not-installed"patterns-containers-container_runtime_kubernetes
+not-installed"patterns-containers-kubeadm
+not-installed"patterns-containers-kubernetes_utilities
+not-installed"patterns-containers-kubic_admin
+not-installed"patterns-containers-kubic_loadbalancer
+not-installed"patterns-containers-kubic_worker
+installed"patterns-desktop-books
+not-installed"patterns-desktop-imaging
+not-installed"patterns-desktop-imaging_opt
+not-installed"patterns-desktop-laptop
+installed"patterns-desktop-multimedia
+installed"patterns-desktop-multimedia_opt
+not-installed"patterns-desktop-technical_writing
+not-installed"patterns-devel-C-C++-devel_C_C++
+not-installed"patterns-devel-base-devel_basis
+not-installed"patterns-devel-base-devel_basis-32bit
+not-installed"patterns-devel-base-devel_kernel
+not-installed"patterns-devel-base-devel_kernel-32bit
+not-installed"patterns-devel-base-devel_rpm_build
+not-installed"patterns-devel-base-devel_web
+not-installed"patterns-devel-java-devel_java
+not-installed"patterns-devel-mono-devel_mono
+not-installed"patterns-devel-osc-devel_osc_build
+not-installed"patterns-devel-perl-devel_perl
+not-installed"patterns-devel-python-devel_python3
+not-installed"patterns-devel-ruby-devel_ruby
+not-installed"patterns-devel-tcl-devel_tcl
+not-installed"patterns-enlightenment-enlightenment
+installed"patterns-fonts-fonts
+installed"patterns-fonts-fonts_opt
+installed"patterns-games-games
+not-installed"patterns-gnome-devel_gnome
+not-installed"patterns-gnome-gnome
+not-installed"patterns-gnome-gnome_basic
+not-installed"patterns-gnome-gnome_basis
+not-installed"patterns-gnome-gnome_basis_opt
+not-installed"patterns-gnome-gnome_games
+not-installed"patterns-gnome-gnome_ide
+not-installed"patterns-gnome-gnome_imaging
+not-installed"patterns-gnome-gnome_internet
+not-installed"patterns-gnome-gnome_multimedia
+not-installed"patterns-gnome-gnome_office
+not-installed"patterns-gnome-gnome_utilities
+not-installed"patterns-gnome-gnome_x11
+not-installed"patterns-gnome-gnome_yast
+not-installed"patterns-gnome-sw_management_gnome
+not-installed"patterns-hpc-compute_node
+not-installed"patterns-hpc-development_node
+not-installed"patterns-hpc-libraries
+not-installed"patterns-hpc-workload_server
+not-installed"patterns-kde-devel_kde_frameworks
+not-installed"patterns-kde-devel_qt5
+installed"patterns-kde-kde
+not-installed"patterns-kde-kde_edutainment
+installed"patterns-kde-kde_games
+not-installed"patterns-kde-kde_ide
+not-installed"patterns-kde-kde_imaging
+installed"patterns-kde-kde_internet
+installed"patterns-kde-kde_multimedia
+installed"patterns-kde-kde_office
+installed"patterns-kde-kde_pim
+installed"patterns-kde-kde_plasma
+not-installed"patterns-kde-kde_telepathy
+installed"patterns-kde-kde_utilities
+installed"patterns-kde-kde_utilities_opt
+installed"patterns-kde-kde_yast
+not-installed"patterns-leechcraft-leechcraft
+not-installed"patterns-leechcraft-leechcraft_browser
+not-installed"patterns-leechcraft-leechcraft_media
+not-installed"patterns-leechcraft-leechcraft_messenger
+not-installed"patterns-leechcraft-leechcraft_netutils
+not-installed"patterns-leechcraft-leechcraft_office
+not-installed"patterns-leechcraft-leechcraft_utilities
+not-installed"patterns-lxde-lxde
+not-installed"patterns-lxde-lxde_laptop
+not-installed"patterns-lxde-lxde_office
+not-installed"patterns-lxqt-lxqt
+not-installed"patterns-mate-mate
+not-installed"patterns-mate-mate_admin
+not-installed"patterns-mate-mate_basis
+not-installed"patterns-mate-mate_internet
+not-installed"patterns-mate-mate_laptop
+not-installed"patterns-mate-mate_office
+not-installed"patterns-mate-mate_office_opt
+not-installed"patterns-mate-mate_utilities
+not-installed"patterns-media-rest_cd_core
+not-installed"patterns-media-rest_cd_gnome
+not-installed"patterns-media-rest_cd_kde
+not-installed"patterns-media-rest_cd_x11
+not-installed"patterns-media-rest_core_dvd
+not-installed"patterns-media-rest_dvd
+not-installed"patterns-microos-alt_onlyDVD
+not-installed"patterns-microos-apparmor
+not-installed"patterns-microos-base
+not-installed"patterns-microos-basesystem
+not-installed"patterns-microos-cloud
+not-installed"patterns-microos-defaults
+not-installed"patterns-microos-hardware
+not-installed"patterns-microos-ima_evm
+not-installed"patterns-microos-onlyDVD
+not-installed"patterns-microos-selinux
+not-installed"patterns-microos-sssd_ldap
+not-installed"patterns-network-network_admin
+not-installed"patterns-non_oss
+not-installed"patterns-non_oss_opt
+installed"patterns-office-office
+not-installed"patterns-rpm-macros
+not-installed"patterns-server-dhcp_dns_server
+not-installed"patterns-server-dhcp_dns_server-32bit
+not-installed"patterns-server-directory_server
+not-installed"patterns-server-directory_server-32bit
+not-installed"patterns-server-file_server
+not-installed"patterns-server-file_server-32bit
+not-installed"patterns-server-gateway_server
+not-installed"patterns-server-gateway_server-32bit
+installed"patterns-server-kvm_server
+installed"patterns-server-kvm_tools
+not-installed"patterns-server-lamp_server
+not-installed"patterns-server-lamp_server-32bit
+not-installed"patterns-server-mail_server
+not-installed"patterns-server-mail_server-32bit
+not-installed"patterns-server-printing
+not-installed"patterns-server-printing-32bit
+not-installed"patterns-server-xen_server
+not-installed"patterns-server-xen_tools
+not-installed"patterns-xfce-xfce
+not-installed"patterns-xfce-xfce_basis
+not-installed"patterns-xfce-xfce_laptop
+not-installed"patterns-xfce-xfce_office
+not-installed"patterns-yast-devel_yast
+installed"patterns-yast-x11_yast
+installed"patterns-yast-yast2_basis
+not-installed"patterns-yast-yast2_install_wf
+not-installed"pavucontrol
+not-installed"pavucontrol-lang
+not-installed"pavucontrol-qt
+not-installed"pavucontrol-qt-lang
+not-installed"pavumeter
+not-installed"pax-utils
+not-installed"pbm2l7k
+not-installed"pbuilder
+not-installed"pbzip2
+not-installed"pcapdump
+not-installed"pcapinfo
+not-installed"pcaudiolib-devel
+not-installed"pcb
+not-installed"pcb-doc
+not-installed"pcc
+not-installed"pcfclock
+not-installed"pcfclock-kmp-default
+not-installed"pcfclock-kmp-pae
+installed"pciutils
+not-installed"pciutils-devel
+not-installed"pciutils-devel-32bit
+not-installed"pcm
+not-installed"pcmanfm
+not-installed"pcmanfm-devel
+not-installed"pcmanfm-lang
+not-installed"pcmanfm-qt
+not-installed"pcmanfm-qt-lang
+not-installed"pcmanx-gtk2
+not-installed"pcmciautils
+not-installed"pcp
+not-installed"pcp-conf
+not-installed"pcp-devel
+not-installed"pcp-doc
+not-installed"pcp-export-pcp2elasticsearch
+not-installed"pcp-export-pcp2graphite
+not-installed"pcp-export-pcp2influxdb
+not-installed"pcp-export-pcp2json
+not-installed"pcp-export-pcp2spark
+not-installed"pcp-export-pcp2xml
+not-installed"pcp-export-pcp2zabbix
+not-installed"pcp-export-zabbix-agent
+not-installed"pcp-gui
+not-installed"pcp-import-collectl2pcp
+not-installed"pcp-import-ganglia2pcp
+not-installed"pcp-import-iostat2pcp
+not-installed"pcp-import-mrtg2pcp
+not-installed"pcp-import-sar2pcp
+not-installed"pcp-manager
+not-installed"pcp-pmda-activemq
+not-installed"pcp-pmda-apache
+not-installed"pcp-pmda-bash
+not-installed"pcp-pmda-bind2
+not-installed"pcp-pmda-bonding
+not-installed"pcp-pmda-cifs
+not-installed"pcp-pmda-cisco
+not-installed"pcp-pmda-dbping
+not-installed"pcp-pmda-dm
+not-installed"pcp-pmda-docker
+not-installed"pcp-pmda-ds389
+not-installed"pcp-pmda-ds389log
+not-installed"pcp-pmda-elasticsearch
+not-installed"pcp-pmda-gfs2
+not-installed"pcp-pmda-gluster
+not-installed"pcp-pmda-gpfs
+not-installed"pcp-pmda-gpsd
+not-installed"pcp-pmda-haproxy
+not-installed"pcp-pmda-infiniband
+not-installed"pcp-pmda-json
+not-installed"pcp-pmda-lmsensors
+not-installed"pcp-pmda-logger
+not-installed"pcp-pmda-lustre
+not-installed"pcp-pmda-lustrecomm
+not-installed"pcp-pmda-mailq
+not-installed"pcp-pmda-memcache
+not-installed"pcp-pmda-mic
+not-installed"pcp-pmda-mounts
+not-installed"pcp-pmda-mysql
+not-installed"pcp-pmda-named
+not-installed"pcp-pmda-netfilter
+not-installed"pcp-pmda-news
+not-installed"pcp-pmda-nfsclient
+not-installed"pcp-pmda-nginx
+not-installed"pcp-pmda-nutcracker
+not-installed"pcp-pmda-nvidia-gpu
+not-installed"pcp-pmda-oracle
+not-installed"pcp-pmda-pdns
+not-installed"pcp-pmda-perfevent
+not-installed"pcp-pmda-postfix
+not-installed"pcp-pmda-prometheus
+not-installed"pcp-pmda-redis
+not-installed"pcp-pmda-roomtemp
+not-installed"pcp-pmda-rpm
+not-installed"pcp-pmda-rsyslog
+not-installed"pcp-pmda-samba
+not-installed"pcp-pmda-sendmail
+not-installed"pcp-pmda-shping
+not-installed"pcp-pmda-slurm
+not-installed"pcp-pmda-smart
+not-installed"pcp-pmda-snmp
+not-installed"pcp-pmda-summary
+not-installed"pcp-pmda-systemd
+not-installed"pcp-pmda-trace
+not-installed"pcp-pmda-unbound
+not-installed"pcp-pmda-vmware
+not-installed"pcp-pmda-weblog
+not-installed"pcp-pmda-zimbra
+not-installed"pcp-pmda-zswap
+not-installed"pcp-system-tools
+not-installed"pcp-testsuite
+not-installed"pcp-webapi
+not-installed"pcp-zeroconf
+not-installed"pcre-devel
+not-installed"pcre-devel-static
+not-installed"pcre-doc
+not-installed"pcre-tools
+not-installed"pcre2-devel
+not-installed"pcre2-devel-static
+not-installed"pcre2-doc
+not-installed"pcre2-tools
+not-installed"pcsc-acr38
+not-installed"pcsc-acr38-devel
+not-installed"pcsc-acsccid
+not-installed"pcsc-asedriveiiie-serial
+not-installed"pcsc-asedriveiiie-usb
+not-installed"pcsc-asekey
+not-installed"pcsc-ccid
+not-installed"pcsc-cyberjack
+not-installed"pcsc-eco5000
+not-installed"pcsc-gempc
+installed"pcsc-lite
+not-installed"pcsc-lite-devel
+not-installed"pcsc-reflex60
+not-installed"pcsc-tools
+not-installed"pcsc-towitoko
+not-installed"pcsc-towitoko-devel
+not-installed"pcsx2
+not-installed"pcsx2
+not-installed"pcsx2-32bit
+not-installed"pcsx2-32bit-debuginfo
+not-installed"pcsx2-debuginfo
+not-installed"pcsx2-debugsource
+not-installed"pcsxr
+not-installed"pcsxr
+not-installed"pcsxr-debuginfo
+not-installed"pcsxr-debugsource
+not-installed"pdf2djvu
+not-installed"pdf2djvu-lang
+not-installed"pdf2svg
+not-installed"pdfgrep
+not-installed"pdfmod
+not-installed"pdfmod-lang
+not-installed"pdftk
+not-installed"pdftk
+not-installed"pdftk-debuginfo
+not-installed"pdftk-debugsource
+not-installed"pdftk-qgui
+not-installed"pdftk-qgui
+not-installed"pdftk-qgui-debuginfo
+not-installed"pdi2iso
+not-installed"pdi2iso
+not-installed"pdi2iso-debuginfo
+not-installed"pdns
+not-installed"pdns-backend-geoip
+not-installed"pdns-backend-godbc
+not-installed"pdns-backend-ldap
+not-installed"pdns-backend-lua
+not-installed"pdns-backend-mydns
+not-installed"pdns-backend-mysql
+not-installed"pdns-backend-postgresql
+not-installed"pdns-backend-remote
+not-installed"pdns-backend-sqlite3
+not-installed"pdns-common
+not-installed"pdns-recursor
+not-installed"pdnsd
+not-installed"pdnsd-doc
+not-installed"pdsh
+not-installed"pdsh-dshgroup
+not-installed"pdsh-genders
+not-installed"pdsh-machines
+not-installed"pdsh-netgroup
+not-installed"pdsh-slurm
+not-installed"peazip
+not-installed"peazip-kf5
+not-installed"peek
+not-installed"peek-lang
+not-installed"pegdown
+not-installed"pegdown-javadoc
+not-installed"pegtl-devel
+not-installed"peksystray
+not-installed"pen
+not-installed"pencil
+installed"pentaho-libxml
+not-installed"pentaho-libxml-javadoc
+installed"pentaho-reporting-flow-engine
+not-installed"pentaho-reporting-flow-engine-javadoc
+not-installed"pepper
+not-installed"percona-toolkit
+not-installed"perf
+not-installed"performous
+not-installed"performous
+not-installed"performous-debuginfo
+not-installed"performous-debugsource
+not-installed"perftest
+installed"perl
+installed"perl-32bit
+not-installed"perl-Acme-Damn
+not-installed"perl-Algorithm-Annotate
+not-installed"perl-Algorithm-C3
+not-installed"perl-Algorithm-CheckDigits
+not-installed"perl-Algorithm-Combinatorics
+not-installed"perl-Algorithm-Diff
+not-installed"perl-Alien-SDL
+not-installed"perl-Alien-Tidyp
+not-installed"perl-Alien-wxWidgets
+not-installed"perl-Any-Moose
+not-installed"perl-AnyEvent
+not-installed"perl-AnyEvent-HTTP
+not-installed"perl-AnyEvent-I3
+not-installed"perl-Apache-AuthCookie
+not-installed"perl-Apache-DBI
+not-installed"perl-Apache-Filter
+not-installed"perl-Apache-LogFormat-Compiler
+not-installed"perl-Apache-Session
+not-installed"perl-Apache-SessionX
+not-installed"perl-Apache2-AuthCookieDBI
+not-installed"perl-App-Ack
+not-installed"perl-App-CELL
+not-installed"perl-App-CLI
+not-installed"perl-App-Cmd
+not-installed"perl-App-Dochazka-CLI
+not-installed"perl-App-Dochazka-Common
+not-installed"perl-App-Dochazka-REST
+not-installed"perl-App-Dochazka-WWW
+not-installed"perl-App-FatPacker
+not-installed"perl-App-MFILE
+not-installed"perl-App-MFILE-WWW
+not-installed"perl-App-Nopaste
+not-installed"perl-App-Rad
+not-installed"perl-App-Rad-Plugin-MoreHelp
+not-installed"perl-App-cpanminus
+not-installed"perl-App-perlbrew
+not-installed"perl-AppConfig
+not-installed"perl-Archive-Cpio
+not-installed"perl-Archive-Extract
+not-installed"perl-Archive-Peek
+not-installed"perl-Archive-Tar-Wrapper
+installed"perl-Archive-Zip
+not-installed"perl-Array-Unique
+not-installed"perl-Audio-FLAC-Header
+not-installed"perl-Audio-FLAC-Header
+not-installed"perl-Audio-Musepack
+not-installed"perl-Audio-Musepack
+not-installed"perl-Audio-RPLD
+not-installed"perl-Audio-Scan
+not-installed"perl-Audio-Scan
+not-installed"perl-Audio-Scan-debuginfo
+not-installed"perl-Audio-Scan-debugsource
+not-installed"perl-Audio-WMA
+not-installed"perl-Audio-WMA
+not-installed"perl-Authen-DecHpwd
+not-installed"perl-Authen-Passphrase
+installed"perl-Authen-SASL
+not-installed"perl-Authen-SASL-Cyrus
+not-installed"perl-B-Debug
+not-installed"perl-B-Hooks-EndOfScope
+not-installed"perl-B-Hooks-OP-Annotation
+not-installed"perl-B-Hooks-OP-Check
+not-installed"perl-B-Hooks-OP-PPAddr
+not-installed"perl-B-Keywords
+not-installed"perl-B-Utils
+not-installed"perl-BIND-Conf_Parser
+not-installed"perl-BSD-Resource
+not-installed"perl-Benchmark-Timer
+not-installed"perl-BerkeleyDB
+not-installed"perl-Bit-Vector
+not-installed"perl-Boost-Geometry-Utils
+installed"perl-Bootloader
+not-installed"perl-Bootloader-YAML
+not-installed"perl-Browser-Open
+not-installed"perl-Business-ISBN
+not-installed"perl-Business-ISBN-Data
+not-installed"perl-Business-ISMN
+not-installed"perl-Business-ISSN
+not-installed"perl-CBOR-XS
+not-installed"perl-CBOR-XS
+not-installed"perl-CBOR-XS-debuginfo
+not-installed"perl-CBOR-XS-debugsource
+not-installed"perl-CDDB
+not-installed"perl-CDDB
+not-installed"perl-CDDB_get
+not-installed"perl-CGI
+not-installed"perl-CGI-Ajax
+not-installed"perl-CGI-Application
+not-installed"perl-CGI-FastTemplate
+not-installed"perl-CGI-FormBuilder
+not-installed"perl-CGI-Session
+not-installed"perl-CGI-Simple
+not-installed"perl-CHI
+not-installed"perl-CLASS
+installed"perl-CPAN-Changes
+not-installed"perl-CPAN-DistnameInfo
+not-installed"perl-CPAN-Meta-Check
+not-installed"perl-CPAN-Meta-Requirements
+not-installed"perl-CPAN-Mini
+not-installed"perl-CPAN-Perl-Releases
+not-installed"perl-CPAN-Uploader
+not-installed"perl-CSS-Minifier-XS
+not-installed"perl-CSS-Tiny
+not-installed"perl-Cache-Cache
+not-installed"perl-Cache-LRU
+not-installed"perl-Cache-Memcached
+not-installed"perl-Cairo
+not-installed"perl-Cairo-GObject
+not-installed"perl-Calendar-Simple
+not-installed"perl-Canary-Stability
+not-installed"perl-Capture-Tiny
+not-installed"perl-Carp-Always
+not-installed"perl-Carp-Assert
+not-installed"perl-Carp-Assert-More
+not-installed"perl-Carp-Clan
+not-installed"perl-Carton
+not-installed"perl-Catalyst-Manual
+not-installed"perl-Chart
+not-installed"perl-Class-Accessor
+not-installed"perl-Class-Accessor-Chained
+not-installed"perl-Class-Accessor-Grouped
+not-installed"perl-Class-Accessor-Lite
+not-installed"perl-Class-Adapter
+not-installed"perl-Class-Autouse
+not-installed"perl-Class-Base
+not-installed"perl-Class-C3
+not-installed"perl-Class-C3-Adopt-NEXT
+not-installed"perl-Class-C3-Componentised
+not-installed"perl-Class-C3-XS
+not-installed"perl-Class-Container
+not-installed"perl-Class-DBI
+not-installed"perl-Class-Data-Inheritable
+not-installed"perl-Class-Date
+not-installed"perl-Class-ErrorHandler
+not-installed"perl-Class-Factory-Util
+not-installed"perl-Class-ISA
+not-installed"perl-Class-Inner
+not-installed"perl-Class-Inspector
+not-installed"perl-Class-Load
+not-installed"perl-Class-Load-XS
+not-installed"perl-Class-MakeMethods
+not-installed"perl-Class-Method-Modifiers
+not-installed"perl-Class-Method-Modifiers-Fast
+not-installed"perl-Class-MethodMaker
+not-installed"perl-Class-Mix
+not-installed"perl-Class-Multimethods
+not-installed"perl-Class-ReturnValue
+not-installed"perl-Class-Singleton
+not-installed"perl-Class-Spiffy
+not-installed"perl-Class-Std
+not-installed"perl-Class-Tiny
+not-installed"perl-Class-Trigger
+not-installed"perl-Class-Unload
+not-installed"perl-Class-WhiteHole
+not-installed"perl-Class-XPath
+not-installed"perl-Class-XSAccessor
+not-installed"perl-Clone
+not-installed"perl-Clone-Choose
+not-installed"perl-Clone-PP
+not-installed"perl-Code-DRY
+not-installed"perl-CommonMark
+not-installed"perl-Compress-Bzip2
+not-installed"perl-Compress-Raw-Lzma
+not-installed"perl-Config-Any
+not-installed"perl-Config-Auto
+not-installed"perl-Config-AutoConf
+not-installed"perl-Config-Crontab
+not-installed"perl-Config-General
+not-installed"perl-Config-GitLike
+not-installed"perl-Config-Grammar
+not-installed"perl-Config-INI
+not-installed"perl-Config-IniFiles
+not-installed"perl-Config-MVP
+not-installed"perl-Config-MVP-Reader-INI
+not-installed"perl-Config-MySQL
+not-installed"perl-Config-Simple
+not-installed"perl-Config-Std
+not-installed"perl-Config-Tiny
+not-installed"perl-Const-Fast
+not-installed"perl-Context-Preserve
+not-installed"perl-Contextual-Return
+not-installed"perl-Convert-ASN1
+not-installed"perl-Convert-BER
+not-installed"perl-Convert-BinHex
+not-installed"perl-Convert-TNEF
+not-installed"perl-Convert-UUlib
+not-installed"perl-Cookie-Baker
+installed"perl-Cpanel-JSON-XS
+not-installed"perl-Crypt-Blowfish
+not-installed"perl-Crypt-CBC
+not-installed"perl-Crypt-DES
+not-installed"perl-Crypt-DH-GMP
+not-installed"perl-Crypt-Eksblowfish
+not-installed"perl-Crypt-MySQL
+not-installed"perl-Crypt-OpenSSL-Bignum
+not-installed"perl-Crypt-OpenSSL-Guess
+not-installed"perl-Crypt-OpenSSL-RSA
+not-installed"perl-Crypt-OpenSSL-Random
+not-installed"perl-Crypt-PasswdMD5
+not-installed"perl-Crypt-RC4
+not-installed"perl-Crypt-Rijndael
+not-installed"perl-Crypt-Rot13
+not-installed"perl-Crypt-SSLeay
+not-installed"perl-Crypt-SaltedHash
+installed"perl-Crypt-SmbHash
+not-installed"perl-Crypt-Twofish
+not-installed"perl-Crypt-Twofish
+not-installed"perl-Crypt-Twofish-debuginfo
+not-installed"perl-Crypt-Twofish-debugsource
+not-installed"perl-Crypt-UnixCrypt_XS
+not-installed"perl-CryptX
+not-installed"perl-Curses
+not-installed"perl-CursesWidgets
+not-installed"perl-Cwd-Guard
+not-installed"perl-Cyrus-IMAP
+not-installed"perl-Cyrus-SIEVE-managesieve
+not-installed"perl-DBD-CSV
+not-installed"perl-DBD-MariaDB
+not-installed"perl-DBD-ODBC
+not-installed"perl-DBD-Pg
+installed"perl-DBD-SQLite
+not-installed"perl-DBD-XBase
+not-installed"perl-DBD-mysql
+installed"perl-DBI
+not-installed"perl-DBICx-TestDatabase
+not-installed"perl-DBIx-Class
+not-installed"perl-DBIx-Class-DeploymentHandler
+not-installed"perl-DBIx-Class-DynamicDefault
+not-installed"perl-DBIx-Class-Fixtures
+not-installed"perl-DBIx-Class-InflateColumn-FS
+not-installed"perl-DBIx-Class-IntrospectableM2M
+not-installed"perl-DBIx-Class-OptimisticLocking
+not-installed"perl-DBIx-Class-Schema-Config
+not-installed"perl-DBIx-Class-Schema-Loader
+not-installed"perl-DBIx-Class-UUIDColumns
+not-installed"perl-DBIx-Connector
+not-installed"perl-DBIx-ContextualFetch
+not-installed"perl-DBIx-Simple
+not-installed"perl-DBIx-Transaction
+not-installed"perl-DBM-Deep
+not-installed"perl-DNS-LDNS
+not-installed"perl-Daemon-Generic
+not-installed"perl-Data-Clone
+not-installed"perl-Data-Compare
+not-installed"perl-Data-Dump
+not-installed"perl-Data-Dump-Streamer
+not-installed"perl-Data-Dumper-Concise
+not-installed"perl-Data-Entropy
+not-installed"perl-Data-Float
+not-installed"perl-Data-Hexify
+not-installed"perl-Data-Hierarchy
+not-installed"perl-Data-Integer
+not-installed"perl-Data-ObjectDriver
+not-installed"perl-Data-OptList
+not-installed"perl-Data-Page
+not-installed"perl-Data-Peek
+not-installed"perl-Data-Perl
+not-installed"perl-Data-Printer
+not-installed"perl-Data-Random
+not-installed"perl-Data-Section
+not-installed"perl-Data-Section-Simple
+not-installed"perl-Data-ShowTable
+not-installed"perl-Data-Structure-Util
+not-installed"perl-Data-Tumbler
+not-installed"perl-Data-Uniqid
+not-installed"perl-Data-Util
+not-installed"perl-Data-Validate-Domain
+not-installed"perl-Data-Validate-IP
+not-installed"perl-Data-Visitor
+not-installed"perl-Date-Calc
+not-installed"perl-Date-Holidays-CZ
+not-installed"perl-Date-Manip
+not-installed"perl-Date-Simple
+not-installed"perl-Date-Tiny
+not-installed"perl-DateTime
+not-installed"perl-DateTime-Calendar-Julian
+not-installed"perl-DateTime-Calendar-Mayan
+not-installed"perl-DateTime-Format-Builder
+not-installed"perl-DateTime-Format-DateParse
+not-installed"perl-DateTime-Format-Flexible
+not-installed"perl-DateTime-Format-ISO8601
+not-installed"perl-DateTime-Format-Mail
+not-installed"perl-DateTime-Format-MySQL
+not-installed"perl-DateTime-Format-Natural
+not-installed"perl-DateTime-Format-Pg
+not-installed"perl-DateTime-Format-SQLite
+not-installed"perl-DateTime-Format-Strptime
+not-installed"perl-DateTime-Format-W3CDTF
+not-installed"perl-DateTime-Locale
+not-installed"perl-DateTime-TimeZone
+not-installed"perl-DateTime-Tiny
+not-installed"perl-Debug-Trace
+not-installed"perl-Declare-Constraints-Simple
+not-installed"perl-Devel-Caller
+not-installed"perl-Devel-CheckBin
+not-installed"perl-Devel-CheckCompiler
+not-installed"perl-Devel-CheckLib
+not-installed"perl-Devel-CheckOS
+not-installed"perl-Devel-Confess
+not-installed"perl-Devel-CoreStack
+not-installed"perl-Devel-Cover
+not-installed"perl-Devel-Cover-Report-Codecov
+not-installed"perl-Devel-Cycle
+not-installed"perl-Devel-Declare
+not-installed"perl-Devel-FindPerl
+not-installed"perl-Devel-GlobalDestruction
+not-installed"perl-Devel-GlobalPhase
+not-installed"perl-Devel-Hide
+not-installed"perl-Devel-Leak
+not-installed"perl-Devel-LexAlias
+not-installed"perl-Devel-NYTProf
+not-installed"perl-Devel-OverloadInfo
+not-installed"perl-Devel-PPPort
+not-installed"perl-Devel-PartialDump
+not-installed"perl-Devel-PatchPerl
+not-installed"perl-Devel-REPL
+not-installed"perl-Devel-StackTrace
+not-installed"perl-Devel-StackTrace-AsHTML
+installed"perl-Devel-Symdump
+not-installed"perl-Devel-TakeHashArgs
+not-installed"perl-Devel-Trace
+not-installed"perl-Device-SerialPort
+not-installed"perl-Digest-CRC
+installed"perl-Digest-HMAC
+not-installed"perl-Digest-JHash
+installed"perl-Digest-MD4
+not-installed"perl-Digest-MD5
+not-installed"perl-Digest-Perl-MD5
+installed"perl-Digest-SHA1
+not-installed"perl-Dist-CheckConflicts
+not-installed"perl-Dist-Zilla
+not-installed"perl-Dumbbench
+not-installed"perl-Email-Abstract
+not-installed"perl-Email-Address
+not-installed"perl-Email-Address-XS
+not-installed"perl-Email-Date-Format
+not-installed"perl-Email-Find
+not-installed"perl-Email-Find
+not-installed"perl-Email-MIME
+not-installed"perl-Email-MIME-ContentType
+not-installed"perl-Email-MIME-Encodings
+not-installed"perl-Email-MessageID
+not-installed"perl-Email-Reply
+not-installed"perl-Email-Send
+not-installed"perl-Email-Sender
+not-installed"perl-Email-Simple
+not-installed"perl-Email-Valid
+not-installed"perl-Encode
+not-installed"perl-Encode-Detect
+not-installed"perl-Encode-EUCJPASCII
+not-installed"perl-Encode-HanExtra
+not-installed"perl-Encode-JIS2K
+installed"perl-Encode-Locale
+installed"perl-Error
+not-installed"perl-Eval-Closure
+not-installed"perl-Eval-LineNumbers
+not-installed"perl-Event
+not-installed"perl-Event-ExecFlow
+not-installed"perl-Event-ExecFlow
+not-installed"perl-Event-RPC
+not-installed"perl-Event-RPC
+not-installed"perl-Exception-Base
+not-installed"perl-Exception-Class
+not-installed"perl-Expect
+not-installed"perl-Export-Attrs
+not-installed"perl-Exporter-Declare
+not-installed"perl-Exporter-Lite
+not-installed"perl-Exporter-Tidy
+not-installed"perl-Exporter-Tiny
+not-installed"perl-ExtUtils-CBuilder
+not-installed"perl-ExtUtils-CChecker
+not-installed"perl-ExtUtils-Config
+not-installed"perl-ExtUtils-CppGuess
+not-installed"perl-ExtUtils-Depends
+not-installed"perl-ExtUtils-F77
+not-installed"perl-ExtUtils-Helpers
+not-installed"perl-ExtUtils-InstallPaths
+not-installed"perl-ExtUtils-LibBuilder
+not-installed"perl-ExtUtils-MakeMaker
+not-installed"perl-ExtUtils-MakeMaker-CPANfile
+not-installed"perl-ExtUtils-Manifest
+not-installed"perl-ExtUtils-PkgConfig
+not-installed"perl-ExtUtils-Typemaps-Default
+not-installed"perl-ExtUtils-XSpp
+not-installed"perl-FastCGI
+not-installed"perl-Feed-Find
+not-installed"perl-Fennec-Lite
+not-installed"perl-File-BaseDir
+not-installed"perl-File-Basename-Object
+not-installed"perl-File-Comments
+not-installed"perl-File-Copy-Recursive
+not-installed"perl-File-Copy-Recursive-Reduced
+not-installed"perl-File-DesktopEntry
+installed"perl-File-FcntlLock
+not-installed"perl-File-Find-Rule
+not-installed"perl-File-Find-Rule-Perl
+not-installed"perl-File-Finder
+not-installed"perl-File-Flock
+not-installed"perl-File-HomeDir
+not-installed"perl-File-LibMagic
+installed"perl-File-Listing
+not-installed"perl-File-MMagic
+not-installed"perl-File-MimeInfo
+not-installed"perl-File-Mork
+not-installed"perl-File-Next
+not-installed"perl-File-Path
+not-installed"perl-File-Path-Tiny
+installed"perl-File-RandomAccess
+not-installed"perl-File-ReadBackwards
+not-installed"perl-File-Remove
+not-installed"perl-File-Rsync
+not-installed"perl-File-ShareDir
+not-installed"perl-File-ShareDir-Install
+not-installed"perl-File-ShareDir-ProjectDistDir
+not-installed"perl-File-Slurp
+not-installed"perl-File-Slurp-Tiny
+not-installed"perl-File-Slurp-Unicode
+not-installed"perl-File-Slurper
+not-installed"perl-File-Sync
+not-installed"perl-File-Tail
+not-installed"perl-File-Temp
+not-installed"perl-File-Touch
+not-installed"perl-File-Type
+not-installed"perl-File-Unpack
+not-installed"perl-File-Which
+not-installed"perl-File-chdir
+not-installed"perl-File-pushd
+not-installed"perl-FileHandle-Unget
+not-installed"perl-Filesys-Df
+not-installed"perl-Filesys-Notify-Simple
+not-installed"perl-Filesys-Statvfs
+not-installed"perl-Finance-Quote
+not-installed"perl-FindBin-Real
+not-installed"perl-Font-AFM
+not-installed"perl-Font-FreeType
+not-installed"perl-Font-TTF
+not-installed"perl-FreezeThaw
+not-installed"perl-Furl
+not-installed"perl-Fuse
+not-installed"perl-Future
+not-installed"perl-GD
+not-installed"perl-GD-Barcode
+not-installed"perl-GD-Graph3d
+not-installed"perl-GDGraph
+not-installed"perl-GDTextUtil
+not-installed"perl-GStreamer1
+not-installed"perl-Geo-Coordinates-UTM
+not-installed"perl-Geography-Countries
+not-installed"perl-Getopt-ArgvFile
+not-installed"perl-Getopt-Long-Descriptive
+not-installed"perl-Getopt-Tabular
+not-installed"perl-Git-Version-Compare
+not-installed"perl-Glib
+not-installed"perl-Glib-Object-Introspection
+not-installed"perl-Gnome2
+not-installed"perl-Gnome2-Canvas
+not-installed"perl-Gnome2-VFS
+not-installed"perl-Gnome2-Wnck
+not-installed"perl-GnuPG-Interface
+not-installed"perl-Graph
+not-installed"perl-GraphViz
+not-installed"perl-Graphics-ColorUtils
+not-installed"perl-GraphicsMagick
+not-installed"perl-Gravatar-URL
+not-installed"perl-Growl-GNTP
+not-installed"perl-Gtk2
+not-installed"perl-Gtk2-AppIndicator
+not-installed"perl-Gtk2-Ex-FormFactory
+not-installed"perl-Gtk2-Ex-FormFactory
+not-installed"perl-Gtk2-GladeXML
+not-installed"perl-Gtk2-GladeXML
+not-installed"perl-Gtk2-GladeXML-debuginfo
+not-installed"perl-Gtk2-GladeXML-debugsource
+not-installed"perl-Gtk2-ImageView
+not-installed"perl-Gtk2-Notify
+not-installed"perl-Gtk2-Notify
+not-installed"perl-Gtk2-Notify-debuginfo
+not-installed"perl-Gtk2-Notify-debugsource
+not-installed"perl-Gtk2-TrayIcon
+not-installed"perl-Gtk2-TrayIcon
+not-installed"perl-Gtk2-TrayIcon-debuginfo
+not-installed"perl-Gtk2-TrayIcon-debugsource
+not-installed"perl-Gtk2-Unique
+not-installed"perl-Gtk3
+not-installed"perl-Guard
+not-installed"perl-HTML-Clean
+not-installed"perl-HTML-Element-Extended
+not-installed"perl-HTML-Encoding
+not-installed"perl-HTML-FillInForm
+not-installed"perl-HTML-Form
+not-installed"perl-HTML-FormHandler
+not-installed"perl-HTML-Format
+not-installed"perl-HTML-FormatText-WithLinks
+not-installed"perl-HTML-FromText
+not-installed"perl-HTML-FromText
+installed"perl-HTML-Parser
+not-installed"perl-HTML-RewriteAttributes
+not-installed"perl-HTML-Scrubber
+not-installed"perl-HTML-SimpleParse
+not-installed"perl-HTML-Stream
+not-installed"perl-HTML-Strip
+not-installed"perl-HTML-Strip
+not-installed"perl-HTML-Strip-debuginfo
+not-installed"perl-HTML-Strip-debugsource
+not-installed"perl-HTML-TableExtract
+installed"perl-HTML-Tagset
+not-installed"perl-HTML-Template
+not-installed"perl-HTML-Tidy
+not-installed"perl-HTML-TokeParser-Simple
+not-installed"perl-HTML-Tree
+not-installed"perl-HTTP-Body
+not-installed"perl-HTTP-Cache-Transparent
+not-installed"perl-HTTP-Cache-Transparent
+installed"perl-HTTP-Cookies
+not-installed"perl-HTTP-DAV
+installed"perl-HTTP-Daemon
+installed"perl-HTTP-Date
+not-installed"perl-HTTP-Headers-ActionPack
+not-installed"perl-HTTP-Headers-Fast
+not-installed"perl-HTTP-Lite
+installed"perl-HTTP-Message
+installed"perl-HTTP-Negotiate
+not-installed"perl-HTTP-Parser-XS
+not-installed"perl-HTTP-Request-AsCGI
+not-installed"perl-HTTP-Server-Simple
+not-installed"perl-HTTP-Thin
+not-installed"perl-HTTP-Tiny
+not-installed"perl-HTTPS-Daemon
+not-installed"perl-Hamlib
+not-installed"perl-Hash-Merge
+not-installed"perl-Hash-Merge-Simple
+not-installed"perl-Hash-MoreUtils
+not-installed"perl-Hash-MultiValue
+not-installed"perl-Hash-Util-FieldHash-Compat
+not-installed"perl-Hook-LexWrap
+not-installed"perl-IO-All
+not-installed"perl-IO-Async
+not-installed"perl-IO-CaptureOutput
+not-installed"perl-IO-Event
+installed"perl-IO-HTML
+not-installed"perl-IO-Handle-Util
+not-installed"perl-IO-Interactive
+not-installed"perl-IO-Interface
+not-installed"perl-IO-Multiplex
+not-installed"perl-IO-Pager
+not-installed"perl-IO-Pipely
+not-installed"perl-IO-SessionData
+not-installed"perl-IO-Socket-INET6
+not-installed"perl-IO-Socket-Multicast
+not-installed"perl-IO-Socket-PortState
+installed"perl-IO-Socket-SSL
+not-installed"perl-IO-Socket-Timeout
+not-installed"perl-IO-String
+not-installed"perl-IO-Stty
+not-installed"perl-IO-Tee
+not-installed"perl-IO-TieCombine
+not-installed"perl-IO-Tty
+not-installed"perl-IO-stringy
+not-installed"perl-IP-Country
+not-installed"perl-IPC-Run
+not-installed"perl-IPC-Run3
+not-installed"perl-IPC-ShareLite
+not-installed"perl-IPC-System-Simple
+not-installed"perl-IRI
+not-installed"perl-Ima-DBI
+installed"perl-Image-ExifTool
+not-installed"perl-Image-Info
+not-installed"perl-Image-Sane
+not-installed"perl-Image-Size
+not-installed"perl-Import-Into
+not-installed"perl-Importer
+not-installed"perl-Inline
+not-installed"perl-Inline-C
+not-installed"perl-Inline-C
+not-installed"perl-Inline-Python
+not-installed"perl-Iterator
+not-installed"perl-Iterator-Util
+not-installed"perl-JSON
+not-installed"perl-JSON-Any
+not-installed"perl-JSON-DWIW
+not-installed"perl-JSON-MaybeXS
+not-installed"perl-JSON-RPC
+not-installed"perl-JSON-Validator
+not-installed"perl-JSON-XS
+not-installed"perl-JavaScript-Minifier-XS
+installed"perl-LWP-MediaTypes
+not-installed"perl-LWP-Online
+installed"perl-LWP-Protocol-https
+not-installed"perl-Lexical-Persistence
+not-installed"perl-Lexical-SealRequireHints
+not-installed"perl-Lingua-EN-FindNumber
+not-installed"perl-Lingua-EN-Inflect
+not-installed"perl-Lingua-EN-Inflect-Number
+not-installed"perl-Lingua-EN-Inflect-Phrase
+not-installed"perl-Lingua-EN-Number-IsOrdinal
+not-installed"perl-Lingua-EN-Numbers-Ordinate
+not-installed"perl-Lingua-EN-Numbers-Ordinate
+not-installed"perl-Lingua-EN-Sentence
+not-installed"perl-Lingua-EN-Tagger
+not-installed"perl-Lingua-EN-Words2Nums
+not-installed"perl-Lingua-PT-Stemmer
+not-installed"perl-Lingua-Preferred
+not-installed"perl-Lingua-Preferred
+not-installed"perl-Lingua-Stem
+not-installed"perl-Lingua-Stem-Fr
+not-installed"perl-Lingua-Stem-It
+not-installed"perl-Lingua-Stem-Ru
+not-installed"perl-Lingua-Stem-Snowball
+not-installed"perl-Lingua-Stem-Snowball-Da
+not-installed"perl-Lingua-Translit
+not-installed"perl-Linux-DesktopFiles
+not-installed"perl-Linux-Inotify2
+not-installed"perl-Linux-Pid
+not-installed"perl-List-AllUtils
+not-installed"perl-List-MoreUtils
+not-installed"perl-List-MoreUtils-XS
+not-installed"perl-List-SomeUtils
+not-installed"perl-List-SomeUtils-XS
+not-installed"perl-List-UtilsBy
+not-installed"perl-Locale-Maketext-Gettext
+not-installed"perl-Locale-Maketext-Lexicon
+not-installed"perl-Locale-Msgfmt
+not-installed"perl-Locale-US
+not-installed"perl-LockFile-Simple
+not-installed"perl-Log-Any
+not-installed"perl-Log-Contextual
+not-installed"perl-Log-Dispatch
+not-installed"perl-Log-Dispatch-Array
+not-installed"perl-Log-Dispatch-Config
+not-installed"perl-Log-Dispatch-FileRotate
+not-installed"perl-Log-Dispatchouli
+not-installed"perl-Log-Log4perl
+not-installed"perl-Log-Message
+not-installed"perl-Log-Message-Simple
+not-installed"perl-Log-TraceMessages
+not-installed"perl-Log-TraceMessages
+not-installed"perl-MCE
+not-installed"perl-MIME-Charset
+not-installed"perl-MIME-EncWords
+not-installed"perl-MIME-Lite
+not-installed"perl-MIME-Types
+not-installed"perl-MIME-tools
+not-installed"perl-MLDBM
+not-installed"perl-MLDBM-Sync
+not-installed"perl-MP3-Info
+not-installed"perl-MP3-Info
+not-installed"perl-MP3-Tag
+not-installed"perl-MP3-Tag
+not-installed"perl-MP4-Info
+not-installed"perl-MP4-Info
+not-installed"perl-MRO-Compat
+not-installed"perl-Mac-PropertyList
+not-installed"perl-Mail-DKIM
+not-installed"perl-Mail-IMAPClient
+not-installed"perl-Mail-Mbox-MessageParser
+not-installed"perl-Mail-SPF
+not-installed"perl-Mail-SPF-Test
+not-installed"perl-Mail-Sender
+not-installed"perl-Mail-Sendmail
+not-installed"perl-Mail-SpamAssassin
+not-installed"perl-Mail-SpamAssassin-Plugin-iXhash2
+installed"perl-MailTools
+not-installed"perl-Mason
+not-installed"perl-Math-Base-Convert
+not-installed"perl-Math-BigInt
+not-installed"perl-Math-BigInt-GMP
+not-installed"perl-Math-Calc-Units
+not-installed"perl-Math-Clipper
+not-installed"perl-Math-ConvexHull
+not-installed"perl-Math-ConvexHull-MonotoneChain
+not-installed"perl-Math-Geometry-Voronoi
+not-installed"perl-Math-Libm
+not-installed"perl-Math-PlanePath
+not-installed"perl-Math-Random-ISAAC
+not-installed"perl-Math-Round
+not-installed"perl-Memoize-ExpireLRU
+not-installed"perl-Meta-Builder
+not-installed"perl-Method-Signatures
+not-installed"perl-Method-Signatures-Simple
+not-installed"perl-Minion
+not-installed"perl-Minion-Backend-SQLite
+not-installed"perl-Mixin-Linewise
+not-installed"perl-Mo
+not-installed"perl-Mock-Config
+not-installed"perl-Mock-Quick
+not-installed"perl-Modern-Perl
+not-installed"perl-Module-Build
+not-installed"perl-Module-Build-Deprecated
+not-installed"perl-Module-Build-Tiny
+not-installed"perl-Module-Build-WithXSpp
+not-installed"perl-Module-Build-XSUtil
+not-installed"perl-Module-CPANfile
+not-installed"perl-Module-Depends
+not-installed"perl-Module-Find
+not-installed"perl-Module-Implementation
+not-installed"perl-Module-Info
+not-installed"perl-Module-Install
+not-installed"perl-Module-Install-AuthorTests
+not-installed"perl-Module-Install-ExtraTests
+not-installed"perl-Module-Load-Conditional
+not-installed"perl-Module-Metadata
+not-installed"perl-Module-Path
+not-installed"perl-Module-Pluggable
+not-installed"perl-Module-Reader
+not-installed"perl-Module-Refresh
+not-installed"perl-Module-Runtime
+not-installed"perl-Module-Runtime-Conflicts
+not-installed"perl-Module-ScanDeps
+not-installed"perl-Module-Signature
+not-installed"perl-Module-Starter
+not-installed"perl-Module-Util
+not-installed"perl-Mojo-IOLoop-ReadWriteProcess
+not-installed"perl-Mojo-Pg
+not-installed"perl-Mojo-RabbitMQ-Client
+not-installed"perl-Mojo-Redis
+not-installed"perl-Mojo-SQLite
+not-installed"perl-Mojolicious
+not-installed"perl-Mojolicious-Plugin-AssetPack
+not-installed"perl-Mojolicious-Plugin-CHI
+not-installed"perl-Mojolicious-Plugin-NYTProf
+not-installed"perl-Mojolicious-Plugin-RenderFile
+not-installed"perl-Mojolicious-Plugin-Status
+not-installed"perl-Monitoring-Plugin
+not-installed"perl-Moo
+not-installed"perl-MooX-HandlesVia
+not-installed"perl-MooX-Types-MooseLike
+not-installed"perl-MooX-Types-MooseLike-Numeric
+not-installed"perl-MooX-late
+not-installed"perl-Moose
+not-installed"perl-Moose-Autobox
+not-installed"perl-MooseX-Aliases
+not-installed"perl-MooseX-App-Cmd
+not-installed"perl-MooseX-ArrayRef
+not-installed"perl-MooseX-Attribute-ENV
+not-installed"perl-MooseX-AttributeHelpers
+not-installed"perl-MooseX-AuthorizedMethods
+not-installed"perl-MooseX-ClassAttribute
+not-installed"perl-MooseX-Clone
+not-installed"perl-MooseX-ConfigFromFile
+not-installed"perl-MooseX-Daemonize
+not-installed"perl-MooseX-Declare
+not-installed"perl-MooseX-Getopt
+not-installed"perl-MooseX-GlobRef
+not-installed"perl-MooseX-Has-Options
+not-installed"perl-MooseX-HasDefaults
+not-installed"perl-MooseX-InsideOut
+not-installed"perl-MooseX-Iterator
+not-installed"perl-MooseX-LazyLogDispatch
+not-installed"perl-MooseX-LazyRequire
+not-installed"perl-MooseX-Log-Log4perl
+not-installed"perl-MooseX-LogDispatch
+not-installed"perl-MooseX-MarkAsMethods
+not-installed"perl-MooseX-Meta-TypeConstraint-ForceCoercion
+not-installed"perl-MooseX-Method-Signatures
+not-installed"perl-MooseX-MultiInitArg
+not-installed"perl-MooseX-NonMoose
+not-installed"perl-MooseX-Object-Pluggable
+not-installed"perl-MooseX-OneArgNew
+not-installed"perl-MooseX-POE
+not-installed"perl-MooseX-Param
+not-installed"perl-MooseX-Params-Validate
+not-installed"perl-MooseX-Role-Cmd
+not-installed"perl-MooseX-Role-Parameterized
+not-installed"perl-MooseX-Role-TraitConstructor
+not-installed"perl-MooseX-Role-WithOverloading
+not-installed"perl-MooseX-SemiAffordanceAccessor
+not-installed"perl-MooseX-SetOnce
+not-installed"perl-MooseX-SimpleConfig
+not-installed"perl-MooseX-Singleton
+not-installed"perl-MooseX-Storage
+not-installed"perl-MooseX-StrictConstructor
+not-installed"perl-MooseX-Traits
+not-installed"perl-MooseX-TransactionalMethods
+not-installed"perl-MooseX-Types
+not-installed"perl-MooseX-Types-Common
+not-installed"perl-MooseX-Types-DateTime
+not-installed"perl-MooseX-Types-LoadableClass
+not-installed"perl-MooseX-Types-Path-Class
+not-installed"perl-MooseX-Types-Path-Tiny
+not-installed"perl-MooseX-Types-Perl
+not-installed"perl-MooseX-Types-Set-Object
+not-installed"perl-MooseX-Types-Stringlike
+not-installed"perl-MooseX-Types-Structured
+not-installed"perl-MooseX-Workers
+not-installed"perl-Mouse
+not-installed"perl-MouseX-ConfigFromFile
+not-installed"perl-MouseX-SimpleConfig
+not-installed"perl-MouseX-Types
+not-installed"perl-MouseX-Types-Path-Class
+not-installed"perl-Mozilla-LDAP
+not-installed"perl-MusicBrainz-DiscID
+not-installed"perl-NKF
+not-installed"perl-Nagios-Plugin
+not-installed"perl-Net-AMQP
+not-installed"perl-Net-CIDR-Lite
+not-installed"perl-Net-CIDR-Set
+installed"perl-Net-DBus
+not-installed"perl-Net-DBus-GLib
+not-installed"perl-Net-DBus-GLib
+not-installed"perl-Net-DBus-GLib-debuginfo
+not-installed"perl-Net-DBus-GLib-debugsource
+not-installed"perl-Net-DNS
+not-installed"perl-Net-DNS-Resolver-Mock
+not-installed"perl-Net-DNS-Resolver-Programmable
+not-installed"perl-Net-Daemon
+not-installed"perl-Net-Domain-TLD
+not-installed"perl-Net-Dropbox-API
+installed"perl-Net-HTTP
+not-installed"perl-Net-HTTPServer
+not-installed"perl-Net-IDN-Encode
+not-installed"perl-Net-IDN-Nameprep
+not-installed"perl-Net-INET6Glue
+not-installed"perl-Net-IP
+not-installed"perl-Net-IPv4Addr
+not-installed"perl-Net-Ident
+not-installed"perl-Net-Jabber
+not-installed"perl-Net-LibIDN
+not-installed"perl-Net-Libproxy
+not-installed"perl-Net-Netmask
+not-installed"perl-Net-OAuth
+not-installed"perl-Net-OpenID-Common
+not-installed"perl-Net-OpenID-Consumer
+not-installed"perl-Net-OpenStack-Compute
+not-installed"perl-Net-Oping
+not-installed"perl-Net-Patricia
+not-installed"perl-Net-Pcap
+installed"perl-Net-SMTP-SSL
+not-installed"perl-Net-SNMP
+not-installed"perl-Net-SSH2
+not-installed"perl-Net-SSLGlue
+installed"perl-Net-SSLeay
+not-installed"perl-Net-Server
+not-installed"perl-Net-TFTP
+not-installed"perl-Net-Telnet
+not-installed"perl-Net-Twitter
+not-installed"perl-Net-UPnP
+not-installed"perl-Net-UPnP
+not-installed"perl-Net-Whois-RIPE
+not-installed"perl-Net-Whois-Raw
+not-installed"perl-Net-XMPP
+not-installed"perl-NetAddr-IP
+not-installed"perl-NetPacket
+not-installed"perl-NetxAP
+not-installed"perl-Number-Compare
+not-installed"perl-Number-Format
+not-installed"perl-Number-WithError
+not-installed"perl-OLE-Storage_Lite
+not-installed"perl-OSSP-uuid
+not-installed"perl-Object-Pluggable
+not-installed"perl-Object-Signature
+not-installed"perl-Ogg-Vorbis-Header
+not-installed"perl-Ogg-Vorbis-Header
+not-installed"perl-Ogg-Vorbis-Header-PurePerl
+not-installed"perl-Ogg-Vorbis-Header-PurePerl
+not-installed"perl-Ogg-Vorbis-Header-debuginfo
+not-installed"perl-Ogg-Vorbis-Header-debugsource
+not-installed"perl-OpenGL
+not-installed"perl-PAR
+not-installed"perl-PAR-Dist
+not-installed"perl-PAR-Packer
+not-installed"perl-PCP-LogImport
+not-installed"perl-PCP-LogSummary
+not-installed"perl-PCP-MMV
+not-installed"perl-PCP-PMDA
+not-installed"perl-PDA-Pilot
+not-installed"perl-PDF-API2
+not-installed"perl-PHP-Serialization
+not-installed"perl-POE
+not-installed"perl-POE-Test-Loops
+not-installed"perl-POSIX-strftime-Compiler
+not-installed"perl-PPI
+not-installed"perl-PPIx-QuoteLike
+not-installed"perl-PPIx-Regexp
+not-installed"perl-PPIx-Utilities
+not-installed"perl-Package-DeprecationManager
+not-installed"perl-Package-Generator
+not-installed"perl-Package-Stash
+not-installed"perl-Package-Stash-XS
+not-installed"perl-Package-Variant
+not-installed"perl-PadWalker
+not-installed"perl-Pango
+not-installed"perl-Parallel-ForkManager
+not-installed"perl-Parallel-ForkManager
+not-installed"perl-Params-Classify
+not-installed"perl-Params-Coerce
+not-installed"perl-Params-Util
+not-installed"perl-Params-Validate
+not-installed"perl-Params-ValidationCompiler
+not-installed"perl-Parse-CPAN-Packages
+not-installed"perl-Parse-Method-Signatures
+not-installed"perl-Parse-PMFile
+installed"perl-Parse-RecDescent
+not-installed"perl-Parse-Win32Registry
+not-installed"perl-Parse-Yapp
+not-installed"perl-PatchReader
+not-installed"perl-Path-Class
+not-installed"perl-Path-FindDev
+not-installed"perl-Path-IsDev
+not-installed"perl-Path-Router
+not-installed"perl-Path-Tiny
+not-installed"perl-PathTools
+not-installed"perl-Pegex
+not-installed"perl-Pegex
+not-installed"perl-Perl-Critic
+not-installed"perl-Perl-Critic-Freenode
+not-installed"perl-Perl-Critic-Policy-Variables-ProhibitLoopOnHash
+not-installed"perl-Perl-Critic-Pulp
+not-installed"perl-Perl-PrereqScanner
+not-installed"perl-Perl-Tidy
+not-installed"perl-Perl-Version
+not-installed"perl-Perl6-Junction
+not-installed"perl-PerlIO-gzip
+not-installed"perl-PerlIO-locale
+not-installed"perl-PerlIO-utf8_strict
+not-installed"perl-PerlIO-via-Timeout
+not-installed"perl-PerlIO-via-dynamic
+not-installed"perl-PerlMagick
+not-installed"perl-Plack
+not-installed"perl-Plack-Middleware-LogErrors
+not-installed"perl-Plack-Middleware-Session
+installed"perl-Pod-Coverage
+not-installed"perl-Pod-Coverage-Moose
+not-installed"perl-Pod-Coverage-TrustPod
+not-installed"perl-Pod-Eventual
+not-installed"perl-Pod-HtmlPsPdf
+not-installed"perl-Pod-Markdown
+not-installed"perl-Pod-MinimumVersion
+not-installed"perl-Pod-POM
+not-installed"perl-Pod-Readme
+not-installed"perl-Pod-Spell
+not-installed"perl-Pod-Usage
+not-installed"perl-PostScript-Simple
+not-installed"perl-Prima
+not-installed"perl-Probe-Perl
+not-installed"perl-Proc-Fork
+not-installed"perl-Proc-ProcessTable
+not-installed"perl-Proc-Simple
+not-installed"perl-Protocol-Redis
+not-installed"perl-Protocol-Redis-Faster
+not-installed"perl-Protocol-WebSocket
+not-installed"perl-Quantum-Superpositions
+not-installed"perl-RDF-Trine
+not-installed"perl-RPC-XML
+not-installed"perl-RPM-Header-PurePerl
+not-installed"perl-RPM2
+not-installed"perl-Readonly
+not-installed"perl-Readonly-XS
+not-installed"perl-Redis
+not-installed"perl-Regexp-Assemble
+not-installed"perl-Regexp-Common
+not-installed"perl-Regexp-IPv6
+not-installed"perl-Regexp-Shellish
+not-installed"perl-Return-Value
+not-installed"perl-Role-HasMessage
+not-installed"perl-Role-Identifiable
+not-installed"perl-Role-Tiny
+not-installed"perl-Rose-Object
+not-installed"perl-Router-Simple
+not-installed"perl-SDL
+not-installed"perl-SGML-Parser-OpenSP
+not-installed"perl-SGMLS
+installed"perl-SNMP
+not-installed"perl-SOAP-Lite
+not-installed"perl-SQL-Abstract
+not-installed"perl-SQL-ReservedWords
+not-installed"perl-SQL-SplitStatement
+not-installed"perl-SQL-Statement
+not-installed"perl-SQL-Tokenizer
+not-installed"perl-SQL-Translator
+not-installed"perl-SUPER
+not-installed"perl-SVG
+not-installed"perl-SVN-Simple
+not-installed"perl-Safe-Isa
+not-installed"perl-Scalar-List-Utils
+not-installed"perl-Scalar-String
+not-installed"perl-Scope-Guard
+not-installed"perl-Scope-Upper
+not-installed"perl-Selenium-Remote-Driver
+not-installed"perl-Sereal
+not-installed"perl-Sereal-Decoder
+not-installed"perl-Sereal-Encoder
+not-installed"perl-Set-Crontab
+not-installed"perl-Set-Object
+not-installed"perl-Set-Scalar
+not-installed"perl-Smart-Comments
+not-installed"perl-Snowball-Norwegian
+not-installed"perl-Snowball-Swedish
+not-installed"perl-Socket-MsgHdr
+not-installed"perl-Socket6
+not-installed"perl-Software-License
+not-installed"perl-Sort-Key
+not-installed"perl-Sort-Naturally
+not-installed"perl-Sort-Versions
+not-installed"perl-Specio
+not-installed"perl-Spiffy
+not-installed"perl-Spooky-Patterns-XS
+not-installed"perl-Spreadsheet-ParseExcel
+not-installed"perl-Spreadsheet-ParseXLSX
+not-installed"perl-Spreadsheet-Read
+not-installed"perl-Spreadsheet-ReadSXC
+not-installed"perl-Spreadsheet-XLSX
+not-installed"perl-Starman
+not-installed"perl-Statistics-CaseResampling
+not-installed"perl-Statistics-Descriptive
+not-installed"perl-Stream-Buffered
+not-installed"perl-String-Approx
+not-installed"perl-String-CRC32
+not-installed"perl-String-CamelCase
+not-installed"perl-String-Errf
+not-installed"perl-String-Escape
+not-installed"perl-String-Flogger
+not-installed"perl-String-Format
+not-installed"perl-String-Formatter
+not-installed"perl-String-RewritePrefix
+not-installed"perl-String-ShellQuote
+not-installed"perl-String-ToIdentifier-EN
+not-installed"perl-String-Truncate
+not-installed"perl-Struct-Dumb
+not-installed"perl-Sub-Delete
+not-installed"perl-Sub-Exporter
+not-installed"perl-Sub-Exporter-ForMethods
+not-installed"perl-Sub-Exporter-GlobExporter
+not-installed"perl-Sub-Exporter-Progressive
+not-installed"perl-Sub-Identify
+not-installed"perl-Sub-Info
+not-installed"perl-Sub-Install
+not-installed"perl-Sub-Name
+not-installed"perl-Sub-Override
+not-installed"perl-Sub-Quote
+not-installed"perl-Sub-Retry
+not-installed"perl-Sub-Spec
+not-installed"perl-Sub-Uplevel
+not-installed"perl-Switch
+not-installed"perl-Symbol-Table
+not-installed"perl-Symbol-Util
+not-installed"perl-Syntax-Keyword-Junction
+not-installed"perl-Syntax-Keyword-Try
+not-installed"perl-Sys-CPU
+not-installed"perl-Sys-Guestfs
+not-installed"perl-Sys-Hostname-Long
+not-installed"perl-Sys-LoadAvg
+not-installed"perl-Sys-SigAction
+not-installed"perl-Sys-Virt
+not-installed"perl-Sysadm-Install
+not-installed"perl-Task-Kensho-Async
+not-installed"perl-Task-Kensho-CLI
+not-installed"perl-Task-Kensho-Config
+not-installed"perl-Task-Kensho-Dates
+not-installed"perl-Task-Kensho-Exceptions
+not-installed"perl-Task-Kensho-ModuleDev
+not-installed"perl-Task-Kensho-OOP
+not-installed"perl-Task-Kensho-Scalability
+not-installed"perl-Task-Kensho-Testing
+not-installed"perl-Task-Kensho-XML
+not-installed"perl-Task-Moose
+not-installed"perl-Task-Weaken
+not-installed"perl-Template-GD
+not-installed"perl-Template-Toolkit
+not-installed"perl-Term-Encoding
+not-installed"perl-Term-ProgressBar
+installed"perl-Term-ReadKey
+installed"perl-Term-ReadLine-Gnu
+not-installed"perl-Term-ReadPassword
+not-installed"perl-Term-Table
+not-installed"perl-Term-UI
+not-installed"perl-Test-Assert
+not-installed"perl-Test-Base
+not-installed"perl-Test-CChecker
+not-installed"perl-Test-CPAN-Meta
+not-installed"perl-Test-CheckChanges
+not-installed"perl-Test-CheckDeps
+not-installed"perl-Test-CheckManifest
+not-installed"perl-Test-Class
+not-installed"perl-Test-Class-Most
+not-installed"perl-Test-ClassAPI
+not-installed"perl-Test-CleanNamespaces
+not-installed"perl-Test-Command
+not-installed"perl-Test-Compile
+not-installed"perl-Test-Deep
+not-installed"perl-Test-Deep-Type
+not-installed"perl-Test-Differences
+not-installed"perl-Test-Directory
+not-installed"perl-Test-EOL
+not-installed"perl-Test-Exception
+not-installed"perl-Test-Exception-LessClever
+not-installed"perl-Test-FailWarnings
+not-installed"perl-Test-Fatal
+not-installed"perl-Test-File
+not-installed"perl-Test-File-Contents
+not-installed"perl-Test-File-ShareDir
+not-installed"perl-Test-HasVersion
+not-installed"perl-Test-Identity
+not-installed"perl-Test-InDistDir
+not-installed"perl-Test-Inter
+not-installed"perl-Test-JSON
+not-installed"perl-Test-Kit
+not-installed"perl-Test-LWP-UserAgent
+not-installed"perl-Test-LeakTrace
+not-installed"perl-Test-LectroTest
+not-installed"perl-Test-LongString
+not-installed"perl-Test-Manifest
+not-installed"perl-Test-Memory-Cycle
+not-installed"perl-Test-Mock-Guard
+not-installed"perl-Test-Mock-LWP
+not-installed"perl-Test-Mock-Time
+not-installed"perl-Test-MockModule
+not-installed"perl-Test-MockObject
+not-installed"perl-Test-MockRandom
+not-installed"perl-Test-MockTime
+not-installed"perl-Test-Mojo-Pg
+not-installed"perl-Test-More-UTF8
+not-installed"perl-Test-Most
+not-installed"perl-Test-Needs
+not-installed"perl-Test-NoTabs
+not-installed"perl-Test-NoWarnings
+not-installed"perl-Test-Number-Delta
+not-installed"perl-Test-Object
+not-installed"perl-Test-Output
+not-installed"perl-Test-Perl-Critic
+not-installed"perl-Test-PerlTidy
+installed"perl-Test-Pod
+installed"perl-Test-Pod-Coverage
+not-installed"perl-Test-Refcount
+not-installed"perl-Test-Requires
+not-installed"perl-Test-Requires-Git
+not-installed"perl-Test-RequiresInternet
+not-installed"perl-Test-Script
+not-installed"perl-Test-SharedFork
+not-installed"perl-Test-Signature
+not-installed"perl-Test-Signature
+not-installed"perl-Test-Simple
+not-installed"perl-Test-Spec
+not-installed"perl-Test-Spelling
+not-installed"perl-Test-Strict
+not-installed"perl-Test-SubCalls
+not-installed"perl-Test-Synopsis
+not-installed"perl-Test-TCP
+not-installed"perl-Test-Taint
+not-installed"perl-Test-TempDir-Tiny
+not-installed"perl-Test-Time
+not-installed"perl-Test-Trap
+not-installed"perl-Test-Unit
+not-installed"perl-Test-Unit-Lite
+not-installed"perl-Test-UseAllModules
+not-installed"perl-Test-WWW-Mechanize
+not-installed"perl-Test-WWW-Selenium
+not-installed"perl-Test-Warn
+not-installed"perl-Test-Warnings
+not-installed"perl-Test-Without-Module
+not-installed"perl-Test-WriteVariants
+not-installed"perl-Test-YAML
+not-installed"perl-Test-YAML-Valid
+not-installed"perl-Test-utf8
+not-installed"perl-Test2-Plugin-NoWarnings
+not-installed"perl-Test2-Suite
+not-installed"perl-Text-Aligner
+not-installed"perl-Text-Autoformat
+not-installed"perl-Text-BibTeX
+not-installed"perl-Text-BibTeX-devel
+not-installed"perl-Text-Brew
+not-installed"perl-Text-CSV
+not-installed"perl-Text-CSV_XS
+not-installed"perl-Text-Capitalize
+not-installed"perl-Text-ChaSen
+not-installed"perl-Text-CharWidth
+not-installed"perl-Text-DelimMatch
+not-installed"perl-Text-Diff
+not-installed"perl-Text-German
+not-installed"perl-Text-Glob
+not-installed"perl-Text-Hunspell
+not-installed"perl-Text-Iconv
+not-installed"perl-Text-Kakasi
+not-installed"perl-Text-Markdown
+not-installed"perl-Text-Patch
+not-installed"perl-Text-RecordParser
+not-installed"perl-Text-Reform
+not-installed"perl-Text-Roman
+not-installed"perl-Text-Soundex
+not-installed"perl-Text-SpellChecker
+not-installed"perl-Text-Sprintf-Named
+not-installed"perl-Text-Table
+not-installed"perl-Text-TabularDisplay
+not-installed"perl-Text-Template
+not-installed"perl-Text-Unidecode
+not-installed"perl-Text-WrapI18N
+not-installed"perl-Text-Wrapper
+not-installed"perl-TheSchwartz
+not-installed"perl-Throwable
+not-installed"perl-Tie-Cache
+not-installed"perl-Tie-Cycle
+not-installed"perl-Tie-Hash-DBD
+not-installed"perl-Tie-Hash-Method
+not-installed"perl-Tie-IxHash
+not-installed"perl-Tie-RefHash-Weak
+not-installed"perl-Tie-Simple
+not-installed"perl-Tie-ToObject
+not-installed"perl-Time-Clock
+not-installed"perl-Time-Duration
+not-installed"perl-Time-Duration-Parse
+not-installed"perl-Time-Mock
+not-installed"perl-Time-Moment
+not-installed"perl-Time-Out
+not-installed"perl-Time-Period
+not-installed"perl-Time-Tiny
+not-installed"perl-Time-modules
+installed"perl-TimeDate
+not-installed"perl-Tk
+not-installed"perl-Tk-Clock
+not-installed"perl-Tk-FontDialog
+not-installed"perl-Tk-FontDialog
+not-installed"perl-Tk-devel
+not-installed"perl-Tree-DAG_Node
+installed"perl-Try-Tiny
+not-installed"perl-TryCatch
+not-installed"perl-Type-Tiny
+not-installed"perl-Types-Serialiser
+not-installed"perl-UNIVERSAL-can
+not-installed"perl-UNIVERSAL-isa
+not-installed"perl-UNIVERSAL-moniker
+not-installed"perl-UNIVERSAL-require
+installed"perl-URI
+not-installed"perl-URI-Fetch
+not-installed"perl-URI-Find
+not-installed"perl-URI-Nested
+not-installed"perl-URI-Template
+not-installed"perl-URI-db
+not-installed"perl-Unicode-Collate
+not-installed"perl-Unicode-LineBreak
+not-installed"perl-Unicode-Map
+not-installed"perl-Unicode-Map8
+not-installed"perl-Unicode-Normalize
+not-installed"perl-Unicode-String
+not-installed"perl-Unicode-Stringprep
+not-installed"perl-Unix-Syslog
+not-installed"perl-Variable-Magic
+not-installed"perl-Verilog-Perl
+not-installed"perl-WWW-Form-UrlEncoded
+not-installed"perl-WWW-Mechanize
+not-installed"perl-WWW-PAUSE-CleanUpHomeDir
+not-installed"perl-WWW-Pastebin-PastebinCom-Create
+installed"perl-WWW-RobotRules
+not-installed"perl-WWW-Shorten
+not-installed"perl-Want
+not-installed"perl-WeakRef
+not-installed"perl-Web-MREST
+not-installed"perl-Web-MREST-CLI
+not-installed"perl-Web-Machine
+not-installed"perl-WebService-MusicBrainz
+not-installed"perl-Win-Hivex
+not-installed"perl-Wx
+installed"perl-X11-Protocol
+not-installed"perl-X11-Protocol-Other
+installed"perl-X500-DN
+not-installed"perl-XML-Atom
+not-installed"perl-XML-Atom-SimpleFeed
+not-installed"perl-XML-Bare
+not-installed"perl-XML-CommonNS
+not-installed"perl-XML-DOM
+not-installed"perl-XML-DOM-XPath
+installed"perl-XML-Dumper
+not-installed"perl-XML-Entities
+not-installed"perl-XML-Feed
+not-installed"perl-XML-Filter-BufferText
+not-installed"perl-XML-Generator-PerlData
+not-installed"perl-XML-Handler-YAWriter
+installed"perl-XML-LibXML
+not-installed"perl-XML-LibXML-PrettyPrint
+not-installed"perl-XML-LibXML-Simple
+not-installed"perl-XML-LibXSLT
+not-installed"perl-XML-Namespace
+not-installed"perl-XML-NamespaceFactory
+installed"perl-XML-NamespaceSupport
+not-installed"perl-XML-NodeFilter
+installed"perl-XML-Parser
+not-installed"perl-XML-Parser-Lite
+not-installed"perl-XML-RSS
+not-installed"perl-XML-RSS-LibXML
+not-installed"perl-XML-RSS-LibXML
+not-installed"perl-XML-RegExp
+installed"perl-XML-SAX
+installed"perl-XML-SAX-Base
+installed"perl-XML-SAX-Expat
+not-installed"perl-XML-SAX-ExpatXS
+not-installed"perl-XML-SAX-Writer
+not-installed"perl-XML-SemanticDiff
+installed"perl-XML-Simple
+not-installed"perl-XML-SimpleObject-LibXML
+not-installed"perl-XML-Stream
+not-installed"perl-XML-Structured
+installed"perl-XML-Twig
+not-installed"perl-XML-Writer
+not-installed"perl-XML-Writer-String
+installed"perl-XML-XPath
+not-installed"perl-XML-XPathEngine
+not-installed"perl-XML-XSLT
+not-installed"perl-XMLRPC-Lite
+not-installed"perl-XSLoader
+not-installed"perl-YAML
+not-installed"perl-YAML-LibYAML
+not-installed"perl-YAML-Syck
+not-installed"perl-YAML-Tiny
+not-installed"perl-aliased
+installed"perl-apparmor
+not-installed"perl-asa
+not-installed"perl-autobox
+not-installed"perl-autovivification
+not-installed"perl-bareword-filehandles
+installed"perl-base
+not-installed"perl-base-32bit
+not-installed"perl-biber
+not-installed"perl-boolean
+not-installed"perl-checkbot
+not-installed"perl-common-sense
+not-installed"perl-constant-boolean
+not-installed"perl-constant-defer
+not-installed"perl-curry
+not-installed"perl-doc
+not-installed"perl-experimental
+not-installed"perl-forks
+not-installed"perl-gdal
+not-installed"perl-genders
+not-installed"perl-getdata
+installed"perl-gettext
+not-installed"perl-homedir
+not-installed"perl-indirect
+not-installed"perl-ldap
+not-installed"perl-libconfigfile
+not-installed"perl-libintl-perl
+not-installed"perl-libprelude
+installed"perl-libwww-perl
+not-installed"perl-libxml-perl
+not-installed"perl-local-lib
+not-installed"perl-marisa
+not-installed"perl-mousex-getopt
+not-installed"perl-multidimensional
+not-installed"perl-mythtv
+not-installed"perl-namespace-autoclean
+not-installed"perl-namespace-clean
+not-installed"perl-obexftp
+not-installed"perl-pcsc
+not-installed"perl-prefork
+not-installed"perl-qpid
+not-installed"perl-qpid-proton
+not-installed"perl-razor-agents
+not-installed"perl-rrdtool
+not-installed"perl-slurm
+not-installed"perl-solv
+not-installed"perl-strictures
+not-installed"perl-subunit
+not-installed"perl-syntax
+not-installed"perl-thrift
+not-installed"perl-version
+not-installed"perl-warewulf-cluster
+not-installed"perl-warewulf-common
+not-installed"perl-warewulf-ipmi
+not-installed"perl-warewulf-provision
+not-installed"perl-warewulf-provision-server
+not-installed"perl-xfconf
+not-installed"perl-xmltv
+not-installed"perl-xrood-client-admin
+not-installed"perl-yui
+not-installed"perlref
+installed"permissions
+installed"permissions-config
+installed"permissions-doc
+not-installed"permissions-zypp-plugin
+not-installed"permlib-devel
+not-installed"perseus-sdr-tools
+not-installed"pesign
+not-installed"pesign-obs-integration
+not-installed"petsc-devel
+not-installed"petsc-doc
+not-installed"petsc-gnu-mpich-hpc-devel
+not-installed"petsc-gnu-mvapich2-hpc-devel
+not-installed"petsc-gnu-openmpi1-hpc-devel
+not-installed"petsc-gnu-openmpi2-hpc-devel
+not-installed"petsc-gnu-openmpi3-hpc-devel
+not-installed"petsc-openmpi-devel
+not-installed"petsc_3_11_3-gnu-mpich-hpc-devel
+not-installed"petsc_3_11_3-gnu-mpich-hpc-saws
+not-installed"petsc_3_11_3-gnu-mvapich2-hpc-devel
+not-installed"petsc_3_11_3-gnu-mvapich2-hpc-saws
+not-installed"petsc_3_11_3-gnu-openmpi1-hpc-devel
+not-installed"petsc_3_11_3-gnu-openmpi1-hpc-saws
+not-installed"petsc_3_11_3-gnu-openmpi2-hpc-devel
+not-installed"petsc_3_11_3-gnu-openmpi2-hpc-saws
+not-installed"petsc_3_11_3-gnu-openmpi3-hpc-devel
+not-installed"petsc_3_11_3-gnu-openmpi3-hpc-saws
+not-installed"pfscalibration
+not-installed"pfsglview
+not-installed"pfstmo
+not-installed"pfstools
+not-installed"pfstools-devel
+not-installed"pfstools-exr
+not-installed"pfstools-imgmagick
+not-installed"pfstools-octave
+not-installed"pfsview
+not-installed"pg_comparator
+not-installed"pgaccess
+not-installed"pgadmin4
+not-installed"pgadmin4-doc
+not-installed"pgadmin4-web
+not-installed"pgloader
+not-installed"pgn-extract
+not-installed"phalanx
+not-installed"phetsarath-fonts
+not-installed"phobos-devel
+not-installed"phobos-devel-static
+not-installed"phodav-devel
+installed"phonon-backend-gstreamer
+not-installed"phonon-backend-vlc
+not-installed"phonon-devel
+installed"phonon4qt5-backend-gstreamer
+installed"phonon4qt5-backend-gstreamer-lang
+not-installed"phonon4qt5-backend-mpv
+not-installed"phonon4qt5-backend-mpv
+not-installed"phonon4qt5-backend-vlc
+not-installed"phonon4qt5-backend-vlc-lang
+not-installed"phonon4qt5-devel
+not-installed"phonon4qt5-devel-32bit
+installed"phonon4qt5-lang
+not-installed"phoronix-test-suite
+not-installed"photoqt
+not-installed"photorec
+not-installed"php-Icinga
+not-installed"php-composer
+not-installed"php-cs-fixer
+not-installed"php-mapi
+not-installed"php-mythtv
+not-installed"php7
+not-installed"php7-APCu
+not-installed"php7-bcmath
+not-installed"php7-bz2
+not-installed"php7-calendar
+not-installed"php7-ctype
+not-installed"php7-curl
+not-installed"php7-dba
+not-installed"php7-devel
+not-installed"php7-dom
+not-installed"php7-embed
+not-installed"php7-enchant
+not-installed"php7-exif
+not-installed"php7-fastcgi
+not-installed"php7-fileinfo
+not-installed"php7-firebird
+not-installed"php7-fpm
+not-installed"php7-ftp
+not-installed"php7-gd
+not-installed"php7-geoip
+not-installed"php7-gettext
+not-installed"php7-gmagick
+not-installed"php7-gmp
+not-installed"php7-ice
+not-installed"php7-iconv
+not-installed"php7-imagick
+not-installed"php7-intl
+not-installed"php7-json
+not-installed"php7-ldap
+not-installed"php7-maxminddb
+not-installed"php7-mbstring
+not-installed"php7-memcached
+not-installed"php7-mysql
+not-installed"php7-odbc
+not-installed"php7-opcache
+not-installed"php7-openssl
+not-installed"php7-pcntl
+not-installed"php7-pdo
+not-installed"php7-pear
+not-installed"php7-pear-Auth_SASL
+not-installed"php7-pear-MDB2
+not-installed"php7-pear-MDB2_Driver_mysqli
+not-installed"php7-pear-Mail_Mime
+not-installed"php7-pear-Net_IDNA2
+not-installed"php7-pear-Net_LDAP2
+not-installed"php7-pear-Net_SMTP
+not-installed"php7-pear-Net_Sieve
+not-installed"php7-pear-Net_Socket
+not-installed"php7-pear-XML_Parser
+not-installed"php7-pgsql
+not-installed"php7-phalcon
+not-installed"php7-phar
+not-installed"php7-phpunit8
+not-installed"php7-posix
+not-installed"php7-readline
+not-installed"php7-redis
+not-installed"php7-shmop
+not-installed"php7-smbclient
+not-installed"php7-snmp
+not-installed"php7-soap
+not-installed"php7-sockets
+not-installed"php7-sodium
+not-installed"php7-sqlite
+not-installed"php7-sysvmsg
+not-installed"php7-sysvsem
+not-installed"php7-sysvshm
+not-installed"php7-tidy
+not-installed"php7-tokenizer
+not-installed"php7-uuid
+not-installed"php7-wddx
+not-installed"php7-xdebug
+not-installed"php7-xmlreader
+not-installed"php7-xmlrpc
+not-installed"php7-xmlwriter
+not-installed"php7-xsl
+not-installed"php7-zip
+not-installed"php7-zlib
+not-installed"phpMyAdmin
+not-installed"phpPgAdmin
+not-installed"pia
+not-installed"pianobar
+installed"picard
+installed"picard-lang
+not-installed"picmi
+not-installed"picmi-lang
+not-installed"pico
+not-installed"picocom
+not-installed"picojson-devel
+not-installed"pidentd
+not-installed"pidgin
+not-installed"pidgin-devel
+not-installed"pidgin-plugin-advanced-sound-notification
+not-installed"pidgin-plugin-advanced-sound-notification-lang
+not-installed"pidgin-plugin-birthday-reminder
+not-installed"pidgin-plugin-birthday-reminder-lang
+not-installed"pidgin-plugin-guifications
+not-installed"pidgin-plugin-guifications-lang
+not-installed"pidgin-plugin-indicator
+not-installed"pidgin-plugin-indicator-lang
+not-installed"pidgin-plugin-libnotify
+not-installed"pidgin-plugin-libnotify-lang
+not-installed"pidgin-plugin-libsteam
+not-installed"pidgin-plugin-mattermost
+not-installed"pidgin-plugin-mrim
+not-installed"pidgin-plugin-otr
+not-installed"pidgin-plugin-otr-lang
+not-installed"pidgin-plugin-pack
+not-installed"pidgin-plugin-pack-extras
+not-installed"pidgin-plugin-privacy-please
+not-installed"pidgin-plugin-privacy-please-lang
+not-installed"pidgin-plugin-prpltwtr
+not-installed"pidgin-plugin-rocketchat
+not-installed"pidgin-plugin-sipe
+not-installed"pidgin-plugin-skypeweb
+not-installed"pidgin-plugin-telegram
+not-installed"pidgin-plugin-xmpp-receipts
+not-installed"piglit
+installed"pigz
+not-installed"pilot
+not-installed"pilot-link
+installed"pim-data-exporter
+installed"pim-data-exporter-lang
+installed"pim-sieve-editor
+installed"pim-sieve-editor-lang
+installed"pimcommon
+not-installed"pimcommon-devel
+installed"pimcommon-lang
+not-installed"pin
+installed"pinentry
+not-installed"pinentry-emacs
+not-installed"pinentry-fltk
+not-installed"pinentry-gnome3
+not-installed"pinentry-gtk2
+installed"pinentry-qt5
+not-installed"pinfo
+not-installed"pingtunnel
+not-installed"pingus
+not-installed"pink-pony
+not-installed"pink-pony-data
+not-installed"pinpoint
+not-installed"pinta
+not-installed"pinta-lang
+not-installed"pipenightdreams
+not-installed"piper
+installed"pipewire
+not-installed"pipewire-devel
+installed"pipewire-modules
+installed"pipewire-spa-plugins
+installed"pipewire-spa-tools
+installed"pipewire-tools
+not-installed"pithos
+not-installed"pitivi
+not-installed"pitivi-lang
+not-installed"pix
+not-installed"pix-devel
+not-installed"pix-lang
+not-installed"pixd
+not-installed"pixmap
+not-installed"pixz
+not-installed"pkTriggerCord
+installed"pkcs11-helper
+not-installed"pkcs11-helper-devel
+not-installed"pkg2zip
+not-installed"pkg2zip
+installed"pkgconf
+installed"pkgconf-m4
+installed"pkgconf-pkg-config
+not-installed"pkgdiff
+not-installed"pkipplib
+not-installed"plank
+not-installed"plank-devel
+not-installed"plank-docklets
+not-installed"plank-lang
+not-installed"plank-metatheme-elementary
+not-installed"plank-theme-adapta
+not-installed"plank-theme-elementary
+not-installed"plank-theme-plata
+not-installed"plantuml
+not-installed"plasma-applet-weather-widget
+not-installed"plasma-applet-weather-widget-lang
+installed"plasma-browser-integration
+installed"plasma-browser-integration-lang
+installed"plasma-framework
+not-installed"plasma-framework-32bit
+installed"plasma-framework-components
+not-installed"plasma-framework-components-32bit
+not-installed"plasma-framework-devel
+not-installed"plasma-framework-devel-32bit
+installed"plasma-framework-lang
+not-installed"plasma-mycroft
+installed"plasma-nm5
+not-installed"plasma-nm5-fortisslvpn
+not-installed"plasma-nm5-iodine
+installed"plasma-nm5-l2tp
+installed"plasma-nm5-lang
+installed"plasma-nm5-openconnect
+not-installed"plasma-nm5-openswan
+installed"plasma-nm5-openvpn
+installed"plasma-nm5-pptp
+not-installed"plasma-nm5-ssh
+not-installed"plasma-nm5-sstp
+not-installed"plasma-nm5-strongswan
+not-installed"plasma-nm5-vpnc
+not-installed"plasma-pass
+not-installed"plasma-pass-lang
+not-installed"plasma-theme-oxygen
+not-installed"plasma-vault
+not-installed"plasma-vault-backend-cryfs
+not-installed"plasma-vault-backend-encfs
+not-installed"plasma-vault-lang
+installed"plasma5-addons
+not-installed"plasma5-addons-devel
+installed"plasma5-addons-lang
+installed"plasma5-applet-suse-prime
+not-installed"plasma5-beclock-widget
+not-installed"plasma5-beclock-widget
+installed"plasma5-defaults-openSUSE
+installed"plasma5-desktop
+installed"plasma5-desktop-lang
+not-installed"plasma5-dynamic-wallpaper
+not-installed"plasma5-dynamic-wallpaper
+not-installed"plasma5-dynamic-wallpaper-lang
+installed"plasma5-integration-plugin
+installed"plasma5-integration-plugin-lang
+installed"plasma5-pa
+installed"plasma5-pa-lang
+installed"plasma5-pk-updates
+installed"plasma5-pk-updates-lang
+not-installed"plasma5-radiotray
+not-installed"plasma5-radiotray
+not-installed"plasma5-radiotray-debuginfo
+not-installed"plasma5-radiotray-debugsource
+not-installed"plasma5-radiotray-lang
+not-installed"plasma5-sdk
+not-installed"plasma5-sdk-lang
+installed"plasma5-session
+not-installed"plasma5-session-wayland
+installed"plasma5-theme-openSUSE
+not-installed"plasma5-weather-widget
+not-installed"plasma5-weather-widget
+not-installed"plasma5-weather-widget-lang
+installed"plasma5-workspace
+installed"plasma5-workspace-branding-openSUSE
+not-installed"plasma5-workspace-devel
+installed"plasma5-workspace-lang
+installed"plasma5-workspace-libs
+not-installed"plasma5-workspace-libs-32bit
+not-installed"plasma5-workspace-wallpapers
+not-installed"plasmaengineexplorer5
+not-installed"plater
+not-installed"platformsh-cli
+not-installed"playerctl
+not-installed"playerctl-devel
+not-installed"playerctl-doc
+not-installed"plee-the-bear
+not-installed"plee-the-bear-data
+not-installed"plexus-ant-factory
+not-installed"plexus-ant-factory-javadoc
+not-installed"plexus-archiver
+not-installed"plexus-archiver-javadoc
+not-installed"plexus-bsh-factory
+not-installed"plexus-bsh-factory-javadoc
+not-installed"plexus-build-api
+not-installed"plexus-build-api-javadoc
+not-installed"plexus-cipher
+not-installed"plexus-cipher-javadoc
+not-installed"plexus-classworlds
+not-installed"plexus-classworlds-javadoc
+not-installed"plexus-cli
+not-installed"plexus-cli-javadoc
+not-installed"plexus-compiler
+not-installed"plexus-compiler-extras
+not-installed"plexus-compiler-javadoc
+not-installed"plexus-component-api
+not-installed"plexus-component-api-javadoc
+not-installed"plexus-component-factories-pom
+not-installed"plexus-component-metadata
+not-installed"plexus-component-metadata-javadoc
+not-installed"plexus-components-pom
+not-installed"plexus-containers-component-annotations
+not-installed"plexus-containers-component-javadoc
+not-installed"plexus-containers-container-default
+not-installed"plexus-containers-javadoc
+not-installed"plexus-i18n
+not-installed"plexus-i18n-javadoc
+not-installed"plexus-interactivity-api
+not-installed"plexus-interactivity-javadoc
+not-installed"plexus-interactivity-jline
+not-installed"plexus-interpolation
+not-installed"plexus-interpolation-javadoc
+not-installed"plexus-io
+not-installed"plexus-io-javadoc
+not-installed"plexus-languages
+not-installed"plexus-languages-javadoc
+not-installed"plexus-metadata-generator
+not-installed"plexus-metadata-generator-javadoc
+not-installed"plexus-pom
+not-installed"plexus-resources
+not-installed"plexus-resources-javadoc
+not-installed"plexus-sec-dispatcher
+not-installed"plexus-sec-dispatcher-javadoc
+not-installed"plexus-utils
+not-installed"plexus-utils-javadoc
+not-installed"plexus-velocity
+not-installed"plexus-velocity-javadoc
+not-installed"plib-devel
+not-installed"plistutil
+not-installed"plotutils
+not-installed"plotutils-devel
+not-installed"plowshare
+not-installed"plplot-common
+not-installed"plplot-devel
+not-installed"plplot-doc
+not-installed"plplot-driver-cairo
+not-installed"plplot-driver-ntk
+not-installed"plplot-driver-ps
+not-installed"plplot-driver-psttf
+not-installed"plplot-driver-svg
+not-installed"plplot-driver-xfig
+not-installed"plplot-driver-xwin
+not-installed"plplot-java
+not-installed"plplot-lua
+not-installed"plplot-python3-qt
+not-installed"plplot-tcltk-devel
+not-installed"plplot-tcltk-libs
+not-installed"plplot-wxwidgets
+not-installed"plplotada-devel
+not-installed"plplotcxx-devel
+not-installed"plplotfortran-devel
+not-installed"plplotqt-devel
+not-installed"plplotwxwidgets-devel
+not-installed"pluma
+not-installed"pluma-devel
+not-installed"pluma-lang
+installed"plymouth
+installed"plymouth-branding-openSUSE
+not-installed"plymouth-devel
+installed"plymouth-dracut
+not-installed"plymouth-plugin-fade-throbber
+installed"plymouth-plugin-label
+installed"plymouth-plugin-label-ft
+installed"plymouth-plugin-script
+not-installed"plymouth-plugin-space-flares
+not-installed"plymouth-plugin-throbgress
+not-installed"plymouth-plugin-tribar
+installed"plymouth-plugin-two-step
+installed"plymouth-scripts
+installed"plymouth-theme-bgrt
+not-installed"plymouth-theme-breeze
+not-installed"plymouth-theme-breeze-plugin-breeze
+not-installed"plymouth-theme-fade-in
+not-installed"plymouth-theme-script
+not-installed"plymouth-theme-solar
+not-installed"plymouth-theme-spinfinity
+installed"plymouth-theme-spinner
+not-installed"plymouth-theme-tribar
+not-installed"plzip
+not-installed"pmacct
+installed"pmdk
+not-installed"pmdk-convert
+not-installed"pmdk-devel-doc
+not-installed"pmdk-tools
+not-installed"pmidi
+not-installed"pmount
+not-installed"pmount
+not-installed"pmount-debuginfo
+not-installed"pmount-debugsource
+not-installed"pmount-lang
+not-installed"pms
+not-installed"pms
+not-installed"pms-debuginfo
+not-installed"pms-debugsource
+not-installed"png++-devel
+not-installed"pngcheck
+not-installed"pngcrush
+not-installed"pnglite-devel
+installed"pngquant
+not-installed"pngtoico
+not-installed"pnm2ppa
+not-installed"po-utils
+not-installed"po4a
+not-installed"po4a-lang
+not-installed"pocketsphinx
+not-installed"pocketsphinx-devel
+not-installed"pocl
+not-installed"pocl-devel
+not-installed"podman
+not-installed"podman-cni-config
+not-installed"podofo
+not-installed"poedit
+not-installed"poedit-lang
+not-installed"poezio
+not-installed"poezio-doc
+not-installed"pogo
+not-installed"pogo
+not-installed"polari
+not-installed"polari-lang
+not-installed"policycoreutils
+not-installed"policycoreutils-devel
+not-installed"policycoreutils-lang
+not-installed"policycoreutils-newrole
+installed"polkit
+installed"polkit-default-privs
+not-installed"polkit-devel
+not-installed"polkit-doc
+not-installed"polkit-gnome
+not-installed"polkit-gnome-lang
+installed"polkit-kde-agent-5
+installed"polkit-kde-agent-5-lang
+not-installed"polkit-whitelisting
+not-installed"pology
+not-installed"pology-lang
+not-installed"polyglot
+not-installed"polyglot
+not-installed"polyglot-debuginfo
+not-installed"polyglot-debugsource
+not-installed"pommed
+not-installed"pongix
+installed"poppler-data
+installed"poppler-tools
+not-installed"popt-devel
+not-installed"popt-devel-32bit
+not-installed"portaudio-devel
+not-installed"portmidi
+not-installed"portmidi-devel
+not-installed"portmidi-java
+not-installed"posix_cc
+not-installed"posixovl
+not-installed"post-build-checks
+not-installed"poster
+not-installed"postfish
+installed"postfix
+not-installed"postfix-devel
+not-installed"postfix-doc
+not-installed"postfix-lmdb
+not-installed"postfix-mysql
+not-installed"postfix-postgresql
+not-installed"postfixadmin
+not-installed"postgresql
+not-installed"postgresql-contrib
+not-installed"postgresql-devel
+not-installed"postgresql-docs
+not-installed"postgresql-llvmjit
+not-installed"postgresql-plperl
+not-installed"postgresql-plpython
+not-installed"postgresql-pltcl
+not-installed"postgresql-server
+not-installed"postgresql-server-devel
+not-installed"postgresql-test
+not-installed"postgresql10
+not-installed"postgresql10-contrib
+not-installed"postgresql10-devel
+not-installed"postgresql10-docs
+not-installed"postgresql10-pg_cron
+not-installed"postgresql10-pgagent
+not-installed"postgresql10-plperl
+not-installed"postgresql10-plpython
+not-installed"postgresql10-plr
+not-installed"postgresql10-plr-doc
+not-installed"postgresql10-pltcl
+not-installed"postgresql10-server
+not-installed"postgresql10-test
+not-installed"postgresql10-timescaledb
+not-installed"postgresql11
+not-installed"postgresql11-contrib
+not-installed"postgresql11-devel
+not-installed"postgresql11-docs
+not-installed"postgresql11-llvmjit
+not-installed"postgresql11-pg_cron
+not-installed"postgresql11-pg_cron-llvmjit
+not-installed"postgresql11-pgagent
+not-installed"postgresql11-plperl
+not-installed"postgresql11-plpython
+not-installed"postgresql11-plr
+not-installed"postgresql11-plr-doc
+not-installed"postgresql11-pltcl
+not-installed"postgresql11-server
+not-installed"postgresql11-server-devel
+not-installed"postgresql11-test
+not-installed"postgresql11-timescaledb
+not-installed"postgresql94
+not-installed"postgresql94-contrib
+not-installed"postgresql94-devel
+not-installed"postgresql94-docs
+not-installed"postgresql94-pgagent
+not-installed"postgresql94-plperl
+not-installed"postgresql94-plpython
+not-installed"postgresql94-plr
+not-installed"postgresql94-plr-doc
+not-installed"postgresql94-pltcl
+not-installed"postgresql94-server
+not-installed"postgresql94-test
+not-installed"postgresql95
+not-installed"postgresql95-contrib
+not-installed"postgresql95-devel
+not-installed"postgresql95-docs
+not-installed"postgresql95-pg_cron
+not-installed"postgresql95-pgagent
+not-installed"postgresql95-plperl
+not-installed"postgresql95-plpython
+not-installed"postgresql95-plr
+not-installed"postgresql95-plr-doc
+not-installed"postgresql95-pltcl
+not-installed"postgresql95-server
+not-installed"postgresql95-test
+not-installed"postgresql96
+not-installed"postgresql96-contrib
+not-installed"postgresql96-devel
+not-installed"postgresql96-docs
+not-installed"postgresql96-pg_cron
+not-installed"postgresql96-pgagent
+not-installed"postgresql96-plperl
+not-installed"postgresql96-plpython
+not-installed"postgresql96-plr
+not-installed"postgresql96-plr-doc
+not-installed"postgresql96-pltcl
+not-installed"postgresql96-server
+not-installed"postgresql96-test
+not-installed"postgresql96-timescaledb
+not-installed"postgrey
+not-installed"postsrsd
+not-installed"pothana2000-fonts
+not-installed"potrace
+not-installed"potrace-devel
+not-installed"pound
+not-installed"pound-doc
+not-installed"povray
+not-installed"powdertoy
+not-installed"powerd
+installed"powerdevil5
+installed"powerdevil5-lang
+not-installed"powerline
+not-installed"powerline-docs
+installed"powerline-fonts
+not-installed"powerman
+not-installed"powerman-devel
+not-installed"powermanga
+not-installed"powermock-api-easymock
+not-installed"powermock-api-mockito
+not-installed"powermock-api-support
+not-installed"powermock-common
+not-installed"powermock-core
+not-installed"powermock-javadoc
+not-installed"powermock-junit4
+not-installed"powermock-reflect
+not-installed"powermock-testng
+not-installed"powerstat
+not-installed"powertop
+not-installed"powertop-lang
+not-installed"poxml-lang
+installed"ppp
+not-installed"ppp-devel
+not-installed"ppp-modem
+not-installed"ppp-userpass
+not-installed"pps-tools
+not-installed"pps-tools-devel
+installed"pptp
+not-installed"pptpd
+not-installed"praat
+not-installed"pragha
+not-installed"pragha-lang
+not-installed"pragha-plugins
+not-installed"pragha-plugins-devel
+not-installed"prboom-plus
+installed"prctl
+not-installed"prelude-correlator-core
+not-installed"prelude-lml
+not-installed"prelude-lml-devel
+not-installed"prelude-lml-rules
+not-installed"prelude-manager
+not-installed"prelude-manager-db-plugin
+not-installed"prelude-manager-devel
+not-installed"prelude-manager-smtp-plugin
+not-installed"prelude-manager-xml-plugin
+not-installed"prelude-tools
+not-installed"preludedb-tools
+not-installed"premake4
+not-installed"presage
+not-installed"presage-data
+not-installed"prewikka-core
+not-installed"prewikka-lang
+not-installed"primesieve
+not-installed"primus
+not-installed"primus-32bit
+not-installed"print_server
+not-installed"printer-driver-brlaser
+not-installed"printproto-devel
+not-installed"prison-qt5-devel
+not-installed"prison-qt5-devel-32bit
+installed"prison-qt5-imports
+not-installed"privoxy
+not-installed"privoxy-doc
+not-installed"procdump
+installed"procinfo
+installed"procmail
+not-installed"procmeter
+not-installed"procmeter-devel
+installed"procps
+not-installed"procps-devel
+not-installed"product-builder
+not-installed"product-builder-plugin-Tumbleweed
+not-installed"profanity
+not-installed"profanity-mini
+not-installed"profanity-standard
+not-installed"proftpd
+not-installed"proftpd-devel
+not-installed"proftpd-doc
+not-installed"proftpd-lang
+not-installed"proftpd-ldap
+not-installed"proftpd-mysql
+not-installed"proftpd-pgsql
+not-installed"proftpd-radius
+not-installed"proftpd-sqlite
+not-installed"progress
+not-installed"proj
+not-installed"proj-devel
+not-installed"projectM
+not-installed"projectM-data
+not-installed"projectM-devel
+not-installed"projectlibre
+not-installed"prometheus-client-model-source
+not-installed"pronsole
+not-installed"pronterface
+not-installed"prosody
+not-installed"proteus
+not-installed"protobuf-c
+not-installed"protobuf-devel
+not-installed"protobuf-java
+not-installed"protobuf-source
+not-installed"protoc-gen-go
+not-installed"protoc-gen-go-source
+not-installed"protoc-gen-gogo
+not-installed"protoc-gen-gogo-source
+not-installed"protoc-gen-validate
+not-installed"protoc-gen-validate-source
+not-installed"proxychains-ng
+not-installed"prozgui
+not-installed"prun-ohpc
+not-installed"psgml
+not-installed"psgplay
+not-installed"psi+
+not-installed"psi+-data
+not-installed"psi+-iconsets
+not-installed"psi+-iconsets
+not-installed"psi+-lang
+not-installed"psi+-plugins-attentionplugin
+not-installed"psi+-plugins-autoreplyplugin
+not-installed"psi+-plugins-birthdayreminderplugin
+not-installed"psi+-plugins-chessplugin
+not-installed"psi+-plugins-cleanerplugin
+not-installed"psi+-plugins-clientswitcherplugin
+not-installed"psi+-plugins-conferenceloggerplugin
+not-installed"psi+-plugins-contentdownloaderplugin
+not-installed"psi+-plugins-devel
+not-installed"psi+-plugins-enummessagesplugin
+not-installed"psi+-plugins-extendedmenuplugin
+not-installed"psi+-plugins-extendedoptionsplugin
+not-installed"psi+-plugins-gnupgplugin
+not-installed"psi+-plugins-gomokugameplugin
+not-installed"psi+-plugins-historykeeperplugin
+not-installed"psi+-plugins-icqdieplugin
+not-installed"psi+-plugins-imageplugin
+not-installed"psi+-plugins-imagepreviewplugin
+not-installed"psi+-plugins-jabberdiskplugin
+not-installed"psi+-plugins-juickplugin
+not-installed"psi+-plugins-messagefilterplugin
+not-installed"psi+-plugins-omemoplugin
+not-installed"psi+-plugins-otrplugin
+not-installed"psi+-plugins-pepchangenotifyplugin
+not-installed"psi+-plugins-qipxstatusesplugin
+not-installed"psi+-plugins-screenshotplugin
+not-installed"psi+-plugins-skinsplugin
+not-installed"psi+-plugins-stopspamplugin
+not-installed"psi+-plugins-storagenotesplugin
+not-installed"psi+-plugins-translateplugin
+not-installed"psi+-plugins-videostatusplugin
+not-installed"psi+-plugins-watcherplugin
+not-installed"psiconv
+not-installed"psiconv-devel
+not-installed"psl
+not-installed"psl-make-dafsa
+installed"psmisc
+installed"psmisc-lang
+not-installed"pspg
+not-installed"pspp
+not-installed"pspp-devel
+installed"psqlODBC
+not-installed"pssh
+not-installed"pstoedit
+not-installed"pstoedit-devel
+installed"psutils
+not-installed"pthread-stubs-devel
+not-installed"ptokax
+installed"ptools
+not-installed"ptpd
+not-installed"ptscotch-gnu-mpich-hpc
+not-installed"ptscotch-gnu-mpich-hpc-devel
+not-installed"ptscotch-gnu-mvapich2-hpc
+not-installed"ptscotch-gnu-mvapich2-hpc-devel
+not-installed"ptscotch-gnu-openmpi1-hpc
+not-installed"ptscotch-gnu-openmpi1-hpc-devel
+not-installed"ptscotch-gnu-openmpi2-hpc
+not-installed"ptscotch-gnu-openmpi2-hpc-devel
+not-installed"ptscotch-gnu-openmpi3-hpc
+not-installed"ptscotch-gnu-openmpi3-hpc-devel
+not-installed"ptscotch-mpich
+not-installed"ptscotch-mpich-devel
+not-installed"ptscotch-mpich-devel-static
+not-installed"ptscotch-mvapich2
+not-installed"ptscotch-mvapich2-devel
+not-installed"ptscotch-mvapich2-devel-static
+not-installed"ptscotch-openmpi
+not-installed"ptscotch-openmpi-devel
+not-installed"ptscotch-openmpi-devel-static
+not-installed"ptscotch-openmpi2
+not-installed"ptscotch-openmpi2-devel
+not-installed"ptscotch-openmpi2-devel-static
+not-installed"ptscotch-parmetis-mpich-devel
+not-installed"ptscotch-parmetis-mvapich2-devel
+not-installed"ptscotch-parmetis-openmpi-devel
+not-installed"ptscotch-parmetis-openmpi2-devel
+not-installed"ptscotch_6_0_6-gnu-mpich-hpc
+not-installed"ptscotch_6_0_6-gnu-mpich-hpc-devel
+not-installed"ptscotch_6_0_6-gnu-mpich-hpc-devel-static
+not-installed"ptscotch_6_0_6-gnu-mvapich2-hpc
+not-installed"ptscotch_6_0_6-gnu-mvapich2-hpc-devel
+not-installed"ptscotch_6_0_6-gnu-mvapich2-hpc-devel-static
+not-installed"ptscotch_6_0_6-gnu-openmpi1-hpc
+not-installed"ptscotch_6_0_6-gnu-openmpi1-hpc-devel
+not-installed"ptscotch_6_0_6-gnu-openmpi1-hpc-devel-static
+not-installed"ptscotch_6_0_6-gnu-openmpi2-hpc
+not-installed"ptscotch_6_0_6-gnu-openmpi2-hpc-devel
+not-installed"ptscotch_6_0_6-gnu-openmpi2-hpc-devel-static
+not-installed"ptscotch_6_0_6-gnu-openmpi3-hpc
+not-installed"ptscotch_6_0_6-gnu-openmpi3-hpc-devel
+not-installed"ptscotch_6_0_6-gnu-openmpi3-hpc-devel-static
+installed"publicsuffix
+installed"puddletag
+not-installed"pugixml-devel
+not-installed"pullin-bcm43xx-firmware
+installed"pulseaudio
+installed"pulseaudio-bash-completion
+not-installed"pulseaudio-dlna
+not-installed"pulseaudio-dlna
+not-installed"pulseaudio-equalizer
+not-installed"pulseaudio-esound-compat
+not-installed"pulseaudio-gdm-hooks
+installed"pulseaudio-lang
+installed"pulseaudio-module-bluetooth
+installed"pulseaudio-module-gconf
+not-installed"pulseaudio-module-gsettings
+not-installed"pulseaudio-module-jack
+not-installed"pulseaudio-module-lirc
+installed"pulseaudio-module-x11
+installed"pulseaudio-module-zeroconf
+not-installed"pulseaudio-qt-devel
+not-installed"pulseaudio-system-wide
+installed"pulseaudio-utils
+installed"pulseaudio-utils-32bit
+not-installed"pulseaudio-zsh-completion
+installed"pulseeffects
+installed"pulseeffects-lang
+not-installed"pulseview
+not-installed"pumpa
+not-installed"pure-ftpd
+installed"purpose
+not-installed"purpose-32bit
+not-installed"purpose-devel
+not-installed"purpose-devel-32bit
+installed"purpose-lang
+not-installed"putty
+installed"pv
+not-installed"pw3270
+not-installed"pw3270-devel
+not-installed"pw3270-plugin-dbus
+not-installed"pwgen
+not-installed"py-fishcrypt
+not-installed"pybugz-common
+not-installed"pydb
+not-installed"pydb
+not-installed"pydf
+not-installed"pyenv
+not-installed"pyenv-bash-completion
+not-installed"pyenv-fish-completion
+not-installed"pyenv-zsh-completion
+not-installed"pymilter-common
+not-installed"pymp3cut
+not-installed"pymp3cut
+not-installed"pyprompter
+not-installed"pyspacewar
+not-installed"pythia-devel
+not-installed"pythia-doc
+installed"python
+not-installed"python-32bit
+not-installed"python-3parclient
+not-installed"python-Babel-doc
+not-installed"python-Brownie
+not-installed"python-Cheetah
+not-installed"python-Genshi-doc
+not-installed"python-Hamlib
+not-installed"python-Jinja2-emacs
+not-installed"python-Jinja2-vim
+not-installed"python-Kivy-doc
+not-installed"python-LHAPDF
+not-installed"python-M2Crypto-doc
+not-installed"python-OpenColorIO
+not-installed"python-OpenColorIO-devel
+not-installed"python-PyWavelets-doc
+not-installed"python-Rivet
+not-installed"python-SHERPA-MC
+not-installed"python-SQLAlchemy-doc
+not-installed"python-Scrapy-doc
+not-installed"python-SpeechRecognition-common-en-US
+not-installed"python-Sphinx-doc-html
+not-installed"python-Sphinx-doc-man
+not-installed"python-Twisted-doc
+not-installed"python-WTForms-doc
+not-installed"python-WebError
+not-installed"python-WebOb-doc
+not-installed"python-WebTest-doc
+not-installed"python-Whoosh-doc
+not-installed"python-YODA
+not-installed"python-Yapsy-doc
+not-installed"python-ZODB-doc
+not-installed"python-acitoolkit-doc
+not-installed"python-acitoolkit-doc-applications
+not-installed"python-acitoolkit-doc-samples
+not-installed"python-aiohttp-doc
+not-installed"python-altgraph-doc
+not-installed"python-antlr3_runtime
+not-installed"python-aodhclient
+not-installed"python-aodhclient-doc
+not-installed"python-apfel
+not-installed"python-atomicwrites-doc
+not-installed"python-automaton-doc
+not-installed"python-azure-agent
+not-installed"python-azure-agent-test
+not-installed"python-azure-sdk
+not-installed"python-barbicanclient-doc
+installed"python-base
+not-installed"python-base-32bit
+not-installed"python-beautifulsoup4-doc
+not-installed"python-billiard-doc
+not-installed"python-blinker-doc
+not-installed"python-boost_parallel_mpi
+not-installed"python-bottle-doc
+not-installed"python-bpython-common
+not-installed"python-bpython-doc
+not-installed"python-braille
+not-installed"python-caja-devel
+not-installed"python-caja-lang
+not-installed"python-castellan-doc
+not-installed"python-ceph-cfg
+not-installed"python-chewing
+not-installed"python-cinderclient-doc
+not-installed"python-cliff-doc
+not-installed"python-congressclient
+not-installed"python-congressclient-doc
+not-installed"python-cotyledon-doc
+not-installed"python-curses
+not-installed"python-cwiid
+not-installed"python-dbus-python-common-devel
+not-installed"python-debtcollector-doc
+not-installed"python-demo
+not-installed"python-designateclient
+not-installed"python-designateclient-doc
+not-installed"python-devel
+not-installed"python-dfVFS
+not-installed"python-dfwinreg
+not-installed"python-dialog
+not-installed"python-djvulibre-doc
+not-installed"python-doc
+not-installed"python-doc-pdf
+not-installed"python-ecasound
+not-installed"python-efilter
+not-installed"python-enum34
+not-installed"python-espressopp
+not-installed"python-falcon-doc
+not-installed"python-fastcluster-doc
+not-installed"python-faulthandler
+not-installed"python-fedmsg-base
+not-installed"python-fedmsg-doc
+not-installed"python-fityk
+not-installed"python-flake8-doc
+not-installed"python-flup-doc
+not-installed"python-fpconst
+not-installed"python-fpconst
+not-installed"python-freezerclient-doc
+not-installed"python-funcsigs
+not-installed"python-functools32
+not-installed"python-gamin
+not-installed"python-gcs-oauth2-boto-plugin
+not-installed"python-gdbm
+not-installed"python-genders
+not-installed"python-getdata
+not-installed"python-gevent-doc
+not-installed"python-gexiv2
+not-installed"python-glanceclient-doc
+not-installed"python-glareclient
+not-installed"python-glareclient-doc
+not-installed"python-glucat
+not-installed"python-gluster
+not-installed"python-gnome-dvb-daemon
+not-installed"python-gobject-common-devel
+not-installed"python-gobject2
+not-installed"python-gobject2-devel
+not-installed"python-gr-fcdproplus
+not-installed"python-gr-iqbal
+not-installed"python-gr-osmosdr
+not-installed"python-gtk
+not-installed"python-gtk-devel
+not-installed"python-gtk-doc
+not-installed"python-gtksourceview
+not-installed"python-gtksourceview-devel
+not-installed"python-gunicorn-doc
+not-installed"python-hachoir-core
+not-installed"python-hachoir-metadata
+not-installed"python-hachoir-parser
+not-installed"python-happybase-doc
+not-installed"python-heatclient-doc
+not-installed"python-hivex
+not-installed"python-ibus
+not-installed"python-idle
+not-installed"python-imagestore
+not-installed"python-imobiledevice
+not-installed"python-ipaddress
+not-installed"python-ipython-doc
+not-installed"python-ipywidgets-doc
+not-installed"python-ironic-inspector-client
+not-installed"python-ironicclient-doc
+not-installed"python-jaraco.stream-doc
+not-installed"python-jrnl
+not-installed"python-k8sclient
+not-installed"python-k8sclient-doc
+not-installed"python-kaa-base
+not-installed"python-kaa-metadata
+not-installed"python-katedj
+not-installed"python-keybinder
+not-installed"python-keystoneauth1-doc
+not-installed"python-keystoneclient-doc
+not-installed"python-keystonemiddleware-doc
+not-installed"python-kid-doc
+not-installed"python-ktoblzcheck
+not-installed"python-lammps
+not-installed"python-lash
+not-installed"python-lash-debuginfo
+not-installed"python-libaccounts
+not-installed"python-libaddrxlat
+not-installed"python-libcomps-doc
+not-installed"python-libesedb
+not-installed"python-libevt
+not-installed"python-libevtx
+not-installed"python-libexe
+not-installed"python-libfwsi
+not-installed"python-libgpiod
+not-installed"python-libkdumpfile
+not-installed"python-libkolabxml1
+not-installed"python-liblnk
+not-installed"python-libmsiecf
+not-installed"python-libolecf
+not-installed"python-libpff
+not-installed"python-libproxy
+not-installed"python-libregf
+not-installed"python-libteam
+not-installed"python-lmiwbem
+not-installed"python-logutils-doc
+not-installed"python-lxml-doc
+not-installed"python-magnumclient-doc
+not-installed"python-manilaclient-doc
+not-installed"python-marisa
+not-installed"python-marshmallow-docs
+not-installed"python-masakariclient
+not-installed"python-masakariclient-doc
+not-installed"python-mathgl
+not-installed"python-md2workflow-common
+not-installed"python-microversion_parse
+not-installed"python-microversion_parse-doc
+not-installed"python-mistralclient
+not-installed"python-mistralclient-doc
+not-installed"python-mlt
+not-installed"python-mongodict
+not-installed"python-mox3-doc
+not-installed"python-mpi4py-common-devel
+not-installed"python-mpi4py-doc
+not-installed"python-murano-pkg-check
+not-installed"python-muranoclient
+not-installed"python-muranoclient-doc
+not-installed"python-musicbrainz2
+not-installed"python-musicbrainz2
+not-installed"python-mythtv
+not-installed"python-nautilus-common-devel
+not-installed"python-nautilus-common-files
+not-installed"python-ncclient-doc
+not-installed"python-networkx-doc
+not-installed"python-neutronclient-doc
+not-installed"python-nlopt
+not-installed"python-notify
+not-installed"python-notify-devel
+not-installed"python-notmuch
+not-installed"python-notmuch-doc
+not-installed"python-novaclient-doc
+not-installed"python-obexftp
+not-installed"python-octaviaclient-doc
+not-installed"python-openbabel
+not-installed"python-openstack-doc-tools
+not-installed"python-openstackclient-doc
+not-installed"python-openstacksdk-doc
+not-installed"python-opensync
+not-installed"python-optcomplete
+not-installed"python-os-testr-doc
+not-installed"python-os-win-doc
+not-installed"python-osc-lib-doc
+not-installed"python-oslo-middleware-doc
+not-installed"python-oslo.cache-doc
+not-installed"python-oslo.concurrency-doc
+not-installed"python-oslo.config-doc
+not-installed"python-oslo.context-doc
+not-installed"python-oslo.db-doc
+not-installed"python-oslo.i18n-doc
+not-installed"python-oslo.log-doc
+not-installed"python-oslo.messaging-doc
+not-installed"python-oslo.policy-doc
+not-installed"python-oslo.privsep-doc
+not-installed"python-oslo.reports-doc
+not-installed"python-oslo.rootwrap-doc
+not-installed"python-oslo.serialization-doc
+not-installed"python-oslo.service-doc
+not-installed"python-oslo.utils-doc
+not-installed"python-oslo.versionedobjects-doc
+not-installed"python-oslo.vmware-doc
+not-installed"python-osprofiler-doc
+not-installed"python-ovsdbapp-doc
+not-installed"python-paramiko-doc
+not-installed"python-peppercorn-doc
+not-installed"python-pisock
+not-installed"python-plaso
+not-installed"python-plist
+not-installed"python-ply-doc
+not-installed"python-polib-doc
+not-installed"python-praatio-doc
+not-installed"python-presage
+not-installed"python-presagemate
+not-installed"python-proliantutils
+not-installed"python-pssh
+not-installed"python-py2pack-doc
+not-installed"python-pycadf-common
+not-installed"python-pycadf-doc
+not-installed"python-pycairo-common-devel
+not-installed"python-pycurl-doc
+not-installed"python-pygame-doc
+not-installed"python-pyghmi-doc
+not-installed"python-pygraphviz-doc
+not-installed"python-pyinsane
+not-installed"python-pylibacl
+not-installed"python-pylibacl-doc
+not-installed"python-pymetar
+not-installed"python-pymisp-doc
+not-installed"python-pymod2pkg-doc
+not-installed"python-pymp3cut
+not-installed"python-pynag
+not-installed"python-pyqtgraph-doc
+not-installed"python-pyrrd-docs
+not-installed"python-pyserial-doc
+not-installed"python-pysnmp-doc
+not-installed"python-pysqlite
+not-installed"python-pytest-doc
+not-installed"python-python-openid
+not-installed"python-qpid
+not-installed"python-qpid_messaging
+not-installed"python-qscintilla-qt5-sip
+not-installed"python-qt3d-qt5-api
+not-installed"python-qt3d-qt5-examples
+not-installed"python-qt3d-qt5-sip
+not-installed"python-qt4-doc
+installed"python-qt4-utils
+not-installed"python-qt5-doc
+installed"python-qt5-utils
+not-installed"python-qtcharts-qt5-api
+not-installed"python-qtcharts-qt5-examples
+not-installed"python-qtcharts-qt5-sip
+not-installed"python-qtdatavis3d-qt5-api
+not-installed"python-qtdatavis3d-qt5-examples
+not-installed"python-qtdatavis3d-qt5-sip
+not-installed"python-qtwebengine-qt5-api
+installed"python-qtwebengine-qt5-sip
+not-installed"python-rapi2
+not-installed"python-rapi2-debuginfo
+not-installed"python-rcssmin-docs
+not-installed"python-rdflib-doc
+not-installed"python-renderspec
+not-installed"python-renderspec-doc
+not-installed"python-requestbuilder
+not-installed"python-restkit
+installed"python-rpm-macros
+not-installed"python-ruamel.ordereddict
+not-installed"python-ryu-common
+not-installed"python-saharaclient
+not-installed"python-saharaclient-doc
+not-installed"python-salt-testing
+not-installed"python-scapy
+not-installed"python-scapy
+not-installed"python-senlinclient-doc
+not-installed"python-shodan-doc
+not-installed"python-singledispatch
+installed"python-sip-common
+not-installed"python-sip-doc
+not-installed"python-six-doc
+not-installed"python-solv
+not-installed"python-sqlalchemy-migrate-doc
+not-installed"python-stevedore-doc
+not-installed"python-sushy-doc
+not-installed"python-svneverever
+not-installed"python-swiftclient-doc
+not-installed"python-tables-doc
+not-installed"python-temps
+not-installed"python-testtools-doc
+not-installed"python-tk
+not-installed"python-tooz-doc
+not-installed"python-translationstring-doc
+not-installed"python-tre
+not-installed"python-trollius
+not-installed"python-troveclient
+not-installed"python-troveclient-doc
+not-installed"python-tvdb_api
+not-installed"python-tvrage
+not-installed"python-tvrage
+not-installed"python-txsocksx
+not-installed"python-typeshed
+not-installed"python-vips
+not-installed"python-volatility
+not-installed"python-watcherclient
+not-installed"python-watcherclient-doc
+not-installed"python-weakrefmethod
+not-installed"python-web.py
+not-installed"python-wxWidgets-3_0
+not-installed"python-wxWidgets-3_0-devel
+not-installed"python-wxWidgets-3_0-lang
+not-installed"python-xapian
+installed"python-xml
+not-installed"python-xmms2
+not-installed"python-yaql
+not-installed"python-yui
+not-installed"python-zinnia
+not-installed"python-zope.deprecation-doc
+not-installed"python-zope.event-doc
+not-installed"python-zope.hookable-doc
+not-installed"python-zope.i18nmessageid-doc
+not-installed"python2-3to2
+not-installed"python2-APScheduler
+not-installed"python2-AnyQt
+not-installed"python2-Arpeggio
+not-installed"python2-Automat
+not-installed"python2-BTrees
+not-installed"python2-BTrees-devel
+not-installed"python2-BTrees-doc
+not-installed"python2-Babel
+not-installed"python2-Beaker
+not-installed"python2-BitVector
+not-installed"python2-Bottleneck
+not-installed"python2-Brotli
+not-installed"python2-CDDB
+not-installed"python2-CacheControl
+not-installed"python2-Cerberus
+not-installed"python2-Chameleon
+not-installed"python2-Cheetah3
+not-installed"python2-CommonMark
+not-installed"python2-Cycler
+not-installed"python2-Cython
+not-installed"python2-DataShape
+not-installed"python2-DateTime
+not-installed"python2-Delorean
+not-installed"python2-Deprecated
+not-installed"python2-Django1
+not-installed"python2-Durus
+not-installed"python2-EasyProcess
+not-installed"python2-EditorConfig
+not-installed"python2-ExifRead
+not-installed"python2-Fabric
+not-installed"python2-Fabric3
+not-installed"python2-Faker
+not-installed"python2-Fiona
+not-installed"python2-Flask
+not-installed"python2-Flask-Admin
+not-installed"python2-Flask-Babel
+not-installed"python2-Flask-BabelEx
+not-installed"python2-Flask-Bootstrap
+not-installed"python2-Flask-Cache
+not-installed"python2-Flask-Cache-doc
+not-installed"python2-Flask-Compress
+not-installed"python2-Flask-Cors
+not-installed"python2-Flask-Gravatar
+not-installed"python2-Flask-HTMLmin
+not-installed"python2-Flask-HTTPAuth
+not-installed"python2-Flask-Login
+not-installed"python2-Flask-Mail
+not-installed"python2-Flask-Migrate
+not-installed"python2-Flask-Paranoid
+not-installed"python2-Flask-Principal
+not-installed"python2-Flask-PyMongo
+not-installed"python2-Flask-RESTful
+not-installed"python2-Flask-RSTPages
+not-installed"python2-Flask-SQLAlchemy
+not-installed"python2-Flask-Script
+not-installed"python2-Flask-Security
+not-installed"python2-Flask-WTF
+not-installed"python2-Flask-doc
+not-installed"python2-FontTools
+not-installed"python2-FormEncode
+not-installed"python2-Frozen-Flask
+not-installed"python2-GDAL
+not-installed"python2-Genshi
+not-installed"python2-GeoIP
+not-installed"python2-GitPython
+not-installed"python2-Glances
+not-installed"python2-GooCalendar
+not-installed"python2-GridDataFormats
+not-installed"python2-HeapDict
+not-installed"python2-Jinja2
+not-installed"python2-Js2Py
+not-installed"python2-JsonWeb
+not-installed"python2-Kajiki
+not-installed"python2-Keras-Applications
+not-installed"python2-Keras-Preprocessing
+not-installed"python2-Kivy
+not-installed"python2-Kivy-devel
+not-installed"python2-LEPL
+not-installed"python2-Lektor
+not-installed"python2-Levenshtein
+not-installed"python2-Logbook
+not-installed"python2-M2Crypto
+not-installed"python2-Mako
+not-installed"python2-MapProxy
+not-installed"python2-Markdown
+not-installed"python2-MarkupSafe
+not-installed"python2-Markups
+not-installed"python2-Mathics
+not-installed"python2-MechanicalSoup
+not-installed"python2-Ming
+not-installed"python2-MiniMock
+not-installed"python2-Morfessor
+not-installed"python2-MulticoreTSNE
+not-installed"python2-OWSLib
+not-installed"python2-Parsley
+not-installed"python2-Paste
+not-installed"python2-PasteDeploy
+not-installed"python2-PasteScript
+not-installed"python2-Paver
+not-installed"python2-PeakUtils
+not-installed"python2-Pebble
+not-installed"python2-Pillow
+not-installed"python2-Pillow-tk
+not-installed"python2-Pint
+not-installed"python2-PrettyTable
+not-installed"python2-PsyLab
+not-installed"python2-PsychoPy
+not-installed"python2-PsychoPy-lang
+not-installed"python2-PyAudio
+not-installed"python2-PyAutoGUI
+not-installed"python2-PyBindGen
+not-installed"python2-PyBrowserID
+not-installed"python2-PyDispatcher
+not-installed"python2-PyECLib
+not-installed"python2-PyExecJS
+not-installed"python2-PyFxA
+not-installed"python2-PyGithub
+not-installed"python2-PyHamcrest
+not-installed"python2-PyICU
+not-installed"python2-PyJWT
+not-installed"python2-PyKMIP
+not-installed"python2-PyMeta3
+not-installed"python2-PyMsgBox
+not-installed"python2-PyMySQL
+not-installed"python2-PyNaCl
+not-installed"python2-PyNamecheap
+not-installed"python2-PyOgg
+not-installed"python2-PyOpenAL
+not-installed"python2-PyPDF2
+not-installed"python2-PyPrind
+not-installed"python2-PyQRCode
+not-installed"python2-PyRIC
+not-installed"python2-PySDL2
+not-installed"python2-PyScreeze
+not-installed"python2-PySocks
+not-installed"python2-PyTrie
+not-installed"python2-PyTweening
+not-installed"python2-PyVirtualDisplay
+not-installed"python2-PyWavelets
+not-installed"python2-PyWebDAV3
+not-installed"python2-PyX
+not-installed"python2-PyYAML
+not-installed"python2-Pydap
+not-installed"python2-Pygments
+not-installed"python2-Pykka
+not-installed"python2-Pympler
+not-installed"python2-Pyphen
+not-installed"python2-Pyrex
+not-installed"python2-Pyro4
+not-installed"python2-QDarkStyle
+not-installed"python2-Qt.py
+not-installed"python2-QtAwesome
+not-installed"python2-QtPy
+not-installed"python2-Quandl
+not-installed"python2-Routes
+not-installed"python2-SPARQLWrapper
+not-installed"python2-SQLAlchemy
+not-installed"python2-SQLAlchemy-Utils
+not-installed"python2-Scrapy
+not-installed"python2-SecretStorage
+not-installed"python2-Send2Trash
+not-installed"python2-Shapely
+not-installed"python2-SimpleWebSocketServer
+not-installed"python2-SoundFile
+not-installed"python2-SpeechRecognition
+not-installed"python2-Sphinx
+not-installed"python2-Sphinx-doc-html
+not-installed"python2-Sphinx-doc-man
+not-installed"python2-Sphinx-latex
+not-installed"python2-Tempita
+not-installed"python2-TermRecord
+not-installed"python2-Theano
+not-installed"python2-Trolly
+not-installed"python2-Trololio
+not-installed"python2-Twisted
+not-installed"python2-TxSNI
+not-installed"python2-URLObject
+not-installed"python2-UkPostcodeParser
+not-installed"python2-Unidecode
+not-installed"python2-WSGIProxy2
+not-installed"python2-WSME
+not-installed"python2-WTForms
+not-installed"python2-WebHelpers
+not-installed"python2-WebOb
+not-installed"python2-WebTest
+not-installed"python2-Werkzeug
+not-installed"python2-Whoosh
+not-installed"python2-XStatic
+not-installed"python2-XStatic-Angular-Schema-Form
+not-installed"python2-XStatic-jQuery
+not-installed"python2-XStatic-jquery-ui
+not-installed"python2-XStatic-objectpath
+not-installed"python2-XStatic-term.js
+not-installed"python2-XStatic-tv4
+not-installed"python2-XlsxWriter
+not-installed"python2-Yapsy
+not-installed"python2-ZConfig
+not-installed"python2-ZConfig-doc
+not-installed"python2-ZEO
+not-installed"python2-ZODB
+not-installed"python2-abclient
+not-installed"python2-abimap
+not-installed"python2-abimap-doc
+not-installed"python2-abseil
+not-installed"python2-aci-integration-module
+not-installed"python2-acitoolkit
+not-installed"python2-acme
+not-installed"python2-actdiag
+not-installed"python2-adal
+not-installed"python2-adapt-parser
+not-installed"python2-addict
+not-installed"python2-aenum
+not-installed"python2-aexpect
+not-installed"python2-affine
+not-installed"python2-agate
+not-installed"python2-agate-dbf
+not-installed"python2-agate-excel
+not-installed"python2-agate-lookup
+not-installed"python2-agate-remote
+not-installed"python2-agate-sql
+not-installed"python2-agate-stats
+not-installed"python2-aioeventlet
+not-installed"python2-aiohttp-theme
+not-installed"python2-akismet
+not-installed"python2-alabaster
+not-installed"python2-alembic
+not-installed"python2-alsa
+not-installed"python2-altair
+not-installed"python2-altair-widgets
+not-installed"python2-altgraph
+not-installed"python2-amqp
+not-installed"python2-amqplib
+not-installed"python2-amqpstorm
+not-installed"python2-ana
+not-installed"python2-aniso8601
+not-installed"python2-annoy
+not-installed"python2-ansel
+not-installed"python2-ansi2html
+not-installed"python2-ansicolor
+not-installed"python2-ansicolors
+not-installed"python2-ansiwrap
+not-installed"python2-antlr
+not-installed"python2-anyjson
+not-installed"python2-apache-libcloud
+not-installed"python2-apicapi
+not-installed"python2-apipkg
+not-installed"python2-appdirs
+not-installed"python2-appindicator
+not-installed"python2-applicationinsights
+not-installed"python2-apptools
+not-installed"python2-apsw
+not-installed"python2-arabic-reshaper
+not-installed"python2-argcomplete
+not-installed"python2-argh
+not-installed"python2-argon2-cffi
+not-installed"python2-argparse-manpage
+not-installed"python2-args
+not-installed"python2-arrow
+not-installed"python2-asciimatics
+not-installed"python2-asn1crypto
+not-installed"python2-aspectlib
+not-installed"python2-asteval
+not-installed"python2-astor
+not-installed"python2-astral
+not-installed"python2-astroid
+not-installed"python2-astunparse
+not-installed"python2-asv
+not-installed"python2-atlassian-python-api
+not-installed"python2-atom
+not-installed"python2-atomicwrites
+not-installed"python2-atspi
+not-installed"python2-attr
+not-installed"python2-attrs
+not-installed"python2-aubio
+not-installed"python2-audiogrep
+not-installed"python2-audiolazy
+not-installed"python2-audioread
+not-installed"python2-audit
+not-installed"python2-augeas
+not-installed"python2-autobahn
+not-installed"python2-autodoc
+not-installed"python2-autoflake
+not-installed"python2-automaton
+not-installed"python2-autopep8
+not-installed"python2-autoupgrade-ng
+not-installed"python2-av
+not-installed"python2-avocado
+not-installed"python2-avocado-plugins-glib
+not-installed"python2-avocado-plugins-golang
+not-installed"python2-avocado-plugins-loader-yaml
+not-installed"python2-avocado-plugins-output-html
+not-installed"python2-avocado-plugins-result-upload
+not-installed"python2-avocado-plugins-resultsdb
+not-installed"python2-avocado-plugins-runner-docker
+not-installed"python2-avocado-plugins-runner-remote
+not-installed"python2-avocado-plugins-runner-vm
+not-installed"python2-avocado-plugins-varianter-pict
+not-installed"python2-avocado-plugins-varianter-yaml-to-mux
+not-installed"python2-avocado-plugins-vt
+not-installed"python2-avro
+not-installed"python2-aws-sam-translator
+not-installed"python2-aws-xray-sdk
+not-installed"python2-aws-xray-sdk-Django
+not-installed"python2-aws-xray-sdk-Flask-SQLAlchemy
+not-installed"python2-aws-xray-sdk-SQLAlchemy
+not-installed"python2-aws-xray-sdk-all
+not-installed"python2-aws-xray-sdk-mysql-connector
+not-installed"python2-aws-xray-sdk-psycopg2
+not-installed"python2-aws-xray-sdk-pymongo
+not-installed"python2-aws-xray-sdk-pynamodb
+not-installed"python2-aws-xray-sdk-requests
+not-installed"python2-axolotl
+not-installed"python2-axolotl-curve25519
+not-installed"python2-ayatana-appindicator
+not-installed"python2-azure-applicationinsights
+not-installed"python2-azure-batch
+not-installed"python2-azure-cognitiveservices-knowledge-nspkg
+not-installed"python2-azure-cognitiveservices-knowledge-qnamaker
+not-installed"python2-azure-cognitiveservices-language-luis
+not-installed"python2-azure-cognitiveservices-language-nspkg
+not-installed"python2-azure-cognitiveservices-language-spellcheck
+not-installed"python2-azure-cognitiveservices-language-textanalytics
+not-installed"python2-azure-cognitiveservices-nspkg
+not-installed"python2-azure-cognitiveservices-search-autosuggest
+not-installed"python2-azure-cognitiveservices-search-customimagesearch
+not-installed"python2-azure-cognitiveservices-search-customsearch
+not-installed"python2-azure-cognitiveservices-search-entitysearch
+not-installed"python2-azure-cognitiveservices-search-imagesearch
+not-installed"python2-azure-cognitiveservices-search-newssearch
+not-installed"python2-azure-cognitiveservices-search-nspkg
+not-installed"python2-azure-cognitiveservices-search-videosearch
+not-installed"python2-azure-cognitiveservices-search-visualsearch
+not-installed"python2-azure-cognitiveservices-search-websearch
+not-installed"python2-azure-cognitiveservices-vision-computervision
+not-installed"python2-azure-cognitiveservices-vision-contentmoderator
+not-installed"python2-azure-cognitiveservices-vision-customvision
+not-installed"python2-azure-cognitiveservices-vision-nspkg
+not-installed"python2-azure-common
+not-installed"python2-azure-datalake-store
+not-installed"python2-azure-eventgrid
+not-installed"python2-azure-graphrbac
+not-installed"python2-azure-keyvault
+not-installed"python2-azure-loganalytics
+not-installed"python2-azure-mgmt
+not-installed"python2-azure-mgmt-advisor
+not-installed"python2-azure-mgmt-applicationinsights
+not-installed"python2-azure-mgmt-authorization
+not-installed"python2-azure-mgmt-batch
+not-installed"python2-azure-mgmt-batchai
+not-installed"python2-azure-mgmt-billing
+not-installed"python2-azure-mgmt-botservice
+not-installed"python2-azure-mgmt-cdn
+not-installed"python2-azure-mgmt-cognitiveservices
+not-installed"python2-azure-mgmt-commerce
+not-installed"python2-azure-mgmt-compute
+not-installed"python2-azure-mgmt-consumption
+not-installed"python2-azure-mgmt-containerinstance
+not-installed"python2-azure-mgmt-containerregistry
+not-installed"python2-azure-mgmt-containerservice
+not-installed"python2-azure-mgmt-cosmosdb
+not-installed"python2-azure-mgmt-datafactory
+not-installed"python2-azure-mgmt-datalake-analytics
+not-installed"python2-azure-mgmt-datalake-nspkg
+not-installed"python2-azure-mgmt-datalake-store
+not-installed"python2-azure-mgmt-datamigration
+not-installed"python2-azure-mgmt-devspaces
+not-installed"python2-azure-mgmt-devtestlabs
+not-installed"python2-azure-mgmt-dns
+not-installed"python2-azure-mgmt-documentdb
+not-installed"python2-azure-mgmt-eventgrid
+not-installed"python2-azure-mgmt-eventhub
+not-installed"python2-azure-mgmt-hanaonazure
+not-installed"python2-azure-mgmt-hdinsight
+not-installed"python2-azure-mgmt-iotcentral
+not-installed"python2-azure-mgmt-iothub
+not-installed"python2-azure-mgmt-iothubprovisioningservices
+not-installed"python2-azure-mgmt-keyvault
+not-installed"python2-azure-mgmt-kusto
+not-installed"python2-azure-mgmt-loganalytics
+not-installed"python2-azure-mgmt-logic
+not-installed"python2-azure-mgmt-machinelearningcompute
+not-installed"python2-azure-mgmt-managementgroups
+not-installed"python2-azure-mgmt-managementpartner
+not-installed"python2-azure-mgmt-maps
+not-installed"python2-azure-mgmt-marketplaceordering
+not-installed"python2-azure-mgmt-media
+not-installed"python2-azure-mgmt-monitor
+not-installed"python2-azure-mgmt-msi
+not-installed"python2-azure-mgmt-network
+not-installed"python2-azure-mgmt-notificationhubs
+not-installed"python2-azure-mgmt-nspkg
+not-installed"python2-azure-mgmt-policyinsights
+not-installed"python2-azure-mgmt-powerbiembedded
+not-installed"python2-azure-mgmt-rdbms
+not-installed"python2-azure-mgmt-recoveryservices
+not-installed"python2-azure-mgmt-recoveryservicesbackup
+not-installed"python2-azure-mgmt-redis
+not-installed"python2-azure-mgmt-relay
+not-installed"python2-azure-mgmt-reservations
+not-installed"python2-azure-mgmt-resource
+not-installed"python2-azure-mgmt-scheduler
+not-installed"python2-azure-mgmt-search
+not-installed"python2-azure-mgmt-security
+not-installed"python2-azure-mgmt-servermanager
+not-installed"python2-azure-mgmt-servicebus
+not-installed"python2-azure-mgmt-servicefabric
+not-installed"python2-azure-mgmt-signalr
+not-installed"python2-azure-mgmt-sql
+not-installed"python2-azure-mgmt-sqlvirtualmachine
+not-installed"python2-azure-mgmt-storage
+not-installed"python2-azure-mgmt-subscription
+not-installed"python2-azure-mgmt-trafficmanager
+not-installed"python2-azure-mgmt-web
+not-installed"python2-azure-monitor
+not-installed"python2-azure-multiapi-storage
+not-installed"python2-azure-nspkg
+not-installed"python2-azure-servicebus
+not-installed"python2-azure-servicefabric
+not-installed"python2-azure-servicemanagement-legacy
+not-installed"python2-azure-storage
+not-installed"python2-azure-storage-blob
+not-installed"python2-azure-storage-common
+not-installed"python2-azure-storage-file
+not-installed"python2-azure-storage-nspkg
+not-installed"python2-azure-storage-queue
+not-installed"python2-babelfish
+not-installed"python2-backcall
+not-installed"python2-backoff
+not-installed"python2-backports
+not-installed"python2-backports.csv
+not-installed"python2-backports.functools_lru_cache
+not-installed"python2-backports.functools_partialmethod
+not-installed"python2-backports.html
+not-installed"python2-backports.os
+not-installed"python2-backports.shutil_get_terminal_size
+not-installed"python2-backports.shutil_which
+not-installed"python2-backports.ssl_match_hostname
+not-installed"python2-backports.tempfile
+not-installed"python2-backports.test.support
+not-installed"python2-backports.time-perf-counter
+not-installed"python2-backports.unittest_mock
+not-installed"python2-backports.weakref
+not-installed"python2-backports_abc
+not-installed"python2-bandit
+not-installed"python2-barbicanclient
+not-installed"python2-baron
+not-installed"python2-bashate
+not-installed"python2-bcc
+not-installed"python2-bcolz
+not-installed"python2-bcrypt
+not-installed"python2-beautifulsoup4
+not-installed"python2-behave
+not-installed"python2-bencode
+not-installed"python2-beniget
+not-installed"python2-betamax
+not-installed"python2-betamax-matchers
+not-installed"python2-bibtexparser
+not-installed"python2-bidict
+not-installed"python2-billiard
+not-installed"python2-binary
+not-installed"python2-binaryornot
+not-installed"python2-bindep
+not-installed"python2-binplist
+not-installed"python2-biopython
+not-installed"python2-biplist
+not-installed"python2-bitstring
+not-installed"python2-bjoern
+not-installed"python2-bleach
+not-installed"python2-blessed
+not-installed"python2-blessings
+not-installed"python2-blindspin
+not-installed"python2-blinker
+not-installed"python2-blist
+not-installed"python2-blockdiag
+not-installed"python2-blosc
+not-installed"python2-bloscpack
+not-installed"python2-bobo
+not-installed"python2-bobodoctestumentation
+not-installed"python2-bokeh
+not-installed"python2-boltons
+not-installed"python2-boost_parallel_mpi1_69_0
+not-installed"python2-boto
+not-installed"python2-boto3
+not-installed"python2-botocore
+not-installed"python2-bottle
+not-installed"python2-bpython
+not-installed"python2-bqplot
+not-installed"python2-branca
+not-installed"python2-breathe
+not-installed"python2-brewer2mpl
+not-installed"python2-brotlipy
+not-installed"python2-bsddb3
+not-installed"python2-bsddb3-devel
+not-installed"python2-bson
+not-installed"python2-bugzilla
+not-installed"python2-bugzillatools
+not-installed"python2-bz2file
+not-installed"python2-cPyparsing
+not-installed"python2-cached-property
+not-installed"python2-cachetools
+not-installed"python2-cachey
+not-installed"python2-cairocffi
+not-installed"python2-cairocffi-pixbuf
+not-installed"python2-caja
+not-installed"python2-caldav
+not-installed"python2-cangjie
+not-installed"python2-canonicaljson
+not-installed"python2-capng
+not-installed"python2-capturer
+not-installed"python2-case
+not-installed"python2-cassandra-driver
+not-installed"python2-cassowary
+not-installed"python2-castellan
+not-installed"python2-casttube
+not-installed"python2-catkin-pkg
+not-installed"python2-cbor
+not-installed"python2-cbor2
+not-installed"python2-cdecimal
+not-installed"python2-celery
+not-installed"python2-celery-batches
+not-installed"python2-celerymon
+not-installed"python2-cerealizer
+not-installed"python2-certbot
+not-installed"python2-certbot-apache
+not-installed"python2-certbot-dns-cloudflare
+not-installed"python2-certbot-dns-cloudxns
+not-installed"python2-certbot-dns-digitalocean
+not-installed"python2-certbot-dns-dnsimple
+not-installed"python2-certbot-dns-dnsmadeeasy
+not-installed"python2-certbot-dns-google
+not-installed"python2-certbot-dns-luadns
+not-installed"python2-certbot-dns-nsone
+not-installed"python2-certbot-dns-rfc2136
+not-installed"python2-certbot-dns-route53
+not-installed"python2-certbot-nginx
+not-installed"python2-certifi
+not-installed"python2-certstream
+not-installed"python2-cffi
+not-installed"python2-cfgv
+not-installed"python2-cfn-lint
+not-installed"python2-cfscrape
+not-installed"python2-cftime
+not-installed"python2-chai
+not-installed"python2-chardet
+not-installed"python2-chart-studio
+not-installed"python2-check-manifest
+not-installed"python2-cheroot
+not-installed"python2-chest
+not-installed"python2-cinderclient
+not-installed"python2-ciscoconfparse
+not-installed"python2-cl
+not-installed"python2-cli-helpers
+not-installed"python2-click
+not-installed"python2-click-aliases
+not-installed"python2-click-completion
+not-installed"python2-click-didyoumean
+not-installed"python2-click-help-colors
+not-installed"python2-click-log
+not-installed"python2-click-plugins
+not-installed"python2-click-spinner
+not-installed"python2-click-threading
+not-installed"python2-cliff
+not-installed"python2-cligj
+not-installed"python2-clinkgrammar
+not-installed"python2-clint
+not-installed"python2-cloudflare
+not-installed"python2-cloudpickle
+not-installed"python2-cluster
+not-installed"python2-cluster-preflight-check
+not-installed"python2-clustershell
+not-installed"python2-cmarkgfm
+not-installed"python2-cmd2
+not-installed"python2-cmdln
+not-installed"python2-coards
+not-installed"python2-codecov
+not-installed"python2-cogapp
+not-installed"python2-colander
+not-installed"python2-colander-doc
+not-installed"python2-colander-lang
+not-installed"python2-colorama
+not-installed"python2-colorcet
+not-installed"python2-colorclass
+not-installed"python2-coloredlogs
+not-installed"python2-colorlog
+not-installed"python2-colorlover
+not-installed"python2-colormap
+not-installed"python2-colorspacious
+not-installed"python2-colour
+not-installed"python2-combi
+not-installed"python2-compizconfig
+not-installed"python2-concurrentloghandler
+not-installed"python2-configargparse
+installed"python2-configobj
+not-installed"python2-configparser
+not-installed"python2-configshell-fb
+not-installed"python2-confluent-kafka
+not-installed"python2-confusable-homoglyphs
+not-installed"python2-constantly
+not-installed"python2-construct
+not-installed"python2-contexter
+not-installed"python2-contextlib2
+not-installed"python2-control
+not-installed"python2-cookies
+not-installed"python2-cooldict
+not-installed"python2-coreapi
+not-installed"python2-coreapi-cli
+not-installed"python2-coreschema
+not-installed"python2-cotyledon
+not-installed"python2-cov-core
+not-installed"python2-coverage
+not-installed"python2-coverage-config-reload-plugin
+not-installed"python2-coverage-env-plugin
+not-installed"python2-coveralls
+not-installed"python2-coveralls-check
+not-installed"python2-cppclean
+not-installed"python2-cpplint
+not-installed"python2-cracklib
+not-installed"python2-cram
+not-installed"python2-crayons
+not-installed"python2-crcmod
+not-installed"python2-croniter
+not-installed"python2-crumbs
+not-installed"python2-cryptography
+not-installed"python2-cryptography-vectors
+not-installed"python2-css-parser
+not-installed"python2-csscompressor
+not-installed"python2-cssselect
+not-installed"python2-cssutils
+not-installed"python2-csvkit
+not-installed"python2-ctypesgen
+not-installed"python2-cufflinks
+not-installed"python2-cursive
+not-installed"python2-curtsies
+not-installed"python2-cx_Freeze
+not-installed"python2-cymruwhois
+not-installed"python2-cyordereddict
+not-installed"python2-cytoolz
+not-installed"python2-d2to1
+not-installed"python2-daemonize
+not-installed"python2-daiquiri
+not-installed"python2-dash
+not-installed"python2-dask
+not-installed"python2-dask-all
+not-installed"python2-dask-array
+not-installed"python2-dask-bag
+not-installed"python2-dask-dataframe
+not-installed"python2-dask-distributed
+not-installed"python2-dask-dot
+not-installed"python2-dask-multiprocessing
+not-installed"python2-datrie
+not-installed"python2-dbf
+not-installed"python2-dbfread
+installed"python2-dbus-python
+not-installed"python2-dbus-python-devel
+not-installed"python2-ddt
+not-installed"python2-debian
+not-installed"python2-debtcollector
+not-installed"python2-decorator
+not-installed"python2-defusedxml
+not-installed"python2-delegator
+not-installed"python2-delegator.py
+not-installed"python2-deltarpm
+not-installed"python2-demjson
+not-installed"python2-dennis
+not-installed"python2-deprecation
+not-installed"python2-derpconf
+not-installed"python2-dfdatetime
+not-installed"python2-dialite
+not-installed"python2-dicttoxml
+not-installed"python2-diff_match_patch
+not-installed"python2-digitalocean
+not-installed"python2-dill
+not-installed"python2-dirtyjson
+not-installed"python2-dis3
+not-installed"python2-discid
+not-installed"python2-discogs-client
+not-installed"python2-diskcache
+not-installed"python2-distlib
+not-installed"python2-distorm3
+not-installed"python2-distributed
+not-installed"python2-distro
+not-installed"python2-distroinfo
+not-installed"python2-distutils-extra
+not-installed"python2-dj-database-url
+not-installed"python2-django-allauth
+not-installed"python2-django-allauth-lang
+not-installed"python2-django-appconf
+not-installed"python2-django-auth-ldap
+not-installed"python2-django-avatar
+not-installed"python2-django-babel
+not-installed"python2-django-braces
+not-installed"python2-django-ckeditor
+not-installed"python2-django-classy-tags
+not-installed"python2-django-contrib-comments
+not-installed"python2-django-cors-headers
+not-installed"python2-django-crispy-forms
+not-installed"python2-django-debreach
+not-installed"python2-django-debug-toolbar
+not-installed"python2-django-environ
+not-installed"python2-django-extensions
+not-installed"python2-django-formtools
+not-installed"python2-django-grappelli
+not-installed"python2-django-guardian
+not-installed"python2-django-invitations
+not-installed"python2-django-jinja
+not-installed"python2-django-js-asset
+not-installed"python2-django-json-widget
+not-installed"python2-django-jsonfield
+not-installed"python2-django-minio-storage
+not-installed"python2-django-model-utils
+not-installed"python2-django-nine
+not-installed"python2-django-nose
+not-installed"python2-django-oauth-toolkit
+not-installed"python2-django-oidc-provider
+not-installed"python2-django-picklefield
+not-installed"python2-django-pipeline
+not-installed"python2-django-pyscss
+not-installed"python2-django-redis
+not-installed"python2-django-registration
+not-installed"python2-django-rest-framework-client
+not-installed"python2-django-rest-framework-social-oauth2
+not-installed"python2-django-rest-invitations
+not-installed"python2-django-rest-knox
+not-installed"python2-django-reversion
+not-installed"python2-django-seed
+not-installed"python2-django-sekizai
+not-installed"python2-django-silk
+not-installed"python2-django-storages
+not-installed"python2-django-tagging
+not-installed"python2-django-tastypie
+not-installed"python2-django-threadedcomments
+not-installed"python2-django-webpack-loader
+not-installed"python2-django-webtest
+not-installed"python2-django_compressor
+not-installed"python2-django_coverage_plugin
+not-installed"python2-djangorestframework
+not-installed"python2-djet
+not-installed"python2-djvulibre
+not-installed"python2-dns-lexicon
+not-installed"python2-dnspython
+not-installed"python2-docformatter
+not-installed"python2-docker
+not-installed"python2-docker-compose
+not-installed"python2-docker-pycreds
+not-installed"python2-dockerpty
+not-installed"python2-docopt
+not-installed"python2-docrepr
+not-installed"python2-docutils
+not-installed"python2-docutils-ast-writer
+not-installed"python2-dogpile.cache
+not-installed"python2-dominate
+not-installed"python2-dparse
+not-installed"python2-dpkt
+not-installed"python2-drf-jwt-knox
+not-installed"python2-drf-nested-routers
+not-installed"python2-drms
+not-installed"python2-dropbox
+not-installed"python2-duckduckgo2
+not-installed"python2-dukpy
+not-installed"python2-dukpy-kovidgoyal
+not-installed"python2-dulwich
+not-installed"python2-easydev
+not-installed"python2-easygui
+not-installed"python2-easypysmb
+not-installed"python2-easywatch
+not-installed"python2-ebcdic
+not-installed"python2-ecdsa
+not-installed"python2-ed25519ll
+not-installed"python2-editdistance
+not-installed"python2-editdistance-devel
+not-installed"python2-efl
+not-installed"python2-efl-doc
+not-installed"python2-efl-examples
+not-installed"python2-elasticsearch
+not-installed"python2-email_validator
+not-installed"python2-emoji
+not-installed"python2-empy
+not-installed"python2-enable
+not-installed"python2-enable-kiva
+not-installed"python2-enaml
+not-installed"python2-encore
+not-installed"python2-entrypoint2
+not-installed"python2-entrypoints
+not-installed"python2-environmental-override
+not-installed"python2-enzyme
+not-installed"python2-epubmerge
+not-installed"python2-eradicate
+not-installed"python2-espeak
+not-installed"python2-esptool
+not-installed"python2-et_xmlfile
+not-installed"python2-etcd
+not-installed"python2-etcd-test
+not-installed"python2-ethtool
+not-installed"python2-evdev
+not-installed"python2-evemu
+not-installed"python2-eventlet
+not-installed"python2-evtx
+not-installed"python2-exam
+not-installed"python2-execnet
+not-installed"python2-expects
+not-installed"python2-exrex
+not-installed"python2-extras
+not-installed"python2-ez_setup
+not-installed"python2-factory_boy
+not-installed"python2-fake-useragent
+not-installed"python2-fakeredis
+not-installed"python2-falcon
+not-installed"python2-fanficfare
+not-installed"python2-fann2
+not-installed"python2-fastcluster
+not-installed"python2-fasteners
+not-installed"python2-fastimport
+not-installed"python2-fastparquet
+not-installed"python2-fb-re2
+not-installed"python2-fedmsg
+not-installed"python2-feedgenerator
+not-installed"python2-feedparser
+not-installed"python2-fido2
+not-installed"python2-fields
+not-installed"python2-filelock
+not-installed"python2-finance_enums
+not-installed"python2-fire
+not-installed"python2-first
+not-installed"python2-fixtures
+not-installed"python2-flake8
+not-installed"python2-flake8-blind-except
+not-installed"python2-flake8-builtins
+not-installed"python2-flake8-class-newline
+not-installed"python2-flake8-debugger
+not-installed"python2-flake8-deprecated
+not-installed"python2-flake8-docstrings
+not-installed"python2-flake8-future-import
+not-installed"python2-flake8-import-order
+not-installed"python2-flake8-imports
+not-installed"python2-flake8-polyfill
+not-installed"python2-flake8-quotes
+not-installed"python2-flaky
+not-installed"python2-flasgger
+not-installed"python2-flask-jwt-extended
+not-installed"python2-flask-mongoengine
+not-installed"python2-flask-peewee
+not-installed"python2-flask-restplus
+not-installed"python2-flatbuffers
+not-installed"python2-flex
+not-installed"python2-flexmock
+not-installed"python2-flickrapi
+not-installed"python2-flower
+not-installed"python2-fluent
+not-installed"python2-fluidity-sm
+not-installed"python2-flup
+not-installed"python2-forbiddenfruit
+not-installed"python2-freetype-py
+not-installed"python2-freezegun
+not-installed"python2-freezerclient
+not-installed"python2-frozendict
+not-installed"python2-fs
+not-installed"python2-ftputil
+not-installed"python2-fudge
+not-installed"python2-funcparserlib
+not-installed"python2-funcy
+not-installed"python2-furl
+not-installed"python2-fuse
+not-installed"python2-fusepy
+not-installed"python2-future
+not-installed"python2-futures
+not-installed"python2-futurist
+not-installed"python2-fysom
+not-installed"python2-gTTS
+not-installed"python2-gTTS-token
+not-installed"python2-gabbi
+not-installed"python2-gast
+not-installed"python2-gear
+not-installed"python2-ged4py
+not-installed"python2-genty
+not-installed"python2-geographiclib
+not-installed"python2-geoip2
+not-installed"python2-geojson
+not-installed"python2-geolib
+not-installed"python2-geolinks
+not-installed"python2-geopy
+not-installed"python2-gevent
+not-installed"python2-geventhttpclient
+not-installed"python2-ggplot
+not-installed"python2-girder-client
+not-installed"python2-git-pw
+not-installed"python2-git-url-parse
+not-installed"python2-gitdb2
+not-installed"python2-github3.py
+not-installed"python2-gitlint
+not-installed"python2-glanceclient
+not-installed"python2-glean
+not-installed"python2-glfw
+not-installed"python2-glob2
+not-installed"python2-gmpy
+not-installed"python2-gmpy2
+installed"python2-gobject
+not-installed"python2-gobject-Dee
+not-installed"python2-gobject-Gdk
+not-installed"python2-gobject-cairo
+not-installed"python2-gobject-devel
+not-installed"python2-gogs_client
+not-installed"python2-goocanvas
+not-installed"python2-goocanvas-devel
+not-installed"python2-google-api-core
+not-installed"python2-google-api-python-client
+not-installed"python2-google-auth
+not-installed"python2-google-auth-httplib2
+not-installed"python2-google-auth-oauthlib
+not-installed"python2-google-cloud-core
+not-installed"python2-google-cloud-kms
+not-installed"python2-google-cloud-speech
+not-installed"python2-google-cloud-storage
+not-installed"python2-google-resumable-media
+not-installed"python2-googleapis-common-protos
+not-installed"python2-googlemaps
+not-installed"python2-gpg
+not-installed"python2-gpgme
+not-installed"python2-gphoto2
+not-installed"python2-gpod
+not-installed"python2-gprof2dot
+not-installed"python2-gpsd
+not-installed"python2-grab
+not-installed"python2-graphviz
+not-installed"python2-greenlet
+not-installed"python2-greenlet-devel
+not-installed"python2-grpc-google-iam-v1
+not-installed"python2-grpcio
+not-installed"python2-grpcio-gcp
+not-installed"python2-gscholar
+not-installed"python2-gspread
+not-installed"python2-gssapi
+not-installed"python2-gst
+not-installed"python2-guessit
+not-installed"python2-gunicorn
+not-installed"python2-guzzle_sphinx_theme
+not-installed"python2-h11
+not-installed"python2-h2
+not-installed"python2-h5py
+not-installed"python2-hankel
+not-installed"python2-happybase
+not-installed"python2-hawkauthlib
+not-installed"python2-hdf5storage
+not-installed"python2-heatclient
+not-installed"python2-hetzner
+not-installed"python2-hexdump
+not-installed"python2-hiredis
+not-installed"python2-hkdf
+not-installed"python2-hl7apy
+not-installed"python2-holidays
+not-installed"python2-hpack
+not-installed"python2-html2text
+not-installed"python2-html5-parser
+not-installed"python2-html5lib
+not-installed"python2-htmlmin
+not-installed"python2-httmock
+not-installed"python2-http-parser
+not-installed"python2-httpbin
+not-installed"python2-httplib2
+not-installed"python2-httpretty
+not-installed"python2-httpsig_cffi
+not-installed"python2-httpstatus35
+not-installed"python2-humanfriendly
+not-installed"python2-humanhash3
+not-installed"python2-humanize
+not-installed"python2-hupper
+not-installed"python2-husl
+not-installed"python2-hyper
+not-installed"python2-hyperframe
+not-installed"python2-hyperlink
+not-installed"python2-hypothesis
+not-installed"python2-hypothesis-fspaths
+not-installed"python2-icalendar
+not-installed"python2-identify
+not-installed"python2-idna
+not-installed"python2-ifaddr
+not-installed"python2-imageio
+not-installed"python2-imagesize
+not-installed"python2-img2pdf
+not-installed"python2-iminuit
+not-installed"python2-importlab
+not-installed"python2-importlib-metadata
+not-installed"python2-importlib_resources
+not-installed"python2-imread
+not-installed"python2-incremental
+not-installed"python2-infinity
+not-installed"python2-inflect
+not-installed"python2-inflection
+not-installed"python2-influxdb
+not-installed"python2-inifile
+not-installed"python2-iniparse
+not-installed"python2-inspect2
+not-installed"python2-inspektor
+not-installed"python2-intervals
+not-installed"python2-intervaltree
+not-installed"python2-invocations
+not-installed"python2-invoke
+not-installed"python2-iocapture
+not-installed"python2-ioflo
+not-installed"python2-ipaddr
+not-installed"python2-ipdb
+not-installed"python2-iptables
+not-installed"python2-ipy
+not-installed"python2-ipykernel
+not-installed"python2-ipympl
+not-installed"python2-ipyparallel
+not-installed"python2-ipython
+not-installed"python2-ipython-iptest
+not-installed"python2-ipython_genutils
+not-installed"python2-ipywidgets
+not-installed"python2-ironicclient
+not-installed"python2-iso8601
+not-installed"python2-isodate
+not-installed"python2-isort
+not-installed"python2-itsdangerous
+not-installed"python2-itypes
+not-installed"python2-iwlib
+not-installed"python2-jaraco.base
+not-installed"python2-jaraco.classes
+not-installed"python2-jaraco.collections
+not-installed"python2-jaraco.functools
+not-installed"python2-jaraco.itertools
+not-installed"python2-jaraco.logging
+not-installed"python2-jaraco.packaging
+not-installed"python2-jaraco.stream
+not-installed"python2-jaraco.text
+not-installed"python2-jdcal
+not-installed"python2-jedi
+not-installed"python2-jedihttp
+not-installed"python2-jenkins-job-builder
+not-installed"python2-jenkinsapi
+not-installed"python2-jgraph
+not-installed"python2-jinja2-fsloader
+not-installed"python2-jinja2-time
+not-installed"python2-jira
+not-installed"python2-jirafs
+not-installed"python2-jmespath
+not-installed"python2-joblib
+not-installed"python2-josepy
+not-installed"python2-jplephem
+not-installed"python2-jsbeautifier
+not-installed"python2-json-rpc
+not-installed"python2-json5
+not-installed"python2-json_tricks
+not-installed"python2-jsondate
+not-installed"python2-jsondiff
+not-installed"python2-jsonextended
+not-installed"python2-jsonlines
+not-installed"python2-jsonpatch
+not-installed"python2-jsonpath-rw
+not-installed"python2-jsonpath-rw-ext
+not-installed"python2-jsonpickle
+not-installed"python2-jsonpointer
+not-installed"python2-jsonref
+not-installed"python2-jsonrpclib-pelix
+not-installed"python2-jsonschema
+not-installed"python2-junitxml
+not-installed"python2-jupyter-contrib-nbextensions
+not-installed"python2-jupyter-server
+not-installed"python2-jupyter_client
+not-installed"python2-jupyter_contrib_core
+not-installed"python2-jupyter_core
+not-installed"python2-jupyter_highlight_selected_word
+not-installed"python2-jupyter_latex_envs
+not-installed"python2-jupyter_nbextensions_configurator
+not-installed"python2-jupyter_sphinx
+not-installed"python2-jupyterlab-pygments
+not-installed"python2-jupytext
+not-installed"python2-jwcrypto
+not-installed"python2-k5test
+not-installed"python2-kafka-python
+not-installed"python2-kaitaistruct
+not-installed"python2-kazoo
+not-installed"python2-keepalive
+not-installed"python2-kerberos
+not-installed"python2-keyczar
+not-installed"python2-keyring
+not-installed"python2-keyrings.alt
+not-installed"python2-keystoneauth1
+not-installed"python2-keystoneclient
+not-installed"python2-keystonemiddleware
+not-installed"python2-kid
+not-installed"python2-killswitch
+not-installed"python2-kitchen
+not-installed"python2-kiwisolver
+not-installed"python2-kmatch
+not-installed"python2-kmod
+not-installed"python2-knack
+not-installed"python2-kombu
+not-installed"python2-kubernetes
+not-installed"python2-l20n
+not-installed"python2-lancet-ioam
+not-installed"python2-lark-parser
+not-installed"python2-latexcodec
+not-installed"python2-lazr.uri
+not-installed"python2-lazy
+not-installed"python2-lazy-object-proxy
+not-installed"python2-lazyarray
+not-installed"python2-ldap
+not-installed"python2-ldap3
+not-installed"python2-ldappool
+not-installed"python2-leather
+not-installed"python2-lesscpy
+not-installed"python2-leveldb
+not-installed"python2-lexicon
+not-installed"python2-lhafile
+not-installed"python2-libarchive
+not-installed"python2-libarchive-c
+not-installed"python2-libbde
+not-installed"python2-libewf
+not-installed"python2-libfsntfs
+not-installed"python2-libfvde
+not-installed"python2-libfwnt
+not-installed"python2-libguestfs
+not-installed"python2-liblarch
+not-installed"python2-liblarch-gtk
+not-installed"python2-libnacl
+not-installed"python2-libpamtest
+not-installed"python2-libpfm
+not-installed"python2-libprelude
+not-installed"python2-libpreludedb
+not-installed"python2-libqcow
+not-installed"python2-librosa
+not-installed"python2-libsass
+not-installed"python2-libscca
+not-installed"python2-libsigscan
+not-installed"python2-libsmdev
+not-installed"python2-libsmraw
+not-installed"python2-libtorrent-rasterbar
+not-installed"python2-libunity
+not-installed"python2-libusb1
+not-installed"python2-libvhdi
+not-installed"python2-libvirt-python
+not-installed"python2-libvmdk
+not-installed"python2-libvshadow
+not-installed"python2-libvslvm
+not-installed"python2-libxml2-python
+not-installed"python2-limnoria
+not-installed"python2-line_profiler
+not-installed"python2-linecache2
+not-installed"python2-lineup-widget
+not-installed"python2-linux-procfs
+not-installed"python2-lit
+not-installed"python2-llfuse
+not-installed"python2-llvmlite
+not-installed"python2-lmdb
+not-installed"python2-lmfit
+not-installed"python2-lml
+not-installed"python2-localzone
+not-installed"python2-locket
+not-installed"python2-lockfile
+not-installed"python2-logilab-astng
+not-installed"python2-logilab-common
+not-installed"python2-logutils
+not-installed"python2-logzero
+not-installed"python2-lupa
+not-installed"python2-lxml
+not-installed"python2-lxml-devel
+not-installed"python2-lz4
+not-installed"python2-lzmaffi
+not-installed"python2-m2r
+not-installed"python2-macholib
+not-installed"python2-magic
+not-installed"python2-magic-wormhole
+not-installed"python2-magic-wormhole-mailbox-server
+not-installed"python2-magic-wormhole-transit-relay
+not-installed"python2-magnumclient
+not-installed"python2-managesieve
+not-installed"python2-mando
+not-installed"python2-manilaclient
+not-installed"python2-manuel
+not-installed"python2-manuel-doc
+not-installed"python2-marathon
+not-installed"python2-markdown-math
+not-installed"python2-markdown2
+not-installed"python2-matplotlib
+not-installed"python2-matplotlib-gtk3
+not-installed"python2-matplotlib-latex
+not-installed"python2-matplotlib-qt-shared
+not-installed"python2-matplotlib-qt5
+not-installed"python2-matplotlib-tk
+not-installed"python2-matplotlib-web
+not-installed"python2-matplotlib-wx
+not-installed"python2-matrix-synapse-ldap3
+not-installed"python2-maxminddb
+not-installed"python2-mbstrdecoder
+not-installed"python2-mccabe
+not-installed"python2-md2workflow
+not-installed"python2-mechanize
+not-installed"python2-meld3
+not-installed"python2-memory_profiler
+not-installed"python2-metaextract
+not-installed"python2-metakernel
+not-installed"python2-mhash
+not-installed"python2-minio
+not-installed"python2-miniupnpc
+not-installed"python2-mistune
+not-installed"python2-moban
+not-installed"python2-mock
+not-installed"python2-mockito
+not-installed"python2-mockldap
+not-installed"python2-modernize
+not-installed"python2-mohawk
+not-installed"python2-moksha-common
+not-installed"python2-moksha-hub
+not-installed"python2-monascaclient
+not-installed"python2-mongoengine
+not-installed"python2-monotonic
+not-installed"python2-more-itertools
+not-installed"python2-moretools
+not-installed"python2-moto
+not-installed"python2-moviepy
+not-installed"python2-mox3
+not-installed"python2-mpi4py
+not-installed"python2-mpi4py-devel
+not-installed"python2-mpmath
+not-installed"python2-mraa
+not-installed"python2-msgpack
+not-installed"python2-msgpack-numpy
+not-installed"python2-msoffcrypto-tool
+not-installed"python2-msrest
+not-installed"python2-msrestazure
+not-installed"python2-mujson
+not-installed"python2-mulpyplexer
+not-installed"python2-multi_key_dict
+not-installed"python2-multipledispatch
+not-installed"python2-munch
+not-installed"python2-musicbrainzngs
+installed"python2-mutagen
+not-installed"python2-mutt-ics
+not-installed"python2-mygpoclient
+not-installed"python2-mypy_extensions
+not-installed"python2-mysql-connector-python
+not-installed"python2-mysqlclient
+not-installed"python2-nagiosplugin
+not-installed"python2-natsort
+not-installed"python2-nautilus
+not-installed"python2-nautilus-devel
+not-installed"python2-nbconvert
+not-installed"python2-nbdime
+not-installed"python2-nbformat
+not-installed"python2-nbindex-jupyter
+not-installed"python2-nbsmoke
+not-installed"python2-nbsphinx
+not-installed"python2-nbsphinx-link
+not-installed"python2-nbval
+not-installed"python2-nbxmpp
+not-installed"python2-nbxmpp-doc
+not-installed"python2-ncclient
+not-installed"python2-ndg-httpsclient
+not-installed"python2-nemo
+not-installed"python2-neovim
+not-installed"python2-net-snmp
+not-installed"python2-netCDF4
+not-installed"python2-netaddr
+not-installed"python2-netifaces
+not-installed"python2-netmiko
+not-installed"python2-networkx
+not-installed"python2-networkx-doc
+not-installed"python2-neutronclient
+not-installed"python2-newt
+not-installed"python2-nibabel
+not-installed"python2-nilearn
+not-installed"python2-nine
+not-installed"python2-nltk
+not-installed"python2-nose
+not-installed"python2-nose-cov
+not-installed"python2-nose-cover3
+not-installed"python2-nose-exclude
+not-installed"python2-nose-progressive
+not-installed"python2-nose-timer
+not-installed"python2-nose2
+not-installed"python2-nose_warnings_filters
+not-installed"python2-nosexcover
+not-installed"python2-notebook
+not-installed"python2-notebook-lang
+not-installed"python2-notify2
+not-installed"python2-novaclient
+not-installed"python2-nss
+not-installed"python2-ntlm-auth
+not-installed"python2-ntplib
+not-installed"python2-num2words
+not-installed"python2-numba
+not-installed"python2-numba-devel
+not-installed"python2-numericalunits
+not-installed"python2-numexpr
+not-installed"python2-numpy
+not-installed"python2-numpy-devel
+not-installed"python2-numpy-gnu-hpc
+not-installed"python2-numpy-gnu-hpc-devel
+not-installed"python2-numpy_1_16_4-gnu-hpc
+not-installed"python2-numpy_1_16_4-gnu-hpc-devel
+not-installed"python2-numpydoc
+not-installed"python2-nwdiag
+not-installed"python2-oauth2
+not-installed"python2-oauth2client
+not-installed"python2-oauth2client-flask
+not-installed"python2-oauth2client-gce
+not-installed"python2-oauthlib
+not-installed"python2-objgraph
+not-installed"python2-octaviaclient
+not-installed"python2-odfpy
+not-installed"python2-odorik
+not-installed"python2-olefile
+not-installed"python2-openapi-core
+not-installed"python2-openapi-spec-validator
+not-installed"python2-opencv
+not-installed"python2-opencv3
+not-installed"python2-opengl
+not-installed"python2-opengl-accelerate
+not-installed"python2-openmesh
+not-installed"python2-openpyxl
+not-installed"python2-openqa_client
+not-installed"python2-openqa_review
+not-installed"python2-openstack.nose_plugin
+not-installed"python2-openstackclient
+not-installed"python2-openstackdocstheme
+not-installed"python2-openstacksdk
+not-installed"python2-ordered-namespace
+not-installed"python2-ordered-set
+not-installed"python2-orderedmultidict
+not-installed"python2-os-api-ref
+not-installed"python2-os-client-config
+not-installed"python2-os-service-types
+not-installed"python2-os-testr
+not-installed"python2-os-win
+not-installed"python2-osc-lib
+not-installed"python2-oscrypto
+not-installed"python2-oslo.cache
+not-installed"python2-oslo.concurrency
+not-installed"python2-oslo.config
+not-installed"python2-oslo.context
+not-installed"python2-oslo.db
+not-installed"python2-oslo.i18n
+not-installed"python2-oslo.log
+not-installed"python2-oslo.messaging
+not-installed"python2-oslo.middleware
+not-installed"python2-oslo.policy
+not-installed"python2-oslo.privsep
+not-installed"python2-oslo.reports
+not-installed"python2-oslo.rootwrap
+not-installed"python2-oslo.serialization
+not-installed"python2-oslo.service
+not-installed"python2-oslo.utils
+not-installed"python2-oslo.versionedobjects
+not-installed"python2-oslo.vmware
+not-installed"python2-oslosphinx
+not-installed"python2-oslotest
+not-installed"python2-osmviz
+not-installed"python2-osprofiler
+not-installed"python2-outcome
+not-installed"python2-ovirt-engine-sdk
+not-installed"python2-ovs
+not-installed"python2-ovsdbapp
+not-installed"python2-pa-ringbuffer
+not-installed"python2-packaging
+not-installed"python2-paho-mqtt
+not-installed"python2-pako
+not-installed"python2-palettable
+not-installed"python2-pamqp
+not-installed"python2-pandas
+not-installed"python2-pandas-datareader
+not-installed"python2-pandocfilters
+not-installed"python2-panflute
+not-installed"python2-parallax
+not-installed"python2-param
+not-installed"python2-parameterized
+not-installed"python2-paramiko
+not-installed"python2-paramiko-expect
+not-installed"python2-parse
+not-installed"python2-parse_type
+not-installed"python2-parsedatetime
+not-installed"python2-parsel
+not-installed"python2-parso
+not-installed"python2-partd
+not-installed"python2-parted
+not-installed"python2-parver
+not-installed"python2-pass_python_keyring
+not-installed"python2-passa
+not-installed"python2-passivetotal
+not-installed"python2-passlib
+not-installed"python2-pastream
+not-installed"python2-path.py
+not-installed"python2-pathlib
+not-installed"python2-pathlib2
+not-installed"python2-pathspec
+not-installed"python2-pathtools
+not-installed"python2-patsy
+not-installed"python2-pbkdf2
+not-installed"python2-pbr
+not-installed"python2-pdfkit
+not-installed"python2-pdfrw
+not-installed"python2-pecan
+not-installed"python2-peewee
+not-installed"python2-pefile
+not-installed"python2-pelican
+not-installed"python2-pem
+not-installed"python2-pep517
+not-installed"python2-pep8-naming
+not-installed"python2-peppercorn
+not-installed"python2-persistent
+not-installed"python2-persistent-devel
+not-installed"python2-petact
+not-installed"python2-pexpect
+not-installed"python2-pgmagick
+not-installed"python2-phabricator
+not-installed"python2-phonenumbers
+not-installed"python2-phply
+not-installed"python2-phue
+not-installed"python2-pick
+not-installed"python2-pickleshare
+not-installed"python2-piexif
+not-installed"python2-pifpaf
+not-installed"python2-pika
+not-installed"python2-pika-pool
+not-installed"python2-pilkit
+not-installed"python2-pip
+not-installed"python2-pip-api
+not-installed"python2-pip-run
+not-installed"python2-pip-shims
+not-installed"python2-pipdeptree
+not-installed"python2-pipenv
+not-installed"python2-pipreqs
+not-installed"python2-piston-mini-client
+not-installed"python2-pivy
+not-installed"python2-pkgconfig
+not-installed"python2-pkginfo
+not-installed"python2-plaster
+not-installed"python2-plaster-pastedeploy
+not-installed"python2-plette
+not-installed"python2-plotly
+not-installed"python2-plotly-jupyter
+not-installed"python2-pluggy
+not-installed"python2-plumbum
+not-installed"python2-ply
+not-installed"python2-plyvel
+not-installed"python2-pmw
+not-installed"python2-pocketsphinx
+not-installed"python2-pocketsphinx-python
+not-installed"python2-podcastparser
+not-installed"python2-polib
+not-installed"python2-pony
+not-installed"python2-port-for
+not-installed"python2-portalocker
+not-installed"python2-portend
+not-installed"python2-portpicker
+not-installed"python2-positional
+not-installed"python2-posix_ipc
+not-installed"python2-power
+not-installed"python2-poyo
+not-installed"python2-pprintpp
+not-installed"python2-precise-runner
+not-installed"python2-preggy
+not-installed"python2-prelude-correlator
+not-installed"python2-premailer
+not-installed"python2-pretend
+not-installed"python2-prewikka
+not-installed"python2-proboscis
+not-installed"python2-process-tests
+not-installed"python2-proglog
+not-installed"python2-progress
+not-installed"python2-progressbar
+not-installed"python2-prometheus_client
+not-installed"python2-promise
+not-installed"python2-prompt_toolkit
+not-installed"python2-prompt_toolkit1
+not-installed"python2-proselint
+not-installed"python2-protobuf
+not-installed"python2-pscript
+not-installed"python2-psutil
+not-installed"python2-psycopg2
+not-installed"python2-ptpython
+not-installed"python2-ptyprocess
+not-installed"python2-publicsuffixlist
+not-installed"python2-pudb
+not-installed"python2-pulsectl
+not-installed"python2-pure-sasl
+not-installed"python2-purl
+not-installed"python2-pushy
+not-installed"python2-pwquality
+not-installed"python2-py
+not-installed"python2-py-cpuinfo
+not-installed"python2-py-espeak-ng
+not-installed"python2-py-radix
+not-installed"python2-py-ubjson
+not-installed"python2-py2pack
+not-installed"python2-py3status
+not-installed"python2-pyDOE2
+not-installed"python2-pyFFTW
+not-installed"python2-pyLibravatar
+not-installed"python2-pyModis
+not-installed"python2-pyOCD
+not-installed"python2-pyOpenSSL
+not-installed"python2-pyPEG2
+not-installed"python2-pyRFC3339
+not-installed"python2-pyScss
+not-installed"python2-pyVows
+not-installed"python2-pyacoustid
+not-installed"python2-pyaes
+not-installed"python2-pyalsaaudio
+not-installed"python2-pyaml
+not-installed"python2-pyannotate
+not-installed"python2-pyasn1
+not-installed"python2-pyasn1-modules
+not-installed"python2-pybars3
+not-installed"python2-pybeam
+not-installed"python2-pybind11
+not-installed"python2-pybind11-devel
+not-installed"python2-pyblake2
+not-installed"python2-pybluez
+not-installed"python2-pybtex
+not-installed"python2-pybugz
+not-installed"python2-pycadf
+not-installed"python2-pycairo
+not-installed"python2-pycairo-devel
+not-installed"python2-pycallgraph
+not-installed"python2-pycdio
+not-installed"python2-pycha
+not-installed"python2-pychm
+not-installed"python2-pycodestyle
+not-installed"python2-pycountry
+not-installed"python2-pycparser
+not-installed"python2-pycryptodome
+not-installed"python2-pycryptodomex
+not-installed"python2-pycsw
+not-installed"python2-pyct
+not-installed"python2-pycups
+not-installed"python2-pycurl
+not-installed"python2-pycxx
+not-installed"python2-pycxx-devel
+not-installed"python2-pydata-google-auth
+not-installed"python2-pydbus
+not-installed"python2-pydenticon
+not-installed"python2-pydicom
+not-installed"python2-pydns
+not-installed"python2-pydocstyle
+not-installed"python2-pydocumentdb
+not-installed"python2-pydot
+not-installed"python2-pydot3
+not-installed"python2-pydotplus
+not-installed"python2-pydub
+not-installed"python2-pyee
+not-installed"python2-pyelftools
+not-installed"python2-pyemd
+not-installed"python2-pyenchant
+not-installed"python2-pyface
+not-installed"python2-pyfakefs
+not-installed"python2-pyfeyn
+not-installed"python2-pyfiglet
+not-installed"python2-pyflakes
+not-installed"python2-pyftpdlib
+not-installed"python2-pygal
+not-installed"python2-pygaljs
+not-installed"python2-pygame
+not-installed"python2-pygame-devel
+not-installed"python2-pygerrit2
+not-installed"python2-pyghmi
+not-installed"python2-pygit2
+not-installed"python2-pyglet
+not-installed"python2-pygments-ansi-color
+not-installed"python2-pygments-pytest
+not-installed"python2-pygments-style-railscasts
+not-installed"python2-pygraphviz
+not-installed"python2-pyinotify
+not-installed"python2-pyinsane2
+not-installed"python2-pyjavaproperties
+not-installed"python2-pyjokes
+not-installed"python2-pyjsparser
+not-installed"python2-pyjwkest
+not-installed"python2-pykafka
+not-installed"python2-pykeepass
+not-installed"python2-pykerberos
+not-installed"python2-pykwalify
+not-installed"python2-pylama
+not-installed"python2-pylev
+not-installed"python2-pyliblzma
+not-installed"python2-pylibmc
+not-installed"python2-pylint
+not-installed"python2-pylons-sphinx-themes
+not-installed"python2-pylzma
+not-installed"python2-pymacaroons
+not-installed"python2-pymacaroons-pynacl
+not-installed"python2-pymad
+not-installed"python2-pymarc
+not-installed"python2-pymediainfo
+not-installed"python2-pymemcache
+not-installed"python2-pymisp
+not-installed"python2-pymod2pkg
+not-installed"python2-pymol
+not-installed"python2-pymongo
+not-installed"python2-pymssql
+not-installed"python2-pynamodb
+not-installed"python2-pyngus
+not-installed"python2-pyodbc
+not-installed"python2-pyosf
+not-installed"python2-pyotp
+not-installed"python2-pyparallel
+installed"python2-pyparsing
+not-installed"python2-pyperclip
+not-installed"python2-pypiserver
+not-installed"python2-pypng
+not-installed"python2-pyprel
+not-installed"python2-pyprimes
+not-installed"python2-pyproj
+not-installed"python2-pypsexec
+not-installed"python2-pypuppetdb
+not-installed"python2-pyqtgraph
+not-installed"python2-pyquery
+not-installed"python2-pyramid
+not-installed"python2-pyreadstat
+not-installed"python2-pyroma
+not-installed"python2-pyroute2
+not-installed"python2-pyrrd
+not-installed"python2-pyrsistent
+not-installed"python2-pysaml2
+not-installed"python2-pyscard
+not-installed"python2-pysendfile
+not-installed"python2-pyserial
+not-installed"python2-pyshould
+not-installed"python2-pyshp
+not-installed"python2-pysmb
+not-installed"python2-pysmbc
+not-installed"python2-pysmi
+not-installed"python2-pysndfile
+not-installed"python2-pysnmp
+not-installed"python2-pysofaconventions
+not-installed"python2-pysrt
+not-installed"python2-pyssim
+not-installed"python2-pystache
+not-installed"python2-pysvn
+not-installed"python2-pytaglib
+not-installed"python2-pyte
+not-installed"python2-pytesseract
+not-installed"python2-pytest-arraydiff
+not-installed"python2-pytest-astropy
+not-installed"python2-pytest-attrib
+not-installed"python2-pytest-bdd
+not-installed"python2-pytest-benchmark
+not-installed"python2-pytest-check-links
+not-installed"python2-pytest-click
+not-installed"python2-pytest-codestyle
+not-installed"python2-pytest-console-scripts
+not-installed"python2-pytest-cov
+not-installed"python2-pytest-datadir
+not-installed"python2-pytest-django
+not-installed"python2-pytest-doctestplus
+not-installed"python2-pytest-dotenv
+not-installed"python2-pytest-env
+not-installed"python2-pytest-error-for-skips
+not-installed"python2-pytest-expect
+not-installed"python2-pytest-faulthandler
+not-installed"python2-pytest-fixture-config
+not-installed"python2-pytest-flake8
+not-installed"python2-pytest-flakes
+not-installed"python2-pytest-flask
+not-installed"python2-pytest-forked
+not-installed"python2-pytest-git
+not-installed"python2-pytest-helpers-namespace
+not-installed"python2-pytest-html
+not-installed"python2-pytest-httpbin
+not-installed"python2-pytest-instafail
+not-installed"python2-pytest-isort
+not-installed"python2-pytest-lazy-fixture
+not-installed"python2-pytest-localserver
+not-installed"python2-pytest-metadata
+not-installed"python2-pytest-mock
+not-installed"python2-pytest-mpl
+not-installed"python2-pytest-openfiles
+not-installed"python2-pytest-profiling
+not-installed"python2-pytest-pythonpath
+not-installed"python2-pytest-qt
+not-installed"python2-pytest-randomly
+not-installed"python2-pytest-relaxed
+not-installed"python2-pytest-remotedata
+not-installed"python2-pytest-reorder
+not-installed"python2-pytest-repeat
+not-installed"python2-pytest-reqs
+not-installed"python2-pytest-rerunfailures
+not-installed"python2-pytest-runner
+not-installed"python2-pytest-services
+not-installed"python2-pytest-shutil
+not-installed"python2-pytest-socket
+not-installed"python2-pytest-spec
+not-installed"python2-pytest-subtesthack
+not-installed"python2-pytest-sugar
+not-installed"python2-pytest-super-check
+not-installed"python2-pytest-svn
+not-installed"python2-pytest-testconfig
+not-installed"python2-pytest-timeout
+not-installed"python2-pytest-tldr
+not-installed"python2-pytest-tornado
+not-installed"python2-pytest-translations
+not-installed"python2-pytest-travis-fold
+not-installed"python2-pytest-vcr
+not-installed"python2-pytest-verbose-parametrize
+not-installed"python2-pytest-virtualenv
+not-installed"python2-pytest-xdist
+not-installed"python2-pytest-xvfb
+not-installed"python2-pytest3
+not-installed"python2-pytest4
+not-installed"python2-python-afl
+not-installed"python2-python-aiml
+not-installed"python2-python-bidi
+not-installed"python2-python-box
+not-installed"python2-python-cjson
+not-installed"python2-python-coveralls
+not-installed"python2-python-crfsuite
+not-installed"python2-python-daemon
+not-installed"python2-python-datamatrix
+not-installed"python2-python-dateutil
+not-installed"python2-python-dbusmock
+not-installed"python2-python-docs-theme
+not-installed"python2-python-dotenv
+not-installed"python2-python-editor
+not-installed"python2-python-fileinspector
+not-installed"python2-python-gammu
+not-installed"python2-python-gflags
+not-installed"python2-python-gitlab
+not-installed"python2-python-gnupg
+not-installed"python2-python-jenkins
+not-installed"python2-python-jose
+not-installed"python2-python-json-logger
+not-installed"python2-python-louvain
+not-installed"python2-python-lzo
+not-installed"python2-python-magic
+not-installed"python2-python-memcached
+not-installed"python2-python-mimeparse
+not-installed"python2-python-mpd2
+not-installed"python2-python-mpv
+not-installed"python2-python-openid-cla
+not-installed"python2-python-openid-teams
+not-installed"python2-python-pam
+not-installed"python2-python-pseudorandom
+not-installed"python2-python-ptrace
+not-installed"python2-python-qdatamatrix
+not-installed"python2-python-qnotifications
+not-installed"python2-python-qpid-proton
+not-installed"python2-python-qprogedit
+not-installed"python2-python-redmine
+not-installed"python2-python-slugify
+not-installed"python2-python-snappy
+not-installed"python2-python-sofa
+not-installed"python2-python-sql
+not-installed"python2-python-stdnum
+not-installed"python2-python-subunit
+not-installed"python2-python-twitter
+not-installed"python2-python-utils
+not-installed"python2-python-vlc
+not-installed"python2-python-whois
+not-installed"python2-python-xlib
+not-installed"python2-python-yubico
+not-installed"python2-python3-saml
+not-installed"python2-pythonfinder
+not-installed"python2-pythonwhois
+not-installed"python2-pytidylib
+not-installed"python2-pytils
+not-installed"python2-pytimeparse
+not-installed"python2-pytoml
+not-installed"python2-pytools
+not-installed"python2-pytricia
+not-installed"python2-pytz
+not-installed"python2-pyuca
+not-installed"python2-pyudev
+not-installed"python2-pyusb
+not-installed"python2-pyutf8
+not-installed"python2-pyviz-comms
+not-installed"python2-pyvmomi
+not-installed"python2-pywbem
+not-installed"python2-pywinrm
+not-installed"python2-pyxattr
+not-installed"python2-pyxb
+not-installed"python2-pyxdg
+not-installed"python2-pyzmq
+not-installed"python2-pyzmq-devel
+not-installed"python2-qgrid
+not-installed"python2-qrcode
+not-installed"python2-qscintilla-qt5
+not-installed"python2-qt3d-qt5
+installed"python2-qt4
+not-installed"python2-qt4-devel
+not-installed"python2-qt5
+not-installed"python2-qt5-devel
+not-installed"python2-qtcharts-qt5
+not-installed"python2-qtconsole
+not-installed"python2-qtdatavis3d-qt5
+not-installed"python2-qtwebengine-qt5
+not-installed"python2-queuelib
+not-installed"python2-quicktions
+not-installed"python2-radon
+not-installed"python2-raet
+not-installed"python2-random2
+not-installed"python2-rarfile
+not-installed"python2-rarfile-doc
+not-installed"python2-ravello-sdk
+not-installed"python2-raven
+not-installed"python2-rawkit
+not-installed"python2-rcssmin
+not-installed"python2-rdflib
+not-installed"python2-readme_renderer
+not-installed"python2-readthedocs-sphinx-ext
+not-installed"python2-rebulk
+not-installed"python2-recommonmark
+not-installed"python2-redbaron
+not-installed"python2-redis
+not-installed"python2-rednose
+not-installed"python2-regex
+not-installed"python2-relatorio
+not-installed"python2-releases
+not-installed"python2-releases-test
+not-installed"python2-remoto
+not-installed"python2-rencode
+not-installed"python2-reno
+not-installed"python2-repex
+not-installed"python2-reportlab
+not-installed"python2-repoze.lru
+not-installed"python2-repoze.sphinx.autointerface
+not-installed"python2-repoze.who
+not-installed"python2-requests
+not-installed"python2-requests-aws
+not-installed"python2-requests-cache
+not-installed"python2-requests-download
+not-installed"python2-requests-file
+not-installed"python2-requests-ftp
+not-installed"python2-requests-futures
+not-installed"python2-requests-hawk
+not-installed"python2-requests-kerberos
+not-installed"python2-requests-mock
+not-installed"python2-requests-oauthlib
+not-installed"python2-requests-toolbelt
+not-installed"python2-requests-unixsocket
+not-installed"python2-requests_ntlm
+not-installed"python2-requestsexceptions
+not-installed"python2-requirements-detector
+not-installed"python2-requirements-parser
+not-installed"python2-requirementslib
+not-installed"python2-resampy
+not-installed"python2-resolvelib
+not-installed"python2-responses
+not-installed"python2-restructuredtext_lint
+not-installed"python2-resultsdb_api
+not-installed"python2-retry
+not-installed"python2-retry_decorator
+not-installed"python2-retrying
+not-installed"python2-rfc3986
+not-installed"python2-rfc3987
+not-installed"python2-rfc6266
+not-installed"python2-rjsmin
+not-installed"python2-rnginline
+not-installed"python2-rollbar
+not-installed"python2-roman
+not-installed"python2-rope
+not-installed"python2-rply
+not-installed"python2-rpm
+not-installed"python2-rpmfile
+not-installed"python2-rpyc
+not-installed"python2-rq
+not-installed"python2-rrdtool
+not-installed"python2-rsa
+not-installed"python2-rst.linker
+not-installed"python2-rstcheck
+not-installed"python2-rt
+not-installed"python2-rtslib-fb
+not-installed"python2-ruamel.base
+not-installed"python2-ruamel.std.argparse
+not-installed"python2-ruamel.std.pathlib
+not-installed"python2-ruamel.yaml
+not-installed"python2-ruamel.yaml.clib
+not-installed"python2-ruamel.yaml.cmd
+not-installed"python2-ruamel.yaml.convert
+not-installed"python2-ruffus
+not-installed"python2-ryu
+not-installed"python2-s3transfer
+not-installed"python2-salt
+not-installed"python2-samplerate
+not-installed"python2-sane
+not-installed"python2-sanlock
+not-installed"python2-sarge
+not-installed"python2-sas7bdat
+not-installed"python2-sasl
+not-installed"python2-scales
+not-installed"python2-scandir
+not-installed"python2-schedule
+not-installed"python2-schema
+not-installed"python2-scikit-build
+not-installed"python2-scikit-dsp-comm
+not-installed"python2-scikit-image
+not-installed"python2-scikit-learn
+not-installed"python2-scikit-sparse
+not-installed"python2-scikit-umfpack
+not-installed"python2-scikits.example
+not-installed"python2-scipy
+not-installed"python2-scipy-gnu-hpc
+not-installed"python2-scipy_1_2_1-gnu-hpc
+not-installed"python2-scitools
+not-installed"python2-scour
+not-installed"python2-scp
+not-installed"python2-scripttest
+not-installed"python2-scrypt
+not-installed"python2-scspell3k
+not-installed"python2-sdnotify
+not-installed"python2-seaborn
+not-installed"python2-selection
+not-installed"python2-selectors2
+not-installed"python2-selectors34
+not-installed"python2-selenium
+not-installed"python2-semanage
+not-installed"python2-semantic_version
+not-installed"python2-semver
+not-installed"python2-senlinclient
+not-installed"python2-sentry-sdk
+not-installed"python2-seqdiag
+not-installed"python2-serpent
+not-installed"python2-serpy
+not-installed"python2-serverfiles
+not-installed"python2-service_identity
+not-installed"python2-setproctitle
+not-installed"python2-setuptools
+not-installed"python2-setuptools-git
+not-installed"python2-setuptools_scm
+not-installed"python2-setuptools_scm_git_archive
+not-installed"python2-sge-pygame
+not-installed"python2-sh
+not-installed"python2-shaptools
+not-installed"python2-shellingham
+not-installed"python2-shijian
+not-installed"python2-shodan
+not-installed"python2-shortuuid
+not-installed"python2-shouldbe
+not-installed"python2-shutilwhich
+not-installed"python2-sievelib
+not-installed"python2-signedjson
+not-installed"python2-simplebayes
+not-installed"python2-simpleeval
+not-installed"python2-simplegeneric
+not-installed"python2-simplejson
+installed"python2-sip
+not-installed"python2-sip-devel
+not-installed"python2-siphashc
+installed"python2-six
+not-installed"python2-sklearn-pandas
+not-installed"python2-sleekxmpp
+not-installed"python2-slimit
+not-installed"python2-slip
+not-installed"python2-slip-dbus
+not-installed"python2-slip-gtk
+not-installed"python2-slumber
+not-installed"python2-slycot
+not-installed"python2-smartypants
+not-installed"python2-smbprotocol
+not-installed"python2-smmap
+not-installed"python2-smmap2
+not-installed"python2-snakefood
+not-installed"python2-snowballstemmer
+not-installed"python2-snuggs
+not-installed"python2-social-auth-app-django
+not-installed"python2-social-auth-core
+not-installed"python2-socketpool
+not-installed"python2-softlayer
+not-installed"python2-sortedcollections
+not-installed"python2-sortedcontainers
+not-installed"python2-sortinghat
+not-installed"python2-soundcloud
+not-installed"python2-sounddevice
+not-installed"python2-soupsieve
+not-installed"python2-spake2
+not-installed"python2-spark_parser
+not-installed"python2-speaklater
+not-installed"python2-spec
+not-installed"python2-sphinx-bootstrap-theme
+not-installed"python2-sphinx-feature-classification
+not-installed"python2-sphinx-issues
+not-installed"python2-sphinx-removed-in
+not-installed"python2-sphinx-testing
+not-installed"python2-sphinx-version-warning
+not-installed"python2-sphinx_rtd_theme
+not-installed"python2-sphinxbase
+not-installed"python2-sphinxcontrib-actdiag
+not-installed"python2-sphinxcontrib-apidoc
+not-installed"python2-sphinxcontrib-asyncio
+not-installed"python2-sphinxcontrib-autoprogram
+not-installed"python2-sphinxcontrib-autoprogram-doc
+not-installed"python2-sphinxcontrib-blockdiag
+not-installed"python2-sphinxcontrib-documentedlist
+not-installed"python2-sphinxcontrib-github-alt
+not-installed"python2-sphinxcontrib-httpdomain
+not-installed"python2-sphinxcontrib-issuetracker
+not-installed"python2-sphinxcontrib-newsfeed
+not-installed"python2-sphinxcontrib-nwdiag
+not-installed"python2-sphinxcontrib-pecanwsme
+not-installed"python2-sphinxcontrib-programoutput
+not-installed"python2-sphinxcontrib-seqdiag
+not-installed"python2-sphinxcontrib-svg2pdfconverter
+not-installed"python2-sphinxcontrib-websupport
+not-installed"python2-spotipy
+not-installed"python2-sqlalchemy-migrate
+not-installed"python2-sqlitedict
+not-installed"python2-sqlparse
+not-installed"python2-ssdeep
+not-installed"python2-sshtunnel
+not-installed"python2-statistics
+not-installed"python2-statsd
+not-installed"python2-statsmodels
+not-installed"python2-stdeb
+not-installed"python2-stestr
+not-installed"python2-stevedore
+not-installed"python2-stomp.py
+not-installed"python2-stomper
+not-installed"python2-storm
+not-installed"python2-storm-django
+not-installed"python2-storm-mysql
+not-installed"python2-storm-postgresql
+not-installed"python2-storm-twisted
+not-installed"python2-straight-plugin
+not-installed"python2-streamz
+not-installed"python2-strict-rfc3339
+not-installed"python2-structlog
+not-installed"python2-subgrab
+not-installed"python2-subliminal
+not-installed"python2-subprocess32
+not-installed"python2-subst
+not-installed"python2-suds-jurko
+not-installed"python2-sure
+not-installed"python2-sushy
+not-installed"python2-svgwrite
+not-installed"python2-swapper
+not-installed"python2-swiftclient
+not-installed"python2-sybil
+not-installed"python2-sympy
+not-installed"python2-systemd
+not-installed"python2-tables
+not-installed"python2-tablib
+not-installed"python2-tabulate
+not-installed"python2-tagpy
+not-installed"python2-tap.py
+not-installed"python2-targetcli-fb
+not-installed"python2-tblib
+not-installed"python2-technicolor
+not-installed"python2-telepot
+not-installed"python2-template-remover
+not-installed"python2-tempora
+not-installed"python2-tenacity
+not-installed"python2-termcolor
+not-installed"python2-terminado
+not-installed"python2-terminaltables
+not-installed"python2-termstyle
+not-installed"python2-tesserocr
+not-installed"python2-testfixtures
+not-installed"python2-testflo
+not-installed"python2-testinfra
+not-installed"python2-testpath
+not-installed"python2-testrepository
+not-installed"python2-testresources
+not-installed"python2-testscenarios
+not-installed"python2-testtools
+not-installed"python2-text-unidecode
+not-installed"python2-textX
+not-installed"python2-textfsm
+not-installed"python2-textile
+not-installed"python2-texttable
+not-installed"python2-textwrap3
+not-installed"python2-thLib
+not-installed"python2-thrift
+not-installed"python2-thriftpy
+not-installed"python2-tinydb
+not-installed"python2-tinyrecord
+not-installed"python2-tinyrpc
+not-installed"python2-titlecase
+not-installed"python2-tkreadonly
+not-installed"python2-tld
+not-installed"python2-tldextract
+not-installed"python2-tmx
+not-installed"python2-toml
+not-installed"python2-tomlkit
+not-installed"python2-toolz
+not-installed"python2-tooz
+not-installed"python2-topy
+not-installed"python2-tornado
+not-installed"python2-tornado4
+not-installed"python2-tox
+not-installed"python2-tox-no-internet
+not-installed"python2-tox-travis
+not-installed"python2-tox-wheel
+not-installed"python2-tpfd
+not-installed"python2-tqdm
+not-installed"python2-traceback2
+not-installed"python2-traitlets
+not-installed"python2-traits
+not-installed"python2-traitsui
+not-installed"python2-traittypes
+not-installed"python2-transaction
+not-installed"python2-transip
+not-installed"python2-translation-finder
+not-installed"python2-translationstring
+not-installed"python2-translitcodec
+not-installed"python2-treq
+not-installed"python2-trustme
+not-installed"python2-tsk
+not-installed"python2-tvdb_api
+not-installed"python2-tweepy
+not-installed"python2-twine
+not-installed"python2-twitter.common.finagle-thrift
+not-installed"python2-twitter.common.lang
+not-installed"python2-twitter.common.rpc
+not-installed"python2-twodict
+not-installed"python2-twython
+not-installed"python2-txWS
+not-installed"python2-txZMQ
+not-installed"python2-txacme
+not-installed"python2-txaio
+not-installed"python2-txtorcon
+not-installed"python2-typing
+not-installed"python2-typing_extensions
+not-installed"python2-tzlocal
+not-installed"python2-u-msgpack-python
+not-installed"python2-ua-parser
+not-installed"python2-uamqp
+not-installed"python2-ucsmsdk
+not-installed"python2-ujson
+not-installed"python2-unbound
+not-installed"python2-uncertainties
+not-installed"python2-uncompyle6
+not-installed"python2-unicodecsv
+not-installed"python2-unidiff
+not-installed"python2-unify
+not-installed"python2-uniseg
+not-installed"python2-units
+not-installed"python2-unittest-mixins
+not-installed"python2-unittest-xml-reporting
+not-installed"python2-unittest2
+not-installed"python2-unpaddedbase64
+not-installed"python2-untokenize
+not-installed"python2-upm
+not-installed"python2-uritemplate
+not-installed"python2-urlgrabber
+not-installed"python2-urllib3
+not-installed"python2-urwid
+not-installed"python2-user-agents
+not-installed"python2-user_agent
+not-installed"python2-validate_email
+not-installed"python2-validators
+not-installed"python2-varlink
+not-installed"python2-vcrpy
+not-installed"python2-vcs
+not-installed"python2-vcversioner
+not-installed"python2-vega
+not-installed"python2-vega_datasets
+not-installed"python2-venusian
+not-installed"python2-venusian-doc
+not-installed"python2-verboselogs
+not-installed"python2-versioneer
+not-installed"python2-versiontools
+not-installed"python2-vim-vint
+not-installed"python2-vine
+not-installed"python2-virt-bootstrap
+not-installed"python2-virtkey
+not-installed"python2-virtualbmc
+not-installed"python2-virtualenv
+not-installed"python2-virtualenv-clone
+not-installed"python2-virtualenvwrapper
+not-installed"python2-visitor
+not-installed"python2-vispy
+not-installed"python2-vistir
+not-installed"python2-vobject
+not-installed"python2-voila
+not-installed"python2-voluptuous
+not-installed"python2-vulkan
+not-installed"python2-vulture
+not-installed"python2-w3lib
+not-installed"python2-wadllib
+not-installed"python2-waitress
+not-installed"python2-waitress-doc
+not-installed"python2-wakeonlan
+not-installed"python2-warlock
+not-installed"python2-watchdog
+not-installed"python2-watchdog-doc
+not-installed"python2-watermark
+not-installed"python2-wcwidth
+not-installed"python2-weave
+not-installed"python2-webassets
+not-installed"python2-webcolors
+not-installed"python2-webencodings
+not-installed"python2-weblib
+not-installed"python2-websocket-client
+not-installed"python2-websockify
+not-installed"python2-whatever
+not-installed"python2-whatthepatch
+not-installed"python2-wheel
+not-installed"python2-whichcraft
+not-installed"python2-whitenoise
+not-installed"python2-whois_similarity_distance
+not-installed"python2-wikipedia
+not-installed"python2-wiring
+not-installed"python2-wolframalpha
+not-installed"python2-wptools
+not-installed"python2-wrapt
+not-installed"python2-ws4py
+not-installed"python2-wsaccel
+not-installed"python2-wsgi_intercept
+not-installed"python2-wstools
+not-installed"python2-wtf-peewee
+not-installed"python2-wurlitzer
+not-installed"python2-wxPython
+not-installed"python2-wxPython-lang
+not-installed"python2-xapp
+not-installed"python2-xattr
+not-installed"python2-xcffib
+not-installed"python2-xdis
+not-installed"python2-xerox
+not-installed"python2-xhtml2pdf
+not-installed"python2-xlrd
+not-installed"python2-xlwt
+not-installed"python2-xmldiff
+not-installed"python2-xmlsec
+not-installed"python2-xmltodict
+not-installed"python2-xpybutil
+not-installed"python2-xsge_gui
+not-installed"python2-xsge_lighting
+not-installed"python2-xsge_particle
+not-installed"python2-xsge_path
+not-installed"python2-xsge_physics
+not-installed"python2-xsge_tmx
+not-installed"python2-xvfbwrapper
+not-installed"python2-xxhash
+not-installed"python2-yamldoc
+not-installed"python2-yamllint
+not-installed"python2-yapf
+not-installed"python2-yappi
+not-installed"python2-yara
+not-installed"python2-yarb
+not-installed"python2-yarg
+not-installed"python2-yaspin
+not-installed"python2-youtube-dl
+not-installed"python2-yq
+not-installed"python2-yum
+not-installed"python2-zake
+not-installed"python2-zc.buildout
+not-installed"python2-zc.customdoctests
+not-installed"python2-zc.lockfile
+not-installed"python2-zdaemon
+not-installed"python2-zeep
+not-installed"python2-zetup
+not-installed"python2-zict
+not-installed"python2-zipp
+not-installed"python2-zipstream
+not-installed"python2-zodbpickle
+not-installed"python2-zope.cachedescriptors
+not-installed"python2-zope.component
+not-installed"python2-zope.configuration
+not-installed"python2-zope.copy
+not-installed"python2-zope.deferredimport
+not-installed"python2-zope.deprecation
+not-installed"python2-zope.event
+not-installed"python2-zope.exceptions
+not-installed"python2-zope.hookable
+not-installed"python2-zope.i18nmessageid
+not-installed"python2-zope.interface
+not-installed"python2-zope.location
+not-installed"python2-zope.proxy
+not-installed"python2-zope.proxy-devel
+not-installed"python2-zope.schema
+not-installed"python2-zope.security
+not-installed"python2-zope.testbrowser
+not-installed"python2-zope.testing
+not-installed"python2-zope.testrunner
+not-installed"python2-zstandard
+not-installed"python2-zstd
+not-installed"python2-zypp-plugin
+installed"python3
+not-installed"python3-32bit
+not-installed"python3-3to2
+not-installed"python3-APScheduler
+not-installed"python3-AnyQt
+not-installed"python3-Arpeggio
+installed"python3-Automat
+not-installed"python3-BTrees
+not-installed"python3-BTrees-devel
+not-installed"python3-BTrees-doc
+not-installed"python3-Babel
+not-installed"python3-Babel-doc
+not-installed"python3-Beaker
+not-installed"python3-BitVector
+not-installed"python3-Bottleneck
+not-installed"python3-Brotli
+not-installed"python3-CacheControl
+not-installed"python3-CairoSVG
+not-installed"python3-Cerberus
+not-installed"python3-Chameleon
+not-installed"python3-Cheetah3
+not-installed"python3-CherryPy
+not-installed"python3-CommonMark
+not-installed"python3-Cycler
+not-installed"python3-Cython
+not-installed"python3-DataShape
+not-installed"python3-DateTime
+not-installed"python3-Delorean
+not-installed"python3-Deprecated
+not-installed"python3-Django
+not-installed"python3-Django1
+not-installed"python3-Durus
+not-installed"python3-EasyProcess
+not-installed"python3-EditorConfig
+not-installed"python3-ExifRead
+not-installed"python3-Fabric
+not-installed"python3-Fabric3
+not-installed"python3-Faker
+not-installed"python3-Fiona
+not-installed"python3-Flask
+not-installed"python3-Flask-Admin
+not-installed"python3-Flask-Babel
+not-installed"python3-Flask-BabelEx
+not-installed"python3-Flask-Bootstrap
+not-installed"python3-Flask-Cache
+not-installed"python3-Flask-Cache-doc
+not-installed"python3-Flask-Compress
+not-installed"python3-Flask-Cors
+not-installed"python3-Flask-Gravatar
+not-installed"python3-Flask-HTMLmin
+not-installed"python3-Flask-HTTPAuth
+not-installed"python3-Flask-Login
+not-installed"python3-Flask-Mail
+not-installed"python3-Flask-Migrate
+not-installed"python3-Flask-Paranoid
+not-installed"python3-Flask-Principal
+not-installed"python3-Flask-PyMongo
+not-installed"python3-Flask-RESTful
+not-installed"python3-Flask-RSTPages
+not-installed"python3-Flask-SQLAlchemy
+not-installed"python3-Flask-Script
+not-installed"python3-Flask-Security
+not-installed"python3-Flask-WTF
+not-installed"python3-Flask-doc
+not-installed"python3-FontTools
+not-installed"python3-FormEncode
+not-installed"python3-Frozen-Flask
+not-installed"python3-GDAL
+not-installed"python3-Genshi
+not-installed"python3-GeoIP
+not-installed"python3-GitPython
+not-installed"python3-GitgExt
+not-installed"python3-Glances
+not-installed"python3-GooCalendar
+not-installed"python3-GridDataFormats
+not-installed"python3-HTTPolice
+not-installed"python3-HeapDict
+not-installed"python3-IMDbPY
+not-installed"python3-Jinja2
+not-installed"python3-Js2Py
+not-installed"python3-JsonWeb
+not-installed"python3-Kajiki
+not-installed"python3-Keras-Applications
+not-installed"python3-Keras-Preprocessing
+not-installed"python3-Kivy
+not-installed"python3-Kivy-devel
+not-installed"python3-LEPL
+not-installed"python3-Lektor
+not-installed"python3-Levenshtein
+not-installed"python3-Logbook
+not-installed"python3-M2Crypto
+not-installed"python3-Mako
+not-installed"python3-MapProxy
+installed"python3-Markdown
+not-installed"python3-MarkupSafe
+not-installed"python3-Markups
+not-installed"python3-Mathics
+not-installed"python3-MechanicalSoup
+not-installed"python3-Ming
+not-installed"python3-MiniMock
+not-installed"python3-Morfessor
+not-installed"python3-MulticoreTSNE
+not-installed"python3-OWSLib
+not-installed"python3-Parsley
+not-installed"python3-Paste
+not-installed"python3-PasteDeploy
+not-installed"python3-PasteScript
+not-installed"python3-Paver
+not-installed"python3-PeakUtils
+not-installed"python3-Pebble
+installed"python3-Pillow
+not-installed"python3-Pillow-tk
+not-installed"python3-Pint
+not-installed"python3-PrettyTable
+not-installed"python3-PsyLab
+not-installed"python3-PsychoPy
+not-installed"python3-PsychoPy-lang
+not-installed"python3-Pweave
+installed"python3-PyAudio
+not-installed"python3-PyAutoGUI
+not-installed"python3-PyBindGen
+not-installed"python3-PyBrowserID
+not-installed"python3-PyChromecast
+not-installed"python3-PyDispatcher
+not-installed"python3-PyECLib
+not-installed"python3-PyExecJS
+not-installed"python3-PyFxA
+not-installed"python3-PyGithub
+installed"python3-PyHamcrest
+not-installed"python3-PyICU
+installed"python3-PyJWT
+not-installed"python3-PyKMIP
+not-installed"python3-PyMeta3
+not-installed"python3-PyMsgBox
+not-installed"python3-PyMuPDF
+not-installed"python3-PyMySQL
+not-installed"python3-PyNaCl
+not-installed"python3-PyNamecheap
+not-installed"python3-PyOgg
+not-installed"python3-PyOpenAL
+not-installed"python3-PyPDF2
+not-installed"python3-PyPrind
+not-installed"python3-PyPrint
+not-installed"python3-PyQRCode
+not-installed"python3-PyRIC
+not-installed"python3-PySDL2
+not-installed"python3-PyScreeze
+installed"python3-PySocks
+not-installed"python3-PyTrie
+not-installed"python3-PyTweening
+not-installed"python3-PyVirtualDisplay
+not-installed"python3-PyWavelets
+not-installed"python3-PyWebDAV3
+not-installed"python3-PyWebDAV3-GNUHealth
+not-installed"python3-PyX
+installed"python3-PyYAML
+not-installed"python3-Pydap
+not-installed"python3-Pygments
+not-installed"python3-Pykka
+not-installed"python3-Pympler
+not-installed"python3-Pyphen
+not-installed"python3-Pyro4
+not-installed"python3-QDarkStyle
+not-installed"python3-Qt.py
+not-installed"python3-QtAwesome
+not-installed"python3-QtPy
+not-installed"python3-Quandl
+not-installed"python3-RegexOrder
+not-installed"python3-Routes
+not-installed"python3-SPARQLWrapper
+not-installed"python3-SQLAlchemy
+not-installed"python3-SQLAlchemy-Utils
+not-installed"python3-Scrapy
+not-installed"python3-SecretStorage
+installed"python3-Send2Trash
+not-installed"python3-Shapely
+not-installed"python3-SimpleWebSocketServer
+not-installed"python3-SoapySDR
+not-installed"python3-SoundCard
+not-installed"python3-SoundFile
+not-installed"python3-SpeechRecognition
+not-installed"python3-Sphinx
+not-installed"python3-Sphinx-latex
+not-installed"python3-TagStats
+not-installed"python3-Tempita
+not-installed"python3-TermRecord
+not-installed"python3-Theano
+not-installed"python3-Transplant
+not-installed"python3-Trolly
+not-installed"python3-Trololio
+installed"python3-Twisted
+not-installed"python3-TxSNI
+not-installed"python3-URLObject
+not-installed"python3-UkPostcodeParser
+installed"python3-Unidecode
+not-installed"python3-WSGIProxy2
+not-installed"python3-WSME
+not-installed"python3-WTForms
+not-installed"python3-WeasyPrint
+not-installed"python3-WebOb
+not-installed"python3-WebTest
+not-installed"python3-Werkzeug
+not-installed"python3-Whoosh
+not-installed"python3-XStatic
+not-installed"python3-XStatic-Angular-Schema-Form
+not-installed"python3-XStatic-jQuery
+not-installed"python3-XStatic-jquery-ui
+not-installed"python3-XStatic-objectpath
+not-installed"python3-XStatic-term.js
+not-installed"python3-XStatic-tv4
+not-installed"python3-XlsxWriter
+not-installed"python3-Yapsy
+not-installed"python3-ZConfig
+not-installed"python3-ZConfig-doc
+not-installed"python3-ZEO
+not-installed"python3-ZODB
+not-installed"python3-abclient
+not-installed"python3-abimap
+not-installed"python3-abimap-doc
+not-installed"python3-abseil
+not-installed"python3-acefile
+not-installed"python3-acitoolkit
+not-installed"python3-acme
+not-installed"python3-actdiag
+not-installed"python3-adal
+not-installed"python3-adapt-parser
+not-installed"python3-addict
+not-installed"python3-aeidon
+not-installed"python3-aenum
+not-installed"python3-aexpect
+not-installed"python3-affine
+not-installed"python3-agate
+not-installed"python3-agate-dbf
+not-installed"python3-agate-excel
+not-installed"python3-agate-lookup
+not-installed"python3-agate-remote
+not-installed"python3-agate-sql
+not-installed"python3-agate-stats
+not-installed"python3-aina
+not-installed"python3-aiobotocore
+not-installed"python3-aiodns
+not-installed"python3-aioeventlet
+not-installed"python3-aioftp
+not-installed"python3-aiohttp
+not-installed"python3-aiohttp-socks
+not-installed"python3-aiohttp-theme
+not-installed"python3-aioresponses
+not-installed"python3-aiorpcX
+not-installed"python3-akismet
+not-installed"python3-alabaster
+not-installed"python3-alembic
+not-installed"python3-alsa
+not-installed"python3-altair
+not-installed"python3-altair-widgets
+not-installed"python3-altgraph
+not-installed"python3-amqp
+not-installed"python3-amqplib
+not-installed"python3-amqpstorm
+not-installed"python3-ana
+not-installed"python3-aniso8601
+not-installed"python3-annoy
+not-installed"python3-ansel
+not-installed"python3-ansi2html
+not-installed"python3-ansicolor
+not-installed"python3-ansicolors
+not-installed"python3-ansiwrap
+not-installed"python3-anyjson
+not-installed"python3-apache-libcloud
+not-installed"python3-apipkg
+installed"python3-apparmor
+installed"python3-appdirs
+not-installed"python3-applicationinsights
+not-installed"python3-apptools
+not-installed"python3-apsw
+not-installed"python3-ara
+not-installed"python3-arabic-reshaper
+not-installed"python3-argcomplete
+not-installed"python3-argh
+not-installed"python3-argon2-cffi
+not-installed"python3-argparse-manpage
+not-installed"python3-args
+not-installed"python3-arrow
+not-installed"python3-asciimatics
+not-installed"python3-asdf
+installed"python3-asn1crypto
+not-installed"python3-aspectlib
+not-installed"python3-asteval
+not-installed"python3-astor
+not-installed"python3-astral
+not-installed"python3-astroid
+not-installed"python3-astropy
+not-installed"python3-astropy-helpers
+not-installed"python3-astunparse
+not-installed"python3-asv
+not-installed"python3-async_generator
+not-installed"python3-async_timeout
+not-installed"python3-asyncssh
+not-installed"python3-asynctest
+not-installed"python3-atlassian-python-api
+not-installed"python3-atom
+not-installed"python3-atomicwrites
+not-installed"python3-atpublic
+not-installed"python3-atspi
+not-installed"python3-attr
+installed"python3-attrs
+not-installed"python3-aubio
+not-installed"python3-audiogrep
+not-installed"python3-audiolazy
+not-installed"python3-audiomate
+installed"python3-audioread
+not-installed"python3-audit
+not-installed"python3-augeas
+not-installed"python3-autobahn
+not-installed"python3-autodoc
+not-installed"python3-autoflake
+not-installed"python3-automaton
+not-installed"python3-autopep8
+not-installed"python3-autoupgrade-ng
+not-installed"python3-av
+not-installed"python3-avahi
+not-installed"python3-avahi-gtk
+not-installed"python3-avocado
+not-installed"python3-avocado-plugins-glib
+not-installed"python3-avocado-plugins-golang
+not-installed"python3-avocado-plugins-loader-yaml
+not-installed"python3-avocado-plugins-output-html
+not-installed"python3-avocado-plugins-result-upload
+not-installed"python3-avocado-plugins-resultsdb
+not-installed"python3-avocado-plugins-runner-docker
+not-installed"python3-avocado-plugins-runner-remote
+not-installed"python3-avocado-plugins-runner-vm
+not-installed"python3-avocado-plugins-varianter-pict
+not-installed"python3-avocado-plugins-varianter-yaml-to-mux
+not-installed"python3-avocado-plugins-vt
+not-installed"python3-avro
+not-installed"python3-aws-sam-translator
+not-installed"python3-aws-xray-sdk
+not-installed"python3-aws-xray-sdk-Django
+not-installed"python3-aws-xray-sdk-Flask-SQLAlchemy
+not-installed"python3-aws-xray-sdk-SQLAlchemy
+not-installed"python3-aws-xray-sdk-aiobotocore
+not-installed"python3-aws-xray-sdk-aiohttp
+not-installed"python3-aws-xray-sdk-all
+not-installed"python3-aws-xray-sdk-mysql-connector
+not-installed"python3-aws-xray-sdk-psycopg2
+not-installed"python3-aws-xray-sdk-pymongo
+not-installed"python3-aws-xray-sdk-pynamodb
+not-installed"python3-aws-xray-sdk-requests
+not-installed"python3-axolotl
+not-installed"python3-axolotl-curve25519
+not-installed"python3-azure-applicationinsights
+not-installed"python3-azure-batch
+not-installed"python3-azure-cognitiveservices-knowledge-nspkg
+not-installed"python3-azure-cognitiveservices-knowledge-qnamaker
+not-installed"python3-azure-cognitiveservices-language-luis
+not-installed"python3-azure-cognitiveservices-language-nspkg
+not-installed"python3-azure-cognitiveservices-language-spellcheck
+not-installed"python3-azure-cognitiveservices-language-textanalytics
+not-installed"python3-azure-cognitiveservices-nspkg
+not-installed"python3-azure-cognitiveservices-search-autosuggest
+not-installed"python3-azure-cognitiveservices-search-customimagesearch
+not-installed"python3-azure-cognitiveservices-search-customsearch
+not-installed"python3-azure-cognitiveservices-search-entitysearch
+not-installed"python3-azure-cognitiveservices-search-imagesearch
+not-installed"python3-azure-cognitiveservices-search-newssearch
+not-installed"python3-azure-cognitiveservices-search-nspkg
+not-installed"python3-azure-cognitiveservices-search-videosearch
+not-installed"python3-azure-cognitiveservices-search-visualsearch
+not-installed"python3-azure-cognitiveservices-search-websearch
+not-installed"python3-azure-cognitiveservices-vision-computervision
+not-installed"python3-azure-cognitiveservices-vision-contentmoderator
+not-installed"python3-azure-cognitiveservices-vision-customvision
+not-installed"python3-azure-cognitiveservices-vision-nspkg
+not-installed"python3-azure-common
+not-installed"python3-azure-datalake-store
+not-installed"python3-azure-eventgrid
+not-installed"python3-azure-graphrbac
+not-installed"python3-azure-keyvault
+not-installed"python3-azure-loganalytics
+not-installed"python3-azure-mgmt
+not-installed"python3-azure-mgmt-advisor
+not-installed"python3-azure-mgmt-applicationinsights
+not-installed"python3-azure-mgmt-authorization
+not-installed"python3-azure-mgmt-batch
+not-installed"python3-azure-mgmt-batchai
+not-installed"python3-azure-mgmt-billing
+not-installed"python3-azure-mgmt-botservice
+not-installed"python3-azure-mgmt-cdn
+not-installed"python3-azure-mgmt-cognitiveservices
+not-installed"python3-azure-mgmt-commerce
+not-installed"python3-azure-mgmt-compute
+not-installed"python3-azure-mgmt-consumption
+not-installed"python3-azure-mgmt-containerinstance
+not-installed"python3-azure-mgmt-containerregistry
+not-installed"python3-azure-mgmt-containerservice
+not-installed"python3-azure-mgmt-cosmosdb
+not-installed"python3-azure-mgmt-datafactory
+not-installed"python3-azure-mgmt-datalake-analytics
+not-installed"python3-azure-mgmt-datalake-nspkg
+not-installed"python3-azure-mgmt-datalake-store
+not-installed"python3-azure-mgmt-datamigration
+not-installed"python3-azure-mgmt-devspaces
+not-installed"python3-azure-mgmt-devtestlabs
+not-installed"python3-azure-mgmt-dns
+not-installed"python3-azure-mgmt-documentdb
+not-installed"python3-azure-mgmt-eventgrid
+not-installed"python3-azure-mgmt-eventhub
+not-installed"python3-azure-mgmt-hanaonazure
+not-installed"python3-azure-mgmt-hdinsight
+not-installed"python3-azure-mgmt-iotcentral
+not-installed"python3-azure-mgmt-iothub
+not-installed"python3-azure-mgmt-iothubprovisioningservices
+not-installed"python3-azure-mgmt-keyvault
+not-installed"python3-azure-mgmt-kusto
+not-installed"python3-azure-mgmt-loganalytics
+not-installed"python3-azure-mgmt-logic
+not-installed"python3-azure-mgmt-machinelearningcompute
+not-installed"python3-azure-mgmt-managementgroups
+not-installed"python3-azure-mgmt-managementpartner
+not-installed"python3-azure-mgmt-maps
+not-installed"python3-azure-mgmt-marketplaceordering
+not-installed"python3-azure-mgmt-media
+not-installed"python3-azure-mgmt-monitor
+not-installed"python3-azure-mgmt-msi
+not-installed"python3-azure-mgmt-network
+not-installed"python3-azure-mgmt-notificationhubs
+not-installed"python3-azure-mgmt-nspkg
+not-installed"python3-azure-mgmt-policyinsights
+not-installed"python3-azure-mgmt-powerbiembedded
+not-installed"python3-azure-mgmt-rdbms
+not-installed"python3-azure-mgmt-recoveryservices
+not-installed"python3-azure-mgmt-recoveryservicesbackup
+not-installed"python3-azure-mgmt-redis
+not-installed"python3-azure-mgmt-relay
+not-installed"python3-azure-mgmt-reservations
+not-installed"python3-azure-mgmt-resource
+not-installed"python3-azure-mgmt-scheduler
+not-installed"python3-azure-mgmt-search
+not-installed"python3-azure-mgmt-security
+not-installed"python3-azure-mgmt-servermanager
+not-installed"python3-azure-mgmt-servicebus
+not-installed"python3-azure-mgmt-servicefabric
+not-installed"python3-azure-mgmt-signalr
+not-installed"python3-azure-mgmt-sql
+not-installed"python3-azure-mgmt-sqlvirtualmachine
+not-installed"python3-azure-mgmt-storage
+not-installed"python3-azure-mgmt-subscription
+not-installed"python3-azure-mgmt-trafficmanager
+not-installed"python3-azure-mgmt-web
+not-installed"python3-azure-monitor
+not-installed"python3-azure-multiapi-storage
+not-installed"python3-azure-nspkg
+not-installed"python3-azure-sdk
+not-installed"python3-azure-servicebus
+not-installed"python3-azure-servicefabric
+not-installed"python3-azure-servicemanagement-legacy
+not-installed"python3-azure-storage
+not-installed"python3-azure-storage-blob
+not-installed"python3-azure-storage-common
+not-installed"python3-azure-storage-file
+not-installed"python3-azure-storage-nspkg
+not-installed"python3-azure-storage-queue
+not-installed"python3-azurectl
+not-installed"python3-babelfish
+not-installed"python3-babeltrace
+not-installed"python3-backcall
+not-installed"python3-backoff
+not-installed"python3-backports
+not-installed"python3-backports.ssl_match_hostname
+not-installed"python3-backports_abc
+not-installed"python3-bandit
+not-installed"python3-barbicanclient
+not-installed"python3-baron
+installed"python3-base
+not-installed"python3-base-32bit
+not-installed"python3-bashate
+not-installed"python3-bcc
+not-installed"python3-bcolz
+installed"python3-bcrypt
+installed"python3-beautifulsoup4
+not-installed"python3-behave
+not-installed"python3-bencode
+not-installed"python3-beniget
+not-installed"python3-betamax
+not-installed"python3-betamax-matchers
+not-installed"python3-bibtexparser
+not-installed"python3-bidict
+not-installed"python3-billiard
+not-installed"python3-binary
+not-installed"python3-binaryornot
+installed"python3-bind
+not-installed"python3-bindep
+not-installed"python3-biopython
+not-installed"python3-biplist
+not-installed"python3-bitstring
+not-installed"python3-bjoern
+not-installed"python3-black
+not-installed"python3-bleach
+not-installed"python3-blessed
+not-installed"python3-blessings
+not-installed"python3-blindspin
+installed"python3-blinker
+not-installed"python3-blist
+not-installed"python3-blockdiag
+not-installed"python3-blosc
+not-installed"python3-bloscpack
+not-installed"python3-bobo
+not-installed"python3-bobodoctestumentation
+not-installed"python3-bokeh
+not-installed"python3-boltons
+not-installed"python3-boost_parallel_mpi
+not-installed"python3-boost_parallel_mpi1_69_0
+not-installed"python3-botan
+not-installed"python3-boto
+not-installed"python3-boto3
+not-installed"python3-botocore
+not-installed"python3-bottle
+not-installed"python3-bpython
+not-installed"python3-bqplot
+not-installed"python3-branca
+not-installed"python3-breathe
+not-installed"python3-brewer2mpl
+not-installed"python3-brlapi
+installed"python3-brotlipy
+not-installed"python3-bsddb3
+not-installed"python3-bsddb3-devel
+not-installed"python3-bson
+not-installed"python3-bugzilla
+not-installed"python3-bugzillatools
+not-installed"python3-buku
+not-installed"python3-buku-bash-completion
+not-installed"python3-buku-fish-completion
+not-installed"python3-buku-zsh-completion
+not-installed"python3-cPyparsing
+not-installed"python3-caca
+not-installed"python3-cached-property
+not-installed"python3-cachetools
+not-installed"python3-cachey
+not-installed"python3-caffe
+not-installed"python3-caffe-gnu-hpc
+not-installed"python3-caffe_1_0-gnu-hpc
+not-installed"python3-cairocffi
+not-installed"python3-cairocffi-pixbuf
+not-installed"python3-caldav
+not-installed"python3-calysto
+not-installed"python3-cangjie
+not-installed"python3-canonicaljson
+not-installed"python3-capng
+not-installed"python3-capturer
+not-installed"python3-case
+not-installed"python3-cassandra-driver
+not-installed"python3-cassowary
+not-installed"python3-castellan
+not-installed"python3-casttube
+not-installed"python3-catkin-pkg
+not-installed"python3-cbor
+not-installed"python3-cbor2
+not-installed"python3-ccm
+not-installed"python3-celery
+not-installed"python3-celery-batches
+not-installed"python3-celerymon
+not-installed"python3-ceph-argparse
+not-installed"python3-cephfs
+not-installed"python3-cerealizer
+not-installed"python3-certbot
+not-installed"python3-certbot-apache
+not-installed"python3-certbot-dns-cloudflare
+not-installed"python3-certbot-dns-cloudxns
+not-installed"python3-certbot-dns-digitalocean
+not-installed"python3-certbot-dns-dnsimple
+not-installed"python3-certbot-dns-dnsmadeeasy
+not-installed"python3-certbot-dns-google
+not-installed"python3-certbot-dns-luadns
+not-installed"python3-certbot-dns-nsone
+not-installed"python3-certbot-dns-rfc2136
+not-installed"python3-certbot-dns-route53
+not-installed"python3-certbot-nginx
+installed"python3-certifi
+not-installed"python3-certstream
+installed"python3-cffi
+not-installed"python3-cfgv
+not-installed"python3-cfn-lint
+not-installed"python3-cfscrape
+not-installed"python3-cftime
+not-installed"python3-chai
+installed"python3-chardet
+not-installed"python3-chart-studio
+not-installed"python3-check-manifest
+not-installed"python3-cheroot
+not-installed"python3-chest
+not-installed"python3-cinderclient
+not-installed"python3-ciscoconfparse
+not-installed"python3-cl
+not-installed"python3-clang
+not-installed"python3-cli-helpers
+not-installed"python3-click
+not-installed"python3-click-aliases
+not-installed"python3-click-completion
+not-installed"python3-click-didyoumean
+not-installed"python3-click-help-colors
+not-installed"python3-click-log
+not-installed"python3-click-plugins
+not-installed"python3-click-spinner
+not-installed"python3-click-threading
+not-installed"python3-cliff
+not-installed"python3-cligj
+not-installed"python3-clinkgrammar
+not-installed"python3-clint
+not-installed"python3-cloud-init-seed
+not-installed"python3-cloudflare
+not-installed"python3-cloudpickle
+not-installed"python3-cluster
+not-installed"python3-cluster-preflight-check
+not-installed"python3-clustershell
+not-installed"python3-cmarkgfm
+not-installed"python3-cmd2
+installed"python3-cmdln
+not-installed"python3-coards
+not-installed"python3-coconut
+not-installed"python3-codecov
+not-installed"python3-cogapp
+not-installed"python3-colander
+not-installed"python3-colander-doc
+not-installed"python3-colander-lang
+not-installed"python3-colorama
+not-installed"python3-colorcet
+not-installed"python3-colorclass
+not-installed"python3-coloredlogs
+not-installed"python3-colorlog
+not-installed"python3-colorlover
+not-installed"python3-colormap
+not-installed"python3-colorspacious
+not-installed"python3-colour
+not-installed"python3-combi
+not-installed"python3-compizconfig
+not-installed"python3-concurrentloghandler
+not-installed"python3-configargparse
+installed"python3-configobj
+not-installed"python3-configshell-fb
+not-installed"python3-confluent-kafka
+not-installed"python3-confusable-homoglyphs
+installed"python3-constantly
+not-installed"python3-construct
+not-installed"python3-contexter
+not-installed"python3-contextlib2
+not-installed"python3-contextvars
+not-installed"python3-control
+not-installed"python3-cookies
+not-installed"python3-cooldict
+not-installed"python3-coreapi
+not-installed"python3-coreapi-cli
+not-installed"python3-coreschema
+not-installed"python3-cotyledon
+not-installed"python3-cov-core
+not-installed"python3-coverage
+not-installed"python3-coverage-config-reload-plugin
+not-installed"python3-coverage-env-plugin
+not-installed"python3-coveralls
+not-installed"python3-coveralls-check
+not-installed"python3-cppclean
+not-installed"python3-cpplint
+not-installed"python3-cracklib
+not-installed"python3-cram
+not-installed"python3-crayons
+not-installed"python3-crcmod
+installed"python3-createrepo_c
+not-installed"python3-croniter
+not-installed"python3-crumbs
+installed"python3-cryptography
+not-installed"python3-cryptography-vectors
+not-installed"python3-css-parser
+not-installed"python3-csscompressor
+not-installed"python3-cssselect
+not-installed"python3-cssselect2
+not-installed"python3-cssutils
+not-installed"python3-csvkit
+not-installed"python3-ctypesgen
+not-installed"python3-cufflinks
+installed"python3-cupshelpers
+not-installed"python3-curio
+installed"python3-curses
+not-installed"python3-cursive
+not-installed"python3-curtsies
+not-installed"python3-cx_Freeze
+not-installed"python3-cymruwhois
+not-installed"python3-cyordereddict
+not-installed"python3-cytoolz
+not-installed"python3-d2to1
+not-installed"python3-daemonize
+not-installed"python3-daiquiri
+not-installed"python3-dash
+not-installed"python3-dask
+not-installed"python3-dask-all
+not-installed"python3-dask-array
+not-installed"python3-dask-bag
+not-installed"python3-dask-dataframe
+not-installed"python3-dask-distributed
+not-installed"python3-dask-dot
+not-installed"python3-dask-multiprocessing
+not-installed"python3-datashader
+not-installed"python3-datrie
+not-installed"python3-dbf
+not-installed"python3-dbfread
+installed"python3-dbm
+installed"python3-dbus-python
+not-installed"python3-dbus-python-devel
+not-installed"python3-ddg3
+not-installed"python3-ddt
+not-installed"python3-debian
+not-installed"python3-debtcollector
+installed"python3-decorator
+not-installed"python3-defusedxml
+not-installed"python3-delegator
+not-installed"python3-delegator.py
+not-installed"python3-deltarpm
+not-installed"python3-demjson
+not-installed"python3-dennis
+not-installed"python3-dephell-archive
+not-installed"python3-dephell-discover
+not-installed"python3-dephell-licenses
+not-installed"python3-dephell-links
+not-installed"python3-dephell-markers
+not-installed"python3-dephell-pythons
+not-installed"python3-dephell-shells
+not-installed"python3-dephell-specifier
+not-installed"python3-dephell-venvs
+not-installed"python3-deprecation
+not-installed"python3-derpconf
+not-installed"python3-devel
+not-installed"python3-dfdatetime
+not-installed"python3-dfwinreg
+not-installed"python3-dialite
+not-installed"python3-dicttoxml
+not-installed"python3-diff_match_patch
+not-installed"python3-digitalocean
+not-installed"python3-dill
+not-installed"python3-dirtyjson
+installed"python3-discid
+installed"python3-discogs-client
+not-installed"python3-diskcache
+not-installed"python3-distlib
+not-installed"python3-distorm3
+not-installed"python3-distributed
+not-installed"python3-distro
+not-installed"python3-distroinfo
+not-installed"python3-distutils-extra
+not-installed"python3-dj-database-url
+not-installed"python3-django-allauth
+not-installed"python3-django-allauth-lang
+not-installed"python3-django-appconf
+not-installed"python3-django-auth-ldap
+not-installed"python3-django-avatar
+not-installed"python3-django-babel
+not-installed"python3-django-braces
+not-installed"python3-django-ckeditor
+not-installed"python3-django-classy-tags
+not-installed"python3-django-contrib-comments
+not-installed"python3-django-cors-headers
+not-installed"python3-django-crispy-forms
+not-installed"python3-django-debreach
+not-installed"python3-django-debug-toolbar
+not-installed"python3-django-environ
+not-installed"python3-django-extensions
+not-installed"python3-django-filter
+not-installed"python3-django-formtools
+not-installed"python3-django-grappelli
+not-installed"python3-django-guardian
+not-installed"python3-django-invitations
+not-installed"python3-django-jinja
+not-installed"python3-django-js-asset
+not-installed"python3-django-json-widget
+not-installed"python3-django-jsonfield
+not-installed"python3-django-minio-storage
+not-installed"python3-django-model-utils
+not-installed"python3-django-nine
+not-installed"python3-django-nose
+not-installed"python3-django-oauth-toolkit
+not-installed"python3-django-oidc-provider
+not-installed"python3-django-picklefield
+not-installed"python3-django-pipeline
+not-installed"python3-django-pyscss
+not-installed"python3-django-redis
+not-installed"python3-django-registration
+not-installed"python3-django-rest-framework-client
+not-installed"python3-django-rest-framework-social-oauth2
+not-installed"python3-django-rest-invitations
+not-installed"python3-django-rest-knox
+not-installed"python3-django-reversion
+not-installed"python3-django-seed
+not-installed"python3-django-sekizai
+not-installed"python3-django-silk
+not-installed"python3-django-storages
+not-installed"python3-django-tagging
+not-installed"python3-django-tastypie
+not-installed"python3-django-threadedcomments
+not-installed"python3-django-webpack-loader
+not-installed"python3-django-webtest
+not-installed"python3-django_compressor
+not-installed"python3-django_coverage_plugin
+not-installed"python3-djangorestframework
+not-installed"python3-djangorestframework-simplejwt
+not-installed"python3-djet
+not-installed"python3-djvulibre
+not-installed"python3-dnf
+not-installed"python3-dnf-plugin-leaves
+not-installed"python3-dnf-plugin-local
+not-installed"python3-dnf-plugin-rpmconf
+not-installed"python3-dnf-plugin-show-leaves
+not-installed"python3-dnf-plugin-snapper
+not-installed"python3-dnf-plugin-system-upgrade
+not-installed"python3-dnf-plugin-torproxy
+not-installed"python3-dnf-plugin-versionlock
+not-installed"python3-dnf-plugins-core
+not-installed"python3-dnf-plugins-extras-common
+not-installed"python3-dns-lexicon
+not-installed"python3-dnspython
+not-installed"python3-doc
+not-installed"python3-doc-devhelp
+not-installed"python3-docformatter
+not-installed"python3-docker
+not-installed"python3-docker-compose
+not-installed"python3-docker-pycreds
+not-installed"python3-dockerpty
+not-installed"python3-docopt
+not-installed"python3-docrepr
+not-installed"python3-docutils
+not-installed"python3-docutils-ast-writer
+not-installed"python3-dogpile.cache
+not-installed"python3-dominate
+not-installed"python3-dparse
+not-installed"python3-dpcontracts
+not-installed"python3-dpkt
+not-installed"python3-drf-jwt-knox
+not-installed"python3-drf-nested-routers
+not-installed"python3-drms
+not-installed"python3-dropbox
+not-installed"python3-duckduckgo2
+not-installed"python3-dukpy
+not-installed"python3-dukpy-kovidgoyal
+not-installed"python3-dulwich
+not-installed"python3-dynaconf
+not-installed"python3-easydev
+not-installed"python3-easygui
+not-installed"python3-easypysmb
+not-installed"python3-easywatch
+not-installed"python3-ebcdic
+not-installed"python3-ec2imgutils
+installed"python3-ecdsa
+not-installed"python3-editdistance
+not-installed"python3-editdistance-devel
+not-installed"python3-efl
+not-installed"python3-efl-doc
+not-installed"python3-efl-examples
+not-installed"python3-elasticsearch
+not-installed"python3-eliot
+not-installed"python3-email_validator
+not-installed"python3-emoji
+not-installed"python3-empy
+not-installed"python3-enable
+not-installed"python3-enable-kiva
+not-installed"python3-enaml
+not-installed"python3-encore
+not-installed"python3-entrypoint2
+not-installed"python3-entrypoints
+not-installed"python3-environmental-override
+not-installed"python3-envisage
+not-installed"python3-enzyme
+not-installed"python3-eradicate
+not-installed"python3-espeak
+not-installed"python3-espressomd
+not-installed"python3-esptool
+not-installed"python3-et_xmlfile
+not-installed"python3-etcd
+not-installed"python3-etcd-test
+not-installed"python3-ethtool
+installed"python3-evdev
+not-installed"python3-evemu
+not-installed"python3-eventlet
+not-installed"python3-evtx
+not-installed"python3-exam
+not-installed"python3-execnet
+not-installed"python3-exiv2
+not-installed"python3-expects
+not-installed"python3-experimentator
+not-installed"python3-exrex
+not-installed"python3-extras
+not-installed"python3-extratools
+not-installed"python3-ez_setup
+not-installed"python3-factory_boy
+not-installed"python3-fake-useragent
+not-installed"python3-fakeredis
+not-installed"python3-falcon
+not-installed"python3-fanficfare
+not-installed"python3-fann2
+not-installed"python3-fastTSNE
+not-installed"python3-fastcluster
+not-installed"python3-fasteners
+not-installed"python3-fastimport
+not-installed"python3-fastnumbers
+not-installed"python3-fastparquet
+not-installed"python3-fb-re2
+not-installed"python3-featureflow
+not-installed"python3-fedmsg
+not-installed"python3-feedgenerator
+not-installed"python3-feedparser
+not-installed"python3-fido2
+not-installed"python3-fields
+not-installed"python3-fife
+not-installed"python3-filelock
+not-installed"python3-finance_enums
+not-installed"python3-fire
+installed"python3-firewall
+not-installed"python3-first
+not-installed"python3-fixtures
+not-installed"python3-flake8
+not-installed"python3-flake8-blind-except
+not-installed"python3-flake8-bugbear
+not-installed"python3-flake8-builtins
+not-installed"python3-flake8-class-newline
+not-installed"python3-flake8-comprehensions
+not-installed"python3-flake8-debugger
+not-installed"python3-flake8-deprecated
+not-installed"python3-flake8-docstrings
+not-installed"python3-flake8-future-import
+not-installed"python3-flake8-import-order
+not-installed"python3-flake8-imports
+not-installed"python3-flake8-polyfill
+not-installed"python3-flake8-pyi
+not-installed"python3-flake8-quotes
+not-installed"python3-flaky
+not-installed"python3-flasgger
+not-installed"python3-flask-jwt-extended
+not-installed"python3-flask-mongoengine
+not-installed"python3-flask-peewee
+not-installed"python3-flask-restplus
+not-installed"python3-flatbuffers
+not-installed"python3-flex
+not-installed"python3-flexmock
+not-installed"python3-flexx
+not-installed"python3-flickrapi
+not-installed"python3-flit
+not-installed"python3-flower
+not-installed"python3-fluent
+not-installed"python3-fluidity-sm
+not-installed"python3-flup
+not-installed"python3-forbiddenfruit
+not-installed"python3-freetype-py
+not-installed"python3-freezegun
+not-installed"python3-freezerclient
+not-installed"python3-frozendict
+not-installed"python3-fs
+not-installed"python3-fsspec
+not-installed"python3-ftfy
+not-installed"python3-ftputil
+not-installed"python3-fudge
+not-installed"python3-funcparserlib
+not-installed"python3-funcy
+not-installed"python3-furl
+not-installed"python3-fuse
+not-installed"python3-fusepy
+not-installed"python3-future
+not-installed"python3-futurist
+not-installed"python3-fysom
+not-installed"python3-gTTS
+not-installed"python3-gTTS-token
+not-installed"python3-gabbi
+not-installed"python3-gast
+not-installed"python3-gcemetadata
+not-installed"python3-gcsfs
+not-installed"python3-gcsfs-fuse
+not-installed"python3-gear
+not-installed"python3-ged4py
+not-installed"python3-gedit
+not-installed"python3-geis
+not-installed"python3-genty
+not-installed"python3-geographiclib
+not-installed"python3-geoip2
+not-installed"python3-geojson
+not-installed"python3-geolib
+not-installed"python3-geolinks
+not-installed"python3-geopy
+not-installed"python3-gevent
+not-installed"python3-geventhttpclient
+not-installed"python3-gexiv2
+not-installed"python3-ggplot
+not-installed"python3-girder-client
+not-installed"python3-git-pw
+not-installed"python3-git-url-parse
+not-installed"python3-gitdb2
+not-installed"python3-github3.py
+not-installed"python3-gitlint
+not-installed"python3-glanceclient
+not-installed"python3-glean
+not-installed"python3-glfw
+not-installed"python3-glob2
+not-installed"python3-glom
+not-installed"python3-gmconfig
+not-installed"python3-gmpy
+not-installed"python3-gmpy2
+not-installed"python3-gnucash
+installed"python3-gobject
+not-installed"python3-gobject-Dee
+installed"python3-gobject-Gdk
+installed"python3-gobject-cairo
+not-installed"python3-gobject-devel
+not-installed"python3-gobject2
+not-installed"python3-gobject2-devel
+not-installed"python3-gogs_client
+not-installed"python3-gom
+not-installed"python3-google-api-core
+not-installed"python3-google-api-python-client
+not-installed"python3-google-auth
+not-installed"python3-google-auth-httplib2
+not-installed"python3-google-auth-oauthlib
+not-installed"python3-google-cloud-core
+not-installed"python3-google-cloud-kms
+not-installed"python3-google-cloud-speech
+not-installed"python3-google-cloud-storage
+not-installed"python3-google-resumable-media
+not-installed"python3-googleapis-common-protos
+not-installed"python3-googlemaps
+not-installed"python3-gpg
+not-installed"python3-gpgme
+not-installed"python3-gphoto2
+not-installed"python3-gprof2dot
+not-installed"python3-gpsd
+not-installed"python3-grab
+not-installed"python3-graphviz
+not-installed"python3-greenlet
+not-installed"python3-greenlet-devel
+not-installed"python3-grpc-google-iam-v1
+not-installed"python3-grpcio
+not-installed"python3-grpcio-gcp
+not-installed"python3-gscholar
+not-installed"python3-gspread
+not-installed"python3-gssapi
+not-installed"python3-gst
+not-installed"python3-gsw
+not-installed"python3-guessit
+not-installed"python3-gunicorn
+not-installed"python3-guzzle_sphinx_theme
+not-installed"python3-h11
+installed"python3-h2
+not-installed"python3-h5py
+not-installed"python3-hankel
+not-installed"python3-happybase
+not-installed"python3-haproxyctl
+not-installed"python3-hawkauthlib
+not-installed"python3-hawkey
+not-installed"python3-hdf5storage
+not-installed"python3-heatclient
+not-installed"python3-hetzner
+not-installed"python3-hetznercloud
+not-installed"python3-hexdump
+not-installed"python3-hiredis
+not-installed"python3-hkdf
+not-installed"python3-hl7apy
+not-installed"python3-holidays
+not-installed"python3-holoviews
+installed"python3-hpack
+not-installed"python3-html2text
+not-installed"python3-html5-parser
+not-installed"python3-html5lib
+not-installed"python3-htmlmin
+not-installed"python3-httmock
+not-installed"python3-http-parser
+not-installed"python3-httpbin
+not-installed"python3-httpie
+not-installed"python3-httplib2
+not-installed"python3-httpretty
+not-installed"python3-httpsig_cffi
+not-installed"python3-humanfriendly
+not-installed"python3-humanhash3
+not-installed"python3-humanize
+not-installed"python3-hupper
+not-installed"python3-husl
+not-installed"python3-hvplot
+not-installed"python3-hyper
+installed"python3-hyperframe
+installed"python3-hyperlink
+not-installed"python3-hypothesis
+not-installed"python3-hypothesis-fspaths
+not-installed"python3-icalendar
+not-installed"python3-identify
+not-installed"python3-idle
+installed"python3-idna
+not-installed"python3-idna_ssl
+not-installed"python3-ifaddr
+not-installed"python3-imageio
+not-installed"python3-imageio-ffmpeg
+not-installed"python3-imagesize
+not-installed"python3-imbox
+not-installed"python3-img2pdf
+not-installed"python3-iminuit
+not-installed"python3-immutables
+not-installed"python3-importlab
+not-installed"python3-importlib-metadata
+not-installed"python3-imread
+installed"python3-incremental
+not-installed"python3-infinity
+not-installed"python3-inflect
+not-installed"python3-inflection
+not-installed"python3-influxdb
+not-installed"python3-inifile
+not-installed"python3-iniparse
+not-installed"python3-injector
+not-installed"python3-inspektor
+not-installed"python3-intake
+not-installed"python3-intervals
+not-installed"python3-intervaltree
+not-installed"python3-invocations
+not-installed"python3-invoke
+not-installed"python3-iocapture
+not-installed"python3-ioflo
+not-installed"python3-ipa
+not-installed"python3-ipa-tests
+not-installed"python3-ipa_hbac
+installed"python3-ipaddr
+not-installed"python3-ipdb
+not-installed"python3-iptables
+not-installed"python3-ipy
+not-installed"python3-ipydatawidgets
+not-installed"python3-ipykernel
+not-installed"python3-ipyleaflet
+not-installed"python3-ipympl
+not-installed"python3-ipyparallel
+not-installed"python3-ipyscales
+not-installed"python3-ipysheet
+not-installed"python3-ipython
+not-installed"python3-ipython-iptest
+not-installed"python3-ipython_genutils
+not-installed"python3-ipyvolume
+not-installed"python3-ipywebrtc
+not-installed"python3-ipywidgets
+not-installed"python3-irc
+not-installed"python3-ironicclient
+not-installed"python3-iso8601
+not-installed"python3-isodate
+not-installed"python3-isort
+not-installed"python3-itsdangerous
+not-installed"python3-itypes
+not-installed"python3-iwlib
+not-installed"python3-jaraco.base
+not-installed"python3-jaraco.classes
+not-installed"python3-jaraco.collections
+not-installed"python3-jaraco.functools
+not-installed"python3-jaraco.itertools
+not-installed"python3-jaraco.logging
+not-installed"python3-jaraco.packaging
+not-installed"python3-jaraco.stream
+not-installed"python3-jaraco.text
+not-installed"python3-javapackages
+not-installed"python3-jdcal
+not-installed"python3-jedi
+not-installed"python3-jedihttp
+not-installed"python3-jeepney
+installed"python3-jellyfish
+not-installed"python3-jenkins-job-builder
+not-installed"python3-jenkinsapi
+not-installed"python3-jgraph
+not-installed"python3-jinja2-fsloader
+not-installed"python3-jinja2-time
+not-installed"python3-jira
+not-installed"python3-jirafs
+not-installed"python3-jmespath
+not-installed"python3-joblib
+not-installed"python3-josepy
+not-installed"python3-jplephem
+not-installed"python3-jsbeautifier
+not-installed"python3-json-rpc
+not-installed"python3-json5
+not-installed"python3-json_tricks
+not-installed"python3-jsondate
+not-installed"python3-jsondiff
+not-installed"python3-jsonextended
+not-installed"python3-jsonlib-python3
+not-installed"python3-jsonlines
+not-installed"python3-jsonpatch
+not-installed"python3-jsonpath-rw
+not-installed"python3-jsonpath-rw-ext
+not-installed"python3-jsonpickle
+not-installed"python3-jsonpointer
+not-installed"python3-jsonref
+not-installed"python3-jsonrpclib-pelix
+installed"python3-jsonschema
+not-installed"python3-jsonslicer
+not-installed"python3-junitxml
+not-installed"python3-jupyter-contrib-nbextensions
+not-installed"python3-jupyter-datatables
+not-installed"python3-jupyter-nbutils
+not-installed"python3-jupyter-protocol
+not-installed"python3-jupyter-require
+not-installed"python3-jupyter-server
+not-installed"python3-jupyter_client
+not-installed"python3-jupyter_console
+not-installed"python3-jupyter_contrib_core
+not-installed"python3-jupyter_core
+not-installed"python3-jupyter_highlight_selected_word
+not-installed"python3-jupyter_kernel_test
+not-installed"python3-jupyter_latex_envs
+not-installed"python3-jupyter_nbextensions_configurator
+not-installed"python3-jupyter_sphinx
+not-installed"python3-jupyterlab-pygments
+not-installed"python3-jupytext
+not-installed"python3-jwcrypto
+not-installed"python3-k5test
+not-installed"python3-kafka-python
+not-installed"python3-kaitaistruct
+not-installed"python3-kazoo
+not-installed"python3-keepalive
+not-installed"python3-kerberos
+not-installed"python3-keyczar
+not-installed"python3-keyring
+not-installed"python3-keyrings.alt
+not-installed"python3-keystoneauth1
+not-installed"python3-keystoneclient
+not-installed"python3-keystonemiddleware
+not-installed"python3-kitchen
+not-installed"python3-kiwi
+not-installed"python3-kiwisolver
+not-installed"python3-kmatch
+not-installed"python3-kmod
+not-installed"python3-knack
+not-installed"python3-kombu
+not-installed"python3-kopano
+not-installed"python3-kubernetes
+not-installed"python3-l20n
+not-installed"python3-lancet-ioam
+not-installed"python3-language-check
+not-installed"python3-lark-parser
+not-installed"python3-latexcodec
+not-installed"python3-lazr.uri
+not-installed"python3-lazy
+not-installed"python3-lazy-object-proxy
+not-installed"python3-lazyarray
+not-installed"python3-ldap
+not-installed"python3-ldap3
+not-installed"python3-ldappool
+installed"python3-ldb
+not-installed"python3-ldb-32bit
+not-installed"python3-ldb-devel
+not-installed"python3-ldns
+not-installed"python3-leather
+not-installed"python3-lensfun
+not-installed"python3-lesscpy
+not-installed"python3-leveldb
+not-installed"python3-lexicon
+not-installed"python3-lhafile
+not-installed"python3-lib3to6
+not-installed"python3-libaccounts
+not-installed"python3-libarchive
+not-installed"python3-libarchive-c
+not-installed"python3-libbde
+not-installed"python3-libblockdev
+not-installed"python3-libbytesize
+not-installed"python3-libcec
+not-installed"python3-libcomps
+not-installed"python3-libdnf
+not-installed"python3-libewf
+not-installed"python3-libfsntfs
+not-installed"python3-libftdi1
+not-installed"python3-libfvde
+not-installed"python3-libfwnt
+not-installed"python3-libguestfs
+not-installed"python3-libixion
+not-installed"python3-liblarch
+not-installed"python3-liblarch-gtk
+not-installed"python3-libmodulemd
+not-installed"python3-libmount
+not-installed"python3-libnacl
+not-installed"python3-liborcus
+not-installed"python3-libpamtest
+not-installed"python3-libpfm
+not-installed"python3-libprelude
+not-installed"python3-libpreludedb
+not-installed"python3-libproxy
+not-installed"python3-libqcow
+not-installed"python3-librepo
+not-installed"python3-librosa
+not-installed"python3-libsass
+not-installed"python3-libscca
+not-installed"python3-libsigscan
+not-installed"python3-libsmdev
+not-installed"python3-libsmraw
+not-installed"python3-libsoc
+not-installed"python3-libstoragemgmt
+not-installed"python3-libstoragemgmt-clibs
+not-installed"python3-libtorrent-rasterbar
+not-installed"python3-libunity
+not-installed"python3-libusb1
+not-installed"python3-libvhdi
+installed"python3-libvirt-python
+not-installed"python3-libvmdk
+not-installed"python3-libvoikko
+not-installed"python3-libvshadow
+not-installed"python3-libvslvm
+installed"python3-libxml2-python
+not-installed"python3-lilv
+not-installed"python3-limnoria
+not-installed"python3-line_profiler
+not-installed"python3-linecache2
+not-installed"python3-lineup-widget
+installed"python3-linux-procfs
+not-installed"python3-lit
+not-installed"python3-lldb
+not-installed"python3-lldb6
+not-installed"python3-lldb7
+not-installed"python3-lldb8
+not-installed"python3-llfuse
+not-installed"python3-llvmlite
+not-installed"python3-lmdb
+not-installed"python3-lmfit
+not-installed"python3-lml
+not-installed"python3-localzone
+not-installed"python3-locket
+not-installed"python3-lockfile
+not-installed"python3-logilab-astng
+not-installed"python3-logilab-common
+not-installed"python3-logreduce
+not-installed"python3-loguru
+not-installed"python3-logutils
+not-installed"python3-logzero
+not-installed"python3-louis
+not-installed"python3-lttngust
+not-installed"python3-lupa
+not-installed"python3-lxml
+not-installed"python3-lxml-devel
+not-installed"python3-lz4
+not-installed"python3-lzmaffi
+not-installed"python3-m2r
+not-installed"python3-macholib
+not-installed"python3-magic
+not-installed"python3-magic-wormhole
+not-installed"python3-magic-wormhole-mailbox-server
+not-installed"python3-magic-wormhole-transit-relay
+not-installed"python3-magnumclient
+not-installed"python3-managesieve
+not-installed"python3-mando
+not-installed"python3-manilaclient
+not-installed"python3-manuel
+not-installed"python3-manuel-doc
+not-installed"python3-mapi
+not-installed"python3-marathon
+not-installed"python3-markdown-math
+not-installed"python3-markdown2
+not-installed"python3-marshmallow
+not-installed"python3-matplotlib
+not-installed"python3-matplotlib-cairo
+not-installed"python3-matplotlib-gtk3
+not-installed"python3-matplotlib-latex
+not-installed"python3-matplotlib-qt-shared
+not-installed"python3-matplotlib-qt5
+not-installed"python3-matplotlib-tk
+not-installed"python3-matplotlib-web
+not-installed"python3-matplotlib-wx
+not-installed"python3-matrix-synapse
+not-installed"python3-matrix-synapse-ldap3
+not-installed"python3-maxminddb
+not-installed"python3-mbstrdecoder
+not-installed"python3-mccabe
+not-installed"python3-md2workflow
+not-installed"python3-mechanize
+not-installed"python3-meld3
+not-installed"python3-memory_profiler
+not-installed"python3-metaextract
+not-installed"python3-metakernel
+not-installed"python3-metamagic.json
+not-installed"python3-mimesis
+not-installed"python3-minidb
+not-installed"python3-minio
+not-installed"python3-miniupnpc
+not-installed"python3-mistune
+not-installed"python3-moban
+not-installed"python3-mock
+not-installed"python3-mockldap
+not-installed"python3-modernize
+not-installed"python3-mohawk
+not-installed"python3-moksha-common
+not-installed"python3-moksha-hub
+not-installed"python3-monascaclient
+not-installed"python3-mongoengine
+not-installed"python3-monotonic
+not-installed"python3-more-itertools
+not-installed"python3-moretools
+not-installed"python3-moto
+not-installed"python3-moviepy
+not-installed"python3-mox3
+not-installed"python3-mpi4py
+not-installed"python3-mpi4py-devel
+not-installed"python3-mpmath
+not-installed"python3-mraa
+not-installed"python3-msgpack
+not-installed"python3-msgpack-numpy
+not-installed"python3-msk
+not-installed"python3-msm
+not-installed"python3-msoffcrypto-tool
+not-installed"python3-msrest
+not-installed"python3-msrestazure
+not-installed"python3-mujson
+not-installed"python3-mulpyplexer
+not-installed"python3-multi_key_dict
+not-installed"python3-multidict
+not-installed"python3-multipledispatch
+not-installed"python3-munch
+installed"python3-munkres
+installed"python3-musicbrainzngs
+installed"python3-mutagen
+not-installed"python3-mutt-ics
+not-installed"python3-mygpoclient
+not-installed"python3-mypy_extensions
+not-installed"python3-mysql-connector-python
+installed"python3-mysqlclient
+not-installed"python3-nagiosplugin
+not-installed"python3-natsort
+not-installed"python3-nautilus
+not-installed"python3-nautilus-devel
+not-installed"python3-nbconvert
+not-installed"python3-nbdime
+not-installed"python3-nbformat
+not-installed"python3-nbindex-jupyter
+not-installed"python3-nbinteract
+not-installed"python3-nbsmoke
+not-installed"python3-nbsphinx
+not-installed"python3-nbsphinx-link
+not-installed"python3-nbval
+not-installed"python3-nbxmpp
+not-installed"python3-nbxmpp-doc
+not-installed"python3-ncclient
+installed"python3-ndg-httpsclient
+not-installed"python3-neovim
+not-installed"python3-neovim-remote
+not-installed"python3-net-snmp
+not-installed"python3-netCDF4
+not-installed"python3-netaddr
+not-installed"python3-netifaces
+not-installed"python3-netmiko
+not-installed"python3-networkx
+not-installed"python3-neutronclient
+not-installed"python3-newt
+not-installed"python3-nghttp2
+not-installed"python3-nibabel
+not-installed"python3-nilearn
+not-installed"python3-nine
+not-installed"python3-nltk
+not-installed"python3-node-semver
+not-installed"python3-nose
+not-installed"python3-nose-cov
+not-installed"python3-nose-cover3
+not-installed"python3-nose-exclude
+not-installed"python3-nose-progressive
+not-installed"python3-nose-timer
+not-installed"python3-nose2
+not-installed"python3-nose_warnings_filters
+not-installed"python3-nosexcover
+not-installed"python3-notebook
+not-installed"python3-notebook-lang
+not-installed"python3-notify2
+not-installed"python3-notmuch
+not-installed"python3-novaclient
+not-installed"python3-nss
+not-installed"python3-ntfy
+not-installed"python3-ntlm-auth
+not-installed"python3-ntp
+not-installed"python3-ntplib
+not-installed"python3-num2words
+not-installed"python3-numba
+not-installed"python3-numba-devel
+not-installed"python3-numericalunits
+not-installed"python3-numexpr
+not-installed"python3-numpy
+not-installed"python3-numpy-devel
+not-installed"python3-numpy-gnu-hpc
+not-installed"python3-numpy-gnu-hpc-devel
+not-installed"python3-numpy_1_17_0-gnu-hpc
+not-installed"python3-numpy_1_17_0-gnu-hpc-devel
+not-installed"python3-numpydoc
+not-installed"python3-nwdiag
+not-installed"python3-oauth2
+not-installed"python3-oauth2client
+not-installed"python3-oauth2client-flask
+not-installed"python3-oauth2client-gce
+installed"python3-oauthlib
+not-installed"python3-objgraph
+not-installed"python3-oct2py
+not-installed"python3-octave-kernel
+not-installed"python3-octaviaclient
+not-installed"python3-odfpy
+not-installed"python3-odorik
+not-installed"python3-oic
+installed"python3-olefile
+not-installed"python3-onionshare
+not-installed"python3-openapi-core
+not-installed"python3-openapi-spec-validator
+not-installed"python3-opencv
+not-installed"python3-opencv3
+not-installed"python3-opengl
+not-installed"python3-opengl-accelerate
+not-installed"python3-openmesh
+not-installed"python3-openpyxl
+not-installed"python3-openqa_client
+not-installed"python3-openqa_review
+not-installed"python3-openshot
+not-installed"python3-openstack.nose_plugin
+not-installed"python3-openstackclient
+not-installed"python3-openstackdocstheme
+not-installed"python3-openstacksdk
+not-installed"python3-openwsman
+not-installed"python3-ordered-namespace
+not-installed"python3-ordered-set
+not-installed"python3-orderedmultidict
+not-installed"python3-os-api-ref
+not-installed"python3-os-client-config
+not-installed"python3-os-service-types
+not-installed"python3-os-testr
+not-installed"python3-os-win
+not-installed"python3-osc-lib
+not-installed"python3-oscrypto
+not-installed"python3-osdlyrics
+not-installed"python3-oslo.cache
+not-installed"python3-oslo.concurrency
+not-installed"python3-oslo.config
+not-installed"python3-oslo.context
+not-installed"python3-oslo.db
+not-installed"python3-oslo.i18n
+not-installed"python3-oslo.log
+not-installed"python3-oslo.messaging
+not-installed"python3-oslo.middleware
+not-installed"python3-oslo.policy
+not-installed"python3-oslo.privsep
+not-installed"python3-oslo.reports
+not-installed"python3-oslo.rootwrap
+not-installed"python3-oslo.serialization
+not-installed"python3-oslo.service
+not-installed"python3-oslo.utils
+not-installed"python3-oslo.versionedobjects
+not-installed"python3-oslo.vmware
+not-installed"python3-oslosphinx
+not-installed"python3-oslotest
+not-installed"python3-osmviz
+not-installed"python3-osprofiler
+not-installed"python3-outcome
+not-installed"python3-ovirt-engine-sdk
+not-installed"python3-ovs
+not-installed"python3-ovsdbapp
+not-installed"python3-pa-ringbuffer
+installed"python3-packaging
+not-installed"python3-padaos
+not-installed"python3-padatious
+not-installed"python3-paho-mqtt
+not-installed"python3-pako
+not-installed"python3-palettable
+not-installed"python3-pampy
+not-installed"python3-pamqp
+not-installed"python3-pandas
+not-installed"python3-pandas-datareader
+not-installed"python3-pandocfilters
+not-installed"python3-panflute
+not-installed"python3-parallax
+not-installed"python3-param
+not-installed"python3-parameterized
+not-installed"python3-paramiko
+not-installed"python3-paramiko-expect
+not-installed"python3-parfive
+not-installed"python3-parse
+not-installed"python3-parse_type
+not-installed"python3-parsedatetime
+not-installed"python3-parsel
+not-installed"python3-parso
+not-installed"python3-partd
+not-installed"python3-parted
+not-installed"python3-parver
+not-installed"python3-pass_python_keyring
+not-installed"python3-passa
+not-installed"python3-passivetotal
+not-installed"python3-passlib
+not-installed"python3-pastream
+not-installed"python3-path.py
+not-installed"python3-pathlib
+not-installed"python3-pathlib2
+not-installed"python3-pathspec
+not-installed"python3-pathtools
+not-installed"python3-patsy
+not-installed"python3-pbkdf2
+not-installed"python3-pbr
+not-installed"python3-pcp
+not-installed"python3-pdd
+not-installed"python3-pdfkit
+not-installed"python3-pdfrw
+not-installed"python3-pecan
+not-installed"python3-peewee
+not-installed"python3-pefile
+not-installed"python3-pelican
+not-installed"python3-pem
+not-installed"python3-pep517
+not-installed"python3-pep8-naming
+not-installed"python3-peppercorn
+not-installed"python3-perfume-bench
+not-installed"python3-persistent
+not-installed"python3-persistent-devel
+not-installed"python3-petact
+not-installed"python3-pexpect
+not-installed"python3-pgmagick
+not-installed"python3-phabricator
+not-installed"python3-phonenumbers
+not-installed"python3-photutils
+not-installed"python3-phply
+not-installed"python3-phue
+not-installed"python3-pick
+not-installed"python3-pickleshare
+not-installed"python3-piexif
+not-installed"python3-pifpaf
+not-installed"python3-pika
+not-installed"python3-pika-pool
+not-installed"python3-pilkit
+installed"python3-pip
+not-installed"python3-pip-api
+not-installed"python3-pip-run
+not-installed"python3-pip-shims
+not-installed"python3-pipdeptree
+not-installed"python3-pipenv
+not-installed"python3-pipreqs
+not-installed"python3-piston-mini-client
+not-installed"python3-pivy
+not-installed"python3-pkgconfig
+not-installed"python3-pkginfo
+not-installed"python3-plaster
+not-installed"python3-plaster-pastedeploy
+not-installed"python3-plette
+not-installed"python3-plotly
+not-installed"python3-plotly-jupyter
+not-installed"python3-plplot
+not-installed"python3-pluggy
+not-installed"python3-plumbum
+installed"python3-ply
+not-installed"python3-plyvel
+not-installed"python3-pmw
+not-installed"python3-pocketsphinx-python
+not-installed"python3-podcastparser
+not-installed"python3-polib
+not-installed"python3-policycoreutils
+not-installed"python3-pony
+not-installed"python3-poppler-qt5
+not-installed"python3-port-for
+not-installed"python3-portalocker
+not-installed"python3-portend
+not-installed"python3-portpicker
+not-installed"python3-positional
+not-installed"python3-posix_ipc
+not-installed"python3-power
+not-installed"python3-poyo
+not-installed"python3-pprintpp
+not-installed"python3-praatio
+not-installed"python3-precis-i18n
+not-installed"python3-precise-runner
+not-installed"python3-preggy
+not-installed"python3-prelude-correlator
+not-installed"python3-premailer
+not-installed"python3-pretend
+not-installed"python3-prewikka
+not-installed"python3-proboscis
+not-installed"python3-process-tests
+not-installed"python3-proglog
+not-installed"python3-progress
+not-installed"python3-progressbar
+not-installed"python3-prometheus_client
+not-installed"python3-promise
+not-installed"python3-prompt_toolkit
+not-installed"python3-prompt_toolkit1
+not-installed"python3-proselint
+installed"python3-protobuf
+not-installed"python3-pscript
+not-installed"python3-psutil
+not-installed"python3-psycopg2
+not-installed"python3-ptpython
+not-installed"python3-ptpython-ptipython
+not-installed"python3-ptyprocess
+not-installed"python3-publicsuffixlist
+not-installed"python3-pudb
+not-installed"python3-pulsectl
+not-installed"python3-pure-sasl
+not-installed"python3-purl
+not-installed"python3-pwquality
+installed"python3-py
+not-installed"python3-py-cpuinfo
+not-installed"python3-py-espeak-ng
+not-installed"python3-py-radix
+not-installed"python3-py-ubjson
+not-installed"python3-py2pack
+not-installed"python3-py3dns
+not-installed"python3-py3status
+not-installed"python3-pyDOE2
+not-installed"python3-pyFFTW
+not-installed"python3-pyLibravatar
+not-installed"python3-pyModis
+not-installed"python3-pyOCD
+installed"python3-pyOpenSSL
+not-installed"python3-pyPEG2
+not-installed"python3-pyRFC3339
+not-installed"python3-pyScss
+not-installed"python3-pyVows
+installed"python3-pyacoustid
+not-installed"python3-pyaes
+not-installed"python3-pyalsaaudio
+not-installed"python3-pyaml
+not-installed"python3-pyannotate
+installed"python3-pyasn1
+installed"python3-pyasn1-modules
+not-installed"python3-pybars3
+not-installed"python3-pybeam
+not-installed"python3-pybind11
+not-installed"python3-pybind11-devel
+not-installed"python3-pyblake2
+not-installed"python3-pybluez
+not-installed"python3-pybtex
+not-installed"python3-pybugz
+not-installed"python3-pycadf
+installed"python3-pycairo
+not-installed"python3-pycairo-devel
+not-installed"python3-pycallgraph
+not-installed"python3-pycares
+not-installed"python3-pycdio
+not-installed"python3-pycha
+not-installed"python3-pycodestyle
+not-installed"python3-pycountry
+installed"python3-pycparser
+not-installed"python3-pycryptodome
+not-installed"python3-pycryptodomex
+not-installed"python3-pycsw
+not-installed"python3-pyct
+installed"python3-pycups
+installed"python3-pycurl
+not-installed"python3-pycxx
+not-installed"python3-pycxx-devel
+not-installed"python3-pydata-google-auth
+not-installed"python3-pydbus
+not-installed"python3-pydenticon
+not-installed"python3-pydicom
+not-installed"python3-pydle
+not-installed"python3-pydocstyle
+not-installed"python3-pydocumentdb
+not-installed"python3-pydot
+not-installed"python3-pydot3
+not-installed"python3-pydotplus
+not-installed"python3-pydub
+not-installed"python3-pyee
+not-installed"python3-pyelftools
+not-installed"python3-pyemd
+not-installed"python3-pyenchant
+not-installed"python3-pyface
+not-installed"python3-pyfakefs
+not-installed"python3-pyfeyn
+not-installed"python3-pyfiglet
+not-installed"python3-pyflakes
+not-installed"python3-pyftpdlib
+not-installed"python3-pyfuse3
+not-installed"python3-pygal
+not-installed"python3-pygaljs
+not-installed"python3-pygame
+not-installed"python3-pygame-devel
+not-installed"python3-pygerrit2
+not-installed"python3-pyghmi
+not-installed"python3-pygit2
+not-installed"python3-pyglet
+not-installed"python3-pygments-ansi-color
+not-installed"python3-pygments-pytest
+not-installed"python3-pygments-style-railscasts
+not-installed"python3-pygraphviz
+not-installed"python3-pyhibp
+not-installed"python3-pyinotify
+not-installed"python3-pyinsane2
+not-installed"python3-pyjavaproperties
+not-installed"python3-pyjokes
+not-installed"python3-pyjsparser
+not-installed"python3-pyjwkest
+not-installed"python3-pykafka
+not-installed"python3-pykeepass
+not-installed"python3-pykerberos
+not-installed"python3-pykwalify
+not-installed"python3-pylama
+installed"python3-pylast
+not-installed"python3-pylev
+not-installed"python3-pylibmc
+not-installed"python3-pylint
+not-installed"python3-pylons-sphinx-themes
+not-installed"python3-pylzma
+not-installed"python3-pymacaroons
+not-installed"python3-pymacaroons-pynacl
+installed"python3-pymad
+not-installed"python3-pymarc
+not-installed"python3-pymediainfo
+not-installed"python3-pymemcache
+not-installed"python3-pymilter
+not-installed"python3-pymisp
+not-installed"python3-pymod2pkg
+not-installed"python3-pymol
+not-installed"python3-pymongo
+not-installed"python3-pymssql
+not-installed"python3-pynamodb
+not-installed"python3-pyngus
+not-installed"python3-pyo
+not-installed"python3-pyocr
+not-installed"python3-pyodbc
+not-installed"python3-pyosf
+not-installed"python3-pyotherside
+not-installed"python3-pyotp
+not-installed"python3-pyowm
+not-installed"python3-pyparallel
+installed"python3-pyparsing
+not-installed"python3-pyperclip
+not-installed"python3-pypet
+not-installed"python3-pypiserver
+not-installed"python3-pypng
+not-installed"python3-pyppeteer
+not-installed"python3-pyprel
+not-installed"python3-pyprimes
+not-installed"python3-pyproj
+not-installed"python3-pypsexec
+not-installed"python3-pypuppetdb
+not-installed"python3-pyqtgraph
+not-installed"python3-pyquery
+not-installed"python3-pyramid
+not-installed"python3-pyreadstat
+not-installed"python3-pyroma
+not-installed"python3-pyroute2
+not-installed"python3-pyrsistent
+not-installed"python3-pysaml2
+not-installed"python3-pyscard
+not-installed"python3-pysendfile
+installed"python3-pyserial
+not-installed"python3-pyshould
+not-installed"python3-pyshp
+not-installed"python3-pyside2
+not-installed"python3-pyside2-devel
+not-installed"python3-pyside2-examples
+not-installed"python3-pysmb
+not-installed"python3-pysmbc
+not-installed"python3-pysmi
+not-installed"python3-pysndfile
+not-installed"python3-pysnmp
+not-installed"python3-pysofaconventions
+not-installed"python3-pysrt
+not-installed"python3-pyssim
+not-installed"python3-pystache
+not-installed"python3-pysvn
+not-installed"python3-pytaglib
+not-installed"python3-pyte
+not-installed"python3-pytesseract
+not-installed"python3-pytest
+not-installed"python3-pytest-aiohttp
+not-installed"python3-pytest-arraydiff
+not-installed"python3-pytest-astropy
+not-installed"python3-pytest-asyncio
+not-installed"python3-pytest-attrib
+not-installed"python3-pytest-bdd
+not-installed"python3-pytest-benchmark
+not-installed"python3-pytest-check-links
+not-installed"python3-pytest-click
+not-installed"python3-pytest-codestyle
+not-installed"python3-pytest-console-scripts
+not-installed"python3-pytest-cov
+not-installed"python3-pytest-datadir
+not-installed"python3-pytest-django
+not-installed"python3-pytest-doctestplus
+not-installed"python3-pytest-dotenv
+not-installed"python3-pytest-env
+not-installed"python3-pytest-error-for-skips
+not-installed"python3-pytest-expect
+not-installed"python3-pytest-faulthandler
+not-installed"python3-pytest-fixture-config
+not-installed"python3-pytest-flake8
+not-installed"python3-pytest-flake8dir
+not-installed"python3-pytest-flakes
+not-installed"python3-pytest-flask
+not-installed"python3-pytest-forked
+not-installed"python3-pytest-git
+not-installed"python3-pytest-helpers-namespace
+not-installed"python3-pytest-html
+not-installed"python3-pytest-httpbin
+not-installed"python3-pytest-httpserver
+not-installed"python3-pytest-instafail
+not-installed"python3-pytest-isort
+not-installed"python3-pytest-lazy-fixture
+not-installed"python3-pytest-localserver
+not-installed"python3-pytest-metadata
+not-installed"python3-pytest-mock
+not-installed"python3-pytest-mpl
+not-installed"python3-pytest-openfiles
+not-installed"python3-pytest-profiling
+not-installed"python3-pytest-pythonpath
+not-installed"python3-pytest-qt
+not-installed"python3-pytest-random-order
+not-installed"python3-pytest-randomly
+not-installed"python3-pytest-relaxed
+not-installed"python3-pytest-remotedata
+not-installed"python3-pytest-reorder
+not-installed"python3-pytest-repeat
+not-installed"python3-pytest-reqs
+not-installed"python3-pytest-rerunfailures
+not-installed"python3-pytest-runner
+not-installed"python3-pytest-services
+not-installed"python3-pytest-shutil
+not-installed"python3-pytest-socket
+not-installed"python3-pytest-spec
+not-installed"python3-pytest-subtesthack
+not-installed"python3-pytest-sugar
+not-installed"python3-pytest-super-check
+not-installed"python3-pytest-svn
+not-installed"python3-pytest-testconfig
+not-installed"python3-pytest-timeout
+not-installed"python3-pytest-tldr
+not-installed"python3-pytest-tornado
+not-installed"python3-pytest-translations
+not-installed"python3-pytest-travis-fold
+not-installed"python3-pytest-trio
+not-installed"python3-pytest-vcr
+not-installed"python3-pytest-verbose-parametrize
+not-installed"python3-pytest-virtualenv
+not-installed"python3-pytest-xdist
+not-installed"python3-pytest-xvfb
+not-installed"python3-pytest3
+not-installed"python3-pytest4
+not-installed"python3-python-afl
+not-installed"python3-python-aiml
+not-installed"python3-python-barcode
+not-installed"python3-python-bidi
+not-installed"python3-python-box
+not-installed"python3-python-cjson
+not-installed"python3-python-coveralls
+not-installed"python3-python-crfsuite
+not-installed"python3-python-daemon
+not-installed"python3-python-datamatrix
+not-installed"python3-python-dateutil
+not-installed"python3-python-dbusmock
+not-installed"python3-python-docs-theme
+not-installed"python3-python-dotenv
+not-installed"python3-python-editor
+not-installed"python3-python-fileinspector
+not-installed"python3-python-gammu
+not-installed"python3-python-gflags
+not-installed"python3-python-gitlab
+not-installed"python3-python-gnupg
+not-installed"python3-python-jenkins
+not-installed"python3-python-jose
+not-installed"python3-python-json-logger
+not-installed"python3-python-louvain
+not-installed"python3-python-lzo
+not-installed"python3-python-magic
+not-installed"python3-python-memcached
+not-installed"python3-python-mimeparse
+installed"python3-python-mpd2
+not-installed"python3-python-mpv
+not-installed"python3-python-openid-cla
+not-installed"python3-python-openid-teams
+not-installed"python3-python-pam
+not-installed"python3-python-pseudorandom
+not-installed"python3-python-ptrace
+not-installed"python3-python-qdatamatrix
+not-installed"python3-python-qnotifications
+not-installed"python3-python-qpid-proton
+not-installed"python3-python-qprogedit
+not-installed"python3-python-rapidjson
+not-installed"python3-python-redmine
+not-installed"python3-python-rpm-spec
+not-installed"python3-python-slugify
+not-installed"python3-python-snappy
+not-installed"python3-python-sofa
+not-installed"python3-python-sql
+not-installed"python3-python-stdnum
+not-installed"python3-python-subunit
+not-installed"python3-python-twitter
+not-installed"python3-python-utils
+not-installed"python3-python-vlc
+not-installed"python3-python-whois
+not-installed"python3-python-xlib
+not-installed"python3-python-yubico
+not-installed"python3-python3-openid
+not-installed"python3-python3-saml
+not-installed"python3-pythonfinder
+not-installed"python3-pythonwhois
+not-installed"python3-pythreejs
+not-installed"python3-pytidylib
+not-installed"python3-pytils
+not-installed"python3-pytimeparse
+not-installed"python3-pytlv
+not-installed"python3-pytoml
+not-installed"python3-pytools
+not-installed"python3-pytricia
+not-installed"python3-pytz
+not-installed"python3-pyuca
+installed"python3-pyudev
+not-installed"python3-pyusb
+not-installed"python3-pyverbs
+not-installed"python3-pyviz-comms
+not-installed"python3-pyvmomi
+not-installed"python3-pywbem
+not-installed"python3-pywinrm
+not-installed"python3-pyxattr
+not-installed"python3-pyxb
+installed"python3-pyxdg
+not-installed"python3-pyzmq
+not-installed"python3-pyzmq-devel
+not-installed"python3-qet_tb_generator
+not-installed"python3-qgrid
+not-installed"python3-qrcode
+not-installed"python3-qscintilla-qt5
+not-installed"python3-qt3d-qt5
+not-installed"python3-qt4
+not-installed"python3-qt4-devel
+installed"python3-qt5
+not-installed"python3-qt5-devel
+not-installed"python3-qtcharts-qt5
+not-installed"python3-qtconsole
+not-installed"python3-qtdatavis3d-qt5
+installed"python3-qtwebengine-qt5
+not-installed"python3-queuelib
+not-installed"python3-quicktions
+not-installed"python3-radon
+not-installed"python3-rados
+not-installed"python3-raet
+not-installed"python3-random2
+installed"python3-rarfile
+not-installed"python3-rarfile-doc
+not-installed"python3-ravello-sdk
+not-installed"python3-raven
+not-installed"python3-rawkit
+not-installed"python3-rbd
+not-installed"python3-rcssmin
+not-installed"python3-rdflib
+not-installed"python3-readme_renderer
+not-installed"python3-readthedocs-sphinx-ext
+not-installed"python3-rebulk
+not-installed"python3-recommonmark
+not-installed"python3-redbaron
+not-installed"python3-redis
+not-installed"python3-rednose
+not-installed"python3-regex
+not-installed"python3-relatorio
+not-installed"python3-releases
+not-installed"python3-releases-test
+not-installed"python3-remoto
+not-installed"python3-rencode
+not-installed"python3-reno
+not-installed"python3-repex
+not-installed"python3-reportlab
+not-installed"python3-repoze.lru
+not-installed"python3-repoze.sphinx.autointerface
+not-installed"python3-repoze.who
+installed"python3-requests
+not-installed"python3-requests-aws
+not-installed"python3-requests-cache
+not-installed"python3-requests-download
+not-installed"python3-requests-file
+not-installed"python3-requests-ftp
+not-installed"python3-requests-futures
+not-installed"python3-requests-hawk
+not-installed"python3-requests-html
+not-installed"python3-requests-kerberos
+not-installed"python3-requests-mock
+installed"python3-requests-oauthlib
+not-installed"python3-requests-toolbelt
+not-installed"python3-requests-unixsocket
+not-installed"python3-requests_ntlm
+not-installed"python3-requestsexceptions
+not-installed"python3-requirements-detector
+not-installed"python3-requirements-parser
+not-installed"python3-requirementslib
+not-installed"python3-resampy
+not-installed"python3-resolvelib
+not-installed"python3-responses
+not-installed"python3-restructuredtext_lint
+not-installed"python3-resultsdb_api
+not-installed"python3-retry
+not-installed"python3-retry_decorator
+not-installed"python3-retrying
+installed"python3-rfc3986
+not-installed"python3-rfc3987
+not-installed"python3-rgw
+not-installed"python3-rjsmin
+not-installed"python3-rnginline
+not-installed"python3-rollbar
+not-installed"python3-roman
+not-installed"python3-rope
+not-installed"python3-rply
+installed"python3-rpm
+not-installed"python3-rpmconf
+not-installed"python3-rpmfile
+not-installed"python3-rpy2
+not-installed"python3-rpyc
+not-installed"python3-rq
+not-installed"python3-rrdtool
+not-installed"python3-rsa
+not-installed"python3-rst.linker
+not-installed"python3-rstcheck
+not-installed"python3-rt
+not-installed"python3-rtslib-fb
+not-installed"python3-ruamel.base
+not-installed"python3-ruamel.std.argparse
+not-installed"python3-ruamel.std.pathlib
+not-installed"python3-ruamel.yaml
+not-installed"python3-ruamel.yaml.clib
+not-installed"python3-ruamel.yaml.cmd
+not-installed"python3-ruamel.yaml.convert
+not-installed"python3-ruffus
+not-installed"python3-rust2rpm
+not-installed"python3-rustcfg
+not-installed"python3-ryu
+not-installed"python3-s3fs
+not-installed"python3-s3transfer
+not-installed"python3-salt
+not-installed"python3-samplerate
+not-installed"python3-sane
+not-installed"python3-sanlock
+not-installed"python3-sarge
+not-installed"python3-sas7bdat
+not-installed"python3-sasl
+not-installed"python3-scales
+not-installed"python3-scandir
+not-installed"python3-schedule
+not-installed"python3-schema
+not-installed"python3-scikit-build
+not-installed"python3-scikit-dsp-comm
+not-installed"python3-scikit-image
+not-installed"python3-scikit-learn
+not-installed"python3-scikit-sound
+not-installed"python3-scikit-sparse
+not-installed"python3-scikit-umfpack
+not-installed"python3-scikits.example
+not-installed"python3-scipy
+not-installed"python3-scipy-gnu-hpc
+not-installed"python3-scipy_1_3_1-gnu-hpc
+not-installed"python3-scour
+not-installed"python3-scp
+not-installed"python3-scripttest
+not-installed"python3-scrypt
+not-installed"python3-scspell3k
+not-installed"python3-sdnotify
+not-installed"python3-seaborn
+not-installed"python3-selection
+not-installed"python3-selectors2
+not-installed"python3-selenium
+not-installed"python3-selinux
+not-installed"python3-semanage
+not-installed"python3-semantic_version
+not-installed"python3-semver
+not-installed"python3-senlinclient
+not-installed"python3-sentry-sdk
+not-installed"python3-seqdiag
+not-installed"python3-serpent
+not-installed"python3-serpy
+not-installed"python3-serverfiles
+installed"python3-service_identity
+not-installed"python3-setools
+not-installed"python3-setproctitle
+installed"python3-setuptools
+not-installed"python3-setuptools-git
+not-installed"python3-setuptools_scm
+not-installed"python3-setuptools_scm_git_archive
+not-installed"python3-sge-pygame
+not-installed"python3-sgmllib3k
+not-installed"python3-sh
+not-installed"python3-shaptools
+not-installed"python3-shellingham
+not-installed"python3-shijian
+not-installed"python3-shodan
+not-installed"python3-shortuuid
+not-installed"python3-shouldbe
+not-installed"python3-sidecar
+not-installed"python3-sievelib
+not-installed"python3-sigal
+not-installed"python3-signedjson
+not-installed"python3-simpleaudio
+not-installed"python3-simplebayes
+not-installed"python3-simpleeval
+not-installed"python3-simplegeneric
+not-installed"python3-simplejson
+installed"python3-sip
+not-installed"python3-sip-devel
+not-installed"python3-siphashc
+installed"python3-six
+not-installed"python3-sklearn-pandas
+not-installed"python3-sleekxmpp
+not-installed"python3-slimit
+installed"python3-slip
+installed"python3-slip-dbus
+not-installed"python3-slixmpp
+not-installed"python3-slumber
+not-installed"python3-slycot
+not-installed"python3-smartypants
+not-installed"python3-smbios
+not-installed"python3-smbios-utils
+not-installed"python3-smbprotocol
+not-installed"python3-smmap
+not-installed"python3-smmap2
+not-installed"python3-sniffio
+not-installed"python3-snowballstemmer
+not-installed"python3-snuggs
+not-installed"python3-social-auth-app-django
+not-installed"python3-social-auth-core
+not-installed"python3-socketpool
+not-installed"python3-softlayer
+installed"python3-solv
+not-installed"python3-sortedcollections
+not-installed"python3-sortedcontainers
+not-installed"python3-sortinghat
+not-installed"python3-soundcloud
+not-installed"python3-sounddevice
+installed"python3-soupsieve
+not-installed"python3-spake2
+not-installed"python3-spark_parser
+not-installed"python3-sparse
+not-installed"python3-speaklater
+not-installed"python3-spec
+not-installed"python3-speechd
+not-installed"python3-sphinx-autodoc-typehints
+not-installed"python3-sphinx-bootstrap-theme
+not-installed"python3-sphinx-feature-classification
+not-installed"python3-sphinx-issues
+not-installed"python3-sphinx-removed-in
+not-installed"python3-sphinx-testing
+not-installed"python3-sphinx-version-warning
+not-installed"python3-sphinx_rtd_theme
+not-installed"python3-sphinxcontrib-actdiag
+not-installed"python3-sphinxcontrib-apidoc
+not-installed"python3-sphinxcontrib-applehelp
+not-installed"python3-sphinxcontrib-asyncio
+not-installed"python3-sphinxcontrib-autoprogram
+not-installed"python3-sphinxcontrib-autoprogram-doc
+not-installed"python3-sphinxcontrib-blockdiag
+not-installed"python3-sphinxcontrib-devhelp
+not-installed"python3-sphinxcontrib-documentedlist
+not-installed"python3-sphinxcontrib-github-alt
+not-installed"python3-sphinxcontrib-htmlhelp
+not-installed"python3-sphinxcontrib-httpdomain
+not-installed"python3-sphinxcontrib-issuetracker
+not-installed"python3-sphinxcontrib-jsmath
+not-installed"python3-sphinxcontrib-newsfeed
+not-installed"python3-sphinxcontrib-nwdiag
+not-installed"python3-sphinxcontrib-pecanwsme
+not-installed"python3-sphinxcontrib-programoutput
+not-installed"python3-sphinxcontrib-qthelp
+not-installed"python3-sphinxcontrib-seqdiag
+not-installed"python3-sphinxcontrib-serializinghtml
+not-installed"python3-sphinxcontrib-svg2pdfconverter
+not-installed"python3-sphinxcontrib-trio
+not-installed"python3-sphinxcontrib-websupport
+not-installed"python3-splinter
+not-installed"python3-spotipy
+not-installed"python3-spyder-kernels
+not-installed"python3-sqlalchemy-migrate
+not-installed"python3-sqlitedict
+not-installed"python3-sqlparse
+not-installed"python3-ssdeep
+not-installed"python3-sshtunnel
+not-installed"python3-sss-murmur
+not-installed"python3-sss_nss_idmap
+not-installed"python3-sssd-config
+not-installed"python3-statsd
+not-installed"python3-statsmodels
+not-installed"python3-stdeb
+not-installed"python3-stem
+not-installed"python3-stestr
+not-installed"python3-stevedore
+not-installed"python3-stomp.py
+not-installed"python3-stomper
+not-installed"python3-straight-plugin
+not-installed"python3-streamz
+not-installed"python3-strict-rfc3339
+not-installed"python3-structlog
+not-installed"python3-subgrab
+not-installed"python3-subliminal
+not-installed"python3-subscene-api
+not-installed"python3-subst
+not-installed"python3-suds-jurko
+not-installed"python3-sunpy
+not-installed"python3-sure
+not-installed"python3-susepubliccloudinfo
+not-installed"python3-sushy
+not-installed"python3-svgwrite
+not-installed"python3-swapper
+not-installed"python3-swiftclient
+not-installed"python3-sybil
+not-installed"python3-sympy
+not-installed"python3-systemd
+not-installed"python3-tables
+not-installed"python3-tablib
+not-installed"python3-tabulate
+not-installed"python3-tagpy
+installed"python3-talloc
+not-installed"python3-talloc-32bit
+not-installed"python3-talloc-devel
+not-installed"python3-tap.py
+not-installed"python3-targetcli-fb
+not-installed"python3-tbb
+not-installed"python3-tblib
+installed"python3-tdb
+not-installed"python3-tdb-32bit
+not-installed"python3-technicolor
+not-installed"python3-telepot
+not-installed"python3-template-remover
+not-installed"python3-tempora
+not-installed"python3-tenacity
+not-installed"python3-termcolor
+not-installed"python3-terminado
+not-installed"python3-terminaltables
+not-installed"python3-termstyle
+not-installed"python3-tesserocr
+not-installed"python3-testfixtures
+not-installed"python3-testflo
+not-installed"python3-testinfra
+not-installed"python3-testpath
+not-installed"python3-testrepository
+not-installed"python3-testresources
+not-installed"python3-testscenarios
+not-installed"python3-testsuite
+not-installed"python3-testtools
+installed"python3-tevent
+not-installed"python3-tevent-32bit
+not-installed"python3-text-unidecode
+not-installed"python3-textX
+not-installed"python3-textfsm
+not-installed"python3-textile
+not-installed"python3-texttable
+not-installed"python3-textwrap3
+not-installed"python3-thLib
+not-installed"python3-threevis
+not-installed"python3-thrift
+not-installed"python3-thriftpy
+not-installed"python3-tinycss2
+not-installed"python3-tinydb
+not-installed"python3-tinyrecord
+not-installed"python3-tinyrpc
+not-installed"python3-titlecase
+not-installed"python3-tk
+not-installed"python3-tkreadonly
+not-installed"python3-tld
+not-installed"python3-tldextract
+not-installed"python3-tmx
+not-installed"python3-tomate
+not-installed"python3-toml
+not-installed"python3-tomlkit
+not-installed"python3-tools
+not-installed"python3-toolz
+not-installed"python3-tooz
+not-installed"python3-topy
+not-installed"python3-tornado
+not-installed"python3-tornado4
+not-installed"python3-tox
+not-installed"python3-tox-no-internet
+not-installed"python3-tox-travis
+not-installed"python3-tox-wheel
+not-installed"python3-tpfd
+not-installed"python3-tqdm
+not-installed"python3-traceback2
+not-installed"python3-traitlets
+not-installed"python3-traits
+not-installed"python3-traitsui
+not-installed"python3-traittypes
+not-installed"python3-transaction
+not-installed"python3-transip
+not-installed"python3-translation-finder
+not-installed"python3-translationstring
+not-installed"python3-translitcodec
+not-installed"python3-treq
+not-installed"python3-trio
+not-installed"python3-trustme
+not-installed"python3-tsk
+not-installed"python3-tvdb_api
+not-installed"python3-tvtk
+not-installed"python3-tvtk-doc
+not-installed"python3-tweepy
+not-installed"python3-twine
+not-installed"python3-twitter.common.finagle-thrift
+not-installed"python3-twitter.common.lang
+not-installed"python3-twitter.common.rpc
+not-installed"python3-twodict
+not-installed"python3-twython
+not-installed"python3-txWS
+not-installed"python3-txZMQ
+not-installed"python3-txacme
+not-installed"python3-txaio
+not-installed"python3-txtorcon
+not-installed"python3-typed-ast
+not-installed"python3-typing_extensions
+not-installed"python3-tzlocal
+not-installed"python3-u-msgpack-python
+not-installed"python3-ua-parser
+not-installed"python3-uamqp
+not-installed"python3-ucsmsdk
+not-installed"python3-ujson
+not-installed"python3-unbound
+not-installed"python3-uncertainties
+not-installed"python3-uncompyle6
+not-installed"python3-unicodecsv
+not-installed"python3-unidiff
+not-installed"python3-unify
+not-installed"python3-uniseg
+not-installed"python3-units
+not-installed"python3-unittest-mixins
+not-installed"python3-unittest-xml-reporting
+not-installed"python3-unittest2
+not-installed"python3-unpaddedbase64
+not-installed"python3-untokenize
+not-installed"python3-upm
+not-installed"python3-uritemplate
+not-installed"python3-urlgrabber
+installed"python3-urllib3
+not-installed"python3-urwid
+not-installed"python3-user-agents
+not-installed"python3-user_agent
+not-installed"python3-uvloop
+not-installed"python3-validate_email
+not-installed"python3-validators
+installed"python3-vapoursynth
+not-installed"python3-varlink
+not-installed"python3-vcrpy
+not-installed"python3-vcversioner
+not-installed"python3-vdirsyncer
+not-installed"python3-vega
+not-installed"python3-vega_datasets
+not-installed"python3-venusian
+not-installed"python3-venusian-doc
+not-installed"python3-verboselogs
+not-installed"python3-versioneer
+not-installed"python3-versiontools
+not-installed"python3-veusz
+not-installed"python3-vim-vint
+not-installed"python3-vine
+not-installed"python3-virt-bootstrap
+not-installed"python3-virtkey
+not-installed"python3-virtualbmc
+not-installed"python3-virtualbox
+not-installed"python3-virtualenv
+not-installed"python3-virtualenv-clone
+not-installed"python3-virtualenvwrapper
+not-installed"python3-visitor
+not-installed"python3-vispy
+not-installed"python3-vistir
+not-installed"python3-vobject
+not-installed"python3-voila
+not-installed"python3-voluptuous
+not-installed"python3-voluptuous-serialize
+not-installed"python3-vtk
+not-installed"python3-vtk-openmpi
+not-installed"python3-vtk-openmpi2
+not-installed"python3-vulkan
+not-installed"python3-vulture
+not-installed"python3-w3lib
+not-installed"python3-wadllib
+not-installed"python3-waitress
+not-installed"python3-waitress-doc
+not-installed"python3-wakeonlan
+not-installed"python3-warlock
+not-installed"python3-watchdog
+not-installed"python3-watchdog-doc
+not-installed"python3-watermark
+not-installed"python3-wcwidth
+not-installed"python3-web_cache
+not-installed"python3-webassets
+not-installed"python3-webcolors
+not-installed"python3-webencodings
+not-installed"python3-weblib
+not-installed"python3-webruntime
+not-installed"python3-websocket-client
+not-installed"python3-websockets
+not-installed"python3-websockify
+not-installed"python3-whatever
+not-installed"python3-whatthepatch
+not-installed"python3-wheel
+not-installed"python3-whichcraft
+not-installed"python3-whitenoise
+not-installed"python3-whois_similarity_distance
+not-installed"python3-wikipedia
+not-installed"python3-wiring
+not-installed"python3-wolframalpha
+not-installed"python3-wptools
+not-installed"python3-wrapt
+not-installed"python3-ws4py
+not-installed"python3-wsaccel
+not-installed"python3-wsgi_intercept
+not-installed"python3-wsproto
+not-installed"python3-wstools
+not-installed"python3-wtf-peewee
+not-installed"python3-wurlitzer
+not-installed"python3-wxPython
+not-installed"python3-wxPython-lang
+not-installed"python3-xapian
+not-installed"python3-xapp
+not-installed"python3-xarray
+not-installed"python3-xattr
+not-installed"python3-xcb-proto-devel
+not-installed"python3-xcffib
+not-installed"python3-xdis
+not-installed"python3-xerox
+not-installed"python3-xhtml2pdf
+not-installed"python3-xlrd
+not-installed"python3-xlwt
+not-installed"python3-xmldiff
+not-installed"python3-xmlsec
+not-installed"python3-xmltodict
+not-installed"python3-xpybutil
+not-installed"python3-xsge_gui
+not-installed"python3-xsge_lighting
+not-installed"python3-xsge_particle
+not-installed"python3-xsge_path
+not-installed"python3-xsge_physics
+not-installed"python3-xsge_tmx
+not-installed"python3-xvfbwrapper
+not-installed"python3-xxhash
+not-installed"python3-yamldoc
+not-installed"python3-yamllint
+not-installed"python3-yang
+not-installed"python3-yapf
+not-installed"python3-yappi
+not-installed"python3-yara
+not-installed"python3-yarb
+not-installed"python3-yarg
+not-installed"python3-yarl
+not-installed"python3-yaspin
+not-installed"python3-youtube-dl
+not-installed"python3-yq
+not-installed"python3-yt
+not-installed"python3-z3
+not-installed"python3-zake
+not-installed"python3-zarafa
+not-installed"python3-zc.buildout
+not-installed"python3-zc.customdoctests
+not-installed"python3-zc.lockfile
+not-installed"python3-zdaemon
+not-installed"python3-zeep
+not-installed"python3-zeroconf
+not-installed"python3-zetup
+not-installed"python3-zict
+not-installed"python3-zipp
+not-installed"python3-zipstream
+not-installed"python3-zodbpickle
+not-installed"python3-zope.cachedescriptors
+not-installed"python3-zope.component
+not-installed"python3-zope.configuration
+not-installed"python3-zope.copy
+not-installed"python3-zope.deferredimport
+not-installed"python3-zope.deprecation
+not-installed"python3-zope.event
+not-installed"python3-zope.exceptions
+not-installed"python3-zope.hookable
+not-installed"python3-zope.i18nmessageid
+installed"python3-zope.interface
+not-installed"python3-zope.location
+not-installed"python3-zope.proxy
+not-installed"python3-zope.proxy-devel
+not-installed"python3-zope.schema
+not-installed"python3-zope.security
+not-installed"python3-zope.testbrowser
+not-installed"python3-zope.testing
+not-installed"python3-zope.testrunner
+not-installed"python3-zstandard
+not-installed"python3-zstd
+installed"python3-zypp-plugin
+not-installed"pyzy-db-android
+not-installed"pyzy-db-open-phrase
+not-installed"pyzy-devel
+not-installed"q4wine
+not-installed"q4wine-lang
+not-installed"qactus
+not-installed"qalculate
+installed"qalculate-data
+not-installed"qbittorrent
+not-installed"qbittorrent-nox
+not-installed"qbs
+not-installed"qbs-devel
+not-installed"qcustomplot-devel
+not-installed"qcustomplot-doc
+not-installed"qd-devel
+not-installed"qdirstat
+not-installed"qdox
+not-installed"qdox-javadoc
+not-installed"qelectrotech
+not-installed"qemacs
+installed"qemu
+not-installed"qemu-arm
+not-installed"qemu-audio-alsa
+installed"qemu-audio-pa
+not-installed"qemu-audio-sdl
+installed"qemu-block-curl
+not-installed"qemu-block-dmg
+not-installed"qemu-block-gluster
+not-installed"qemu-block-iscsi
+not-installed"qemu-block-nfs
+installed"qemu-block-rbd
+installed"qemu-block-ssh
+not-installed"qemu-extra
+not-installed"qemu-guest-agent
+installed"qemu-ipxe
+installed"qemu-ksm
+not-installed"qemu-kvm
+not-installed"qemu-lang
+not-installed"qemu-linux-user
+not-installed"qemu-ovmf-ia32
+installed"qemu-ovmf-x86_64
+not-installed"qemu-ovmf-x86_64-debug
+not-installed"qemu-ppc
+not-installed"qemu-s390
+installed"qemu-seabios
+installed"qemu-sgabios
+not-installed"qemu-testsuite
+installed"qemu-tools
+installed"qemu-ui-curses
+installed"qemu-ui-gtk
+installed"qemu-ui-sdl
+installed"qemu-vgabios
+installed"qemu-x86
+not-installed"qgit
+not-installed"qgo
+not-installed"qgroundcontrol
+not-installed"qhexedit2
+not-installed"qhexedit2-devel
+not-installed"qhexedit2-doc
+not-installed"qhull
+not-installed"qhull-devel
+not-installed"qimgv
+not-installed"qiv
+not-installed"qjackctl
+not-installed"qjackctl-lang
+not-installed"qlipper
+not-installed"qlipper-lang
+not-installed"qm
+not-installed"qmelt
+not-installed"qml-box2d
+not-installed"qmltermwidget
+not-installed"qmmp
+not-installed"qmmp
+not-installed"qmmp-debuginfo
+not-installed"qmmp-debugsource
+not-installed"qmmp-plugin-pack
+not-installed"qmmp-plugin-pack-ffap
+not-installed"qmmp-plugin-pack-ffvideo
+not-installed"qmmp-plugin-pack-goom
+not-installed"qmmp-plugin-pack-samplerate
+not-installed"qmmp-plugin-pack-xmp
+not-installed"qmp3gain
+not-installed"qmp3gain
+not-installed"qmp3gain-debuginfo
+not-installed"qmp3gain-debugsource
+not-installed"qmp3gain-lang
+not-installed"qnapi
+not-installed"qoauth-qt5-devel
+not-installed"qore
+not-installed"qore-devel
+not-installed"qore-devel-doc
+not-installed"qore-doc
+not-installed"qore-json-module
+not-installed"qore-json-module-doc
+not-installed"qore-misc-tools
+not-installed"qore-mysql-module
+not-installed"qore-mysql-module-doc
+not-installed"qore-pgsql-module
+not-installed"qore-pgsql-module-doc
+not-installed"qore-sqlite3-module
+not-installed"qore-sqlite3-module-doc
+not-installed"qore-ssh2-module
+not-installed"qore-ssh2-module-doc
+not-installed"qore-uuid-module
+not-installed"qore-uuid-module-doc
+not-installed"qore-xml-module
+not-installed"qore-xml-module-doc
+not-installed"qore-yaml-module
+not-installed"qore-yaml-module-doc
+not-installed"qos
+not-installed"qpdf
+not-installed"qpdf-devel
+not-installed"qpdf-htmldoc
+not-installed"qpdfview
+not-installed"qpdfview-lang
+not-installed"qpdfview-plugin-djvu
+not-installed"qpdfview-plugin-image
+not-installed"qpdfview-plugin-pdf
+not-installed"qpdfview-plugin-ps
+not-installed"qperf
+not-installed"qphotorec
+not-installed"qpid-cpp-client
+not-installed"qpid-cpp-client-devel
+not-installed"qpid-cpp-client-devel-docs
+not-installed"qpid-cpp-server
+not-installed"qpid-cpp-server-ha
+not-installed"qpid-cpp-server-store
+not-installed"qpid-proton-devel
+not-installed"qpid-proton-devel-doc
+not-installed"qpid-qmf
+not-installed"qpid-qmf-devel
+not-installed"qpid-tests
+not-installed"qpid-tools
+not-installed"qpress
+not-installed"qprint
+not-installed"qps
+not-installed"qps-lang
+not-installed"qputty-qt5
+installed"qqc2-desktop-style
+not-installed"qqc2-desktop-style-devel
+not-installed"qqwing
+not-installed"qqwing-devel
+not-installed"qrencode
+not-installed"qrencode-devel
+not-installed"qrupdate
+not-installed"qrupdate-devel
+not-installed"qrupdate-static
+installed"qscintilla2_qt5
+not-installed"qsyncthingtray
+not-installed"qsynergy
+not-installed"qsynth
+not-installed"qsynth-lang
+not-installed"qt3
+not-installed"qt3
+not-installed"qt3-32bit
+not-installed"qt3-32bit-debuginfo
+not-installed"qt3-debuginfo
+not-installed"qt3-debugsource
+not-installed"qt3-devel
+not-installed"qt3-devel-32bit
+not-installed"qt3-devel-32bit-debuginfo
+not-installed"qt3-devel-debuginfo
+not-installed"qt4-assistant-adp
+not-installed"qt4-assistant-adp-devel
+not-installed"qt4-qtscript
+not-installed"qt4-qtscript-doc
+not-installed"qt4-style-fusion
+not-installed"qt4pas
+not-installed"qt4pas-devel
+not-installed"qt5ct
+not-installed"qtcurve-gtk2
+not-installed"qtcurve-gtk2-32bit
+not-installed"qtcurve-kde4
+not-installed"qtcurve-kde4-32bit
+not-installed"qtcurve-qt5
+not-installed"qtcurve-qt5-32bit
+not-installed"qtel
+not-installed"qterm
+not-installed"qterminal
+not-installed"qterminal-lang
+not-installed"qtermwidget-qt5-data
+not-installed"qtermwidget-qt5-devel
+not-installed"qtfm
+not-installed"qtile
+not-installed"qtkeychain-qt5-devel
+not-installed"qtodotxt
+not-installed"qtox
+not-installed"qtractor
+not-installed"qtsmbstatus
+not-installed"qtsmbstatus
+not-installed"qtsmbstatus-debuginfo
+not-installed"qtsmbstatus-debugsource
+not-installed"qtsmbstatus-lang
+not-installed"qtsmbstatus-light
+not-installed"qtsmbstatus-light-debuginfo
+not-installed"qtsmbstatus-server
+not-installed"qtsmbstatus-server-debuginfo
+not-installed"qtweetlib
+not-installed"qtweetlib-debugsource
+not-installed"qtweetlib-devel
+not-installed"quadrapassel
+not-installed"quadrapassel-lang
+not-installed"quagga
+not-installed"quagga-devel
+not-installed"quakespasm
+not-installed"quantum-espresso
+not-installed"quantum-espresso-doc
+not-installed"quantum-espresso-openmpi
+not-installed"quassel-base
+not-installed"quassel-client
+not-installed"quassel-client-qt5
+not-installed"quassel-core
+not-installed"quassel-mono
+not-installed"quazip-devel
+not-installed"quazip-doc
+not-installed"quilt
+not-installed"quilter
+not-installed"quilter-lang
+not-installed"quimup
+not-installed"quiterss
+not-installed"quiterss-lang
+not-installed"quota
+not-installed"quota-nfs
+not-installed"quotatool
+not-installed"qutebrowser
+not-installed"qutecom
+not-installed"qutecom
+not-installed"qutecom-debuginfo
+not-installed"qutecom-debugsource
+not-installed"quvi
+not-installed"qv4l2
+not-installed"qview
+not-installed"qwt-designer
+not-installed"qwt-devel
+not-installed"qwt-devel-doc
+not-installed"qwt6-designer
+not-installed"qwt6-devel
+not-installed"qwt6-devel-doc
+not-installed"qwt6-examples
+not-installed"qwtplot3d-devel
+not-installed"qx11grab
+not-installed"qx11grab
+not-installed"qx11grab-debuginfo
+not-installed"qx11grab-debugsource
+not-installed"qxmledit
+not-installed"qxmledit-devel
+not-installed"qxtglobalshortcut-devel
+not-installed"r8168
+not-installed"r8168-blacklist-r8169
+not-installed"r8168-debugsource
+not-installed"r8168-kmp-default
+not-installed"r8168-kmp-default-debuginfo
+not-installed"r8168-kmp-pae
+not-installed"r8168-kmp-pae-debuginfo
+not-installed"rabbitmq-java-client
+not-installed"rabbitmq-server
+not-installed"rabbitmq-server-plugins
+not-installed"racer
+not-installed"racket
+not-installed"racket-devel
+not-installed"racket-doc
+not-installed"radamsa
+not-installed"radcli
+not-installed"radcli-compat-devel
+not-installed"radcli-devel
+not-installed"radeontop
+not-installed"radeontop-lang
+not-installed"radiotray
+not-installed"radiotray-lang
+not-installed"rados-objclass-devel
+installed"radvd
+not-installed"rage
+not-installed"ragel
+not-installed"ragel-6
+not-installed"ragel-devel
+not-installed"rakkess
+not-installed"rakudo
+not-installed"raleway-fonts
+not-installed"ranger
+not-installed"rapi2-tools
+not-installed"rapi2-tools-debuginfo
+not-installed"rapid-photo-downloader
+not-installed"rapid-photo-downloader-lang
+not-installed"rapidjson-devel
+not-installed"raptor
+installed"rar
+not-installed"rar
+not-installed"rarian
+not-installed"rarian-devel
+not-installed"rarian-scrollkeeper-compat
+not-installed"rarpd
+not-installed"rasdaemon
+not-installed"rash
+not-installed"rasmol
+not-installed"raspberrypi-firmware
+not-installed"raspberrypi-firmware-config
+not-installed"raspberrypi-firmware-dt
+not-installed"raspberrypi-firmware-extra
+not-installed"raspberrypi-firmware-extra-pi4
+not-installed"rasqal
+not-installed"ratbagd
+not-installed"ratslap
+not-installed"raw-thumbnailer
+not-installed"rawstudio
+not-installed"rawstudio-lang
+not-installed"raylib-devel
+not-installed"razercfg
+not-installed"razor-agents
+not-installed"rbac-lookup
+not-installed"rbac-manager
+not-installed"rbac-manager-k8s-yaml
+not-installed"rbd-fuse
+not-installed"rbd-mirror
+not-installed"rbd-nbd
+not-installed"rbutil
+not-installed"rcc-runtime
+installed"rclone
+installed"rclone-bash-completion
+installed"rclone-zsh-completion
+not-installed"rcm
+not-installed"rcs
+not-installed"rdesktop
+not-installed"rdiff
+not-installed"rdiff-backup
+installed"rdma-core
+not-installed"rdma-core-devel
+not-installed"rdma-core-devel-32bit
+not-installed"rdma-ndd
+not-installed"rds-tools
+not-installed"rds-tools-devel
+not-installed"re2-devel
+not-installed"re2c
+not-installed"read-edid
+not-installed"read-only-root-fs
+not-installed"read-only-root-fs-volatile
+not-installed"readcd
+not-installed"readline-devel
+not-installed"readline-devel-32bit
+not-installed"readline-devel-static
+installed"readline-doc
+not-installed"readline5-devel
+not-installed"readline5-devel-32bit
+not-installed"readline6-devel
+not-installed"readline6-devel-32bit
+not-installed"realmd
+not-installed"realmd-lang
+not-installed"rear
+not-installed"reaver
+not-installed"reaver
+not-installed"reaver-debuginfo
+not-installed"reaver-debugsource
+not-installed"rebootmgr
+not-installed"recidivm
+not-installed"reco
+not-installed"reco-lang
+not-installed"recode
+not-installed"recode-devel
+not-installed"recorditnow
+not-installed"recorditnow
+not-installed"recorditnow-backend-ffmpeg
+not-installed"recorditnow-backend-ffmpeg-debuginfo
+not-installed"recorditnow-backend-mplayer
+not-installed"recorditnow-backend-mplayer-debuginfo
+not-installed"recorditnow-debuginfo
+not-installed"recorditnow-debugsource
+not-installed"recorditnow-lang
+not-installed"recordmydesktop
+not-installed"redeclipse
+not-installed"redeclipse-data
+not-installed"redis
+not-installed"redland
+not-installed"redland-storage-postgresql
+not-installed"rednotebook
+not-installed"rednotebook-lang
+not-installed"redsea
+installed"redshift
+not-installed"redshift-gtk
+not-installed"regexp
+not-installed"reiser4progs
+not-installed"reiser4progs-devel
+installed"reiserfs
+not-installed"relaxngDatatype
+installed"release-notes-openSUSE
+not-installed"remake
+not-installed"remake-lang
+not-installed"remind
+not-installed"remmina
+not-installed"remmina-devel
+not-installed"remmina-kiosk
+not-installed"remmina-lang
+not-installed"remmina-plugin-exec
+not-installed"remmina-plugin-kwallet
+not-installed"remmina-plugin-rdp
+not-installed"remmina-plugin-secret
+not-installed"remmina-plugin-spice
+not-installed"remmina-plugin-st
+not-installed"remmina-plugin-vnc
+not-installed"remmina-plugin-www
+not-installed"remmina-plugin-xdmcp
+not-installed"rendercheck
+not-installed"rep-gtk
+not-installed"rep-gtk-devel
+not-installed"reptyr
+not-installed"resample
+not-installed"rescue
+not-installed"resolv_wrapper
+not-installed"resource-agents
+not-installed"restic
+not-installed"restic-bash-completion
+not-installed"restic-zsh-completion
+not-installed"restorecond
+not-installed"retext
+not-installed"retro-gtk-devel
+not-installed"reuse
+not-installed"reuse-lang
+not-installed"reveng
+not-installed"rfb
+not-installed"rfbplaymacro
+not-installed"rfbproxy
+not-installed"rfcdiff
+installed"rgb
+not-installed"rhash
+not-installed"rhash-devel
+not-installed"rhash-lang
+not-installed"rhino
+not-installed"rhino-demo
+not-installed"rhythmbox
+not-installed"rhythmbox-devel
+not-installed"rhythmbox-lang
+not-installed"rime
+not-installed"rime-plum
+not-installed"rinetd
+not-installed"ripgrep
+not-installed"ripgrep-bash-completion
+not-installed"ripgrep-fish-completion
+not-installed"ripgrep-zsh-completion
+not-installed"ripit
+not-installed"ristretto
+not-installed"ristretto-lang
+not-installed"rk-devel
+installed"rkhunter
+not-installed"rkward
+not-installed"rls
+not-installed"rlwrap
+not-installed"rmail
+not-installed"rmedigicontrol
+not-installed"rmt-server
+not-installed"rmt-server-config
+not-installed"rmt-server-pubcloud
+not-installed"rnd_jue
+not-installed"rnd_jue-data
+not-installed"rng-tools
+not-installed"roar-devel
+not-installed"roar-devel-debuginfo
+not-installed"roaraudio
+not-installed"roaraudio
+not-installed"roaraudio-compat2
+not-installed"roaraudio-debuginfo
+not-installed"roaraudio-debugsource
+not-installed"roaraudio-plugins
+not-installed"roaraudio-plugins-debuginfo
+not-installed"roarpld
+not-installed"roarpld
+not-installed"roarpld-codechelper-gst
+not-installed"roarpld-debuginfo
+not-installed"roarpld-debugsource
+not-installed"roarpld-devel
+not-installed"robinhood
+not-installed"robinhood-tests
+not-installed"robinhood-tools
+not-installed"robinhood-webgui
+not-installed"roccat-arvo
+not-installed"roccat-isku
+not-installed"roccat-iskufx
+not-installed"roccat-kiro
+not-installed"roccat-kone
+not-installed"roccat-koneplus
+not-installed"roccat-konepure
+not-installed"roccat-konextd
+not-installed"roccat-kova2016
+not-installed"roccat-kovaplus
+not-installed"roccat-lua
+not-installed"roccat-nyth
+not-installed"roccat-pyra
+not-installed"roccat-ryos
+not-installed"roccat-savu
+not-installed"roccat-skeltr
+not-installed"roccat-sova
+not-installed"roccat-suora
+not-installed"roccat-tools
+not-installed"roccat-tyon
+not-installed"rockdodger
+not-installed"rocksndiamonds
+not-installed"rocksndiamonds-data
+not-installed"rocs
+not-installed"rocs-devel
+not-installed"rocs-lang
+not-installed"rofi
+not-installed"rofi-calc
+not-installed"rofi-devel
+not-installed"rollback-helper
+not-installed"rook
+not-installed"rook-integration
+not-installed"rook-k8s-yaml
+not-installed"rook-rookflex
+not-installed"root-tail
+not-installed"rosa-media-player
+not-installed"rosa-media-player
+not-installed"rosa-media-player-debuginfo
+not-installed"rosa-media-player-debugsource
+not-installed"rosa-media-player-lang
+not-installed"rosegarden
+not-installed"rott
+not-installed"roundcubemail
+not-installed"rox-filer
+installed"rp-pppoe
+installed"rpcbind
+not-installed"rpcgen
+not-installed"rpcsvc-proto-devel
+installed"rpm
+installed"rpm-32bit
+installed"rpm-build
+installed"rpm-config-SUSE
+not-installed"rpm-devel
+not-installed"rpmconf
+not-installed"rpmdevtools
+not-installed"rpmemd
+not-installed"rpmkey-packman
+not-installed"rpmkey-packman
+not-installed"rpmlint
+not-installed"rpmlint-Factory
+not-installed"rpmlint-Factory-strict
+not-installed"rpmlint-mini
+not-installed"rpmorphan
+not-installed"rpmrebuild
+not-installed"rrdtool
+not-installed"rrdtool-cached
+not-installed"rrdtool-devel
+not-installed"rrdtool-doc
+not-installed"rscsi
+installed"rsibreak
+installed"rsibreak-lang
+not-installed"rsnapshot
+not-installed"rsocket
+not-installed"rsocket-32bit
+not-installed"rsound
+not-installed"rsound
+not-installed"rsound-debuginfo
+not-installed"rsound-debugsource
+not-installed"rss-glx
+not-installed"rss2email
+not-installed"rssguard
+not-installed"rsstail
+not-installed"rst2html5
+not-installed"rstart
+not-installed"rsvg-thumbnailer
+not-installed"rsvg-view
+not-installed"rsvg2-sharp
+installed"rsync
+installed"rsyslog
+not-installed"rsyslog-diag-tools
+not-installed"rsyslog-doc
+not-installed"rsyslog-module-dbi
+not-installed"rsyslog-module-elasticsearch
+not-installed"rsyslog-module-gcrypt
+not-installed"rsyslog-module-gssapi
+not-installed"rsyslog-module-gtls
+not-installed"rsyslog-module-mmnormalize
+not-installed"rsyslog-module-mysql
+not-installed"rsyslog-module-omamqp1
+not-installed"rsyslog-module-omhttpfs
+not-installed"rsyslog-module-omtcl
+not-installed"rsyslog-module-ossl
+not-installed"rsyslog-module-pgsql
+not-installed"rsyslog-module-relp
+not-installed"rsyslog-module-snmp
+not-installed"rsyslog-module-udpspoof
+not-installed"rt-tests
+not-installed"rt2860
+not-installed"rtags
+not-installed"rtaudio-devel
+installed"rtkit
+not-installed"rtl-sdr
+not-installed"rtl-sdr-devel
+not-installed"rtl-sdr-udev
+not-installed"rtl8812au
+not-installed"rtl8812au-kmp-default
+not-installed"rtl8812au-kmp-pae
+not-installed"rtl_433
+not-installed"rtl_433-devel
+not-installed"rtmidi-devel
+not-installed"rtmpdump
+not-installed"rtmpdump
+not-installed"rtmpdump-debuginfo
+not-installed"rtmpdump-debugsource
+not-installed"rtmpgw
+not-installed"rtmpgw-debuginfo
+not-installed"rtmpsrv
+not-installed"rtmpsrv-debuginfo
+not-installed"rtmpsuck
+not-installed"rtmpsuck-debuginfo
+not-installed"rtorrent
+not-installed"rttr-devel
+not-installed"rttr-devel-doc
+not-installed"rubber
+not-installed"rubberband-cli
+installed"rubberband-ladspa
+not-installed"rubberband-ladspa-32bit
+not-installed"rubberband-vamp
+not-installed"rubberband-vamp-32bit
+installed"ruby
+not-installed"ruby-apparmor
+not-installed"ruby-bundled-gems-rpmhelper
+installed"ruby-common
+not-installed"ruby-common-rails
+not-installed"ruby-devel
+not-installed"ruby-ecasound
+not-installed"ruby-geos
+not-installed"ruby-libprelude
+not-installed"ruby-marisa
+not-installed"ruby-obexftp
+not-installed"ruby-rrdtool
+not-installed"ruby-selinux
+installed"ruby-solv
+not-installed"ruby-xapian
+not-installed"ruby-yui
+installed"ruby2.6
+not-installed"ruby2.6-devel
+not-installed"ruby2.6-devel-extra
+not-installed"ruby2.6-doc
+not-installed"ruby2.6-doc-ri
+not-installed"ruby2.6-rubygem-RedCloth
+not-installed"ruby2.6-rubygem-RedCloth-doc
+not-installed"ruby2.6-rubygem-RedCloth-testsuite
+not-installed"ruby2.6-rubygem-abstract
+not-installed"ruby2.6-rubygem-abstract-doc
+not-installed"ruby2.6-rubygem-abstract-testsuite
+installed"ruby2.6-rubygem-abstract_method
+not-installed"ruby2.6-rubygem-abstract_method-doc
+not-installed"ruby2.6-rubygem-actioncable-5.2
+not-installed"ruby2.6-rubygem-actioncable-5_0
+not-installed"ruby2.6-rubygem-actioncable-5_1
+not-installed"ruby2.6-rubygem-actioncable-6.0
+not-installed"ruby2.6-rubygem-actioncable-doc-5.2
+not-installed"ruby2.6-rubygem-actioncable-doc-5_0
+not-installed"ruby2.6-rubygem-actioncable-doc-5_1
+not-installed"ruby2.6-rubygem-actioncable-doc-6.0
+not-installed"ruby2.6-rubygem-actionmailbox-6.0
+not-installed"ruby2.6-rubygem-actionmailbox-doc-6.0
+not-installed"ruby2.6-rubygem-actionmailer-5.2
+not-installed"ruby2.6-rubygem-actionmailer-5_0
+not-installed"ruby2.6-rubygem-actionmailer-5_1
+not-installed"ruby2.6-rubygem-actionmailer-6.0
+not-installed"ruby2.6-rubygem-actionmailer-doc-5.2
+not-installed"ruby2.6-rubygem-actionmailer-doc-5_0
+not-installed"ruby2.6-rubygem-actionmailer-doc-5_1
+not-installed"ruby2.6-rubygem-actionmailer-doc-6.0
+not-installed"ruby2.6-rubygem-actionpack-5.2
+not-installed"ruby2.6-rubygem-actionpack-5_0
+not-installed"ruby2.6-rubygem-actionpack-5_1
+not-installed"ruby2.6-rubygem-actionpack-6.0
+not-installed"ruby2.6-rubygem-actionpack-doc-5.2
+not-installed"ruby2.6-rubygem-actionpack-doc-5_0
+not-installed"ruby2.6-rubygem-actionpack-doc-5_1
+not-installed"ruby2.6-rubygem-actionpack-doc-6.0
+not-installed"ruby2.6-rubygem-actiontext-6.0
+not-installed"ruby2.6-rubygem-actiontext-doc-6.0
+not-installed"ruby2.6-rubygem-actionview-5.2
+not-installed"ruby2.6-rubygem-actionview-5_0
+not-installed"ruby2.6-rubygem-actionview-5_1
+not-installed"ruby2.6-rubygem-actionview-6.0
+not-installed"ruby2.6-rubygem-actionview-doc-5.2
+not-installed"ruby2.6-rubygem-actionview-doc-5_0
+not-installed"ruby2.6-rubygem-actionview-doc-5_1
+not-installed"ruby2.6-rubygem-actionview-doc-6.0
+not-installed"ruby2.6-rubygem-activejob-5.2
+not-installed"ruby2.6-rubygem-activejob-5_0
+not-installed"ruby2.6-rubygem-activejob-5_1
+not-installed"ruby2.6-rubygem-activejob-6.0
+not-installed"ruby2.6-rubygem-activejob-doc-5.2
+not-installed"ruby2.6-rubygem-activejob-doc-5_0
+not-installed"ruby2.6-rubygem-activejob-doc-5_1
+not-installed"ruby2.6-rubygem-activejob-doc-6.0
+not-installed"ruby2.6-rubygem-activemodel-5.2
+not-installed"ruby2.6-rubygem-activemodel-5_0
+not-installed"ruby2.6-rubygem-activemodel-5_1
+not-installed"ruby2.6-rubygem-activemodel-6.0
+not-installed"ruby2.6-rubygem-activemodel-doc-5.2
+not-installed"ruby2.6-rubygem-activemodel-doc-5_0
+not-installed"ruby2.6-rubygem-activemodel-doc-5_1
+not-installed"ruby2.6-rubygem-activemodel-doc-6.0
+not-installed"ruby2.6-rubygem-activerecord-5.2
+not-installed"ruby2.6-rubygem-activerecord-5_0
+not-installed"ruby2.6-rubygem-activerecord-5_1
+not-installed"ruby2.6-rubygem-activerecord-6.0
+not-installed"ruby2.6-rubygem-activerecord-deprecated_finders
+not-installed"ruby2.6-rubygem-activerecord-deprecated_finders-doc
+not-installed"ruby2.6-rubygem-activerecord-doc-5.2
+not-installed"ruby2.6-rubygem-activerecord-doc-5_0
+not-installed"ruby2.6-rubygem-activerecord-doc-6.0
+not-installed"ruby2.6-rubygem-activestorage-5.2
+not-installed"ruby2.6-rubygem-activestorage-6.0
+not-installed"ruby2.6-rubygem-activestorage-doc-5.2
+not-installed"ruby2.6-rubygem-activestorage-doc-6.0
+not-installed"ruby2.6-rubygem-activesupport-5.2
+not-installed"ruby2.6-rubygem-activesupport-5_0
+not-installed"ruby2.6-rubygem-activesupport-5_1
+not-installed"ruby2.6-rubygem-activesupport-6.0
+not-installed"ruby2.6-rubygem-activesupport-doc-5.2
+not-installed"ruby2.6-rubygem-activesupport-doc-5_0
+not-installed"ruby2.6-rubygem-activesupport-doc-5_1
+not-installed"ruby2.6-rubygem-activesupport-doc-6.0
+not-installed"ruby2.6-rubygem-addressable
+not-installed"ruby2.6-rubygem-addressable-2_3
+not-installed"ruby2.6-rubygem-addressable-doc
+not-installed"ruby2.6-rubygem-addressable-doc-2_3
+not-installed"ruby2.6-rubygem-addressable-testsuite
+not-installed"ruby2.6-rubygem-addressable-testsuite-2_3
+not-installed"ruby2.6-rubygem-aes_key_wrap
+not-installed"ruby2.6-rubygem-aes_key_wrap-doc
+not-installed"ruby2.6-rubygem-airbrussh
+not-installed"ruby2.6-rubygem-airbrussh-doc
+not-installed"ruby2.6-rubygem-amq-protocol
+not-installed"ruby2.6-rubygem-amq-protocol-doc
+not-installed"ruby2.6-rubygem-amq-protocol-testsuite
+not-installed"ruby2.6-rubygem-amqp
+not-installed"ruby2.6-rubygem-amqp-doc
+not-installed"ruby2.6-rubygem-amqp-testsuite
+not-installed"ruby2.6-rubygem-archive-tar-minitar
+not-installed"ruby2.6-rubygem-archive-tar-minitar-doc
+not-installed"ruby2.6-rubygem-arel
+not-installed"ruby2.6-rubygem-arel-3_0
+not-installed"ruby2.6-rubygem-arel-6
+not-installed"ruby2.6-rubygem-arel-7
+not-installed"ruby2.6-rubygem-arel-8
+not-installed"ruby2.6-rubygem-arel-doc
+not-installed"ruby2.6-rubygem-arel-doc-3_0
+not-installed"ruby2.6-rubygem-arel-doc-6
+not-installed"ruby2.6-rubygem-arel-doc-7
+not-installed"ruby2.6-rubygem-arel-doc-8
+not-installed"ruby2.6-rubygem-arel-testsuite-3_0
+not-installed"ruby2.6-rubygem-asciidoctor
+not-installed"ruby2.6-rubygem-asciidoctor-doc
+not-installed"ruby2.6-rubygem-atomic
+not-installed"ruby2.6-rubygem-atomic-doc
+not-installed"ruby2.6-rubygem-atomic-testsuite
+not-installed"ruby2.6-rubygem-attr_required
+not-installed"ruby2.6-rubygem-attr_required-doc
+not-installed"ruby2.6-rubygem-attr_required-testsuite
+not-installed"ruby2.6-rubygem-autoprefixer-rails
+not-installed"ruby2.6-rubygem-autoprefixer-rails-doc
+not-installed"ruby2.6-rubygem-autoprefixer-rails-testsuite
+not-installed"ruby2.6-rubygem-axiom-types
+not-installed"ruby2.6-rubygem-axiom-types-doc
+not-installed"ruby2.6-rubygem-axiom-types-testsuite
+not-installed"ruby2.6-rubygem-base32
+not-installed"ruby2.6-rubygem-base32-doc
+not-installed"ruby2.6-rubygem-base32-testsuite
+not-installed"ruby2.6-rubygem-bcrypt
+not-installed"ruby2.6-rubygem-bcrypt-doc
+not-installed"ruby2.6-rubygem-bcrypt-ruby
+not-installed"ruby2.6-rubygem-bcrypt-ruby-doc
+not-installed"ruby2.6-rubygem-bcrypt-testsuite
+not-installed"ruby2.6-rubygem-bcrypt_pbkdf
+not-installed"ruby2.6-rubygem-bcrypt_pbkdf-doc
+not-installed"ruby2.6-rubygem-bcrypt_pbkdf-testsuite
+not-installed"ruby2.6-rubygem-bindata
+not-installed"ruby2.6-rubygem-bindata-doc
+not-installed"ruby2.6-rubygem-bindata-testsuite
+not-installed"ruby2.6-rubygem-bindex
+not-installed"ruby2.6-rubygem-bindex-doc
+not-installed"ruby2.6-rubygem-bindex-testsuite
+not-installed"ruby2.6-rubygem-binding_of_caller
+not-installed"ruby2.6-rubygem-binding_of_caller-doc
+not-installed"ruby2.6-rubygem-binding_of_caller-testsuite
+not-installed"ruby2.6-rubygem-bootsnap
+not-installed"ruby2.6-rubygem-bootsnap-doc
+not-installed"ruby2.6-rubygem-bootstrap-sass
+not-installed"ruby2.6-rubygem-bootstrap-sass-doc
+not-installed"ruby2.6-rubygem-bootstrap-sass-testsuite
+not-installed"ruby2.6-rubygem-buff-extensions
+not-installed"ruby2.6-rubygem-buff-extensions-doc
+not-installed"ruby2.6-rubygem-buff-extensions-testsuite
+not-installed"ruby2.6-rubygem-buff-ignore
+not-installed"ruby2.6-rubygem-buff-ignore-doc
+not-installed"ruby2.6-rubygem-buff-ignore-testsuite
+not-installed"ruby2.6-rubygem-buff-ruby_engine
+not-installed"ruby2.6-rubygem-buff-ruby_engine-doc
+not-installed"ruby2.6-rubygem-buff-ruby_engine-testsuite
+not-installed"ruby2.6-rubygem-builder
+not-installed"ruby2.6-rubygem-builder-doc
+not-installed"ruby2.6-rubygem-builder-testsuite
+not-installed"ruby2.6-rubygem-bundler
+not-installed"ruby2.6-rubygem-bundler-audit
+not-installed"ruby2.6-rubygem-bundler-audit-doc
+not-installed"ruby2.6-rubygem-bundler-audit-testsuite
+not-installed"ruby2.6-rubygem-bundler-doc
+not-installed"ruby2.6-rubygem-bunny
+not-installed"ruby2.6-rubygem-bunny-doc
+not-installed"ruby2.6-rubygem-bunny-testsuite
+not-installed"ruby2.6-rubygem-byebug
+not-installed"ruby2.6-rubygem-byebug-doc
+not-installed"ruby2.6-rubygem-capistrano
+not-installed"ruby2.6-rubygem-capistrano-doc
+not-installed"ruby2.6-rubygem-capistrano-harrow
+not-installed"ruby2.6-rubygem-capistrano-harrow-doc
+not-installed"ruby2.6-rubygem-capistrano-stats
+not-installed"ruby2.6-rubygem-capistrano-stats-doc
+not-installed"ruby2.6-rubygem-capistrano-testsuite
+not-installed"ruby2.6-rubygem-celluloid
+not-installed"ruby2.6-rubygem-celluloid-doc
+not-installed"ruby2.6-rubygem-celluloid-essentials
+not-installed"ruby2.6-rubygem-celluloid-essentials-doc
+not-installed"ruby2.6-rubygem-celluloid-extras
+not-installed"ruby2.6-rubygem-celluloid-extras-doc
+not-installed"ruby2.6-rubygem-celluloid-fsm
+not-installed"ruby2.6-rubygem-celluloid-fsm-doc
+not-installed"ruby2.6-rubygem-celluloid-pool
+not-installed"ruby2.6-rubygem-celluloid-pool-doc
+not-installed"ruby2.6-rubygem-celluloid-supervision
+not-installed"ruby2.6-rubygem-celluloid-supervision-doc
+not-installed"ruby2.6-rubygem-celluloid-testsuite
+installed"ruby2.6-rubygem-cfa
+not-installed"ruby2.6-rubygem-cfa-doc
+installed"ruby2.6-rubygem-cfa_grub2
+not-installed"ruby2.6-rubygem-cfa_grub2-doc
+not-installed"ruby2.6-rubygem-changelog_generator
+not-installed"ruby2.6-rubygem-changelog_generator-doc
+not-installed"ruby2.6-rubygem-changelog_generator-testsuite
+installed"ruby2.6-rubygem-cheetah
+not-installed"ruby2.6-rubygem-cheetah-doc
+not-installed"ruby2.6-rubygem-childprocess
+not-installed"ruby2.6-rubygem-childprocess-0_6
+not-installed"ruby2.6-rubygem-childprocess-doc
+not-installed"ruby2.6-rubygem-childprocess-doc-0_6
+not-installed"ruby2.6-rubygem-childprocess-testsuite
+not-installed"ruby2.6-rubygem-childprocess-testsuite-0_6
+not-installed"ruby2.6-rubygem-ci_reporter
+not-installed"ruby2.6-rubygem-ci_reporter-doc
+not-installed"ruby2.6-rubygem-ci_reporter-testsuite
+not-installed"ruby2.6-rubygem-cleanroom
+not-installed"ruby2.6-rubygem-cleanroom-doc
+not-installed"ruby2.6-rubygem-cleanroom-testsuite
+not-installed"ruby2.6-rubygem-coderay
+not-installed"ruby2.6-rubygem-coderay-doc
+not-installed"ruby2.6-rubygem-coercible
+not-installed"ruby2.6-rubygem-coercible-doc
+not-installed"ruby2.6-rubygem-coercible-testsuite
+not-installed"ruby2.6-rubygem-coffee-rails
+not-installed"ruby2.6-rubygem-coffee-rails-doc
+not-installed"ruby2.6-rubygem-coffee-script
+not-installed"ruby2.6-rubygem-coffee-script-doc
+not-installed"ruby2.6-rubygem-coffee-script-source
+not-installed"ruby2.6-rubygem-coffee-script-source-doc
+not-installed"ruby2.6-rubygem-colorator
+not-installed"ruby2.6-rubygem-colorator-0
+not-installed"ruby2.6-rubygem-colorator-doc
+not-installed"ruby2.6-rubygem-colorator-doc-0
+not-installed"ruby2.6-rubygem-colorator-testsuite-0
+not-installed"ruby2.6-rubygem-colored
+not-installed"ruby2.6-rubygem-colored-doc
+not-installed"ruby2.6-rubygem-colored-testsuite
+not-installed"ruby2.6-rubygem-colorize
+not-installed"ruby2.6-rubygem-colorize-doc
+not-installed"ruby2.6-rubygem-colorize-testsuite
+not-installed"ruby2.6-rubygem-columnize
+not-installed"ruby2.6-rubygem-columnize-doc
+not-installed"ruby2.6-rubygem-columnize-testsuite
+not-installed"ruby2.6-rubygem-commander
+not-installed"ruby2.6-rubygem-commander-doc
+not-installed"ruby2.6-rubygem-commander-testsuite
+not-installed"ruby2.6-rubygem-concurrent-ruby
+not-installed"ruby2.6-rubygem-concurrent-ruby-doc
+not-installed"ruby2.6-rubygem-cool.io
+not-installed"ruby2.6-rubygem-cool.io-doc
+not-installed"ruby2.6-rubygem-cool.io-testsuite
+not-installed"ruby2.6-rubygem-crack
+not-installed"ruby2.6-rubygem-crack-doc
+not-installed"ruby2.6-rubygem-crack-testsuite
+not-installed"ruby2.6-rubygem-crass
+not-installed"ruby2.6-rubygem-crass-doc
+not-installed"ruby2.6-rubygem-crass-testsuite
+not-installed"ruby2.6-rubygem-cri
+not-installed"ruby2.6-rubygem-cri-doc
+not-installed"ruby2.6-rubygem-cri-testsuite
+not-installed"ruby2.6-rubygem-cssmin
+not-installed"ruby2.6-rubygem-cssmin-doc
+not-installed"ruby2.6-rubygem-daemon_controller
+not-installed"ruby2.6-rubygem-daemon_controller-doc
+not-installed"ruby2.6-rubygem-daemon_controller-testsuite
+not-installed"ruby2.6-rubygem-daemons
+not-installed"ruby2.6-rubygem-daemons-doc
+not-installed"ruby2.6-rubygem-debug_inspector
+not-installed"ruby2.6-rubygem-debug_inspector-doc
+not-installed"ruby2.6-rubygem-debug_inspector-testsuite
+not-installed"ruby2.6-rubygem-debugger-linecache
+not-installed"ruby2.6-rubygem-debugger-linecache-doc
+not-installed"ruby2.6-rubygem-debugger-linecache-testsuite
+not-installed"ruby2.6-rubygem-deep_merge
+not-installed"ruby2.6-rubygem-deep_merge-doc
+not-installed"ruby2.6-rubygem-deep_merge-testsuite
+not-installed"ruby2.6-rubygem-delayed_job
+not-installed"ruby2.6-rubygem-delayed_job-doc
+not-installed"ruby2.6-rubygem-delayed_job-testsuite
+not-installed"ruby2.6-rubygem-delayed_job_active_record
+not-installed"ruby2.6-rubygem-delayed_job_active_record-doc
+not-installed"ruby2.6-rubygem-descendants_tracker
+not-installed"ruby2.6-rubygem-descendants_tracker-doc
+not-installed"ruby2.6-rubygem-descendants_tracker-testsuite
+not-installed"ruby2.6-rubygem-devise
+not-installed"ruby2.6-rubygem-devise-doc
+not-installed"ruby2.6-rubygem-devise-i18n
+not-installed"ruby2.6-rubygem-devise-i18n-doc
+not-installed"ruby2.6-rubygem-devise_ldap_authenticatable
+not-installed"ruby2.6-rubygem-devise_ldap_authenticatable-doc
+not-installed"ruby2.6-rubygem-devise_ldap_authenticatable-testsuite
+not-installed"ruby2.6-rubygem-dice
+not-installed"ruby2.6-rubygem-dice-doc
+not-installed"ruby2.6-rubygem-diff-lcs
+not-installed"ruby2.6-rubygem-diff-lcs-doc
+not-installed"ruby2.6-rubygem-diff-lcs-testsuite
+not-installed"ruby2.6-rubygem-diffy
+not-installed"ruby2.6-rubygem-diffy-doc
+not-installed"ruby2.6-rubygem-diffy-testsuite
+not-installed"ruby2.6-rubygem-dig_rb
+not-installed"ruby2.6-rubygem-dig_rb-doc
+not-installed"ruby2.6-rubygem-docile
+not-installed"ruby2.6-rubygem-docile-1_1
+not-installed"ruby2.6-rubygem-docile-doc
+not-installed"ruby2.6-rubygem-docile-doc-1_1
+not-installed"ruby2.6-rubygem-docile-testsuite-1_1
+not-installed"ruby2.6-rubygem-domain_name
+not-installed"ruby2.6-rubygem-domain_name-doc
+not-installed"ruby2.6-rubygem-domain_name-testsuite
+not-installed"ruby2.6-rubygem-ed25519
+not-installed"ruby2.6-rubygem-ed25519-doc
+not-installed"ruby2.6-rubygem-em-websocket
+not-installed"ruby2.6-rubygem-em-websocket-doc
+not-installed"ruby2.6-rubygem-em-websocket-testsuite
+not-installed"ruby2.6-rubygem-equalizer
+not-installed"ruby2.6-rubygem-equalizer-doc
+not-installed"ruby2.6-rubygem-equalizer-testsuite
+not-installed"ruby2.6-rubygem-erubi
+not-installed"ruby2.6-rubygem-erubi-doc
+not-installed"ruby2.6-rubygem-erubi-testsuite
+not-installed"ruby2.6-rubygem-erubis
+not-installed"ruby2.6-rubygem-erubis-2_6
+not-installed"ruby2.6-rubygem-erubis-doc
+not-installed"ruby2.6-rubygem-erubis-doc-2_6
+not-installed"ruby2.6-rubygem-erubis-testsuite
+not-installed"ruby2.6-rubygem-erubis-testsuite-2_6
+not-installed"ruby2.6-rubygem-eventmachine
+not-installed"ruby2.6-rubygem-eventmachine-doc
+not-installed"ruby2.6-rubygem-exception_notification
+not-installed"ruby2.6-rubygem-exception_notification-doc
+not-installed"ruby2.6-rubygem-exception_notification-testsuite
+not-installed"ruby2.6-rubygem-excon
+not-installed"ruby2.6-rubygem-excon-doc
+not-installed"ruby2.6-rubygem-execjs
+not-installed"ruby2.6-rubygem-execjs-doc
+not-installed"ruby2.6-rubygem-extlib
+not-installed"ruby2.6-rubygem-extlib-doc
+not-installed"ruby2.6-rubygem-extlib-testsuite
+not-installed"ruby2.6-rubygem-factory_girl
+not-installed"ruby2.6-rubygem-factory_girl-doc
+not-installed"ruby2.6-rubygem-factory_girl_rails
+not-installed"ruby2.6-rubygem-factory_girl_rails-doc
+not-installed"ruby2.6-rubygem-fake_ftp
+not-installed"ruby2.6-rubygem-fake_ftp-0_1
+not-installed"ruby2.6-rubygem-fake_ftp-doc
+not-installed"ruby2.6-rubygem-fake_ftp-doc-0_1
+not-installed"ruby2.6-rubygem-fake_ftp-testsuite
+not-installed"ruby2.6-rubygem-fake_ftp-testsuite-0_1
+not-installed"ruby2.6-rubygem-faraday
+not-installed"ruby2.6-rubygem-faraday-0_12
+not-installed"ruby2.6-rubygem-faraday-doc
+not-installed"ruby2.6-rubygem-faraday-doc-0_12
+not-installed"ruby2.6-rubygem-faraday_middleware
+not-installed"ruby2.6-rubygem-faraday_middleware-doc
+not-installed"ruby2.6-rubygem-faraday_middleware-multi_json
+not-installed"ruby2.6-rubygem-faraday_middleware-multi_json-doc
+not-installed"ruby2.6-rubygem-faraday_middleware-multi_json-testsuite
+installed"ruby2.6-rubygem-fast_gettext
+not-installed"ruby2.6-rubygem-fast_gettext-1.1
+not-installed"ruby2.6-rubygem-fast_gettext-doc
+not-installed"ruby2.6-rubygem-fast_gettext-doc-1.1
+not-installed"ruby2.6-rubygem-fast_xs
+not-installed"ruby2.6-rubygem-fast_xs-doc
+not-installed"ruby2.6-rubygem-fast_xs-testsuite
+not-installed"ruby2.6-rubygem-fastercsv
+not-installed"ruby2.6-rubygem-fastercsv-doc
+not-installed"ruby2.6-rubygem-fastercsv-testsuite
+not-installed"ruby2.6-rubygem-ffi
+not-installed"ruby2.6-rubygem-ffi-doc
+not-installed"ruby2.6-rubygem-file-tail
+not-installed"ruby2.6-rubygem-file-tail-doc
+not-installed"ruby2.6-rubygem-flog
+not-installed"ruby2.6-rubygem-flog-doc
+not-installed"ruby2.6-rubygem-flog-testsuite
+not-installed"ruby2.6-rubygem-fluentd
+not-installed"ruby2.6-rubygem-fluentd-doc
+not-installed"ruby2.6-rubygem-fluentd-testsuite
+not-installed"ruby2.6-rubygem-fog-core
+not-installed"ruby2.6-rubygem-fog-core-doc
+not-installed"ruby2.6-rubygem-fog-core-testsuite
+not-installed"ruby2.6-rubygem-fog-json
+not-installed"ruby2.6-rubygem-fog-json-doc
+not-installed"ruby2.6-rubygem-fog-json-testsuite
+not-installed"ruby2.6-rubygem-fog-libvirt
+not-installed"ruby2.6-rubygem-fog-libvirt-doc
+not-installed"ruby2.6-rubygem-fog-xml
+not-installed"ruby2.6-rubygem-fog-xml-doc
+not-installed"ruby2.6-rubygem-fog-xml-testsuite
+not-installed"ruby2.6-rubygem-font-awesome-rails
+not-installed"ruby2.6-rubygem-font-awesome-rails-doc
+not-installed"ruby2.6-rubygem-font-awesome-rails-testsuite
+not-installed"ruby2.6-rubygem-formatador
+not-installed"ruby2.6-rubygem-formatador-doc
+not-installed"ruby2.6-rubygem-forwardable-extended
+not-installed"ruby2.6-rubygem-forwardable-extended-doc
+installed"ruby2.6-rubygem-gem2rpm
+not-installed"ruby2.6-rubygem-get_process_mem
+not-installed"ruby2.6-rubygem-get_process_mem-doc
+not-installed"ruby2.6-rubygem-get_process_mem-testsuite
+not-installed"ruby2.6-rubygem-gettext
+not-installed"ruby2.6-rubygem-gettext-doc
+not-installed"ruby2.6-rubygem-gettext-setup
+not-installed"ruby2.6-rubygem-gettext-setup-doc
+not-installed"ruby2.6-rubygem-gettext-setup-testsuite
+not-installed"ruby2.6-rubygem-gettext-testsuite
+not-installed"ruby2.6-rubygem-gettext_i18n_rails
+not-installed"ruby2.6-rubygem-gettext_i18n_rails-doc
+not-installed"ruby2.6-rubygem-gettext_i18n_rails_js
+not-installed"ruby2.6-rubygem-gettext_i18n_rails_js-doc
+not-installed"ruby2.6-rubygem-gettext_i18n_rails_js-testsuite
+not-installed"ruby2.6-rubygem-gli
+not-installed"ruby2.6-rubygem-gli-doc
+not-installed"ruby2.6-rubygem-gli-testsuite
+not-installed"ruby2.6-rubygem-globalid
+not-installed"ruby2.6-rubygem-globalid-doc
+not-installed"ruby2.6-rubygem-gpgme
+not-installed"ruby2.6-rubygem-gpgme-doc
+not-installed"ruby2.6-rubygem-gpgme-testsuite
+not-installed"ruby2.6-rubygem-grape
+not-installed"ruby2.6-rubygem-grape-doc
+not-installed"ruby2.6-rubygem-grape-testsuite
+not-installed"ruby2.6-rubygem-gravatar_image_tag
+not-installed"ruby2.6-rubygem-gravatar_image_tag-doc
+not-installed"ruby2.6-rubygem-gravatar_image_tag-testsuite
+not-installed"ruby2.6-rubygem-gssapi
+not-installed"ruby2.6-rubygem-gssapi-doc
+not-installed"ruby2.6-rubygem-gssapi-testsuite
+not-installed"ruby2.6-rubygem-gyoku
+not-installed"ruby2.6-rubygem-gyoku-doc
+not-installed"ruby2.6-rubygem-gyoku-testsuite
+not-installed"ruby2.6-rubygem-haml
+not-installed"ruby2.6-rubygem-haml-doc
+not-installed"ruby2.6-rubygem-haml-rails
+not-installed"ruby2.6-rubygem-haml-rails-doc
+not-installed"ruby2.6-rubygem-haml-rails-testsuite
+not-installed"ruby2.6-rubygem-has_mobile_views
+not-installed"ruby2.6-rubygem-has_mobile_views-doc
+not-installed"ruby2.6-rubygem-has_mobile_views-testsuite
+not-installed"ruby2.6-rubygem-hashdiff
+not-installed"ruby2.6-rubygem-hashdiff-doc
+not-installed"ruby2.6-rubygem-hashdiff-testsuite
+not-installed"ruby2.6-rubygem-hashicorp-checkpoint
+not-installed"ruby2.6-rubygem-hashicorp-checkpoint-doc
+not-installed"ruby2.6-rubygem-hashicorp-checkpoint-testsuite
+not-installed"ruby2.6-rubygem-hashie
+not-installed"ruby2.6-rubygem-hashie-doc
+not-installed"ruby2.6-rubygem-hashie-testsuite
+not-installed"ruby2.6-rubygem-highline
+not-installed"ruby2.6-rubygem-highline-1_6
+not-installed"ruby2.6-rubygem-highline-1_7
+not-installed"ruby2.6-rubygem-highline-doc
+not-installed"ruby2.6-rubygem-highline-doc-1_6
+not-installed"ruby2.6-rubygem-highline-doc-1_7
+not-installed"ruby2.6-rubygem-highline-testsuite-1_6
+not-installed"ruby2.6-rubygem-highline-testsuite-1_7
+not-installed"ruby2.6-rubygem-hike
+not-installed"ruby2.6-rubygem-hike-1_2
+not-installed"ruby2.6-rubygem-hike-doc
+not-installed"ruby2.6-rubygem-hike-doc-1_2
+not-installed"ruby2.6-rubygem-hitimes
+not-installed"ruby2.6-rubygem-hitimes-doc
+not-installed"ruby2.6-rubygem-hitimes-testsuite
+not-installed"ruby2.6-rubygem-hoe
+not-installed"ruby2.6-rubygem-hoe-doc
+not-installed"ruby2.6-rubygem-hoe-testsuite
+not-installed"ruby2.6-rubygem-hpricot
+not-installed"ruby2.6-rubygem-hpricot-doc
+not-installed"ruby2.6-rubygem-hpricot-testsuite
+not-installed"ruby2.6-rubygem-html2haml
+not-installed"ruby2.6-rubygem-html2haml-doc
+not-installed"ruby2.6-rubygem-html2haml-testsuite
+not-installed"ruby2.6-rubygem-http-cookie
+not-installed"ruby2.6-rubygem-http-cookie-doc
+not-installed"ruby2.6-rubygem-http-cookie-testsuite
+not-installed"ruby2.6-rubygem-http_accept_language
+not-installed"ruby2.6-rubygem-http_accept_language-doc
+not-installed"ruby2.6-rubygem-http_accept_language-testsuite
+not-installed"ruby2.6-rubygem-http_parser.rb
+not-installed"ruby2.6-rubygem-http_parser.rb-doc
+not-installed"ruby2.6-rubygem-http_parser.rb-testsuite
+not-installed"ruby2.6-rubygem-httpclient
+not-installed"ruby2.6-rubygem-httpclient-doc
+not-installed"ruby2.6-rubygem-httpclient-testsuite
+not-installed"ruby2.6-rubygem-i18n
+not-installed"ruby2.6-rubygem-i18n-0_6
+not-installed"ruby2.6-rubygem-i18n-0_9
+not-installed"ruby2.6-rubygem-i18n-1.1
+not-installed"ruby2.6-rubygem-i18n-doc
+not-installed"ruby2.6-rubygem-i18n-doc-0_6
+not-installed"ruby2.6-rubygem-i18n-doc-0_9
+not-installed"ruby2.6-rubygem-i18n-doc-1.1
+not-installed"ruby2.6-rubygem-i18n-testsuite-0_6
+not-installed"ruby2.6-rubygem-i18n-testsuite-0_9
+not-installed"ruby2.6-rubygem-i18n-testsuite-1.1
+not-installed"ruby2.6-rubygem-ice_nine
+not-installed"ruby2.6-rubygem-ice_nine-doc
+not-installed"ruby2.6-rubygem-ice_nine-testsuite
+not-installed"ruby2.6-rubygem-inifile
+not-installed"ruby2.6-rubygem-inifile-doc
+not-installed"ruby2.6-rubygem-inifile-testsuite
+not-installed"ruby2.6-rubygem-ipaddress
+not-installed"ruby2.6-rubygem-ipaddress-doc
+not-installed"ruby2.6-rubygem-ipaddress-testsuite
+not-installed"ruby2.6-rubygem-jbuilder
+not-installed"ruby2.6-rubygem-jbuilder-doc
+not-installed"ruby2.6-rubygem-jbuilder-testsuite
+not-installed"ruby2.6-rubygem-jekyll
+not-installed"ruby2.6-rubygem-jekyll-doc
+not-installed"ruby2.6-rubygem-jekyll-sass-converter
+not-installed"ruby2.6-rubygem-jekyll-sass-converter-doc
+not-installed"ruby2.6-rubygem-jekyll-watch
+not-installed"ruby2.6-rubygem-jekyll-watch-doc
+not-installed"ruby2.6-rubygem-jmespath
+not-installed"ruby2.6-rubygem-jmespath-doc
+not-installed"ruby2.6-rubygem-journey-1_0
+not-installed"ruby2.6-rubygem-journey-doc-1_0
+not-installed"ruby2.6-rubygem-journey-testsuite-1_0
+not-installed"ruby2.6-rubygem-jquery-rails
+not-installed"ruby2.6-rubygem-jquery-rails-doc
+not-installed"ruby2.6-rubygem-jquery-rails-testsuite
+not-installed"ruby2.6-rubygem-jquery-ui-rails
+not-installed"ruby2.6-rubygem-jquery-ui-rails-doc
+not-installed"ruby2.6-rubygem-js-routes
+not-installed"ruby2.6-rubygem-js-routes-doc
+not-installed"ruby2.6-rubygem-js-routes-testsuite
+not-installed"ruby2.6-rubygem-json
+not-installed"ruby2.6-rubygem-json-doc
+not-installed"ruby2.6-rubygem-json-jwt
+not-installed"ruby2.6-rubygem-json-jwt-doc
+not-installed"ruby2.6-rubygem-json-schema
+not-installed"ruby2.6-rubygem-json-schema-doc
+not-installed"ruby2.6-rubygem-json_pure
+not-installed"ruby2.6-rubygem-json_pure-doc
+not-installed"ruby2.6-rubygem-jwt
+not-installed"ruby2.6-rubygem-jwt-1_5
+not-installed"ruby2.6-rubygem-jwt-doc
+not-installed"ruby2.6-rubygem-jwt-doc-1_5
+not-installed"ruby2.6-rubygem-jwt-testsuite-1_5
+not-installed"ruby2.6-rubygem-kgio
+not-installed"ruby2.6-rubygem-kgio-doc
+not-installed"ruby2.6-rubygem-kgio-testsuite
+not-installed"ruby2.6-rubygem-kramdown
+not-installed"ruby2.6-rubygem-kramdown-doc
+not-installed"ruby2.6-rubygem-kramdown-testsuite
+not-installed"ruby2.6-rubygem-launchy
+not-installed"ruby2.6-rubygem-launchy-doc
+not-installed"ruby2.6-rubygem-launchy-testsuite
+not-installed"ruby2.6-rubygem-levenshtein
+not-installed"ruby2.6-rubygem-levenshtein-doc
+not-installed"ruby2.6-rubygem-levenshtein-testsuite
+not-installed"ruby2.6-rubygem-librarian
+not-installed"ruby2.6-rubygem-librarian-doc
+not-installed"ruby2.6-rubygem-librarian-testsuite
+not-installed"ruby2.6-rubygem-libyui-rake
+not-installed"ruby2.6-rubygem-libyui-rake-doc
+not-installed"ruby2.6-rubygem-lightbox2
+not-installed"ruby2.6-rubygem-lightbox2-doc
+not-installed"ruby2.6-rubygem-liquid
+not-installed"ruby2.6-rubygem-liquid-3
+not-installed"ruby2.6-rubygem-liquid-doc
+not-installed"ruby2.6-rubygem-liquid-doc-3
+not-installed"ruby2.6-rubygem-liquid-testsuite
+not-installed"ruby2.6-rubygem-liquid-testsuite-3
+not-installed"ruby2.6-rubygem-listen
+not-installed"ruby2.6-rubygem-listen-3_0
+not-installed"ruby2.6-rubygem-listen-doc
+not-installed"ruby2.6-rubygem-listen-doc-3_0
+not-installed"ruby2.6-rubygem-little-plugger
+not-installed"ruby2.6-rubygem-little-plugger-doc
+not-installed"ruby2.6-rubygem-little-plugger-testsuite
+not-installed"ruby2.6-rubygem-locale
+not-installed"ruby2.6-rubygem-locale-doc
+not-installed"ruby2.6-rubygem-locale-testsuite
+not-installed"ruby2.6-rubygem-log4r
+not-installed"ruby2.6-rubygem-log4r-doc
+not-installed"ruby2.6-rubygem-logging
+not-installed"ruby2.6-rubygem-logging-doc
+not-installed"ruby2.6-rubygem-logging-testsuite
+not-installed"ruby2.6-rubygem-loofah
+not-installed"ruby2.6-rubygem-loofah-doc
+not-installed"ruby2.6-rubygem-loofah-testsuite
+not-installed"ruby2.6-rubygem-mail
+not-installed"ruby2.6-rubygem-mail-2_5
+not-installed"ruby2.6-rubygem-mail-doc
+not-installed"ruby2.6-rubygem-mail-doc-2_5
+not-installed"ruby2.6-rubygem-manpages
+not-installed"ruby2.6-rubygem-manpages-doc
+not-installed"ruby2.6-rubygem-marcel
+not-installed"ruby2.6-rubygem-marcel-doc
+not-installed"ruby2.6-rubygem-memcache-client
+not-installed"ruby2.6-rubygem-memcache-client-doc
+not-installed"ruby2.6-rubygem-memcache-client-testsuite
+not-installed"ruby2.6-rubygem-mercenary
+not-installed"ruby2.6-rubygem-mercenary-doc
+not-installed"ruby2.6-rubygem-mercenary-testsuite
+not-installed"ruby2.6-rubygem-metaclass
+not-installed"ruby2.6-rubygem-metaclass-doc
+not-installed"ruby2.6-rubygem-metaclass-testsuite
+not-installed"ruby2.6-rubygem-method_source
+not-installed"ruby2.6-rubygem-method_source-doc
+not-installed"ruby2.6-rubygem-method_source-testsuite
+not-installed"ruby2.6-rubygem-micromachine
+not-installed"ruby2.6-rubygem-micromachine-doc
+not-installed"ruby2.6-rubygem-micromachine-testsuite
+not-installed"ruby2.6-rubygem-mime-types
+not-installed"ruby2.6-rubygem-mime-types-1
+not-installed"ruby2.6-rubygem-mime-types-data
+not-installed"ruby2.6-rubygem-mime-types-data-doc
+not-installed"ruby2.6-rubygem-mime-types-doc
+not-installed"ruby2.6-rubygem-mime-types-doc-1
+not-installed"ruby2.6-rubygem-mime-types-testsuite
+not-installed"ruby2.6-rubygem-mime-types-testsuite-1
+not-installed"ruby2.6-rubygem-mimemagic
+not-installed"ruby2.6-rubygem-mimemagic-doc
+not-installed"ruby2.6-rubygem-mimemagic-testsuite
+not-installed"ruby2.6-rubygem-mini_magick
+not-installed"ruby2.6-rubygem-mini_magick-doc
+not-installed"ruby2.6-rubygem-mini_mime
+not-installed"ruby2.6-rubygem-mini_mime-doc
+not-installed"ruby2.6-rubygem-mini_portile2
+not-installed"ruby2.6-rubygem-mini_portile2-2_3
+not-installed"ruby2.6-rubygem-mini_portile2-doc
+not-installed"ruby2.6-rubygem-mini_portile2-doc-2_3
+not-installed"ruby2.6-rubygem-mini_portile2-testsuite
+not-installed"ruby2.6-rubygem-mini_portile2-testsuite-2_3
+not-installed"ruby2.6-rubygem-minitar
+not-installed"ruby2.6-rubygem-minitar-doc
+not-installed"ruby2.6-rubygem-mixlib-authentication
+not-installed"ruby2.6-rubygem-mixlib-authentication-doc
+not-installed"ruby2.6-rubygem-mixlib-cli
+not-installed"ruby2.6-rubygem-mixlib-cli-doc
+not-installed"ruby2.6-rubygem-mixlib-config
+not-installed"ruby2.6-rubygem-mixlib-config-doc
+not-installed"ruby2.6-rubygem-mixlib-log
+not-installed"ruby2.6-rubygem-mixlib-log-doc
+not-installed"ruby2.6-rubygem-mixlib-shellout
+not-installed"ruby2.6-rubygem-mixlib-shellout-doc
+not-installed"ruby2.6-rubygem-mobileesp_converted
+not-installed"ruby2.6-rubygem-mobileesp_converted-doc
+not-installed"ruby2.6-rubygem-mobileesp_converted-testsuite
+not-installed"ruby2.6-rubygem-mocha
+not-installed"ruby2.6-rubygem-mocha-doc
+not-installed"ruby2.6-rubygem-mocha-testsuite
+not-installed"ruby2.6-rubygem-moneta
+not-installed"ruby2.6-rubygem-moneta-0_7
+not-installed"ruby2.6-rubygem-moneta-doc
+not-installed"ruby2.6-rubygem-moneta-doc-0_7
+not-installed"ruby2.6-rubygem-moneta-testsuite
+not-installed"ruby2.6-rubygem-moneta-testsuite-0_7
+not-installed"ruby2.6-rubygem-msgpack
+not-installed"ruby2.6-rubygem-msgpack-doc
+not-installed"ruby2.6-rubygem-msgpack-testsuite
+not-installed"ruby2.6-rubygem-multi_json
+not-installed"ruby2.6-rubygem-multi_json-doc
+not-installed"ruby2.6-rubygem-multi_xml
+not-installed"ruby2.6-rubygem-multi_xml-doc
+not-installed"ruby2.6-rubygem-multipart-post
+not-installed"ruby2.6-rubygem-multipart-post-doc
+not-installed"ruby2.6-rubygem-multipart-post-testsuite
+not-installed"ruby2.6-rubygem-mustache
+not-installed"ruby2.6-rubygem-mustache-doc
+not-installed"ruby2.6-rubygem-mustache-testsuite
+not-installed"ruby2.6-rubygem-mustermann
+not-installed"ruby2.6-rubygem-mustermann-doc
+not-installed"ruby2.6-rubygem-mustermann-grape
+not-installed"ruby2.6-rubygem-mustermann-grape-doc
+not-installed"ruby2.6-rubygem-mustermann-grape-testsuite
+not-installed"ruby2.6-rubygem-mustermann-testsuite
+not-installed"ruby2.6-rubygem-mysql2
+not-installed"ruby2.6-rubygem-mysql2-0.4
+not-installed"ruby2.6-rubygem-mysql2-doc
+not-installed"ruby2.6-rubygem-mysql2-doc-0.4
+not-installed"ruby2.6-rubygem-mysql2-testsuite
+not-installed"ruby2.6-rubygem-mysql2-testsuite-0.4
+not-installed"ruby2.6-rubygem-net-ldap
+not-installed"ruby2.6-rubygem-net-ldap-doc
+not-installed"ruby2.6-rubygem-net-ldap-testsuite
+not-installed"ruby2.6-rubygem-net-scp
+not-installed"ruby2.6-rubygem-net-scp-1_1
+not-installed"ruby2.6-rubygem-net-scp-1_2
+not-installed"ruby2.6-rubygem-net-scp-doc
+not-installed"ruby2.6-rubygem-net-scp-doc-1_1
+not-installed"ruby2.6-rubygem-net-scp-doc-1_2
+not-installed"ruby2.6-rubygem-net-scp-testsuite-1_1
+not-installed"ruby2.6-rubygem-net-scp-testsuite-1_2
+not-installed"ruby2.6-rubygem-net-sftp
+not-installed"ruby2.6-rubygem-net-sftp-doc
+not-installed"ruby2.6-rubygem-net-sftp-testsuite
+not-installed"ruby2.6-rubygem-net-ssh
+not-installed"ruby2.6-rubygem-net-ssh-4_1
+not-installed"ruby2.6-rubygem-net-ssh-5.1
+not-installed"ruby2.6-rubygem-net-ssh-doc
+not-installed"ruby2.6-rubygem-net-ssh-doc-4_1
+not-installed"ruby2.6-rubygem-net-ssh-doc-5.1
+not-installed"ruby2.6-rubygem-net-ssh-gateway
+not-installed"ruby2.6-rubygem-net-ssh-gateway-doc
+not-installed"ruby2.6-rubygem-net-ssh-multi
+not-installed"ruby2.6-rubygem-net-ssh-multi-1_1
+not-installed"ruby2.6-rubygem-net-ssh-multi-doc
+not-installed"ruby2.6-rubygem-net-ssh-multi-doc-1_1
+not-installed"ruby2.6-rubygem-net-ssh-multi-testsuite
+not-installed"ruby2.6-rubygem-net-ssh-multi-testsuite-1_1
+not-installed"ruby2.6-rubygem-netrc
+not-installed"ruby2.6-rubygem-netrc-doc
+not-installed"ruby2.6-rubygem-netrc-testsuite
+not-installed"ruby2.6-rubygem-nio4r
+not-installed"ruby2.6-rubygem-nio4r-doc
+not-installed"ruby2.6-rubygem-nio4r-testsuite
+not-installed"ruby2.6-rubygem-nokogiri
+not-installed"ruby2.6-rubygem-nokogiri-doc
+not-installed"ruby2.6-rubygem-nori
+not-installed"ruby2.6-rubygem-nori-doc
+not-installed"ruby2.6-rubygem-nori-testsuite
+not-installed"ruby2.6-rubygem-oauth
+not-installed"ruby2.6-rubygem-oauth-doc
+not-installed"ruby2.6-rubygem-oauth2
+not-installed"ruby2.6-rubygem-oauth2-doc
+not-installed"ruby2.6-rubygem-omniauth
+not-installed"ruby2.6-rubygem-omniauth-doc
+not-installed"ruby2.6-rubygem-omniauth-github
+not-installed"ruby2.6-rubygem-omniauth-github-doc
+not-installed"ruby2.6-rubygem-omniauth-github-testsuite
+not-installed"ruby2.6-rubygem-omniauth-gitlab
+not-installed"ruby2.6-rubygem-omniauth-gitlab-doc
+not-installed"ruby2.6-rubygem-omniauth-gitlab-testsuite
+not-installed"ruby2.6-rubygem-omniauth-google-oauth2
+not-installed"ruby2.6-rubygem-omniauth-google-oauth2-doc
+not-installed"ruby2.6-rubygem-omniauth-google-oauth2-testsuite
+not-installed"ruby2.6-rubygem-omniauth-oauth
+not-installed"ruby2.6-rubygem-omniauth-oauth-doc
+not-installed"ruby2.6-rubygem-omniauth-oauth-testsuite
+not-installed"ruby2.6-rubygem-omniauth-oauth2
+not-installed"ruby2.6-rubygem-omniauth-oauth2-doc
+not-installed"ruby2.6-rubygem-omniauth-oauth2-testsuite
+not-installed"ruby2.6-rubygem-open4
+not-installed"ruby2.6-rubygem-open4-doc
+not-installed"ruby2.6-rubygem-open4-testsuite
+not-installed"ruby2.6-rubygem-openid_connect
+not-installed"ruby2.6-rubygem-openid_connect-doc
+not-installed"ruby2.6-rubygem-openid_connect-testsuite
+not-installed"ruby2.6-rubygem-orm_adapter
+not-installed"ruby2.6-rubygem-orm_adapter-doc
+not-installed"ruby2.6-rubygem-orm_adapter-testsuite
+not-installed"ruby2.6-rubygem-owncloud-admin
+not-installed"ruby2.6-rubygem-owncloud-admin-doc
+not-installed"ruby2.6-rubygem-packaging_rake_tasks
+not-installed"ruby2.6-rubygem-packaging_rake_tasks-doc
+not-installed"ruby2.6-rubygem-paint
+not-installed"ruby2.6-rubygem-paint-doc
+not-installed"ruby2.6-rubygem-parallel
+not-installed"ruby2.6-rubygem-parallel-doc
+not-installed"ruby2.6-rubygem-parallel_tests
+not-installed"ruby2.6-rubygem-parallel_tests-doc
+not-installed"ruby2.6-rubygem-passenger
+not-installed"ruby2.6-rubygem-passenger-doc
+not-installed"ruby2.6-rubygem-path_expander
+not-installed"ruby2.6-rubygem-path_expander-doc
+not-installed"ruby2.6-rubygem-path_expander-testsuite
+not-installed"ruby2.6-rubygem-pathutil
+not-installed"ruby2.6-rubygem-pathutil-doc
+not-installed"ruby2.6-rubygem-pg
+not-installed"ruby2.6-rubygem-pg-doc
+not-installed"ruby2.6-rubygem-pg-testsuite
+not-installed"ruby2.6-rubygem-pkg-config
+not-installed"ruby2.6-rubygem-pkg-config-doc
+not-installed"ruby2.6-rubygem-pkg-config-testsuite
+not-installed"ruby2.6-rubygem-po_to_json
+not-installed"ruby2.6-rubygem-po_to_json-doc
+not-installed"ruby2.6-rubygem-po_to_json-testsuite
+not-installed"ruby2.6-rubygem-polyglot
+not-installed"ruby2.6-rubygem-polyglot-doc
+not-installed"ruby2.6-rubygem-pry
+not-installed"ruby2.6-rubygem-pry-doc
+not-installed"ruby2.6-rubygem-pry-doc-testsuite
+not-installed"ruby2.6-rubygem-pry_debug
+not-installed"ruby2.6-rubygem-pry_debug-doc
+not-installed"ruby2.6-rubygem-pry_debug-testsuite
+not-installed"ruby2.6-rubygem-public_suffix
+not-installed"ruby2.6-rubygem-public_suffix-3.1
+not-installed"ruby2.6-rubygem-public_suffix-doc
+not-installed"ruby2.6-rubygem-public_suffix-doc-3.1
+not-installed"ruby2.6-rubygem-public_suffix-testsuite
+not-installed"ruby2.6-rubygem-public_suffix-testsuite-3.1
+not-installed"ruby2.6-rubygem-puma
+not-installed"ruby2.6-rubygem-puma-doc
+not-installed"ruby2.6-rubygem-puma_worker_killer
+not-installed"ruby2.6-rubygem-puma_worker_killer-doc
+not-installed"ruby2.6-rubygem-puma_worker_killer-testsuite
+not-installed"ruby2.6-rubygem-pundit
+not-installed"ruby2.6-rubygem-pundit-doc
+not-installed"ruby2.6-rubygem-pundit-testsuite
+not-installed"ruby2.6-rubygem-rack
+not-installed"ruby2.6-rubygem-rack-1_3
+not-installed"ruby2.6-rubygem-rack-1_4
+not-installed"ruby2.6-rubygem-rack-1_6
+not-installed"ruby2.6-rubygem-rack-accept
+not-installed"ruby2.6-rubygem-rack-accept-doc
+not-installed"ruby2.6-rubygem-rack-accept-testsuite
+not-installed"ruby2.6-rubygem-rack-cache-1_2
+not-installed"ruby2.6-rubygem-rack-cache-doc-1_2
+not-installed"ruby2.6-rubygem-rack-cache-testsuite-1_2
+not-installed"ruby2.6-rubygem-rack-doc
+not-installed"ruby2.6-rubygem-rack-doc-1_3
+not-installed"ruby2.6-rubygem-rack-doc-1_4
+not-installed"ruby2.6-rubygem-rack-doc-1_6
+not-installed"ruby2.6-rubygem-rack-oauth2
+not-installed"ruby2.6-rubygem-rack-oauth2-doc
+not-installed"ruby2.6-rubygem-rack-oauth2-testsuite
+not-installed"ruby2.6-rubygem-rack-protection
+not-installed"ruby2.6-rubygem-rack-protection-doc
+not-installed"ruby2.6-rubygem-rack-ssl
+not-installed"ruby2.6-rubygem-rack-ssl-1_3
+not-installed"ruby2.6-rubygem-rack-ssl-doc
+not-installed"ruby2.6-rubygem-rack-ssl-doc-1_3
+not-installed"ruby2.6-rubygem-rack-test-0_6
+not-installed"ruby2.6-rubygem-rack-test-doc-0_6
+not-installed"ruby2.6-rubygem-rack-test-testsuite-0_6
+not-installed"ruby2.6-rubygem-rack-testsuite
+not-installed"ruby2.6-rubygem-rack-testsuite-1_3
+not-installed"ruby2.6-rubygem-rack-testsuite-1_4
+not-installed"ruby2.6-rubygem-rack-testsuite-1_6
+not-installed"ruby2.6-rubygem-rails-5.2
+not-installed"ruby2.6-rubygem-rails-5_0
+not-installed"ruby2.6-rubygem-rails-5_1
+not-installed"ruby2.6-rubygem-rails-6.0
+not-installed"ruby2.6-rubygem-rails-deprecated_sanitizer
+not-installed"ruby2.6-rubygem-rails-deprecated_sanitizer-doc
+not-installed"ruby2.6-rubygem-rails-deprecated_sanitizer-testsuite
+not-installed"ruby2.6-rubygem-rails-doc-5.2
+not-installed"ruby2.6-rubygem-rails-doc-5_0
+not-installed"ruby2.6-rubygem-rails-doc-5_1
+not-installed"ruby2.6-rubygem-rails-doc-6.0
+not-installed"ruby2.6-rubygem-rails-dom-testing
+not-installed"ruby2.6-rubygem-rails-dom-testing-doc
+not-installed"ruby2.6-rubygem-rails-dom-testing-testsuite
+not-installed"ruby2.6-rubygem-rails-html-sanitizer
+not-installed"ruby2.6-rubygem-rails-html-sanitizer-doc
+not-installed"ruby2.6-rubygem-rails-html-sanitizer-testsuite
+not-installed"ruby2.6-rubygem-rails-i18n
+not-installed"ruby2.6-rubygem-rails-i18n-doc
+not-installed"ruby2.6-rubygem-rails_stdout_logging
+not-installed"ruby2.6-rubygem-rails_stdout_logging-doc
+not-installed"ruby2.6-rubygem-rails_stdout_logging-testsuite
+not-installed"ruby2.6-rubygem-railties-5.2
+not-installed"ruby2.6-rubygem-railties-5_0
+not-installed"ruby2.6-rubygem-railties-5_1
+not-installed"ruby2.6-rubygem-railties-6.0
+not-installed"ruby2.6-rubygem-railties-doc-5.2
+not-installed"ruby2.6-rubygem-railties-doc-5_0
+not-installed"ruby2.6-rubygem-railties-doc-5_1
+not-installed"ruby2.6-rubygem-railties-doc-6.0
+not-installed"ruby2.6-rubygem-raindrops
+not-installed"ruby2.6-rubygem-raindrops-doc
+not-installed"ruby2.6-rubygem-raindrops-testsuite
+not-installed"ruby2.6-rubygem-rake-11_3
+not-installed"ruby2.6-rubygem-rake-12_0
+not-installed"ruby2.6-rubygem-rake-compiler
+not-installed"ruby2.6-rubygem-rake-compiler-doc
+not-installed"ruby2.6-rubygem-rake-compiler-testsuite
+not-installed"ruby2.6-rubygem-rake-doc-11_3
+not-installed"ruby2.6-rubygem-rake-doc-12_0
+not-installed"ruby2.6-rubygem-rb-fsevent
+not-installed"ruby2.6-rubygem-rb-fsevent-doc
+not-installed"ruby2.6-rubygem-rb-inotify
+not-installed"ruby2.6-rubygem-rb-inotify-doc
+not-installed"ruby2.6-rubygem-rb-inotify-testsuite
+not-installed"ruby2.6-rubygem-rb-kqueue
+not-installed"ruby2.6-rubygem-rb-kqueue-doc
+not-installed"ruby2.6-rubygem-rb-kqueue-testsuite
+not-installed"ruby2.6-rubygem-rdiscount
+not-installed"ruby2.6-rubygem-rdiscount-doc
+not-installed"ruby2.6-rubygem-rdiscount-testsuite
+not-installed"ruby2.6-rubygem-rdoc-4
+not-installed"ruby2.6-rubygem-rdoc-doc-4
+not-installed"ruby2.6-rubygem-rdoc-testsuite-4
+not-installed"ruby2.6-rubygem-responders
+not-installed"ruby2.6-rubygem-responders-doc
+not-installed"ruby2.6-rubygem-rest-client
+not-installed"ruby2.6-rubygem-rest-client-doc
+not-installed"ruby2.6-rubygem-rest-client-testsuite
+not-installed"ruby2.6-rubygem-restility
+not-installed"ruby2.6-rubygem-restility-doc
+not-installed"ruby2.6-rubygem-restility-testsuite
+not-installed"ruby2.6-rubygem-rgen
+not-installed"ruby2.6-rubygem-rgen-doc
+not-installed"ruby2.6-rubygem-rgen-testsuite
+not-installed"ruby2.6-rubygem-rice
+not-installed"ruby2.6-rubygem-rice-doc
+not-installed"ruby2.6-rubygem-rice-testsuite
+not-installed"ruby2.6-rubygem-ronn
+not-installed"ruby2.6-rubygem-ronn-doc
+not-installed"ruby2.6-rubygem-ronn-testsuite
+not-installed"ruby2.6-rubygem-rouge
+not-installed"ruby2.6-rubygem-rouge-1
+not-installed"ruby2.6-rubygem-rouge-doc
+not-installed"ruby2.6-rubygem-rouge-doc-1
+not-installed"ruby2.6-rubygem-rpm
+not-installed"ruby2.6-rubygem-rpm-doc
+not-installed"ruby2.6-rubygem-rpm-testsuite
+not-installed"ruby2.6-rubygem-rspec
+not-installed"ruby2.6-rubygem-rspec-3_5
+not-installed"ruby2.6-rubygem-rspec-core
+not-installed"ruby2.6-rubygem-rspec-core-3_5
+not-installed"ruby2.6-rubygem-rspec-core-doc
+not-installed"ruby2.6-rubygem-rspec-core-doc-3_5
+not-installed"ruby2.6-rubygem-rspec-doc
+not-installed"ruby2.6-rubygem-rspec-doc-3_5
+not-installed"ruby2.6-rubygem-rspec-expectations
+not-installed"ruby2.6-rubygem-rspec-expectations-3_5
+not-installed"ruby2.6-rubygem-rspec-expectations-doc
+not-installed"ruby2.6-rubygem-rspec-expectations-doc-3_5
+not-installed"ruby2.6-rubygem-rspec-its
+not-installed"ruby2.6-rubygem-rspec-its-doc
+not-installed"ruby2.6-rubygem-rspec-its-testsuite
+not-installed"ruby2.6-rubygem-rspec-mocks
+not-installed"ruby2.6-rubygem-rspec-mocks-3_5
+not-installed"ruby2.6-rubygem-rspec-mocks-doc
+not-installed"ruby2.6-rubygem-rspec-mocks-doc-3_5
+not-installed"ruby2.6-rubygem-rspec-support
+not-installed"ruby2.6-rubygem-rspec-support-3_5
+not-installed"ruby2.6-rubygem-rspec-support-doc
+not-installed"ruby2.6-rubygem-rspec-support-doc-3_5
+installed"ruby2.6-rubygem-ruby-augeas
+not-installed"ruby2.6-rubygem-ruby-augeas-doc
+installed"ruby2.6-rubygem-ruby-dbus
+not-installed"ruby2.6-rubygem-ruby-dbus-doc
+not-installed"ruby2.6-rubygem-ruby-dbus-testsuite
+not-installed"ruby2.6-rubygem-ruby-filemagic
+not-installed"ruby2.6-rubygem-ruby-filemagic-doc
+not-installed"ruby2.6-rubygem-ruby-filemagic-testsuite
+not-installed"ruby2.6-rubygem-ruby-libvirt
+not-installed"ruby2.6-rubygem-ruby-libvirt-doc
+not-installed"ruby2.6-rubygem-ruby-openid
+not-installed"ruby2.6-rubygem-ruby-openid-doc
+not-installed"ruby2.6-rubygem-ruby-openid-testsuite
+not-installed"ruby2.6-rubygem-ruby-shadow
+not-installed"ruby2.6-rubygem-ruby-shadow-doc
+not-installed"ruby2.6-rubygem-ruby_dep
+not-installed"ruby2.6-rubygem-ruby_dep-1_3
+not-installed"ruby2.6-rubygem-ruby_dep-doc
+not-installed"ruby2.6-rubygem-ruby_dep-doc-1_3
+not-installed"ruby2.6-rubygem-ruby_dig
+not-installed"ruby2.6-rubygem-ruby_dig-doc
+not-installed"ruby2.6-rubygem-ruby_dig-testsuite
+not-installed"ruby2.6-rubygem-ruby_parser
+not-installed"ruby2.6-rubygem-ruby_parser-doc
+not-installed"ruby2.6-rubygem-ruby_parser-testsuite
+not-installed"ruby2.6-rubygem-rubyforge
+not-installed"ruby2.6-rubygem-rubyforge-doc
+not-installed"ruby2.6-rubygem-rubyforge-testsuite
+not-installed"ruby2.6-rubygem-rubyntlm
+not-installed"ruby2.6-rubygem-rubyntlm-doc
+not-installed"ruby2.6-rubygem-rubyntlm-testsuite
+not-installed"ruby2.6-rubygem-rubyzip
+not-installed"ruby2.6-rubygem-rubyzip-doc
+not-installed"ruby2.6-rubygem-rubyzip-testsuite
+not-installed"ruby2.6-rubygem-safe_yaml
+not-installed"ruby2.6-rubygem-safe_yaml-doc
+not-installed"ruby2.6-rubygem-safe_yaml-testsuite
+not-installed"ruby2.6-rubygem-sass
+not-installed"ruby2.6-rubygem-sass-doc
+not-installed"ruby2.6-rubygem-sass-listen
+not-installed"ruby2.6-rubygem-sass-listen-doc
+not-installed"ruby2.6-rubygem-sass-rails
+not-installed"ruby2.6-rubygem-sass-rails-5.1
+not-installed"ruby2.6-rubygem-sass-rails-doc
+not-installed"ruby2.6-rubygem-sass-rails-doc-5.1
+not-installed"ruby2.6-rubygem-sassc
+not-installed"ruby2.6-rubygem-sassc-doc
+not-installed"ruby2.6-rubygem-sassc-rails
+not-installed"ruby2.6-rubygem-sassc-rails-doc
+not-installed"ruby2.6-rubygem-sassc-rails-testsuite
+not-installed"ruby2.6-rubygem-sassc-testsuite
+not-installed"ruby2.6-rubygem-sdoc
+not-installed"ruby2.6-rubygem-sdoc-doc
+not-installed"ruby2.6-rubygem-sdoc-testsuite
+not-installed"ruby2.6-rubygem-securecompare
+not-installed"ruby2.6-rubygem-securecompare-doc
+not-installed"ruby2.6-rubygem-securecompare-testsuite
+not-installed"ruby2.6-rubygem-serverengine
+not-installed"ruby2.6-rubygem-serverengine-doc
+not-installed"ruby2.6-rubygem-serverengine-testsuite
+not-installed"ruby2.6-rubygem-sexp_processor
+not-installed"ruby2.6-rubygem-sexp_processor-doc
+not-installed"ruby2.6-rubygem-sexp_processor-testsuite
+not-installed"ruby2.6-rubygem-sigdump
+not-installed"ruby2.6-rubygem-sigdump-doc
+not-installed"ruby2.6-rubygem-simple_oauth
+not-installed"ruby2.6-rubygem-simple_oauth-doc
+not-installed"ruby2.6-rubygem-simplecov
+not-installed"ruby2.6-rubygem-simplecov-doc
+not-installed"ruby2.6-rubygem-simplecov-html
+not-installed"ruby2.6-rubygem-simplecov-html-doc
+not-installed"ruby2.6-rubygem-simplecov-html-testsuite
+installed"ruby2.6-rubygem-simpleidn
+not-installed"ruby2.6-rubygem-simpleidn-doc
+not-installed"ruby2.6-rubygem-sinatra
+not-installed"ruby2.6-rubygem-sinatra-doc
+not-installed"ruby2.6-rubygem-slim
+not-installed"ruby2.6-rubygem-slim-doc
+not-installed"ruby2.6-rubygem-slim-testsuite
+not-installed"ruby2.6-rubygem-slop
+not-installed"ruby2.6-rubygem-slop-3
+not-installed"ruby2.6-rubygem-slop-3_3
+not-installed"ruby2.6-rubygem-slop-doc
+not-installed"ruby2.6-rubygem-slop-doc-3
+not-installed"ruby2.6-rubygem-slop-doc-3_3
+not-installed"ruby2.6-rubygem-slop-testsuite
+not-installed"ruby2.6-rubygem-slop-testsuite-3
+not-installed"ruby2.6-rubygem-slop-testsuite-3_3
+not-installed"ruby2.6-rubygem-spring
+not-installed"ruby2.6-rubygem-spring-doc
+not-installed"ruby2.6-rubygem-spring-watcher-listen
+not-installed"ruby2.6-rubygem-spring-watcher-listen-doc
+not-installed"ruby2.6-rubygem-spring-watcher-listen-testsuite
+not-installed"ruby2.6-rubygem-sprockets
+not-installed"ruby2.6-rubygem-sprockets-2_1
+not-installed"ruby2.6-rubygem-sprockets-2_2
+not-installed"ruby2.6-rubygem-sprockets-doc
+not-installed"ruby2.6-rubygem-sprockets-doc-2_1
+not-installed"ruby2.6-rubygem-sprockets-doc-2_2
+not-installed"ruby2.6-rubygem-sprockets-helpers
+not-installed"ruby2.6-rubygem-sprockets-helpers-doc
+not-installed"ruby2.6-rubygem-sprockets-helpers-testsuite
+not-installed"ruby2.6-rubygem-sprockets-rails
+not-installed"ruby2.6-rubygem-sprockets-rails-doc
+not-installed"ruby2.6-rubygem-sqlite3
+not-installed"ruby2.6-rubygem-sqlite3-doc
+not-installed"ruby2.6-rubygem-sqlite3-testsuite
+not-installed"ruby2.6-rubygem-sshkit
+not-installed"ruby2.6-rubygem-sshkit-doc
+not-installed"ruby2.6-rubygem-sshkit-testsuite
+not-installed"ruby2.6-rubygem-stackdeck
+not-installed"ruby2.6-rubygem-stackdeck-doc
+not-installed"ruby2.6-rubygem-stackdeck-testsuite
+not-installed"ruby2.6-rubygem-stomp
+not-installed"ruby2.6-rubygem-stomp-doc
+not-installed"ruby2.6-rubygem-stomp-testsuite
+not-installed"ruby2.6-rubygem-strptime
+not-installed"ruby2.6-rubygem-strptime-doc
+not-installed"ruby2.6-rubygem-swd
+not-installed"ruby2.6-rubygem-swd-doc
+not-installed"ruby2.6-rubygem-swd-testsuite
+not-installed"ruby2.6-rubygem-systemu
+not-installed"ruby2.6-rubygem-systemu-doc
+not-installed"ruby2.6-rubygem-systemu-testsuite
+not-installed"ruby2.6-rubygem-taskjuggler
+not-installed"ruby2.6-rubygem-taskjuggler-doc
+not-installed"ruby2.6-rubygem-taskjuggler-testsuite
+not-installed"ruby2.6-rubygem-temple
+not-installed"ruby2.6-rubygem-temple-doc
+not-installed"ruby2.6-rubygem-temple-testsuite
+not-installed"ruby2.6-rubygem-term-ansicolor
+not-installed"ruby2.6-rubygem-term-ansicolor-doc
+not-installed"ruby2.6-rubygem-text
+not-installed"ruby2.6-rubygem-text-doc
+not-installed"ruby2.6-rubygem-text-hyphen
+not-installed"ruby2.6-rubygem-text-hyphen-doc
+not-installed"ruby2.6-rubygem-text-hyphen-testsuite
+not-installed"ruby2.6-rubygem-text-testsuite
+not-installed"ruby2.6-rubygem-thor
+not-installed"ruby2.6-rubygem-thor-0_19
+not-installed"ruby2.6-rubygem-thor-doc
+not-installed"ruby2.6-rubygem-thor-doc-0_19
+not-installed"ruby2.6-rubygem-thread_safe
+not-installed"ruby2.6-rubygem-thread_safe-doc
+not-installed"ruby2.6-rubygem-thread_safe-testsuite
+not-installed"ruby2.6-rubygem-tilt
+not-installed"ruby2.6-rubygem-tilt-1_1
+not-installed"ruby2.6-rubygem-tilt-1_4
+not-installed"ruby2.6-rubygem-tilt-doc
+not-installed"ruby2.6-rubygem-tilt-doc-1_1
+not-installed"ruby2.6-rubygem-tilt-doc-1_4
+not-installed"ruby2.6-rubygem-tilt-testsuite
+not-installed"ruby2.6-rubygem-tilt-testsuite-1_1
+not-installed"ruby2.6-rubygem-tilt-testsuite-1_4
+not-installed"ruby2.6-rubygem-timers
+not-installed"ruby2.6-rubygem-timers-doc
+not-installed"ruby2.6-rubygem-timers-testsuite
+not-installed"ruby2.6-rubygem-tins
+not-installed"ruby2.6-rubygem-tins-doc
+not-installed"ruby2.6-rubygem-tmuxinator
+not-installed"ruby2.6-rubygem-tmuxinator-doc
+not-installed"ruby2.6-rubygem-tmuxinator-testsuite
+not-installed"ruby2.6-rubygem-tomlrb
+not-installed"ruby2.6-rubygem-tomlrb-doc
+not-installed"ruby2.6-rubygem-treetop
+not-installed"ruby2.6-rubygem-treetop-1_4
+not-installed"ruby2.6-rubygem-treetop-doc
+not-installed"ruby2.6-rubygem-treetop-doc-1_4
+not-installed"ruby2.6-rubygem-treetop-testsuite-1_4
+not-installed"ruby2.6-rubygem-trollop
+not-installed"ruby2.6-rubygem-trollop-doc
+not-installed"ruby2.6-rubygem-trollop-testsuite
+not-installed"ruby2.6-rubygem-turbolinks
+not-installed"ruby2.6-rubygem-turbolinks-doc
+not-installed"ruby2.6-rubygem-turbolinks-source
+not-installed"ruby2.6-rubygem-turbolinks-source-doc
+not-installed"ruby2.6-rubygem-tzinfo
+not-installed"ruby2.6-rubygem-tzinfo-0
+not-installed"ruby2.6-rubygem-tzinfo-1.2
+not-installed"ruby2.6-rubygem-tzinfo-data
+not-installed"ruby2.6-rubygem-tzinfo-data-doc
+not-installed"ruby2.6-rubygem-tzinfo-doc
+not-installed"ruby2.6-rubygem-tzinfo-doc-0
+not-installed"ruby2.6-rubygem-tzinfo-doc-1.2
+not-installed"ruby2.6-rubygem-tzinfo-testsuite-0
+not-installed"ruby2.6-rubygem-tzinfo-testsuite-1.2
+not-installed"ruby2.6-rubygem-uglifier
+not-installed"ruby2.6-rubygem-uglifier-doc
+installed"ruby2.6-rubygem-unf
+not-installed"ruby2.6-rubygem-unf-doc
+not-installed"ruby2.6-rubygem-unf-testsuite
+installed"ruby2.6-rubygem-unf_ext
+not-installed"ruby2.6-rubygem-unf_ext-doc
+not-installed"ruby2.6-rubygem-unf_ext-testsuite
+not-installed"ruby2.6-rubygem-unicorn
+not-installed"ruby2.6-rubygem-unicorn-doc
+not-installed"ruby2.6-rubygem-unicorn-testsuite
+not-installed"ruby2.6-rubygem-unicorn-worker-killer
+not-installed"ruby2.6-rubygem-unicorn-worker-killer-doc
+not-installed"ruby2.6-rubygem-url_safe_base64
+not-installed"ruby2.6-rubygem-url_safe_base64-doc
+not-installed"ruby2.6-rubygem-url_safe_base64-testsuite
+not-installed"ruby2.6-rubygem-vagrant-spec
+not-installed"ruby2.6-rubygem-vagrant-spec-doc
+not-installed"ruby2.6-rubygem-vagrant-spec-testsuite
+not-installed"ruby2.6-rubygem-vagrant_cloud
+not-installed"ruby2.6-rubygem-vagrant_cloud-doc
+not-installed"ruby2.6-rubygem-validate_email
+not-installed"ruby2.6-rubygem-validate_email-doc
+not-installed"ruby2.6-rubygem-validate_url
+not-installed"ruby2.6-rubygem-validate_url-doc
+not-installed"ruby2.6-rubygem-virtus
+not-installed"ruby2.6-rubygem-virtus-doc
+not-installed"ruby2.6-rubygem-virtus-testsuite
+not-installed"ruby2.6-rubygem-warden
+not-installed"ruby2.6-rubygem-warden-doc
+not-installed"ruby2.6-rubygem-web-console
+not-installed"ruby2.6-rubygem-web-console-2
+not-installed"ruby2.6-rubygem-web-console-doc
+not-installed"ruby2.6-rubygem-web-console-doc-2
+not-installed"ruby2.6-rubygem-webfinger
+not-installed"ruby2.6-rubygem-webfinger-doc
+not-installed"ruby2.6-rubygem-webfinger-testsuite
+not-installed"ruby2.6-rubygem-webmock-1_2
+not-installed"ruby2.6-rubygem-webmock-2_3
+not-installed"ruby2.6-rubygem-webmock-doc-1_2
+not-installed"ruby2.6-rubygem-webmock-doc-2_3
+not-installed"ruby2.6-rubygem-webmock-testsuite-1_2
+not-installed"ruby2.6-rubygem-webmock-testsuite-2_3
+not-installed"ruby2.6-rubygem-websocket
+not-installed"ruby2.6-rubygem-websocket-doc
+not-installed"ruby2.6-rubygem-websocket-driver
+not-installed"ruby2.6-rubygem-websocket-driver-0_6
+not-installed"ruby2.6-rubygem-websocket-driver-doc
+not-installed"ruby2.6-rubygem-websocket-driver-doc-0_6
+not-installed"ruby2.6-rubygem-websocket-extensions
+not-installed"ruby2.6-rubygem-websocket-extensions-doc
+not-installed"ruby2.6-rubygem-websocket-testsuite
+not-installed"ruby2.6-rubygem-winrm-2_1
+not-installed"ruby2.6-rubygem-winrm-doc-2_1
+not-installed"ruby2.6-rubygem-winrm-elevated
+not-installed"ruby2.6-rubygem-winrm-elevated-doc
+not-installed"ruby2.6-rubygem-winrm-fs
+not-installed"ruby2.6-rubygem-winrm-fs-doc
+not-installed"ruby2.6-rubygem-xdg
+not-installed"ruby2.6-rubygem-xdg-doc
+not-installed"ruby2.6-rubygem-xml-simple
+not-installed"ruby2.6-rubygem-xml-simple-doc
+not-installed"ruby2.6-rubygem-xmlhash
+not-installed"ruby2.6-rubygem-xmlhash-doc
+not-installed"ruby2.6-rubygem-xmlhash-testsuite
+not-installed"ruby2.6-rubygem-yajl-ruby
+not-installed"ruby2.6-rubygem-yajl-ruby-doc
+not-installed"ruby2.6-rubygem-yajl-ruby-testsuite
+not-installed"ruby2.6-rubygem-yard
+not-installed"ruby2.6-rubygem-yard-doc
+not-installed"ruby2.6-rubygem-yard-testsuite
+not-installed"ruby2.6-rubygem-yast-rake
+not-installed"ruby2.6-rubygem-yast-rake-doc
+not-installed"ruby2.6-rubygem-zeitwerk
+not-installed"ruby2.6-rubygem-zeitwerk-doc
+not-installed"rubygem-builder-3_0
+not-installed"rubygem-builder-3_0-doc
+not-installed"rubygem-builder-3_0-testsuite
+not-installed"rubygem-cancan
+not-installed"rubygem-cancan-doc
+not-installed"rubygem-cancan-testsuite
+not-installed"rubygem-docker-api
+not-installed"rubygem-docker-api-doc
+not-installed"rubygem-docker-api-testsuite
+not-installed"rubygem-gettext_activerecord
+not-installed"rubygem-gettext_activerecord-doc
+not-installed"rubygem-gettext_activerecord-testsuite
+not-installed"rubygem-libguestfs
+not-installed"rubygem-libwebsocket
+not-installed"rubygem-libwebsocket-doc
+not-installed"rubygem-libwebsocket-testsuite
+not-installed"rubygem-mail-2_4
+not-installed"rubygem-mail-2_4-doc
+not-installed"rubygem-passenger
+not-installed"rubygem-passenger-apache2
+not-installed"rubygem-passenger-nginx
+not-installed"rubygem-ruby-fcgi
+not-installed"rubygem-ruby-fcgi-doc
+not-installed"rubygem-ruby-fcgi-testsuite
+not-installed"rubygem-sexp_processor-3_2
+not-installed"rubygem-sexp_processor-3_2-doc
+not-installed"rubygem-sexp_processor-3_2-testsuite
+not-installed"rubygem-shoes
+not-installed"rubygem-shoes-doc
+not-installed"rubygem-shoes-testsuite
+not-installed"rubygem-taskjuggler
+not-installed"runawk
+not-installed"runawk-examples
+not-installed"runc
+not-installed"runc-test
+not-installed"rungetty
+not-installed"rust
+not-installed"rust-analysis
+not-installed"rust-cbindgen
+not-installed"rust-doc
+not-installed"rust-gdb
+not-installed"rust-packaging
+not-installed"rust-src
+not-installed"rust-srpm-macros
+not-installed"rust-std-static
+not-installed"rustfmt
+not-installed"rxp
+not-installed"rxvt-unicode
+not-installed"rygel
+not-installed"rygel-devel
+not-installed"rygel-lang
+not-installed"rygel-plugin-gstreamer-renderer
+not-installed"rygel-plugin-tracker
+not-installed"rypper
+not-installed"rzip
+not-installed"rzsz
+not-installed"s3backer
+not-installed"s3fs
+not-installed"sablot
+not-installed"sablot-devel
+installed"sac
+not-installed"sac-javadoc
+not-installed"safte-monitor
+not-installed"saidar
+not-installed"sakura
+not-installed"sakura-lang
+not-installed"salt
+not-installed"salt-api
+not-installed"salt-bash-completion
+not-installed"salt-cloud
+not-installed"salt-doc
+not-installed"salt-fish-completion
+not-installed"salt-master
+not-installed"salt-minion
+not-installed"salt-proxy
+not-installed"salt-shaptools
+not-installed"salt-ssh
+not-installed"salt-standalone-formulas-configuration
+not-installed"salt-syndic
+not-installed"salt-zsh-completion
+installed"samba
+not-installed"samba-ad-dc
+not-installed"samba-ad-dc-32bit
+not-installed"samba-ceph
+installed"samba-client
+installed"samba-client-32bit
+not-installed"samba-core-devel
+not-installed"samba-doc
+not-installed"samba-dsdb-modules
+not-installed"samba-krb-printing
+installed"samba-libs
+installed"samba-libs-32bit
+installed"samba-libs-python3
+not-installed"samba-libs-python3-32bit
+not-installed"samba-pidl
+installed"samba-python3
+not-installed"samba-test
+installed"samba-winbind
+installed"samba-winbind-32bit
+not-installed"samplicator
+installed"sane-backends
+installed"sane-backends-32bit
+installed"sane-backends-autoconfig
+not-installed"sane-backends-devel
+not-installed"sane-backends-devel-32bit
+not-installed"sanlk-reset
+not-installed"sanlock
+not-installed"sanlock-devel
+not-installed"saphanabootstrap-formula
+not-installed"sar2
+not-installed"sar2-data
+not-installed"sarg
+installed"sasl2-kdexoauth2
+not-installed"sassc
+not-installed"sat4j
+not-installed"savannahice
+not-installed"savannahice
+not-installed"savannahice-debuginfo
+not-installed"savannahice-debugsource
+not-installed"saweri-fonts
+not-installed"sawfish
+not-installed"sawfish-devel
+not-installed"sawfish-pager
+not-installed"sawfish-sounds
+not-installed"sax3
+not-installed"saxon6
+not-installed"saxon6-aelfred
+not-installed"saxon6-demo
+not-installed"saxon6-fop
+not-installed"saxon6-javadoc
+not-installed"saxon6-jdom
+not-installed"saxon6-manual
+not-installed"saxon6-scripts
+not-installed"saxon8
+not-installed"saxon8-demo
+not-installed"saxon8-dom
+not-installed"saxon8-javadoc
+not-installed"saxon8-jdom
+not-installed"saxon8-manual
+not-installed"saxon8-scripts
+not-installed"saxon8-sql
+not-installed"saxon8-xom
+not-installed"saxon8-xpath
+not-installed"saxon9
+not-installed"saxon9-demo
+not-installed"saxon9-javadoc
+not-installed"saxon9-manual
+not-installed"saxon9-scripts
+not-installed"saxpath
+not-installed"sazanami-fonts
+installed"sbc
+not-installed"sbc-devel
+not-installed"sbcl
+not-installed"sbd
+not-installed"sbiload
+not-installed"sbl
+not-installed"sbl-orca
+not-installed"sblim-cim-client2
+not-installed"sblim-cim-client2-javadoc
+not-installed"sblim-cim-client2-manual
+not-installed"sblim-cmpi-base
+not-installed"sblim-cmpi-base-devel
+not-installed"sblim-cmpi-base-testsuite
+not-installed"sblim-cmpi-c++-devel
+not-installed"sblim-cmpi-devel
+not-installed"sblim-cmpi-ssh_service_profile
+not-installed"sblim-cmpiutil-devel
+not-installed"sblim-indication_helper
+not-installed"sblim-indication_helper-devel
+not-installed"sblim-sfcCommon-devel
+not-installed"sblim-sfcb
+not-installed"sblim-sfcc-devel
+not-installed"sblim-testsuite
+not-installed"sblim-tools-libra-devel
+not-installed"sblim-wbemcli
+not-installed"sc
+not-installed"sc-controller
+not-installed"sca-appliance-agent
+not-installed"sca-appliance-broker
+not-installed"sca-appliance-common
+not-installed"sca-appliance-patdev
+not-installed"sca-patterns-base
+not-installed"sca-patterns-edir
+not-installed"sca-patterns-filr
+not-installed"sca-patterns-groupwise
+not-installed"sca-patterns-hae
+not-installed"sca-patterns-oes
+not-installed"sca-patterns-sle09
+not-installed"sca-patterns-sle10
+not-installed"sca-patterns-sle11
+not-installed"sca-patterns-sle12
+not-installed"sca-patterns-sle15
+not-installed"sca-patterns-suma
+not-installed"sca-server-report
+not-installed"scala
+not-installed"scala-apidoc
+not-installed"scala-bootstrap
+not-installed"scala-bootstrap-apidoc
+not-installed"scala-bootstrap-swing
+not-installed"scala-swing
+not-installed"scalapack-mvapich2-test
+not-installed"scalapack-openmpi-test
+not-installed"scalapack-openmpi2-test
+not-installed"scalapack-openmpi3-test
+not-installed"scalapack_2_0_2-gnu-mpich-hpc-module
+not-installed"scalapack_2_0_2-gnu-mpich-hpc-test
+not-installed"scalapack_2_0_2-gnu-mvapich2-hpc-module
+not-installed"scalapack_2_0_2-gnu-mvapich2-hpc-test
+not-installed"scalapack_2_0_2-gnu-openmpi1-hpc-module
+not-installed"scalapack_2_0_2-gnu-openmpi1-hpc-test
+not-installed"scalapack_2_0_2-gnu-openmpi2-hpc-module
+not-installed"scalapack_2_0_2-gnu-openmpi2-hpc-test
+not-installed"scalapack_2_0_2-gnu-openmpi3-hpc-module
+not-installed"scalapack_2_0_2-gnu-openmpi3-hpc-test
+not-installed"scalpel
+not-installed"scamper
+not-installed"scanmem
+not-installed"scantailor
+not-installed"scap-workbench
+not-installed"scap-workbench-doc
+not-installed"scat
+not-installed"sccs
+not-installed"scdl
+not-installed"scdoc
+not-installed"schedtool
+not-installed"schedtop
+not-installed"schemaspy
+not-installed"scheme48
+not-installed"scheme48-devel
+not-installed"scheme48-doc
+not-installed"scheme48-prescheme
+not-installed"scheme48-vm
+not-installed"schily-mt
+not-installed"schily-rmt
+not-installed"schismtracker
+not-installed"schroedinger-devel
+not-installed"schroedinger-doc
+not-installed"scid
+not-installed"scid
+not-installed"scid-debuginfo
+not-installed"scid-debugsource
+not-installed"scidavis
+not-installed"scidavis-lang
+not-installed"scilab
+not-installed"scilab-devel
+not-installed"scilab-lang
+not-installed"scilab-modules
+not-installed"scilab-modules-doc
+not-installed"scilab-modules-doc-lang
+not-installed"scilab-tests
+not-installed"scim
+not-installed"scim-32bit
+not-installed"scim-anthy
+not-installed"scim-bridge
+not-installed"scim-bridge-gtk2
+not-installed"scim-bridge-gtk2-32bit
+not-installed"scim-canna
+not-installed"scim-chewing
+not-installed"scim-devel
+not-installed"scim-gtk
+not-installed"scim-gtk-32bit
+not-installed"scim-gtk3
+not-installed"scim-gtk3-32bit
+not-installed"scim-hangul
+not-installed"scim-input-pad
+not-installed"scim-lang
+not-installed"scim-m17n
+not-installed"scim-pinyin
+not-installed"scim-skk
+not-installed"scim-sunpinyin
+not-installed"scim-tables
+not-installed"scim-tables-additional
+not-installed"scim-tables-ja
+not-installed"scim-tables-ko
+not-installed"scim-tables-lang
+not-installed"scim-tables-zh
+not-installed"scim-tomoe
+not-installed"scim-uim
+not-installed"scim-unikey
+not-installed"scirenderer
+not-installed"scirenderer-javadoc
+not-installed"scite
+not-installed"scmon
+not-installed"scons
+not-installed"scorpio22
+not-installed"scorpio22
+not-installed"scorpio22-debuginfo
+not-installed"scorpio23
+not-installed"scorpio23
+not-installed"scorpio23-debuginfo
+not-installed"scorpio24
+not-installed"scorpio24
+not-installed"scorpio24-debuginfo
+not-installed"scorpio25
+not-installed"scorpio25
+not-installed"scorpio25-debuginfo
+not-installed"scorpio26
+not-installed"scorpio26
+not-installed"scorpio26-debuginfo
+not-installed"scotch
+not-installed"scotch-devel
+not-installed"scotch-devel-static
+not-installed"scotch-metis-devel
+installed"scout
+installed"screen
+not-installed"screen-message
+not-installed"screencast
+not-installed"screencast-lang
+not-installed"screenfetch
+not-installed"screengen
+not-installed"screengen
+not-installed"screengen-debuginfo
+not-installed"screengen-debugsource
+not-installed"screengrab
+not-installed"screengrab-lang
+not-installed"screenkey
+not-installed"scribus
+not-installed"scribus-devel
+not-installed"scrot
+not-installed"scrub
+not-installed"scrypt
+not-installed"scsh
+not-installed"scsh-base
+not-installed"scsirastools
+not-installed"scsires
+not-installed"scummvm
+not-installed"scummvm
+not-installed"scummvm-debuginfo
+not-installed"scummvm-debugsource
+not-installed"scummvm-extra
+not-installed"scummvm-extra-debuginfo
+not-installed"scummvm-tools
+not-installed"sdcc
+not-installed"sdcc-doc
+not-installed"sdcc-libc-sources
+not-installed"sdcv
+installed"sddm
+installed"sddm-branding-openSUSE
+not-installed"sddm-branding-upstream
+installed"sddm-theme-openSUSE
+not-installed"sdl-asylum
+not-installed"sdl-ball
+not-installed"sdl_bomber
+not-installed"sdlscavenger
+not-installed"sdparm
+not-installed"seahorse
+not-installed"seahorse-daemon
+not-installed"seahorse-lang
+not-installed"seahorse-nautilus-lang
+not-installed"seahorse-sharing
+not-installed"seahorse-sharing-lang
+not-installed"seamonkey
+not-installed"seamonkey-translations-common
+not-installed"seamonkey-translations-other
+not-installed"seccheck
+installed"sed
+installed"sed-lang
+not-installed"sedutil
+not-installed"segv_handler
+not-installed"selene
+not-installed"selene
+not-installed"selene-debuginfo
+not-installed"selene-debugsource
+not-installed"selene-lang
+not-installed"selinux-tools
+not-installed"semantik
+not-installed"sendfax
+not-installed"sendmail
+not-installed"sendmail-devel
+not-installed"sendmail-starttls
+not-installed"sendxmpp
+not-installed"sensord
+installed"sensors
+not-installed"seq24
+not-installed"ser2net
+not-installed"serd-devel
+not-installed"serdi
+not-installed"serialdv-devel
+not-installed"servletapi4
+not-installed"servletapi4-javadoc
+not-installed"servletapi5
+installed"sessreg
+not-installed"setconf
+not-installed"setools-console
+not-installed"setools-gui
+installed"setserial
+installed"setxkbmap
+not-installed"sev-tool
+not-installed"sfftobmp
+not-installed"sffview
+not-installed"sfml2-devel
+not-installed"sfml2-doc
+installed"sg3_utils
+not-installed"sgi-bitmap-fonts
+installed"sgml-skel
+not-installed"sgmltool
+not-installed"sgmltools-lite
+not-installed"sgpio
+not-installed"sgrep
+not-installed"sha1collisiondetection
+not-installed"sha3sum
+not-installed"shaderc
+not-installed"shaderc-devel
+installed"shadow
+not-installed"shadowdive-devel
+not-installed"shadowsocks-libev
+not-installed"shadowsocks-libev-devel
+not-installed"shadowsocks-libev-doc
+not-installed"shairplay
+not-installed"shairplay
+not-installed"shairplay-debuginfo
+not-installed"shairplay-debugsource
+not-installed"shairplay-devel
+not-installed"shairport-sync
+not-installed"shapelib
+not-installed"shared-color-targets
+not-installed"shared-desktop-ontologies
+not-installed"shared-desktop-ontologies-devel
+installed"shared-mime-info
+installed"shared-mime-info-lang
+installed"sharutils
+installed"sharutils-lang
+not-installed"shellementary
+not-installed"shepherd
+not-installed"shepherd-bins
+not-installed"shibboleth-sp
+not-installed"shibboleth-sp-devel
+not-installed"shigofumi
+installed"shim
+not-installed"shlomif-cmake-modules
+not-installed"shntool
+not-installed"shorewall
+not-installed"shorewall-core
+not-installed"shorewall-docs
+not-installed"shorewall-init
+not-installed"shorewall-lite
+not-installed"shorewall6
+not-installed"shorewall6-lite
+not-installed"shorten
+not-installed"shorten
+not-installed"shorten-debuginfo
+not-installed"shorten-debugsource
+not-installed"shotcut
+not-installed"shotcut-lang
+not-installed"shotwell
+not-installed"shotwell-lang
+not-installed"shoutsend
+not-installed"shoutsend
+not-installed"shoutsend-debuginfo
+not-installed"showfont
+not-installed"showfoto
+not-installed"shp
+not-installed"shunit2
+not-installed"shutdownscheduler
+not-installed"shutdownscheduler-lang
+not-installed"shutter
+not-installed"shutter-lang
+not-installed"siege
+not-installed"siga
+not-installed"sigil
+not-installed"signify
+not-installed"signing-party
+installed"signon-kwallet-extension
+installed"signon-plugin-oauth2
+not-installed"signon-plugin-oauth2-devel
+installed"signon-plugins
+not-installed"signon-plugins-32bit
+not-installed"signon-plugins-devel
+not-installed"signon-plugins-docs
+installed"signon-ui
+installed"signond
+not-installed"signond-docs
+installed"signond-libs
+not-installed"signond-libs-32bit
+not-installed"signond-libs-devel
+not-installed"sigrok-cli
+not-installed"sigrok-firmware-fx2lafw
+not-installed"sil-abyssinica-fonts
+not-installed"sil-andika-fonts
+not-installed"sil-charis-fonts
+not-installed"sil-doulos-fonts
+not-installed"sil-gentium-fonts
+not-installed"sil-mondulkiri-fonts
+not-installed"sil-padauk-fonts
+not-installed"simh
+not-installed"simple-ccsm
+not-installed"simple-ccsm-lang
+not-installed"simple-mtpfs
+not-installed"simple-obfs
+not-installed"simple-obfs-doc
+not-installed"simple-scan
+not-installed"simple-scan-lang
+not-installed"simplescreenrecorder
+not-installed"singularity
+not-installed"sipcalc
+not-installed"sipp
+not-installed"siproxd
+not-installed"siproxd-doc
+not-installed"siren
+not-installed"siren
+not-installed"siren-debuginfo
+not-installed"siren-debugsource
+not-installed"sisctrl
+not-installed"sisu-inject
+not-installed"sisu-javadoc
+not-installed"sisu-plexus
+not-installed"sitar
+installed"site-config
+not-installed"sitecopy
+not-installed"sitecopy-lang
+not-installed"sk1
+installed"skanlite
+installed"skanlite-lang
+not-installed"skelcd-control-Kubic
+not-installed"skelcd-control-MicroOS
+not-installed"skelcd-control-openSUSE-promo
+not-installed"skelcd-fallbackrepo-openSUSE
+not-installed"skelcd-installer-Kubic
+not-installed"skelcd-installer-MicroOS
+not-installed"skelcd-installer-net-Kubic
+not-installed"skelcd-installer-net-MicroOS
+not-installed"skelcd-installer-net-openSUSE
+not-installed"skelcd-installer-openSUSE
+not-installed"ski
+not-installed"skinlf
+not-installed"skinlf-demo
+not-installed"skinlf-javadoc
+not-installed"skkdic
+not-installed"skkdic-extra
+not-installed"skopeo
+not-installed"skrooge
+not-installed"skrooge-lang
+not-installed"sl
+not-installed"slade
+not-installed"slang-devel
+not-installed"slang-slsh
+not-installed"sleuth
+not-installed"sleuthkit
+not-installed"sleuthkit-devel
+not-installed"slf4j
+not-installed"slf4j-ext
+not-installed"slf4j-javadoc
+not-installed"slf4j-jcl
+not-installed"slf4j-jdk14
+not-installed"slf4j-log4j12
+not-installed"slf4j-manual
+not-installed"slf4j-sources
+not-installed"slib
+not-installed"slingshot
+not-installed"slirp4netns
+not-installed"slop
+not-installed"slop-devel
+not-installed"sloppy022
+not-installed"sloppy022
+not-installed"sloppy022-debuginfo
+not-installed"slowmoVideo
+not-installed"slowmoVideo
+not-installed"slowmoVideo-debuginfo
+not-installed"slowmoVideo-debugsource
+not-installed"slrn
+not-installed"slrn-lang
+not-installed"sluice
+not-installed"slurm
+not-installed"slurm-auth-none
+not-installed"slurm-config
+not-installed"slurm-config-man
+not-installed"slurm-cray
+not-installed"slurm-devel
+not-installed"slurm-doc
+not-installed"slurm-hdf5
+not-installed"slurm-lua
+not-installed"slurm-munge
+not-installed"slurm-node
+not-installed"slurm-openlava
+not-installed"slurm-pam_slurm
+not-installed"slurm-plugins
+not-installed"slurm-seff
+not-installed"slurm-sjstat
+not-installed"slurm-slurmdbd
+not-installed"slurm-sql
+not-installed"slurm-sview
+not-installed"slurm-torque
+not-installed"slurp
+not-installed"smake
+installed"smartmontools
+not-installed"smatch
+not-installed"smbios-utils
+not-installed"smc-tools
+not-installed"smcroute
+not-installed"smem
+not-installed"smemstat
+not-installed"smenu
+not-installed"smenu-tests
+not-installed"smictrl
+not-installed"smillaenlarger
+not-installed"smilutils
+not-installed"smlnj
+installed"smp_utils
+not-installed"smplayer
+not-installed"smplayer-lang
+not-installed"smplayer-skins
+not-installed"smplayer-skins
+not-installed"smplayer-theme-leo
+not-installed"smplayer-theme-leo
+not-installed"smplayer-themes
+not-installed"smplayer-themes
+not-installed"smproxy
+not-installed"smssend
+not-installed"smtpping
+not-installed"smtube
+not-installed"smtube
+not-installed"smtube-debuginfo
+not-installed"smtube-debugsource
+not-installed"smtube-lang
+not-installed"smuxi
+not-installed"smuxi-engine
+not-installed"smuxi-engine-campfire
+not-installed"smuxi-engine-campfire-lang
+not-installed"smuxi-engine-irc
+not-installed"smuxi-engine-irc-lang
+not-installed"smuxi-engine-jabbr
+not-installed"smuxi-engine-jabbr-lang
+not-installed"smuxi-engine-lang
+not-installed"smuxi-engine-twitter
+not-installed"smuxi-engine-twitter-lang
+not-installed"smuxi-engine-xmpp
+not-installed"smuxi-engine-xmpp-lang
+not-installed"smuxi-frontend
+not-installed"smuxi-frontend-gnome
+not-installed"smuxi-frontend-gnome-irc
+not-installed"smuxi-frontend-gnome-irc-lang
+not-installed"smuxi-frontend-gnome-lang
+not-installed"smuxi-frontend-gnome-twitter
+not-installed"smuxi-frontend-gnome-twitter-lang
+not-installed"smuxi-frontend-gnome-xmpp
+not-installed"smuxi-frontend-gnome-xmpp-lang
+not-installed"smuxi-frontend-lang
+not-installed"smuxi-frontend-stfl
+not-installed"smuxi-message-buffer
+not-installed"smuxi-message-buffer-lang
+not-installed"smuxi-server
+not-installed"smuxi-server-lang
+not-installed"snack
+not-installed"snakeyaml
+not-installed"snakeyaml-javadoc
+installed"snapper
+installed"snapper-zypp-plugin
+not-installed"snappy-devel
+not-installed"snd
+not-installed"snd_sf2
+not-installed"sndio
+not-installed"sndio-devel
+not-installed"sngrep
+installed"sni-qt
+not-installed"sni-qt-32bit
+not-installed"snipl
+installed"snmp-mibs
+not-installed"snmpsim
+not-installed"snorenotify-qt5
+not-installed"snorenotify-qt5-devel
+not-installed"snowmix
+not-installed"snowmix
+not-installed"snowmix-debuginfo
+not-installed"snowmix-debugsource
+not-installed"soapy-osmo-devel
+not-installed"soapy-sdr
+not-installed"soapy-sdr-devel
+not-installed"soapysdr0.7-module-airspy
+not-installed"soapysdr0.7-module-bladerf
+not-installed"soapysdr0.7-module-freesrp
+not-installed"soapysdr0.7-module-hackrf
+not-installed"soapysdr0.7-module-lms7
+not-installed"soapysdr0.7-module-mirisdr
+not-installed"soapysdr0.7-module-osmosdr
+not-installed"soapysdr0.7-module-remote
+not-installed"soapysdr0.7-module-rfspace
+not-installed"soapysdr0.7-module-rtlsdr
+not-installed"soapysdr0.7-module-uhd
+not-installed"soapysdr0.7-module-xtrx
+not-installed"sobby
+not-installed"socat
+not-installed"socket_wrapper
+not-installed"sofia-sip
+not-installed"sofia-sip-devel
+not-installed"softhsm
+not-installed"softhsm-devel
+not-installed"solaar
+not-installed"solaar-doc
+not-installed"solaar-udev
+not-installed"solarfighter
+not-installed"solarus
+not-installed"solarus-devel
+not-installed"solarus-gui
+not-installed"solarus-gui-lang
+not-installed"solarus-quest-editor
+not-installed"solarus-quest-editor-assets
+not-installed"solarus-quest-editor-lang
+not-installed"solarwolf
+not-installed"solarwolf_we
+not-installed"solfege
+not-installed"solid-devel
+not-installed"solid-devel-32bit
+installed"solid-imports
+installed"solid-tools
+not-installed"solo-udev
+not-installed"something-for-reddit
+not-installed"sonar-icon-theme
+not-installed"sonatype-oss-parent
+not-installed"sonatype-plugins-parent
+not-installed"sonic-visualiser
+installed"sonnet
+not-installed"sonnet-devel
+not-installed"sonnet-devel-32bit
+not-installed"sonobuoy
+not-installed"sooperlooper
+not-installed"sooperlooper
+not-installed"sooperlooper-debuginfo
+not-installed"sooperlooper-debugsource
+not-installed"sopwith
+not-installed"sord
+not-installed"sord-devel
+not-installed"sound-juicer
+not-installed"sound-juicer-lang
+installed"sound-theme-freedesktop
+not-installed"sound-theme-yaru
+not-installed"soundconverter
+not-installed"soundconverter-lang
+not-installed"soundio
+not-installed"soundio-debugsource
+not-installed"soundtouch
+not-installed"soundtouch-devel
+not-installed"soup-sharp
+not-installed"soup-sharp-devel
+not-installed"source-highlight
+not-installed"source-highlight-cgi
+not-installed"sox
+not-installed"sox
+not-installed"sox-debuginfo
+not-installed"sox-debugsource
+not-installed"sox-devel
+not-installed"soxr-devel
+not-installed"spacefm
+not-installed"spacefm-lang
+not-installed"spacenavd
+not-installed"spamassassin
+not-installed"spandsp-devel
+not-installed"spandsp-doc
+not-installed"sparse
+not-installed"sparse-inspect
+not-installed"sparse-llvm
+not-installed"sparsehash-devel
+not-installed"spatialindex-devel
+not-installed"spawn-fcgi
+installed"spax
+not-installed"spdlog-devel
+not-installed"spdylay
+not-installed"spdylay-devel
+not-installed"spec-cleaner
+not-installed"spec-cleaner-format_spec_file
+not-installed"spec-version-maven-plugin
+not-installed"spec-version-maven-plugin-javadoc
+installed"spectacle
+not-installed"spectacle-doc
+installed"spectacle-lang
+not-installed"spectator
+not-installed"spectcl
+installed"spectre-meltdown-checker
+not-installed"speech-dispatcher
+not-installed"speech-dispatcher-configure
+not-installed"speech-dispatcher-module-espeak
+not-installed"speedcrunch
+installed"speedtest-cli
+not-installed"speex
+not-installed"speex-devel
+not-installed"speexdsp-devel
+installed"spek
+not-installed"spek
+not-installed"spek-debuginfo
+not-installed"spek-debugsource
+not-installed"spek-lang
+not-installed"spew
+not-installed"sphinx
+not-installed"sphinxbase
+not-installed"sphinxbase-devel
+not-installed"spice-gtk
+not-installed"spice-gtk-devel
+not-installed"spice-gtk-lang
+not-installed"spice-html5
+not-installed"spice-parent
+not-installed"spice-protocol-devel
+not-installed"spice-up
+not-installed"spice-up-lang
+not-installed"spice-vdagent
+not-installed"spice-webdavd
+not-installed"spirv-cross
+not-installed"spirv-headers
+not-installed"spirv-tools
+not-installed"spirv-tools-devel
+not-installed"spirv-tools-devel-32bit
+not-installed"splint
+not-installed"splinter-devel
+not-installed"splix
+not-installed"spotify-installer
+not-installed"spotify-installer
+not-installed"spread-sheet-widget-devel
+not-installed"spu-tools
+not-installed"spyder
+not-installed"spyder-breakpoints
+not-installed"spyder-breakpoints-lang
+not-installed"spyder-dicom
+not-installed"spyder-hdf5
+not-installed"spyder-lang
+not-installed"spyder-line-profiler
+not-installed"spyder-memory-profiler
+not-installed"spyder-notebook
+not-installed"spyder-profiler
+not-installed"spyder-profiler-lang
+not-installed"spyder-pylint
+not-installed"spyder-pylint-lang
+not-installed"spyder-terminal
+not-installed"spyder-unittest
+not-installed"spyder3
+not-installed"spyder3-breakpoints
+not-installed"spyder3-breakpoints-lang
+not-installed"spyder3-dicom
+not-installed"spyder3-hdf5
+not-installed"spyder3-lang
+not-installed"spyder3-line-profiler
+not-installed"spyder3-memory-profiler
+not-installed"spyder3-notebook
+not-installed"spyder3-profiler
+not-installed"spyder3-profiler-lang
+not-installed"spyder3-pylint
+not-installed"spyder3-pylint-lang
+not-installed"spyder3-terminal
+not-installed"spyder3-unittest
+not-installed"sqlcipher
+not-installed"sqlcipher-devel
+not-installed"sqlite3
+not-installed"sqlite3-devel
+not-installed"sqlite3-doc
+installed"sqlitebrowser
+not-installed"sqliteman
+not-installed"sqliteodbc
+not-installed"sqliteodbc-doc
+not-installed"sqtop
+installed"squashfs
+not-installed"squid
+not-installed"squidGuard
+not-installed"squidGuard-doc
+not-installed"squidview
+not-installed"squirrel
+not-installed"squirrel-devel
+not-installed"squirrel-devel-static
+not-installed"squirrel-doc
+not-installed"squirrel-examples
+not-installed"sratom-devel
+not-installed"src_vipa
+not-installed"srecord
+not-installed"srecord-devel
+not-installed"srecord-doc
+not-installed"srm
+not-installed"srp_daemon
+not-installed"srt
+not-installed"srt-devel
+not-installed"sscape-ctl
+not-installed"ssdeep
+not-installed"ssdp-responder
+not-installed"ssh-contact
+not-installed"ssh-contact-client
+not-installed"ssh-contact-service
+installed"sshfs
+not-installed"sshguard
+not-installed"sshpass
+not-installed"sshuttle
+not-installed"ssl-cert-check
+not-installed"ssldump
+not-installed"sslscan
+not-installed"sssd
+not-installed"sssd-32bit
+not-installed"sssd-ad
+not-installed"sssd-dbus
+not-installed"sssd-ipa
+not-installed"sssd-krb5
+not-installed"sssd-krb5-common
+not-installed"sssd-ldap
+not-installed"sssd-proxy
+not-installed"sssd-tools
+not-installed"sssd-wbclient
+not-installed"sssd-wbclient-devel
+not-installed"sssd-winbind-idmap
+installed"stack
+not-installed"staging-build-key
+not-installed"stalonetray
+not-installed"stan
+installed"star
+not-installed"stardict
+not-installed"stardict-dic-enru-engcom
+not-installed"stardict-dic-enru-mueller7
+not-installed"stardict-sounds-wyabdcrealpeopletts
+not-installed"stardict-tools
+not-installed"starfighter
+not-installed"startup-notification-devel
+not-installed"statgrab
+not-installed"statserial
+not-installed"stax2-api
+not-installed"stax2-api-javadoc
+not-installed"stb-devel
+not-installed"stdman
+installed"steam
+not-installed"steam-controller
+not-installed"steam-vr
+not-installed"steamcmd
+installed"steamtricks
+installed"steamtricks-data
+not-installed"stellarium
+not-installed"step
+not-installed"step-lang
+not-installed"stgit
+installed"stix-fonts
+not-installed"stix-integrals-fonts
+not-installed"stix-pua-fonts
+not-installed"stix-sizes-fonts
+not-installed"stix-variants-fonts
+not-installed"stk
+not-installed"stk-debugsource
+not-installed"stlink
+not-installed"stlink-devel
+not-installed"stlink-gui
+not-installed"stm32flash
+not-installed"stockfish
+not-installed"stoken
+not-installed"stoken-devel
+not-installed"stoken-gui
+not-installed"storage-fixup
+not-installed"storeBackup
+not-installed"stow
+not-installed"stow-doc
+not-installed"stp
+not-installed"stp-devel
+not-installed"stp-python
+installed"strace
+not-installed"strawberry
+not-installed"stream
+not-installed"streamripper
+not-installed"streamripper
+not-installed"streamripper-debuginfo
+not-installed"streamripper-debugsource
+not-installed"streamtuner2
+not-installed"streamtuner2
+not-installed"stress-ng
+not-installed"stress-ng-bash-completion
+not-installed"stressapptest
+not-installed"strip-nondeterminism
+not-installed"strongswan
+not-installed"strongswan-doc
+not-installed"strongswan-hmac
+installed"strongswan-ipsec
+installed"strongswan-libs0
+not-installed"strongswan-mysql
+not-installed"strongswan-nm
+not-installed"strongswan-sqlite
+not-installed"stunnel
+not-installed"stunnel-doc
+not-installed"su-wrapper
+not-installed"submin
+not-installed"submin-apache
+not-installed"submin-svn
+not-installed"subnetcalc
+not-installed"subtitlecomposer
+not-installed"subtitlecomposer-lang
+not-installed"subtitleeditor
+not-installed"subtitleeditor-lang
+not-installed"subtitleripper
+not-installed"subtitleripper
+not-installed"subtitleripper-debuginfo
+not-installed"subtitleripper-debugsource
+not-installed"subunit
+not-installed"subunit-devel
+not-installed"subunit-filters
+not-installed"subunit-shell
+installed"subversion
+installed"subversion-bash-completion
+not-installed"subversion-devel
+not-installed"subversion-doc
+installed"subversion-perl
+not-installed"subversion-python
+not-installed"subversion-python-ctypes
+not-installed"subversion-ruby
+not-installed"subversion-server
+not-installed"subversion-tools
+not-installed"suck
+installed"sudo
+not-installed"sudo-devel
+not-installed"sudo-test
+not-installed"sudoku-sensei
+not-installed"suil-devel
+not-installed"suil-plugin-gtk2-in-qt5
+not-installed"suil-plugin-qt5-in-gtk2
+not-installed"suil-plugin-x11
+not-installed"suil-plugin-x11-in-gtk2
+not-installed"suil-plugin-x11-in-gtk3
+not-installed"suil-plugin-x11-in-qt5
+not-installed"suitesparse-devel
+not-installed"suitesparse-devel-static
+not-installed"sundanese-unicode-fonts
+not-installed"sunpinyin-data
+not-installed"sunpinyin-devel
+not-installed"sunpinyin-tools
+not-installed"sunwait
+not-installed"sunxi-tools
+not-installed"superlu-devel
+not-installed"superlu-doc
+not-installed"superlu-examples
+not-installed"superlu-gnu-hpc-devel
+not-installed"superlu-gnu-hpc-doc
+not-installed"superlu-gnu-hpc-examples
+not-installed"superlu_5_2_1-gnu-hpc-devel
+not-installed"superlu_5_2_1-gnu-hpc-doc
+not-installed"superlu_5_2_1-gnu-hpc-examples
+installed"supermin
+not-installed"supertux2
+not-installed"supertuxkart
+not-installed"supertuxkart-data
+not-installed"supervisor
+not-installed"supportutils
+installed"surfraw
+not-installed"surfraw-woffle
+not-installed"suru-plus-dark-icon-theme
+not-installed"suse-build-key
+not-installed"suse-hpc
+installed"suse-module-tools
+not-installed"suse-module-tools-legacy
+installed"suse-prime
+not-installed"suse-xsl-stylesheets
+not-installed"susefirewall2-to-firewalld
+installed"susepaste
+installed"susepaste-screenshot
+not-installed"suseprime-appindicator
+not-installed"sushi
+not-installed"sushi-lang
+not-installed"svg-schema
+not-installed"svg-schema-doc
+not-installed"svgcleaner
+not-installed"svgcleaner-gui
+not-installed"svgpart
+not-installed"svgpart-lang
+not-installed"sview
+not-installed"sview
+not-installed"svn2git
+not-installed"svxlink-server
+installed"sw_management
+not-installed"sway
+not-installed"swaybg
+not-installed"swayidle
+not-installed"swayidle-bash-completion
+not-installed"swayidle-fish-completion
+not-installed"swayidle-zsh-completion
+not-installed"swaylock
+not-installed"swaylock-bash-completion
+not-installed"swaylock-fish-completion
+not-installed"swaylock-zsh-completion
+not-installed"sweep
+not-installed"sweep
+not-installed"sweep-debuginfo
+not-installed"sweep-debugsource
+not-installed"sweeper
+not-installed"sweeper-lang
+not-installed"swell-foop
+not-installed"swell-foop-lang
+not-installed"swift-im
+not-installed"swiften-devel
+not-installed"swig
+not-installed"swig-doc
+not-installed"swig-examples
+not-installed"swing-layout
+not-installed"swing-layout-javadoc
+not-installed"swing-worker
+not-installed"swing-worker-demo
+not-installed"swing-worker-javadoc
+not-installed"swingx
+not-installed"swingx-javadoc
+not-installed"swipl
+not-installed"switch_sles_sle-hpc
+not-installed"switchboard
+not-installed"switchboard-devel
+not-installed"switchboard-lang
+not-installed"switcheroo-control
+not-installed"switcheroo-control-doc
+not-installed"sword
+not-installed"sword-devel
+not-installed"swtcalendar
+not-installed"swtchart
+not-installed"swtchart-javadoc
+not-installed"sxhkd
+not-installed"sxiv
+not-installed"sympol
+not-installed"sympol-devel
+not-installed"synapse
+not-installed"synapse-lang
+not-installed"syncthing
+not-installed"syncthing-gtk
+not-installed"syncthing-gtk-lang
+not-installed"syncthing-relaysrv
+not-installed"syndication-devel
+not-installed"synergy
+not-installed"synfig
+not-installed"synfig
+not-installed"synfig-debuginfo
+not-installed"synfig-debugsource
+not-installed"synfig-devel
+not-installed"synfig-doc
+not-installed"synfig-lang
+not-installed"synfig-modules
+not-installed"synfig-modules-debuginfo
+not-installed"synfigapp-devel
+not-installed"synfigstudio
+not-installed"synfigstudio
+not-installed"synfigstudio-debuginfo
+not-installed"synfigstudio-debugsource
+not-installed"synfigstudio-lang
+not-installed"synnefo
+installed"syntax-highlighting
+not-installed"syntax-highlighting-devel
+not-installed"syntax-highlighting-devel-32bit
+not-installed"sysbench
+installed"sysconfig
+installed"sysconfig-netconfig
+not-installed"sysdig
+not-installed"sysdig-kmp-default
+not-installed"sysdig-kmp-pae
+not-installed"sysfsutils
+not-installed"sysfsutils-32bit
+not-installed"sysfsutils-devel
+not-installed"sysinfo
+installed"syslinux
+not-installed"syslog-ng
+not-installed"syslog-ng-curl
+not-installed"syslog-ng-devel
+not-installed"syslog-ng-geoip
+not-installed"syslog-ng-java
+not-installed"syslog-ng-python
+not-installed"syslog-ng-redis
+not-installed"syslog-ng-smtp
+not-installed"syslog-ng-sql
+installed"syslog-service
+not-installed"syslogd
+not-installed"sysprof
+not-installed"sysprof-capture-devel-static
+not-installed"sysprof-devel
+not-installed"sysprof-lang
+not-installed"sysstat
+not-installed"sysstat-isag
+not-installed"system-config-printer
+not-installed"system-config-printer-applet
+not-installed"system-config-printer-common
+not-installed"system-config-printer-common-lang
+not-installed"system-config-printer-dbus-service
+installed"system-group-hardware
+not-installed"system-group-obsolete
+installed"system-group-wheel
+installed"system-tuning-common-SUSE
+installed"system-user-bin
+installed"system-user-daemon
+installed"system-user-flatpak
+not-installed"system-user-ftp
+not-installed"system-user-games
+installed"system-user-lp
+installed"system-user-mail
+installed"system-user-man
+not-installed"system-user-news
+installed"system-user-nobody
+installed"system-user-root
+installed"system-user-srvGeoClue
+not-installed"system-user-tftp
+not-installed"system-user-upsd
+not-installed"system-user-uucp
+not-installed"system-user-uuidd
+not-installed"system-user-wwwrun
+installed"systemd
+installed"systemd-32bit
+installed"systemd-container
+not-installed"systemd-coredump
+not-installed"systemd-devel
+installed"systemd-icon-branding-openSUSE
+not-installed"systemd-journal-remote
+not-installed"systemd-logger
+not-installed"systemd-mini-container
+not-installed"systemd-presets-branding-MicroOS
+installed"systemd-presets-branding-openSUSE
+not-installed"systemd-presets-branding-transactional-server
+installed"systemd-presets-common-SUSE
+installed"systemd-rpm-macros
+installed"systemd-sysvinit
+not-installed"systemd-ui
+not-installed"systemd-zram-service
+installed"systemsettings5
+not-installed"systemsettings5-devel
+installed"systemsettings5-lang
+not-installed"systemtap
+not-installed"systemtap-docs
+not-installed"systemtap-headers
+not-installed"systemtap-runtime
+not-installed"systemtap-sdt-devel
+not-installed"systemtap-server
+not-installed"systester
+installed"sysuser-shadow
+not-installed"sysuser-tools
+installed"sysvinit-tools
+not-installed"sz2-devel
+not-installed"t-prot
+not-installed"t1utils
+not-installed"t38modem
+not-installed"tachyon
+not-installed"tack
+not-installed"tagbanwa-fonts
+not-installed"taglib
+not-installed"taglib-extras-devel
+not-installed"taglib-sharp
+not-installed"taglib-sharp-devel
+not-installed"tagsoup
+not-installed"tagsoup-javadoc
+not-installed"tai-heritage-pro-fonts
+not-installed"taisei
+not-installed"taisei-data
+not-installed"tali
+not-installed"tali-lang
+not-installed"talk
+not-installed"talk-server
+not-installed"talloc-man
+not-installed"tallow
+not-installed"tamago
+not-installed"tamil-gtk2im
+not-installed"tamil-gtk2im-32bit
+not-installed"tango-icon-theme
+not-installed"tanukiwrapper
+not-installed"tanukiwrapper-javadoc
+not-installed"tanukiwrapper-manual
+installed"tar
+not-installed"tar-backup-scripts
+not-installed"tar-doc
+installed"tar-lang
+installed"tar-rmt
+not-installed"tar-tests
+not-installed"tardy
+not-installed"target-isns
+not-installed"targetcli-fb-common
+not-installed"taskwarrior
+not-installed"tasque
+not-installed"tasque-lang
+not-installed"tayga
+not-installed"tbb-devel
+not-installed"tboot
+not-installed"tcd
+installed"tcl
+not-installed"tcl-32bit
+not-installed"tcl-Hamlib
+not-installed"tcl-brlapi
+not-installed"tcl-devel
+not-installed"tcl-rrdtool
+not-installed"tcl-sqlcipher
+not-installed"tcl-tktray
+not-installed"tcl8-xapian
+not-installed"tclap
+not-installed"tclap-doc
+not-installed"tclcurl
+not-installed"tcllib
+not-installed"tclplug
+not-installed"tclplug-32bit
+not-installed"tcludp
+not-installed"tclx
+not-installed"tcmu-runner
+not-installed"tcmu-runner-handler-glusterfs
+not-installed"tcmu-runner-handler-rbd
+not-installed"tcmu-runner-handler-zbc
+not-installed"tcpd
+not-installed"tcpd-devel
+installed"tcpdump
+not-installed"tcpflow
+not-installed"tcpreplay
+installed"tcsh
+installed"tcsh-lang
+not-installed"tdb-tools
+not-installed"tdom
+not-installed"tdom-devel
+not-installed"tdu
+not-installed"tdu
+not-installed"tdu-debuginfo
+not-installed"tea
+not-installed"tealdeer
+not-installed"teamviewer
+not-installed"teamviewer-host
+not-installed"teamviewer-host-suse
+installed"teamviewer-suse
+not-installed"technical_writing
+not-installed"technisat-usb2-firmware
+not-installed"tecla
+not-installed"tecla-devel
+not-installed"tecnoballz
+not-installed"teeworlds
+not-installed"tei-roma
+not-installed"tei-xsl-stylesheets
+not-installed"tei_4
+not-installed"telegraf
+not-installed"telegram-desktop
+not-installed"telegram-theme-adapta
+not-installed"telegram-theme-plata
+not-installed"telemetrics-client
+not-installed"telemetrics-client-devel
+not-installed"telepathy-accounts-signon
+not-installed"telepathy-farstream-devel
+not-installed"telepathy-gabble
+not-installed"telepathy-gabble-xmpp-console
+not-installed"telepathy-glib-devel
+not-installed"telepathy-glib-doc
+not-installed"telepathy-haze
+not-installed"telepathy-idle
+not-installed"telepathy-logger
+not-installed"telepathy-logger-devel
+not-installed"telepathy-logger-qt5-devel
+not-installed"telepathy-mission-control
+not-installed"telepathy-mission-control-devel
+not-installed"telepathy-mission-control-plugin-goa
+not-installed"telepathy-qt5-devel
+not-installed"telepathy-qt5-devel-32bit
+not-installed"telepathy-rakia
+not-installed"telepathy-rakia-devel
+not-installed"telepathy-sipe
+not-installed"tellico
+not-installed"tellico-lang
+installed"telnet
+not-installed"telnet-server
+not-installed"template-glib-devel
+not-installed"template-glib-lang
+not-installed"tennebon-dynamic-wallpaper
+not-installed"tensorflow
+not-installed"tensorflow-avx2-gnu-hpc
+not-installed"tensorflow-avx2-gnu-mvapich2-hpc
+not-installed"tensorflow-avx2-gnu-openmpi2-hpc
+not-installed"tensorflow-avx2_1_13_1-gnu-hpc
+not-installed"tensorflow-avx2_1_13_1-gnu-hpc-devel
+not-installed"tensorflow-avx2_1_13_1-gnu-hpc-doc
+not-installed"tensorflow-avx2_1_13_1-gnu-mvapich2-hpc
+not-installed"tensorflow-avx2_1_13_1-gnu-mvapich2-hpc-devel
+not-installed"tensorflow-avx2_1_13_1-gnu-mvapich2-hpc-doc
+not-installed"tensorflow-avx2_1_13_1-gnu-openmpi2-hpc
+not-installed"tensorflow-avx2_1_13_1-gnu-openmpi2-hpc-devel
+not-installed"tensorflow-avx2_1_13_1-gnu-openmpi2-hpc-doc
+not-installed"tensorflow-devel
+not-installed"tensorflow-doc
+not-installed"tensorflow-gnu-hpc
+not-installed"tensorflow-gnu-mvapich2-hpc
+not-installed"tensorflow-gnu-openmpi2-hpc
+not-installed"tensorflow-lite
+not-installed"tensorflow-lite-devel
+not-installed"tensorflow_1_13_1-gnu-hpc
+not-installed"tensorflow_1_13_1-gnu-hpc-devel
+not-installed"tensorflow_1_13_1-gnu-hpc-doc
+not-installed"tensorflow_1_13_1-gnu-mvapich2-hpc
+not-installed"tensorflow_1_13_1-gnu-mvapich2-hpc-devel
+not-installed"tensorflow_1_13_1-gnu-mvapich2-hpc-doc
+not-installed"tensorflow_1_13_1-gnu-openmpi2-hpc
+not-installed"tensorflow_1_13_1-gnu-openmpi2-hpc-devel
+not-installed"tensorflow_1_13_1-gnu-openmpi2-hpc-doc
+not-installed"tepl-4-lang
+not-installed"tepl-devel
+not-installed"termcap
+not-installed"termcap-32bit
+not-installed"terminator
+not-installed"terminator-lang
+not-installed"terminatorX
+not-installed"terminatorX
+not-installed"terminatorX-debuginfo
+not-installed"terminatorX-debugsource
+installed"terminfo
+installed"terminfo-base
+not-installed"terminfo-iterm
+installed"terminfo-screen
+not-installed"terminology
+not-installed"terminology-lang
+not-installed"terminology-theme-dark
+not-installed"terminology-theme-misc
+not-installed"terminology-theme-openSUSE
+not-installed"terminology-theme-openSUSE-oliveleaf
+not-installed"terminology-theme-upstream
+not-installed"terminus
+not-installed"terminus-bitmap-fonts
+not-installed"terminus-lang
+not-installed"termsyn-bitmap-fonts
+not-installed"terraform
+not-installed"teseq
+not-installed"tesseract
+not-installed"tesseract-data
+not-installed"tesseract-ocr
+not-installed"tesseract-ocr-devel
+not-installed"tesseract-ocr-traineddata-afrikaans
+not-installed"tesseract-ocr-traineddata-albanian
+not-installed"tesseract-ocr-traineddata-amharic
+not-installed"tesseract-ocr-traineddata-arabic
+not-installed"tesseract-ocr-traineddata-assamese
+not-installed"tesseract-ocr-traineddata-azerbaijani
+not-installed"tesseract-ocr-traineddata-azerbaijani_cyrillic
+not-installed"tesseract-ocr-traineddata-basque
+not-installed"tesseract-ocr-traineddata-belarusian
+not-installed"tesseract-ocr-traineddata-bengali
+not-installed"tesseract-ocr-traineddata-bosnian
+not-installed"tesseract-ocr-traineddata-bulgarian
+not-installed"tesseract-ocr-traineddata-burmese
+not-installed"tesseract-ocr-traineddata-catalan
+not-installed"tesseract-ocr-traineddata-cebuano
+not-installed"tesseract-ocr-traineddata-cherokee
+not-installed"tesseract-ocr-traineddata-chinese_simplified
+not-installed"tesseract-ocr-traineddata-chinese_traditional
+not-installed"tesseract-ocr-traineddata-croatian
+not-installed"tesseract-ocr-traineddata-czech
+not-installed"tesseract-ocr-traineddata-danish
+not-installed"tesseract-ocr-traineddata-dutch
+not-installed"tesseract-ocr-traineddata-dzongkha
+not-installed"tesseract-ocr-traineddata-english
+not-installed"tesseract-ocr-traineddata-english_middle
+not-installed"tesseract-ocr-traineddata-esperanto
+not-installed"tesseract-ocr-traineddata-estonian
+not-installed"tesseract-ocr-traineddata-finnish
+not-installed"tesseract-ocr-traineddata-frankish
+not-installed"tesseract-ocr-traineddata-french
+not-installed"tesseract-ocr-traineddata-french_middle
+not-installed"tesseract-ocr-traineddata-galician
+not-installed"tesseract-ocr-traineddata-georgian
+not-installed"tesseract-ocr-traineddata-georgian_old
+not-installed"tesseract-ocr-traineddata-german
+not-installed"tesseract-ocr-traineddata-greek
+not-installed"tesseract-ocr-traineddata-greek_ancient
+not-installed"tesseract-ocr-traineddata-gujarati
+not-installed"tesseract-ocr-traineddata-haitian
+not-installed"tesseract-ocr-traineddata-hebrew
+not-installed"tesseract-ocr-traineddata-hindi
+not-installed"tesseract-ocr-traineddata-hungarian
+not-installed"tesseract-ocr-traineddata-icelandic
+not-installed"tesseract-ocr-traineddata-indonese
+not-installed"tesseract-ocr-traineddata-inuktitut
+not-installed"tesseract-ocr-traineddata-irish
+not-installed"tesseract-ocr-traineddata-italian
+not-installed"tesseract-ocr-traineddata-italian_old
+not-installed"tesseract-ocr-traineddata-japanese
+not-installed"tesseract-ocr-traineddata-javanese
+not-installed"tesseract-ocr-traineddata-kannada
+not-installed"tesseract-ocr-traineddata-kazakh
+not-installed"tesseract-ocr-traineddata-khmer
+not-installed"tesseract-ocr-traineddata-korean
+not-installed"tesseract-ocr-traineddata-kurdish
+not-installed"tesseract-ocr-traineddata-kyrgyz
+not-installed"tesseract-ocr-traineddata-lao
+not-installed"tesseract-ocr-traineddata-latin
+not-installed"tesseract-ocr-traineddata-latvian
+not-installed"tesseract-ocr-traineddata-lithuanian
+not-installed"tesseract-ocr-traineddata-macedonian
+not-installed"tesseract-ocr-traineddata-malay
+not-installed"tesseract-ocr-traineddata-malayalam
+not-installed"tesseract-ocr-traineddata-maltese
+not-installed"tesseract-ocr-traineddata-marathi
+not-installed"tesseract-ocr-traineddata-math_equation
+not-installed"tesseract-ocr-traineddata-nepali
+not-installed"tesseract-ocr-traineddata-norwegian
+not-installed"tesseract-ocr-traineddata-orientation_and_script_detection
+not-installed"tesseract-ocr-traineddata-oriya
+not-installed"tesseract-ocr-traineddata-pashto
+not-installed"tesseract-ocr-traineddata-persian
+not-installed"tesseract-ocr-traineddata-polish
+not-installed"tesseract-ocr-traineddata-portuguese
+not-installed"tesseract-ocr-traineddata-punjabi
+not-installed"tesseract-ocr-traineddata-romanian
+not-installed"tesseract-ocr-traineddata-russian
+not-installed"tesseract-ocr-traineddata-sanskrit
+not-installed"tesseract-ocr-traineddata-serbian
+not-installed"tesseract-ocr-traineddata-serbian_latin
+not-installed"tesseract-ocr-traineddata-sinhala
+not-installed"tesseract-ocr-traineddata-slovak
+not-installed"tesseract-ocr-traineddata-slovenian
+not-installed"tesseract-ocr-traineddata-spanish
+not-installed"tesseract-ocr-traineddata-spanish_old
+not-installed"tesseract-ocr-traineddata-swahili
+not-installed"tesseract-ocr-traineddata-swedish
+not-installed"tesseract-ocr-traineddata-syriac
+not-installed"tesseract-ocr-traineddata-tagalog
+not-installed"tesseract-ocr-traineddata-tajik
+not-installed"tesseract-ocr-traineddata-tamil
+not-installed"tesseract-ocr-traineddata-telugu
+not-installed"tesseract-ocr-traineddata-thai
+not-installed"tesseract-ocr-traineddata-tibetan_standard
+not-installed"tesseract-ocr-traineddata-tigrinya
+not-installed"tesseract-ocr-traineddata-turkish
+not-installed"tesseract-ocr-traineddata-ukrainian
+not-installed"tesseract-ocr-traineddata-urdu
+not-installed"tesseract-ocr-traineddata-uyghur
+not-installed"tesseract-ocr-traineddata-uzbek
+not-installed"tesseract-ocr-traineddata-uzbek_cyrillic
+not-installed"tesseract-ocr-traineddata-vietnamese
+not-installed"tesseract-ocr-traineddata-welsh
+not-installed"tesseract-ocr-traineddata-yiddish
+not-installed"tesseract-server
+not-installed"testdisk
+not-installed"testng
+not-installed"testng-javadoc
+not-installed"tetrinet-server
+not-installed"tevent-man
+not-installed"texamator
+not-installed"texamator-lang
+not-installed"texi2html
+not-installed"texi2html-lang
+not-installed"texi2roff
+not-installed"texinfo
+not-installed"texinfo4
+not-installed"texlive
+not-installed"texlive-12many
+not-installed"texlive-12many-doc
+not-installed"texlive-2up
+not-installed"texlive-2up-doc
+not-installed"texlive-Asana-Math
+not-installed"texlive-Asana-Math-doc
+not-installed"texlive-Asana-Math-fonts
+not-installed"texlive-ESIEEcv
+not-installed"texlive-ESIEEcv-doc
+not-installed"texlive-FAQ-en
+not-installed"texlive-GS1
+not-installed"texlive-GS1-doc
+not-installed"texlive-HA-prosper
+not-installed"texlive-HA-prosper-doc
+not-installed"texlive-IEEEconf
+not-installed"texlive-IEEEconf-doc
+not-installed"texlive-IEEEtran
+not-installed"texlive-IEEEtran-doc
+not-installed"texlive-MemoirChapStyles
+not-installed"texlive-SIstyle
+not-installed"texlive-SIstyle-doc
+not-installed"texlive-SIunits
+not-installed"texlive-SIunits-doc
+not-installed"texlive-Tabbing
+not-installed"texlive-Tabbing-doc
+not-installed"texlive-Type1fonts
+not-installed"texlive-a0poster
+not-installed"texlive-a0poster-doc
+not-installed"texlive-a2ping
+not-installed"texlive-a2ping-bin
+not-installed"texlive-a2ping-doc
+not-installed"texlive-a4wide
+not-installed"texlive-a4wide-doc
+not-installed"texlive-a5comb
+not-installed"texlive-a5comb-doc
+not-installed"texlive-aastex
+not-installed"texlive-aastex-doc
+not-installed"texlive-abbr
+not-installed"texlive-abbr-doc
+not-installed"texlive-abc
+not-installed"texlive-abc-doc
+not-installed"texlive-abnt
+not-installed"texlive-abnt-doc
+not-installed"texlive-abntex2
+not-installed"texlive-abntex2-doc
+not-installed"texlive-abraces
+not-installed"texlive-abraces-doc
+not-installed"texlive-abstract
+not-installed"texlive-abstract-doc
+not-installed"texlive-abstyles
+not-installed"texlive-abstyles-doc
+not-installed"texlive-academicons
+not-installed"texlive-academicons-doc
+not-installed"texlive-academicons-fonts
+not-installed"texlive-accanthis
+not-installed"texlive-accanthis-doc
+not-installed"texlive-accanthis-fonts
+not-installed"texlive-accfonts
+not-installed"texlive-accfonts-bin
+not-installed"texlive-accfonts-doc
+not-installed"texlive-achemso
+not-installed"texlive-achemso-doc
+not-installed"texlive-acmart
+not-installed"texlive-acmart-doc
+not-installed"texlive-acmconf
+not-installed"texlive-acmconf-doc
+not-installed"texlive-acro
+not-installed"texlive-acro-doc
+not-installed"texlive-acronym
+not-installed"texlive-acronym-doc
+not-installed"texlive-acroterm
+not-installed"texlive-acroterm-doc
+not-installed"texlive-active-conf
+not-installed"texlive-active-conf-doc
+not-installed"texlive-actuarialangle
+not-installed"texlive-actuarialangle-doc
+not-installed"texlive-actuarialsymbol
+not-installed"texlive-actuarialsymbol-doc
+not-installed"texlive-addfont
+not-installed"texlive-addfont-doc
+not-installed"texlive-addlines
+not-installed"texlive-addlines-doc
+not-installed"texlive-adfathesis
+not-installed"texlive-adfathesis-doc
+not-installed"texlive-adforn
+not-installed"texlive-adforn-doc
+not-installed"texlive-adforn-fonts
+not-installed"texlive-adfsymbols
+not-installed"texlive-adfsymbols-doc
+not-installed"texlive-adfsymbols-fonts
+not-installed"texlive-adhocfilelist
+not-installed"texlive-adhocfilelist-bin
+not-installed"texlive-adhocfilelist-doc
+not-installed"texlive-adigraph
+not-installed"texlive-adigraph-doc
+not-installed"texlive-adjmulticol
+not-installed"texlive-adjmulticol-doc
+not-installed"texlive-adjustbox
+not-installed"texlive-adjustbox-doc
+not-installed"texlive-adobemapping
+not-installed"texlive-adrconv
+not-installed"texlive-adrconv-doc
+not-installed"texlive-adtrees
+not-installed"texlive-adtrees-doc
+not-installed"texlive-advdate
+not-installed"texlive-advdate-doc
+not-installed"texlive-ae
+not-installed"texlive-ae-doc
+not-installed"texlive-aecc
+not-installed"texlive-aecc-doc
+not-installed"texlive-aeguill
+not-installed"texlive-aeguill-doc
+not-installed"texlive-afm2pl
+not-installed"texlive-afm2pl-bin
+not-installed"texlive-afm2pl-doc
+not-installed"texlive-afparticle
+not-installed"texlive-afparticle-doc
+not-installed"texlive-afthesis
+not-installed"texlive-afthesis-doc
+not-installed"texlive-aguplus
+not-installed"texlive-aguplus-doc
+not-installed"texlive-aiaa
+not-installed"texlive-aiaa-doc
+not-installed"texlive-aichej
+not-installed"texlive-ajl
+not-installed"texlive-akktex
+not-installed"texlive-akktex-doc
+not-installed"texlive-akletter
+not-installed"texlive-akletter-doc
+not-installed"texlive-alegreya
+not-installed"texlive-alegreya-doc
+not-installed"texlive-alegreya-fonts
+not-installed"texlive-aleph
+not-installed"texlive-aleph-bin
+not-installed"texlive-alertmessage
+not-installed"texlive-alertmessage-doc
+not-installed"texlive-alg
+not-installed"texlive-alg-doc
+not-installed"texlive-algobox
+not-installed"texlive-algobox-doc
+not-installed"texlive-algolrevived
+not-installed"texlive-algolrevived-doc
+not-installed"texlive-algolrevived-fonts
+not-installed"texlive-algorithm2e
+not-installed"texlive-algorithm2e-doc
+not-installed"texlive-algorithmicx
+not-installed"texlive-algorithmicx-doc
+not-installed"texlive-algorithms
+not-installed"texlive-algorithms-doc
+not-installed"texlive-aligned-overset
+not-installed"texlive-aligned-overset-doc
+not-installed"texlive-alkalami
+not-installed"texlive-alkalami-doc
+not-installed"texlive-alkalami-fonts
+not-installed"texlive-allrunes
+not-installed"texlive-allrunes-doc
+not-installed"texlive-allrunes-fonts
+not-installed"texlive-almfixed
+not-installed"texlive-almfixed-doc
+not-installed"texlive-almfixed-fonts
+not-installed"texlive-alnumsec
+not-installed"texlive-alnumsec-doc
+not-installed"texlive-alpha-persian
+not-installed"texlive-alpha-persian-doc
+not-installed"texlive-alterqcm
+not-installed"texlive-alterqcm-doc
+not-installed"texlive-altfont
+not-installed"texlive-altfont-doc
+not-installed"texlive-ametsoc
+not-installed"texlive-ametsoc-doc
+not-installed"texlive-amiri
+not-installed"texlive-amiri-doc
+not-installed"texlive-amiri-fonts
+not-installed"texlive-amsaddr
+not-installed"texlive-amsaddr-doc
+not-installed"texlive-amscls
+not-installed"texlive-amscls-doc
+not-installed"texlive-amsfonts
+not-installed"texlive-amsfonts-doc
+not-installed"texlive-amsfonts-fonts
+not-installed"texlive-amslatex-primer
+not-installed"texlive-amsldoc-it
+not-installed"texlive-amsldoc-vn
+not-installed"texlive-amsmath
+not-installed"texlive-amsmath-doc
+not-installed"texlive-amsmath-it
+not-installed"texlive-amsrefs
+not-installed"texlive-amsrefs-doc
+not-installed"texlive-amstex
+not-installed"texlive-amstex-bin
+not-installed"texlive-amstex-doc
+not-installed"texlive-amsthdoc-it
+not-installed"texlive-animate
+not-installed"texlive-animate-doc
+not-installed"texlive-anonchap
+not-installed"texlive-anonchap-doc
+not-installed"texlive-anonymouspro
+not-installed"texlive-anonymouspro-doc
+not-installed"texlive-anonymouspro-fonts
+not-installed"texlive-answers
+not-installed"texlive-answers-doc
+not-installed"texlive-antiqua
+not-installed"texlive-antiqua-doc
+not-installed"texlive-antiqua-fonts
+not-installed"texlive-antomega
+not-installed"texlive-antomega-doc
+not-installed"texlive-antt
+not-installed"texlive-antt-doc
+not-installed"texlive-antt-fonts
+not-installed"texlive-anufinalexam
+not-installed"texlive-anyfontsize
+not-installed"texlive-anyfontsize-doc
+not-installed"texlive-anysize
+not-installed"texlive-anysize-doc
+not-installed"texlive-aobs-tikz
+not-installed"texlive-aobs-tikz-doc
+not-installed"texlive-aomart
+not-installed"texlive-aomart-doc
+not-installed"texlive-apa
+not-installed"texlive-apa-doc
+not-installed"texlive-apa6
+not-installed"texlive-apa6-doc
+not-installed"texlive-apa6e
+not-installed"texlive-apa6e-doc
+not-installed"texlive-apacite
+not-installed"texlive-apacite-doc
+not-installed"texlive-apalike-german
+not-installed"texlive-apalike-german-doc
+not-installed"texlive-apalike2
+not-installed"texlive-apnum
+not-installed"texlive-apnum-doc
+not-installed"texlive-appendix
+not-installed"texlive-appendix-doc
+not-installed"texlive-appendixnumberbeamer
+not-installed"texlive-appendixnumberbeamer-doc
+not-installed"texlive-apprends-latex
+not-installed"texlive-apptools
+not-installed"texlive-apptools-doc
+not-installed"texlive-apxproof
+not-installed"texlive-apxproof-doc
+not-installed"texlive-arabi
+not-installed"texlive-arabi-add
+not-installed"texlive-arabi-add-doc
+not-installed"texlive-arabi-doc
+not-installed"texlive-arabi-fonts
+not-installed"texlive-arabluatex
+not-installed"texlive-arabluatex-doc
+not-installed"texlive-arabtex
+not-installed"texlive-arabtex-doc
+not-installed"texlive-arabtex-fonts
+not-installed"texlive-arabxetex
+not-installed"texlive-arabxetex-doc
+not-installed"texlive-aramaic-serto
+not-installed"texlive-aramaic-serto-doc
+not-installed"texlive-aramaic-serto-fonts
+not-installed"texlive-arara
+not-installed"texlive-arara-bin
+not-installed"texlive-arara-doc
+not-installed"texlive-archaeologie
+not-installed"texlive-archaeologie-doc
+not-installed"texlive-archaic
+not-installed"texlive-archaic-doc
+not-installed"texlive-archaic-fonts
+not-installed"texlive-arcs
+not-installed"texlive-arcs-doc
+not-installed"texlive-arev
+not-installed"texlive-arev-doc
+not-installed"texlive-arev-fonts
+not-installed"texlive-arimo
+not-installed"texlive-arimo-doc
+not-installed"texlive-arimo-fonts
+not-installed"texlive-armtex
+not-installed"texlive-armtex-doc
+not-installed"texlive-armtex-fonts
+not-installed"texlive-around-the-bend
+not-installed"texlive-arphic
+not-installed"texlive-arphic-doc
+not-installed"texlive-arphic-fonts
+not-installed"texlive-arphic-ttf
+not-installed"texlive-arphic-ttf-doc
+not-installed"texlive-arphic-ttf-fonts
+not-installed"texlive-arrayjobx
+not-installed"texlive-arrayjobx-doc
+not-installed"texlive-arraysort
+not-installed"texlive-arraysort-doc
+not-installed"texlive-arsclassica
+not-installed"texlive-arsclassica-doc
+not-installed"texlive-articleingud
+not-installed"texlive-articleingud-doc
+not-installed"texlive-arydshln
+not-installed"texlive-arydshln-doc
+not-installed"texlive-asaetr
+not-installed"texlive-asaetr-doc
+not-installed"texlive-asapsym
+not-installed"texlive-asapsym-doc
+not-installed"texlive-asapsym-fonts
+not-installed"texlive-ascelike
+not-installed"texlive-ascelike-doc
+not-installed"texlive-ascii-chart
+not-installed"texlive-ascii-font
+not-installed"texlive-ascii-font-doc
+not-installed"texlive-ascii-font-fonts
+not-installed"texlive-asciilist
+not-installed"texlive-asciilist-doc
+not-installed"texlive-ascmac
+not-installed"texlive-ascmac-doc
+not-installed"texlive-ascmac-fonts
+not-installed"texlive-askmaps
+not-installed"texlive-askmaps-doc
+not-installed"texlive-asmeconf
+not-installed"texlive-asmeconf-doc
+not-installed"texlive-aspectratio
+not-installed"texlive-aspectratio-doc
+not-installed"texlive-aspectratio-fonts
+not-installed"texlive-assignment
+not-installed"texlive-assignment-doc
+not-installed"texlive-assoccnt
+not-installed"texlive-assoccnt-doc
+not-installed"texlive-astro
+not-installed"texlive-astro-doc
+not-installed"texlive-asyfig
+not-installed"texlive-asyfig-doc
+not-installed"texlive-asymptote
+not-installed"texlive-asymptote-bin
+not-installed"texlive-asymptote-by-example-zh-cn
+not-installed"texlive-asymptote-doc
+not-installed"texlive-asymptote-faq-zh-cn
+not-installed"texlive-asymptote-manual-zh-cn
+not-installed"texlive-asypictureb
+not-installed"texlive-asypictureb-doc
+not-installed"texlive-attachfile
+not-installed"texlive-attachfile-doc
+not-installed"texlive-aucklandthesis
+not-installed"texlive-aucklandthesis-doc
+not-installed"texlive-augie
+not-installed"texlive-augie-doc
+not-installed"texlive-augie-fonts
+not-installed"texlive-auncial-new
+not-installed"texlive-auncial-new-doc
+not-installed"texlive-auncial-new-fonts
+not-installed"texlive-aurical
+not-installed"texlive-aurical-doc
+not-installed"texlive-aurical-fonts
+not-installed"texlive-aurl
+not-installed"texlive-aurl-doc
+not-installed"texlive-authoraftertitle
+not-installed"texlive-authoraftertitle-doc
+not-installed"texlive-authorarchive
+not-installed"texlive-authorarchive-doc
+not-installed"texlive-authorindex
+not-installed"texlive-authorindex-bin
+not-installed"texlive-authorindex-doc
+not-installed"texlive-auto-pst-pdf
+not-installed"texlive-auto-pst-pdf-doc
+not-installed"texlive-auto-pst-pdf-lua
+not-installed"texlive-auto-pst-pdf-lua-doc
+not-installed"texlive-autoaligne
+not-installed"texlive-autoaligne-doc
+not-installed"texlive-autoarea
+not-installed"texlive-autoarea-doc
+not-installed"texlive-autobreak
+not-installed"texlive-autobreak-doc
+not-installed"texlive-automata
+not-installed"texlive-automata-doc
+not-installed"texlive-autonum
+not-installed"texlive-autonum-doc
+not-installed"texlive-autopdf
+not-installed"texlive-autopdf-doc
+not-installed"texlive-autosp
+not-installed"texlive-autosp-bin
+not-installed"texlive-avantgar
+not-installed"texlive-avantgar-fonts
+not-installed"texlive-avremu
+not-installed"texlive-avremu-doc
+not-installed"texlive-awesomebox
+not-installed"texlive-awesomebox-doc
+not-installed"texlive-axodraw2
+not-installed"texlive-axodraw2-bin
+not-installed"texlive-axodraw2-doc
+not-installed"texlive-b1encoding
+not-installed"texlive-b1encoding-doc
+not-installed"texlive-babel
+not-installed"texlive-babel-albanian
+not-installed"texlive-babel-albanian-doc
+not-installed"texlive-babel-azerbaijani
+not-installed"texlive-babel-azerbaijani-doc
+not-installed"texlive-babel-basque
+not-installed"texlive-babel-basque-doc
+not-installed"texlive-babel-belarusian
+not-installed"texlive-babel-belarusian-doc
+not-installed"texlive-babel-bosnian
+not-installed"texlive-babel-bosnian-doc
+not-installed"texlive-babel-breton
+not-installed"texlive-babel-breton-doc
+not-installed"texlive-babel-bulgarian
+not-installed"texlive-babel-bulgarian-doc
+not-installed"texlive-babel-catalan
+not-installed"texlive-babel-catalan-doc
+not-installed"texlive-babel-croatian
+not-installed"texlive-babel-croatian-doc
+not-installed"texlive-babel-czech
+not-installed"texlive-babel-czech-doc
+not-installed"texlive-babel-danish
+not-installed"texlive-babel-danish-doc
+not-installed"texlive-babel-doc
+not-installed"texlive-babel-dutch
+not-installed"texlive-babel-dutch-doc
+not-installed"texlive-babel-english
+not-installed"texlive-babel-english-doc
+not-installed"texlive-babel-esperanto
+not-installed"texlive-babel-esperanto-doc
+not-installed"texlive-babel-estonian
+not-installed"texlive-babel-estonian-doc
+not-installed"texlive-babel-finnish
+not-installed"texlive-babel-finnish-doc
+not-installed"texlive-babel-french
+not-installed"texlive-babel-french-doc
+not-installed"texlive-babel-friulan
+not-installed"texlive-babel-friulan-doc
+not-installed"texlive-babel-galician
+not-installed"texlive-babel-galician-doc
+not-installed"texlive-babel-georgian
+not-installed"texlive-babel-georgian-doc
+not-installed"texlive-babel-german
+not-installed"texlive-babel-german-doc
+not-installed"texlive-babel-greek
+not-installed"texlive-babel-greek-doc
+not-installed"texlive-babel-hebrew
+not-installed"texlive-babel-hebrew-doc
+not-installed"texlive-babel-hungarian
+not-installed"texlive-babel-hungarian-doc
+not-installed"texlive-babel-icelandic
+not-installed"texlive-babel-icelandic-doc
+not-installed"texlive-babel-indonesian
+not-installed"texlive-babel-indonesian-doc
+not-installed"texlive-babel-interlingua
+not-installed"texlive-babel-interlingua-doc
+not-installed"texlive-babel-irish
+not-installed"texlive-babel-irish-doc
+not-installed"texlive-babel-italian
+not-installed"texlive-babel-italian-doc
+not-installed"texlive-babel-japanese
+not-installed"texlive-babel-japanese-doc
+not-installed"texlive-babel-kurmanji
+not-installed"texlive-babel-kurmanji-doc
+not-installed"texlive-babel-latin
+not-installed"texlive-babel-latin-doc
+not-installed"texlive-babel-latvian
+not-installed"texlive-babel-latvian-doc
+not-installed"texlive-babel-macedonian
+not-installed"texlive-babel-macedonian-doc
+not-installed"texlive-babel-malay
+not-installed"texlive-babel-malay-doc
+not-installed"texlive-babel-norsk
+not-installed"texlive-babel-norsk-doc
+not-installed"texlive-babel-occitan
+not-installed"texlive-babel-occitan-doc
+not-installed"texlive-babel-piedmontese
+not-installed"texlive-babel-piedmontese-doc
+not-installed"texlive-babel-polish
+not-installed"texlive-babel-polish-doc
+not-installed"texlive-babel-portuges
+not-installed"texlive-babel-portuges-doc
+not-installed"texlive-babel-romanian
+not-installed"texlive-babel-romanian-doc
+not-installed"texlive-babel-romansh
+not-installed"texlive-babel-romansh-doc
+not-installed"texlive-babel-russian
+not-installed"texlive-babel-russian-doc
+not-installed"texlive-babel-samin
+not-installed"texlive-babel-samin-doc
+not-installed"texlive-babel-scottish
+not-installed"texlive-babel-scottish-doc
+not-installed"texlive-babel-serbian
+not-installed"texlive-babel-serbian-doc
+not-installed"texlive-babel-serbianc
+not-installed"texlive-babel-serbianc-doc
+not-installed"texlive-babel-slovak
+not-installed"texlive-babel-slovak-doc
+not-installed"texlive-babel-slovenian
+not-installed"texlive-babel-slovenian-doc
+not-installed"texlive-babel-sorbian
+not-installed"texlive-babel-sorbian-doc
+not-installed"texlive-babel-spanglish
+not-installed"texlive-babel-spanglish-doc
+not-installed"texlive-babel-spanish
+not-installed"texlive-babel-spanish-doc
+not-installed"texlive-babel-swedish
+not-installed"texlive-babel-swedish-doc
+not-installed"texlive-babel-thai
+not-installed"texlive-babel-thai-doc
+not-installed"texlive-babel-turkish
+not-installed"texlive-babel-turkish-doc
+not-installed"texlive-babel-ukrainian
+not-installed"texlive-babel-ukrainian-doc
+not-installed"texlive-babel-vietnamese
+not-installed"texlive-babel-vietnamese-doc
+not-installed"texlive-babel-welsh
+not-installed"texlive-babel-welsh-doc
+not-installed"texlive-babelbib
+not-installed"texlive-babelbib-doc
+not-installed"texlive-background
+not-installed"texlive-background-doc
+not-installed"texlive-backnaur
+not-installed"texlive-backnaur-doc
+not-installed"texlive-baekmuk
+not-installed"texlive-baekmuk-doc
+not-installed"texlive-baekmuk-fonts
+not-installed"texlive-bagpipe
+not-installed"texlive-bagpipe-doc
+not-installed"texlive-bangorcsthesis
+not-installed"texlive-bangorcsthesis-doc
+not-installed"texlive-bangorexam
+not-installed"texlive-bangorexam-doc
+not-installed"texlive-bangtex
+not-installed"texlive-bangtex-doc
+not-installed"texlive-bankstatement
+not-installed"texlive-bankstatement-doc
+not-installed"texlive-barcodes
+not-installed"texlive-barcodes-doc
+not-installed"texlive-bardiag
+not-installed"texlive-bardiag-doc
+not-installed"texlive-barr
+not-installed"texlive-barr-doc
+not-installed"texlive-bartel-chess-fonts
+not-installed"texlive-bartel-chess-fonts-doc
+not-installed"texlive-bashful
+not-installed"texlive-bashful-doc
+not-installed"texlive-basicarith
+not-installed"texlive-basicarith-doc
+not-installed"texlive-baskervald
+not-installed"texlive-baskervald-doc
+not-installed"texlive-baskervald-fonts
+not-installed"texlive-baskervaldx
+not-installed"texlive-baskervaldx-doc
+not-installed"texlive-baskervaldx-fonts
+not-installed"texlive-baskervillef
+not-installed"texlive-baskervillef-doc
+not-installed"texlive-baskervillef-fonts
+not-installed"texlive-basque-book
+not-installed"texlive-basque-book-doc
+not-installed"texlive-basque-date
+not-installed"texlive-basque-date-doc
+not-installed"texlive-bath-bst
+not-installed"texlive-bath-bst-doc
+not-installed"texlive-bbcard
+not-installed"texlive-bbcard-doc
+not-installed"texlive-bbding
+not-installed"texlive-bbding-doc
+not-installed"texlive-bbm
+not-installed"texlive-bbm-doc
+not-installed"texlive-bbm-macros
+not-installed"texlive-bbm-macros-doc
+not-installed"texlive-bbold
+not-installed"texlive-bbold-doc
+not-installed"texlive-bbold-type1
+not-installed"texlive-bbold-type1-doc
+not-installed"texlive-bbold-type1-fonts
+not-installed"texlive-bchart
+not-installed"texlive-bchart-doc
+not-installed"texlive-bclogo
+not-installed"texlive-bclogo-doc
+not-installed"texlive-beamer
+not-installed"texlive-beamer-FUBerlin
+not-installed"texlive-beamer-doc
+not-installed"texlive-beamer-rl
+not-installed"texlive-beamer-rl-doc
+not-installed"texlive-beamer-tut-pt
+not-installed"texlive-beamer-verona
+not-installed"texlive-beamer-verona-doc
+not-installed"texlive-beamer2thesis
+not-installed"texlive-beamer2thesis-doc
+not-installed"texlive-beameraudience
+not-installed"texlive-beameraudience-doc
+not-installed"texlive-beamercolorthemeowl
+not-installed"texlive-beamercolorthemeowl-doc
+not-installed"texlive-beamerdarkthemes
+not-installed"texlive-beamerdarkthemes-doc
+not-installed"texlive-beamerposter
+not-installed"texlive-beamerposter-doc
+not-installed"texlive-beamersubframe
+not-installed"texlive-beamersubframe-doc
+not-installed"texlive-beamerswitch
+not-installed"texlive-beamerswitch-doc
+not-installed"texlive-beamertheme-cuerna
+not-installed"texlive-beamertheme-cuerna-doc
+not-installed"texlive-beamertheme-detlevcm
+not-installed"texlive-beamertheme-detlevcm-doc
+not-installed"texlive-beamertheme-epyt
+not-installed"texlive-beamertheme-epyt-doc
+not-installed"texlive-beamertheme-focus
+not-installed"texlive-beamertheme-focus-doc
+not-installed"texlive-beamertheme-light
+not-installed"texlive-beamertheme-light-doc
+not-installed"texlive-beamertheme-metropolis
+not-installed"texlive-beamertheme-metropolis-doc
+not-installed"texlive-beamertheme-npbt
+not-installed"texlive-beamertheme-npbt-doc
+not-installed"texlive-beamertheme-phnompenh
+not-installed"texlive-beamertheme-phnompenh-doc
+not-installed"texlive-beamertheme-saintpetersburg
+not-installed"texlive-beamertheme-saintpetersburg-doc
+not-installed"texlive-beamertheme-upenn-bc
+not-installed"texlive-beamertheme-upenn-bc-doc
+not-installed"texlive-beamerthemejltree
+not-installed"texlive-beamerthemenirma
+not-installed"texlive-beamerthemenirma-doc
+not-installed"texlive-beebe
+not-installed"texlive-begingreek
+not-installed"texlive-begingreek-doc
+not-installed"texlive-begriff
+not-installed"texlive-begriff-doc
+not-installed"texlive-beilstein
+not-installed"texlive-beilstein-doc
+not-installed"texlive-belleek
+not-installed"texlive-belleek-doc
+not-installed"texlive-belleek-fonts
+not-installed"texlive-bengali
+not-installed"texlive-bengali-doc
+not-installed"texlive-bera
+not-installed"texlive-bera-doc
+not-installed"texlive-bera-fonts
+not-installed"texlive-berenisadf
+not-installed"texlive-berenisadf-doc
+not-installed"texlive-berenisadf-fonts
+not-installed"texlive-besjournals
+not-installed"texlive-besjournals-doc
+not-installed"texlive-bestpapers
+not-installed"texlive-bestpapers-doc
+not-installed"texlive-betababel
+not-installed"texlive-betababel-doc
+not-installed"texlive-beton
+not-installed"texlive-beton-doc
+not-installed"texlive-beuron
+not-installed"texlive-beuron-doc
+not-installed"texlive-beuron-fonts
+not-installed"texlive-bewerbung
+not-installed"texlive-bewerbung-doc
+not-installed"texlive-bez123
+not-installed"texlive-bez123-doc
+not-installed"texlive-bezierplot
+not-installed"texlive-bezierplot-doc
+not-installed"texlive-bezos
+not-installed"texlive-bezos-doc
+not-installed"texlive-bgreek
+not-installed"texlive-bgreek-doc
+not-installed"texlive-bgteubner
+not-installed"texlive-bgteubner-doc
+not-installed"texlive-bguq
+not-installed"texlive-bguq-doc
+not-installed"texlive-bguq-fonts
+not-installed"texlive-bhcexam
+not-installed"texlive-bhcexam-doc
+not-installed"texlive-bib-fr
+not-installed"texlive-bib-fr-doc
+not-installed"texlive-bib2gls
+not-installed"texlive-bib2gls-bin
+not-installed"texlive-bib2gls-doc
+not-installed"texlive-bibarts
+not-installed"texlive-bibarts-doc
+not-installed"texlive-biber
+not-installed"texlive-biber-bin
+not-installed"texlive-bibexport
+not-installed"texlive-bibexport-bin
+not-installed"texlive-bibexport-doc
+not-installed"texlive-bibhtml
+not-installed"texlive-bibhtml-doc
+not-installed"texlive-biblatex
+not-installed"texlive-biblatex-abnt
+not-installed"texlive-biblatex-abnt-doc
+not-installed"texlive-biblatex-anonymous
+not-installed"texlive-biblatex-anonymous-doc
+not-installed"texlive-biblatex-apa
+not-installed"texlive-biblatex-apa-doc
+not-installed"texlive-biblatex-archaeology
+not-installed"texlive-biblatex-archaeology-doc
+not-installed"texlive-biblatex-arthistory-bonn
+not-installed"texlive-biblatex-arthistory-bonn-doc
+not-installed"texlive-biblatex-bath
+not-installed"texlive-biblatex-bath-doc
+not-installed"texlive-biblatex-bookinarticle
+not-installed"texlive-biblatex-bookinarticle-doc
+not-installed"texlive-biblatex-bookinother
+not-installed"texlive-biblatex-bookinother-doc
+not-installed"texlive-biblatex-bwl
+not-installed"texlive-biblatex-bwl-doc
+not-installed"texlive-biblatex-caspervector
+not-installed"texlive-biblatex-caspervector-doc
+not-installed"texlive-biblatex-cheatsheet
+not-installed"texlive-biblatex-chem
+not-installed"texlive-biblatex-chem-doc
+not-installed"texlive-biblatex-chicago
+not-installed"texlive-biblatex-chicago-doc
+not-installed"texlive-biblatex-claves
+not-installed"texlive-biblatex-claves-doc
+not-installed"texlive-biblatex-doc
+not-installed"texlive-biblatex-dw
+not-installed"texlive-biblatex-dw-doc
+not-installed"texlive-biblatex-enc
+not-installed"texlive-biblatex-enc-doc
+not-installed"texlive-biblatex-ext
+not-installed"texlive-biblatex-ext-doc
+not-installed"texlive-biblatex-fiwi
+not-installed"texlive-biblatex-fiwi-doc
+not-installed"texlive-biblatex-gb7714-2015
+not-installed"texlive-biblatex-gb7714-2015-doc
+not-installed"texlive-biblatex-gost
+not-installed"texlive-biblatex-gost-doc
+not-installed"texlive-biblatex-historian
+not-installed"texlive-biblatex-historian-doc
+not-installed"texlive-biblatex-ieee
+not-installed"texlive-biblatex-ieee-doc
+not-installed"texlive-biblatex-ijsra
+not-installed"texlive-biblatex-ijsra-doc
+not-installed"texlive-biblatex-iso690
+not-installed"texlive-biblatex-iso690-doc
+not-installed"texlive-biblatex-juradiss
+not-installed"texlive-biblatex-juradiss-doc
+not-installed"texlive-biblatex-lni
+not-installed"texlive-biblatex-lni-doc
+not-installed"texlive-biblatex-luh-ipw
+not-installed"texlive-biblatex-luh-ipw-doc
+not-installed"texlive-biblatex-manuscripts-philology
+not-installed"texlive-biblatex-manuscripts-philology-doc
+not-installed"texlive-biblatex-mla
+not-installed"texlive-biblatex-mla-doc
+not-installed"texlive-biblatex-morenames
+not-installed"texlive-biblatex-morenames-doc
+not-installed"texlive-biblatex-multiple-dm
+not-installed"texlive-biblatex-multiple-dm-doc
+not-installed"texlive-biblatex-musuos
+not-installed"texlive-biblatex-musuos-doc
+not-installed"texlive-biblatex-nature
+not-installed"texlive-biblatex-nature-doc
+not-installed"texlive-biblatex-nejm
+not-installed"texlive-biblatex-nejm-doc
+not-installed"texlive-biblatex-nottsclassic
+not-installed"texlive-biblatex-nottsclassic-doc
+not-installed"texlive-biblatex-opcit-booktitle
+not-installed"texlive-biblatex-opcit-booktitle-doc
+not-installed"texlive-biblatex-oxref
+not-installed"texlive-biblatex-oxref-doc
+not-installed"texlive-biblatex-philosophy
+not-installed"texlive-biblatex-philosophy-doc
+not-installed"texlive-biblatex-phys
+not-installed"texlive-biblatex-phys-doc
+not-installed"texlive-biblatex-publist
+not-installed"texlive-biblatex-publist-doc
+not-installed"texlive-biblatex-realauthor
+not-installed"texlive-biblatex-realauthor-doc
+not-installed"texlive-biblatex-sbl
+not-installed"texlive-biblatex-sbl-doc
+not-installed"texlive-biblatex-science
+not-installed"texlive-biblatex-science-doc
+not-installed"texlive-biblatex-shortfields
+not-installed"texlive-biblatex-shortfields-doc
+not-installed"texlive-biblatex-socialscienceshuberlin
+not-installed"texlive-biblatex-socialscienceshuberlin-doc
+not-installed"texlive-biblatex-source-division
+not-installed"texlive-biblatex-source-division-doc
+not-installed"texlive-biblatex-subseries
+not-installed"texlive-biblatex-subseries-doc
+not-installed"texlive-biblatex-swiss-legal
+not-installed"texlive-biblatex-swiss-legal-doc
+not-installed"texlive-biblatex-trad
+not-installed"texlive-biblatex-trad-doc
+not-installed"texlive-biblatex-true-citepages-omit
+not-installed"texlive-biblatex-true-citepages-omit-doc
+not-installed"texlive-bibleref
+not-installed"texlive-bibleref-doc
+not-installed"texlive-bibleref-french
+not-installed"texlive-bibleref-french-doc
+not-installed"texlive-bibleref-german
+not-installed"texlive-bibleref-german-doc
+not-installed"texlive-bibleref-lds
+not-installed"texlive-bibleref-lds-doc
+not-installed"texlive-bibleref-mouth
+not-installed"texlive-bibleref-mouth-doc
+not-installed"texlive-bibleref-parse
+not-installed"texlive-bibleref-parse-doc
+not-installed"texlive-bibletext
+not-installed"texlive-bibletext-doc
+not-installed"texlive-biblist
+not-installed"texlive-biblist-doc
+not-installed"texlive-bibtex
+not-installed"texlive-bibtex-bin
+not-installed"texlive-bibtex-doc
+not-installed"texlive-bibtex8
+not-installed"texlive-bibtex8-bin
+not-installed"texlive-bibtex8-doc
+not-installed"texlive-bibtexperllibs
+not-installed"texlive-bibtexperllibs-doc
+not-installed"texlive-bibtexu
+not-installed"texlive-bibtexu-bin
+not-installed"texlive-bibtopic
+not-installed"texlive-bibtopic-doc
+not-installed"texlive-bibtopicprefix
+not-installed"texlive-bibtopicprefix-doc
+not-installed"texlive-bibunits
+not-installed"texlive-bibunits-doc
+not-installed"texlive-bidi
+not-installed"texlive-bidi-atbegshi
+not-installed"texlive-bidi-atbegshi-doc
+not-installed"texlive-bidi-doc
+not-installed"texlive-bidicontour
+not-installed"texlive-bidicontour-doc
+not-installed"texlive-bidihl
+not-installed"texlive-bidihl-doc
+not-installed"texlive-bidipagegrid
+not-installed"texlive-bidipagegrid-doc
+not-installed"texlive-bidipresentation
+not-installed"texlive-bidipresentation-doc
+not-installed"texlive-bidishadowtext
+not-installed"texlive-bidishadowtext-doc
+not-installed"texlive-bigfoot
+not-installed"texlive-bigfoot-doc
+not-installed"texlive-bigints
+not-installed"texlive-bigints-doc
+not-installed"texlive-bin-devel
+not-installed"texlive-binarytree
+not-installed"texlive-binarytree-doc
+not-installed"texlive-binomexp
+not-installed"texlive-binomexp-doc
+not-installed"texlive-biochemistry-colors
+not-installed"texlive-biochemistry-colors-doc
+not-installed"texlive-biocon
+not-installed"texlive-biocon-doc
+not-installed"texlive-biolett-bst
+not-installed"texlive-biolett-bst-doc
+not-installed"texlive-bitelist
+not-installed"texlive-bitelist-doc
+not-installed"texlive-bitpattern
+not-installed"texlive-bitpattern-doc
+not-installed"texlive-bizcard
+not-installed"texlive-bizcard-doc
+not-installed"texlive-blacklettert1
+not-installed"texlive-blacklettert1-doc
+not-installed"texlive-blindtext
+not-installed"texlive-blindtext-doc
+not-installed"texlive-blkarray
+not-installed"texlive-blkarray-doc
+not-installed"texlive-blochsphere
+not-installed"texlive-blochsphere-doc
+not-installed"texlive-block
+not-installed"texlive-block-doc
+not-installed"texlive-blockdraw_mp
+not-installed"texlive-blockdraw_mp-doc
+not-installed"texlive-bloques
+not-installed"texlive-bloques-doc
+not-installed"texlive-blowup
+not-installed"texlive-blowup-doc
+not-installed"texlive-blox
+not-installed"texlive-blox-doc
+not-installed"texlive-bnumexpr
+not-installed"texlive-bnumexpr-doc
+not-installed"texlive-bodegraph
+not-installed"texlive-bodegraph-doc
+not-installed"texlive-bohr
+not-installed"texlive-bohr-doc
+not-installed"texlive-boisik
+not-installed"texlive-boisik-doc
+not-installed"texlive-boites
+not-installed"texlive-boites-doc
+not-installed"texlive-bold-extra
+not-installed"texlive-bold-extra-doc
+not-installed"texlive-boldtensors
+not-installed"texlive-boldtensors-doc
+not-installed"texlive-bondgraph
+not-installed"texlive-bondgraph-doc
+not-installed"texlive-bondgraphs
+not-installed"texlive-bondgraphs-doc
+not-installed"texlive-bookcover
+not-installed"texlive-bookcover-doc
+not-installed"texlive-bookdb
+not-installed"texlive-bookdb-doc
+not-installed"texlive-bookest
+not-installed"texlive-bookest-doc
+not-installed"texlive-bookhands
+not-installed"texlive-bookhands-doc
+not-installed"texlive-bookhands-fonts
+not-installed"texlive-booklet
+not-installed"texlive-booklet-doc
+not-installed"texlive-bookman
+not-installed"texlive-bookman-fonts
+not-installed"texlive-booktabs
+not-installed"texlive-booktabs-de
+not-installed"texlive-booktabs-doc
+not-installed"texlive-booktabs-fr
+not-installed"texlive-boolexpr
+not-installed"texlive-boolexpr-doc
+not-installed"texlive-boondox
+not-installed"texlive-boondox-doc
+not-installed"texlive-boondox-fonts
+not-installed"texlive-bophook
+not-installed"texlive-bophook-doc
+not-installed"texlive-borceux
+not-installed"texlive-borceux-doc
+not-installed"texlive-bosisio
+not-installed"texlive-bosisio-doc
+not-installed"texlive-boxedminipage
+not-installed"texlive-boxedminipage-doc
+not-installed"texlive-boxedminipage2e
+not-installed"texlive-boxedminipage2e-doc
+not-installed"texlive-boxhandler
+not-installed"texlive-boxhandler-doc
+not-installed"texlive-bpchem
+not-installed"texlive-bpchem-doc
+not-installed"texlive-bpolynomial
+not-installed"texlive-bpolynomial-doc
+not-installed"texlive-br-lex
+not-installed"texlive-br-lex-doc
+not-installed"texlive-bracketkey
+not-installed"texlive-bracketkey-doc
+not-installed"texlive-braids
+not-installed"texlive-braids-doc
+not-installed"texlive-braille
+not-installed"texlive-braille-doc
+not-installed"texlive-braket
+not-installed"texlive-braket-doc
+not-installed"texlive-brandeis-dissertation
+not-installed"texlive-brandeis-dissertation-doc
+not-installed"texlive-brandeis-problemset
+not-installed"texlive-brandeis-problemset-doc
+not-installed"texlive-breakcites
+not-installed"texlive-breakcites-doc
+not-installed"texlive-breakurl
+not-installed"texlive-breakurl-doc
+not-installed"texlive-bredzenie
+not-installed"texlive-bredzenie-doc
+not-installed"texlive-breqn
+not-installed"texlive-breqn-doc
+not-installed"texlive-bropd
+not-installed"texlive-bropd-doc
+not-installed"texlive-brushscr
+not-installed"texlive-brushscr-doc
+not-installed"texlive-brushscr-fonts
+not-installed"texlive-bullcntr
+not-installed"texlive-bullcntr-doc
+not-installed"texlive-bundledoc
+not-installed"texlive-bundledoc-bin
+not-installed"texlive-bundledoc-doc
+not-installed"texlive-burmese
+not-installed"texlive-burmese-doc
+not-installed"texlive-burmese-fonts
+not-installed"texlive-businesscard-qrcode
+not-installed"texlive-businesscard-qrcode-doc
+not-installed"texlive-bussproofs
+not-installed"texlive-bussproofs-doc
+not-installed"texlive-bussproofs-extra
+not-installed"texlive-bussproofs-extra-doc
+not-installed"texlive-bxbase
+not-installed"texlive-bxbase-doc
+not-installed"texlive-bxcalc
+not-installed"texlive-bxcalc-doc
+not-installed"texlive-bxcjkjatype
+not-installed"texlive-bxcjkjatype-doc
+not-installed"texlive-bxdpx-beamer
+not-installed"texlive-bxdpx-beamer-doc
+not-installed"texlive-bxdvidriver
+not-installed"texlive-bxdvidriver-doc
+not-installed"texlive-bxeepic
+not-installed"texlive-bxeepic-doc
+not-installed"texlive-bxenclose
+not-installed"texlive-bxenclose-doc
+not-installed"texlive-bxjaholiday
+not-installed"texlive-bxjaholiday-doc
+not-installed"texlive-bxjalipsum
+not-installed"texlive-bxjalipsum-doc
+not-installed"texlive-bxjaprnind
+not-installed"texlive-bxjaprnind-doc
+not-installed"texlive-bxjscls
+not-installed"texlive-bxjscls-doc
+not-installed"texlive-bxnewfont
+not-installed"texlive-bxnewfont-doc
+not-installed"texlive-bxorigcapt
+not-installed"texlive-bxorigcapt-doc
+not-installed"texlive-bxpapersize
+not-installed"texlive-bxpapersize-doc
+not-installed"texlive-bxpdfver
+not-installed"texlive-bxpdfver-doc
+not-installed"texlive-bxtexlogo
+not-installed"texlive-bxtexlogo-doc
+not-installed"texlive-bxwareki
+not-installed"texlive-bxwareki-doc
+not-installed"texlive-bytefield
+not-installed"texlive-bytefield-doc
+not-installed"texlive-c-pascal
+not-installed"texlive-c-pascal-doc
+not-installed"texlive-c90
+not-installed"texlive-c90-doc
+not-installed"texlive-cabin
+not-installed"texlive-cabin-doc
+not-installed"texlive-cabin-fonts
+not-installed"texlive-cachepic
+not-installed"texlive-cachepic-bin
+not-installed"texlive-cachepic-doc
+not-installed"texlive-caladea
+not-installed"texlive-caladea-doc
+not-installed"texlive-caladea-fonts
+not-installed"texlive-calcage
+not-installed"texlive-calcage-doc
+not-installed"texlive-calctab
+not-installed"texlive-calctab-doc
+not-installed"texlive-calculation
+not-installed"texlive-calculation-doc
+not-installed"texlive-calculator
+not-installed"texlive-calculator-doc
+not-installed"texlive-calligra
+not-installed"texlive-calligra-doc
+not-installed"texlive-calligra-type1
+not-installed"texlive-calligra-type1-doc
+not-installed"texlive-calligra-type1-fonts
+not-installed"texlive-callouts
+not-installed"texlive-callouts-doc
+not-installed"texlive-calrsfs
+not-installed"texlive-calrsfs-doc
+not-installed"texlive-cals
+not-installed"texlive-cals-doc
+not-installed"texlive-calxxxx-yyyy
+not-installed"texlive-calxxxx-yyyy-doc
+not-installed"texlive-cancel
+not-installed"texlive-cancel-doc
+not-installed"texlive-canoniclayout
+not-installed"texlive-canoniclayout-doc
+not-installed"texlive-cantarell
+not-installed"texlive-cantarell-doc
+not-installed"texlive-cantarell-fonts
+not-installed"texlive-capt-of
+not-installed"texlive-capt-of-doc
+not-installed"texlive-captcont
+not-installed"texlive-captcont-doc
+not-installed"texlive-captdef
+not-installed"texlive-captdef-doc
+not-installed"texlive-caption
+not-installed"texlive-caption-doc
+not-installed"texlive-carbohydrates
+not-installed"texlive-carbohydrates-doc
+not-installed"texlive-carlisle
+not-installed"texlive-carlisle-doc
+not-installed"texlive-carlito
+not-installed"texlive-carlito-doc
+not-installed"texlive-carlito-fonts
+not-installed"texlive-carolmin-ps
+not-installed"texlive-carolmin-ps-doc
+not-installed"texlive-carolmin-ps-fonts
+not-installed"texlive-cascade
+not-installed"texlive-cascade-doc
+not-installed"texlive-cascadilla
+not-installed"texlive-cascadilla-doc
+not-installed"texlive-cases
+not-installed"texlive-cases-doc
+not-installed"texlive-casyl
+not-installed"texlive-casyl-doc
+not-installed"texlive-catchfilebetweentags
+not-installed"texlive-catchfilebetweentags-doc
+not-installed"texlive-catcodes
+not-installed"texlive-catcodes-doc
+not-installed"texlive-catechis
+not-installed"texlive-catechis-doc
+not-installed"texlive-catoptions
+not-installed"texlive-catoptions-doc
+not-installed"texlive-cbcoptic
+not-installed"texlive-cbcoptic-doc
+not-installed"texlive-cbcoptic-fonts
+not-installed"texlive-cbfonts
+not-installed"texlive-cbfonts-doc
+not-installed"texlive-cbfonts-fd
+not-installed"texlive-cbfonts-fd-doc
+not-installed"texlive-cbfonts-fonts
+not-installed"texlive-cc-pl
+not-installed"texlive-cc-pl-doc
+not-installed"texlive-cc-pl-fonts
+not-installed"texlive-ccaption
+not-installed"texlive-ccaption-doc
+not-installed"texlive-ccfonts
+not-installed"texlive-ccfonts-doc
+not-installed"texlive-ccicons
+not-installed"texlive-ccicons-doc
+not-installed"texlive-ccicons-fonts
+not-installed"texlive-cclicenses
+not-installed"texlive-cclicenses-doc
+not-installed"texlive-cd
+not-installed"texlive-cd-cover
+not-installed"texlive-cd-cover-doc
+not-installed"texlive-cd-doc
+not-installed"texlive-cdpbundl
+not-installed"texlive-cdpbundl-doc
+not-installed"texlive-cell
+not-installed"texlive-cell-doc
+not-installed"texlive-cellprops
+not-installed"texlive-cellprops-doc
+not-installed"texlive-cellspace
+not-installed"texlive-cellspace-doc
+not-installed"texlive-celtic
+not-installed"texlive-celtic-doc
+not-installed"texlive-censor
+not-installed"texlive-censor-doc
+not-installed"texlive-cesenaexam
+not-installed"texlive-cesenaexam-doc
+not-installed"texlive-cfr-initials
+not-installed"texlive-cfr-initials-doc
+not-installed"texlive-cfr-lm
+not-installed"texlive-cfr-lm-doc
+not-installed"texlive-changebar
+not-installed"texlive-changebar-doc
+not-installed"texlive-changelayout
+not-installed"texlive-changelayout-doc
+not-installed"texlive-changelog
+not-installed"texlive-changelog-doc
+not-installed"texlive-changepage
+not-installed"texlive-changepage-doc
+not-installed"texlive-changes
+not-installed"texlive-changes-doc
+not-installed"texlive-chappg
+not-installed"texlive-chappg-doc
+not-installed"texlive-chapterfolder
+not-installed"texlive-chapterfolder-doc
+not-installed"texlive-charter
+not-installed"texlive-charter-doc
+not-installed"texlive-charter-fonts
+not-installed"texlive-chbibref
+not-installed"texlive-chbibref-doc
+not-installed"texlive-cheatsheet
+not-installed"texlive-cheatsheet-doc
+not-installed"texlive-checkcites
+not-installed"texlive-checkcites-bin
+not-installed"texlive-checkcites-doc
+not-installed"texlive-checklistings
+not-installed"texlive-checklistings-bin
+not-installed"texlive-checklistings-doc
+not-installed"texlive-chem-journal
+not-installed"texlive-chemarrow
+not-installed"texlive-chemarrow-doc
+not-installed"texlive-chemarrow-fonts
+not-installed"texlive-chembst
+not-installed"texlive-chembst-doc
+not-installed"texlive-chemcompounds
+not-installed"texlive-chemcompounds-doc
+not-installed"texlive-chemcono
+not-installed"texlive-chemcono-doc
+not-installed"texlive-chemexec
+not-installed"texlive-chemexec-doc
+not-installed"texlive-chemfig
+not-installed"texlive-chemfig-doc
+not-installed"texlive-chemformula
+not-installed"texlive-chemformula-doc
+not-installed"texlive-chemgreek
+not-installed"texlive-chemgreek-doc
+not-installed"texlive-chemmacros
+not-installed"texlive-chemmacros-doc
+not-installed"texlive-chemnum
+not-installed"texlive-chemnum-doc
+not-installed"texlive-chemschemex
+not-installed"texlive-chemschemex-doc
+not-installed"texlive-chemsec
+not-installed"texlive-chemsec-doc
+not-installed"texlive-chemstyle
+not-installed"texlive-chemstyle-doc
+not-installed"texlive-cherokee
+not-installed"texlive-cherokee-doc
+not-installed"texlive-chess
+not-installed"texlive-chess-doc
+not-installed"texlive-chess-problem-diagrams
+not-installed"texlive-chess-problem-diagrams-doc
+not-installed"texlive-chessboard
+not-installed"texlive-chessboard-doc
+not-installed"texlive-chessfss
+not-installed"texlive-chessfss-doc
+not-installed"texlive-chet
+not-installed"texlive-chet-doc
+not-installed"texlive-chextras
+not-installed"texlive-chextras-doc
+not-installed"texlive-chicago
+not-installed"texlive-chicago-annote
+not-installed"texlive-chicago-annote-doc
+not-installed"texlive-chickenize
+not-installed"texlive-chickenize-doc
+not-installed"texlive-childdoc
+not-installed"texlive-childdoc-doc
+not-installed"texlive-chivo
+not-installed"texlive-chivo-doc
+not-installed"texlive-chivo-fonts
+not-installed"texlive-chkfloat
+not-installed"texlive-chkfloat-doc
+not-installed"texlive-chktex
+not-installed"texlive-chktex-bin
+not-installed"texlive-chktex-doc
+not-installed"texlive-chletter
+not-installed"texlive-chletter-doc
+not-installed"texlive-chngcntr
+not-installed"texlive-chngcntr-doc
+not-installed"texlive-chordbars
+not-installed"texlive-chordbars-doc
+not-installed"texlive-chronology
+not-installed"texlive-chronology-doc
+not-installed"texlive-chronosys
+not-installed"texlive-chronosys-doc
+not-installed"texlive-chs-physics-report
+not-installed"texlive-chs-physics-report-doc
+not-installed"texlive-chscite
+not-installed"texlive-chscite-doc
+not-installed"texlive-churchslavonic
+not-installed"texlive-churchslavonic-doc
+not-installed"texlive-cinzel
+not-installed"texlive-cinzel-doc
+not-installed"texlive-cinzel-fonts
+not-installed"texlive-circ
+not-installed"texlive-circ-doc
+not-installed"texlive-circuitikz
+not-installed"texlive-circuitikz-doc
+not-installed"texlive-cite
+not-installed"texlive-cite-doc
+not-installed"texlive-citeall
+not-installed"texlive-citeall-doc
+not-installed"texlive-citeref
+not-installed"texlive-citeref-doc
+not-installed"texlive-cje
+not-installed"texlive-cje-doc
+not-installed"texlive-cjhebrew
+not-installed"texlive-cjhebrew-doc
+not-installed"texlive-cjhebrew-fonts
+not-installed"texlive-cjk
+not-installed"texlive-cjk-doc
+not-installed"texlive-cjk-gs-integrate
+not-installed"texlive-cjk-gs-integrate-bin
+not-installed"texlive-cjk-gs-integrate-doc
+not-installed"texlive-cjk-ko
+not-installed"texlive-cjk-ko-doc
+not-installed"texlive-cjk-latex-extras
+not-installed"texlive-cjkpunct
+not-installed"texlive-cjkpunct-doc
+not-installed"texlive-cjkutils
+not-installed"texlive-cjkutils-bin
+not-installed"texlive-cjkutils-doc
+not-installed"texlive-classics
+not-installed"texlive-classics-doc
+not-installed"texlive-classicthesis
+not-installed"texlive-classicthesis-doc
+not-installed"texlive-classpack
+not-installed"texlive-classpack-doc
+not-installed"texlive-cleanthesis
+not-installed"texlive-cleanthesis-doc
+not-installed"texlive-clearsans
+not-installed"texlive-clearsans-doc
+not-installed"texlive-clearsans-fonts
+not-installed"texlive-clefval
+not-installed"texlive-clefval-doc
+not-installed"texlive-cleveref
+not-installed"texlive-cleveref-doc
+not-installed"texlive-clipboard
+not-installed"texlive-clipboard-doc
+not-installed"texlive-clock
+not-installed"texlive-clock-doc
+not-installed"texlive-cloze
+not-installed"texlive-cloze-doc
+not-installed"texlive-clrdblpg
+not-installed"texlive-clrdblpg-doc
+not-installed"texlive-clrscode
+not-installed"texlive-clrscode-doc
+not-installed"texlive-clrscode3e
+not-installed"texlive-clrscode3e-doc
+not-installed"texlive-clrstrip
+not-installed"texlive-clrstrip-doc
+not-installed"texlive-cluttex
+not-installed"texlive-cluttex-bin
+not-installed"texlive-cluttex-doc
+not-installed"texlive-cm
+not-installed"texlive-cm-doc
+not-installed"texlive-cm-lgc
+not-installed"texlive-cm-lgc-doc
+not-installed"texlive-cm-lgc-fonts
+not-installed"texlive-cm-mf-extra-bold
+not-installed"texlive-cm-super
+not-installed"texlive-cm-super-doc
+not-installed"texlive-cm-super-fonts
+not-installed"texlive-cm-unicode
+not-installed"texlive-cm-unicode-doc
+not-installed"texlive-cm-unicode-fonts
+not-installed"texlive-cmap
+not-installed"texlive-cmap-doc
+not-installed"texlive-cmarrows
+not-installed"texlive-cmarrows-doc
+not-installed"texlive-cmbright
+not-installed"texlive-cmbright-doc
+not-installed"texlive-cmcyr
+not-installed"texlive-cmcyr-doc
+not-installed"texlive-cmcyr-fonts
+not-installed"texlive-cmdstring
+not-installed"texlive-cmdstring-doc
+not-installed"texlive-cmdtrack
+not-installed"texlive-cmdtrack-doc
+not-installed"texlive-cmexb
+not-installed"texlive-cmexb-doc
+not-installed"texlive-cmexb-fonts
+not-installed"texlive-cmextra
+not-installed"texlive-cmll
+not-installed"texlive-cmll-doc
+not-installed"texlive-cmll-fonts
+not-installed"texlive-cmpica
+not-installed"texlive-cmpica-doc
+not-installed"texlive-cmpj
+not-installed"texlive-cmpj-doc
+not-installed"texlive-cmsd
+not-installed"texlive-cmsd-doc
+not-installed"texlive-cmsrb
+not-installed"texlive-cmsrb-doc
+not-installed"texlive-cmsrb-fonts
+not-installed"texlive-cmtiup
+not-installed"texlive-cmtiup-doc
+not-installed"texlive-cnbwp
+not-installed"texlive-cnbwp-doc
+not-installed"texlive-cnltx
+not-installed"texlive-cnltx-doc
+not-installed"texlive-cns
+not-installed"texlive-cns-doc
+not-installed"texlive-cntformats
+not-installed"texlive-cntformats-doc
+not-installed"texlive-cntperchap
+not-installed"texlive-cntperchap-doc
+not-installed"texlive-cochineal
+not-installed"texlive-cochineal-doc
+not-installed"texlive-cochineal-fonts
+not-installed"texlive-codedoc
+not-installed"texlive-codedoc-doc
+not-installed"texlive-codepage
+not-installed"texlive-codepage-doc
+not-installed"texlive-codesection
+not-installed"texlive-codesection-doc
+not-installed"texlive-codicefiscaleitaliano
+not-installed"texlive-codicefiscaleitaliano-doc
+not-installed"texlive-coelacanth
+not-installed"texlive-coelacanth-doc
+not-installed"texlive-coelacanth-fonts
+not-installed"texlive-collcell
+not-installed"texlive-collcell-doc
+not-installed"texlive-collectbox
+not-installed"texlive-collectbox-doc
+not-installed"texlive-collection-basic
+not-installed"texlive-collection-bibtexextra
+not-installed"texlive-collection-binextra
+not-installed"texlive-collection-context
+not-installed"texlive-collection-fontsextra
+not-installed"texlive-collection-fontsrecommended
+not-installed"texlive-collection-fontutils
+not-installed"texlive-collection-formatsextra
+not-installed"texlive-collection-games
+not-installed"texlive-collection-humanities
+not-installed"texlive-collection-langarabic
+not-installed"texlive-collection-langchinese
+not-installed"texlive-collection-langcjk
+not-installed"texlive-collection-langcyrillic
+not-installed"texlive-collection-langczechslovak
+not-installed"texlive-collection-langenglish
+not-installed"texlive-collection-langeuropean
+not-installed"texlive-collection-langfrench
+not-installed"texlive-collection-langgerman
+not-installed"texlive-collection-langgreek
+not-installed"texlive-collection-langitalian
+not-installed"texlive-collection-langjapanese
+not-installed"texlive-collection-langkorean
+not-installed"texlive-collection-langother
+not-installed"texlive-collection-langpolish
+not-installed"texlive-collection-langportuguese
+not-installed"texlive-collection-langspanish
+not-installed"texlive-collection-latex
+not-installed"texlive-collection-latexextra
+not-installed"texlive-collection-latexrecommended
+not-installed"texlive-collection-luatex
+not-installed"texlive-collection-mathscience
+not-installed"texlive-collection-metapost
+not-installed"texlive-collection-music
+not-installed"texlive-collection-pictures
+not-installed"texlive-collection-plaingeneric
+not-installed"texlive-collection-pstricks
+not-installed"texlive-collection-publishers
+not-installed"texlive-collection-xetex
+not-installed"texlive-collref
+not-installed"texlive-collref-doc
+not-installed"texlive-colophon
+not-installed"texlive-colophon-doc
+not-installed"texlive-colordoc
+not-installed"texlive-colordoc-doc
+not-installed"texlive-colorinfo
+not-installed"texlive-colorinfo-doc
+not-installed"texlive-coloring
+not-installed"texlive-coloring-doc
+not-installed"texlive-colorprofiles
+not-installed"texlive-colorprofiles-doc
+not-installed"texlive-colorsep
+not-installed"texlive-colorspace
+not-installed"texlive-colorspace-doc
+not-installed"texlive-colortab
+not-installed"texlive-colortab-doc
+not-installed"texlive-colortbl
+not-installed"texlive-colortbl-doc
+not-installed"texlive-colorwav
+not-installed"texlive-colorwav-doc
+not-installed"texlive-colorweb
+not-installed"texlive-colorweb-doc
+not-installed"texlive-colourchange
+not-installed"texlive-colourchange-doc
+not-installed"texlive-combelow
+not-installed"texlive-combelow-doc
+not-installed"texlive-combine
+not-installed"texlive-combine-doc
+not-installed"texlive-combinedgraphics
+not-installed"texlive-combinedgraphics-doc
+not-installed"texlive-combofont
+not-installed"texlive-combofont-doc
+not-installed"texlive-comfortaa
+not-installed"texlive-comfortaa-doc
+not-installed"texlive-comfortaa-fonts
+not-installed"texlive-comicneue
+not-installed"texlive-comicneue-doc
+not-installed"texlive-comicneue-fonts
+not-installed"texlive-comma
+not-installed"texlive-comma-doc
+not-installed"texlive-commado
+not-installed"texlive-commado-doc
+not-installed"texlive-commath
+not-installed"texlive-commath-doc
+not-installed"texlive-commedit
+not-installed"texlive-commedit-doc
+not-installed"texlive-comment
+not-installed"texlive-comment-doc
+not-installed"texlive-compactbib
+not-installed"texlive-competences
+not-installed"texlive-competences-doc
+not-installed"texlive-complexity
+not-installed"texlive-complexity-doc
+not-installed"texlive-components-of-TeX
+not-installed"texlive-comprehensive
+not-installed"texlive-computational-complexity
+not-installed"texlive-computational-complexity-doc
+not-installed"texlive-concepts
+not-installed"texlive-concepts-doc
+not-installed"texlive-concmath
+not-installed"texlive-concmath-doc
+not-installed"texlive-concmath-fonts
+not-installed"texlive-concmath-fonts-doc
+not-installed"texlive-concprog
+not-installed"texlive-concprog-doc
+not-installed"texlive-concrete
+not-installed"texlive-concrete-doc
+not-installed"texlive-confproc
+not-installed"texlive-confproc-doc
+not-installed"texlive-constants
+not-installed"texlive-constants-doc
+not-installed"texlive-conteq
+not-installed"texlive-conteq-doc
+not-installed"texlive-context
+not-installed"texlive-context-account
+not-installed"texlive-context-account-doc
+not-installed"texlive-context-algorithmic
+not-installed"texlive-context-algorithmic-doc
+not-installed"texlive-context-animation
+not-installed"texlive-context-animation-doc
+not-installed"texlive-context-annotation
+not-installed"texlive-context-annotation-doc
+not-installed"texlive-context-bin
+not-installed"texlive-context-bnf
+not-installed"texlive-context-bnf-doc
+not-installed"texlive-context-chromato
+not-installed"texlive-context-chromato-doc
+not-installed"texlive-context-cmscbf
+not-installed"texlive-context-cmscbf-doc
+not-installed"texlive-context-cmttbf
+not-installed"texlive-context-cmttbf-doc
+not-installed"texlive-context-construction-plan
+not-installed"texlive-context-construction-plan-doc
+not-installed"texlive-context-cyrillicnumbers
+not-installed"texlive-context-cyrillicnumbers-doc
+not-installed"texlive-context-degrade
+not-installed"texlive-context-degrade-doc
+not-installed"texlive-context-doc
+not-installed"texlive-context-fancybreak
+not-installed"texlive-context-fancybreak-doc
+not-installed"texlive-context-filter
+not-installed"texlive-context-filter-doc
+not-installed"texlive-context-fonts
+not-installed"texlive-context-french
+not-installed"texlive-context-french-doc
+not-installed"texlive-context-fullpage
+not-installed"texlive-context-fullpage-doc
+not-installed"texlive-context-gantt
+not-installed"texlive-context-gantt-doc
+not-installed"texlive-context-gnuplot
+not-installed"texlive-context-gnuplot-doc
+not-installed"texlive-context-handlecsv
+not-installed"texlive-context-handlecsv-doc
+not-installed"texlive-context-inifile
+not-installed"texlive-context-inifile-doc
+not-installed"texlive-context-layout
+not-installed"texlive-context-layout-doc
+not-installed"texlive-context-letter
+not-installed"texlive-context-letter-doc
+not-installed"texlive-context-lettrine
+not-installed"texlive-context-lettrine-doc
+not-installed"texlive-context-mathsets
+not-installed"texlive-context-mathsets-doc
+not-installed"texlive-context-notes-zh-cn
+not-installed"texlive-context-rst
+not-installed"texlive-context-rst-doc
+not-installed"texlive-context-ruby
+not-installed"texlive-context-ruby-doc
+not-installed"texlive-context-simplefonts
+not-installed"texlive-context-simplefonts-doc
+not-installed"texlive-context-simpleslides
+not-installed"texlive-context-simpleslides-doc
+not-installed"texlive-context-title
+not-installed"texlive-context-title-doc
+not-installed"texlive-context-transliterator
+not-installed"texlive-context-transliterator-doc
+not-installed"texlive-context-typearea
+not-installed"texlive-context-typearea-doc
+not-installed"texlive-context-typescripts
+not-installed"texlive-context-typescripts-doc
+not-installed"texlive-context-vim
+not-installed"texlive-context-vim-doc
+not-installed"texlive-context-visualcounter
+not-installed"texlive-context-visualcounter-doc
+not-installed"texlive-continue
+not-installed"texlive-continue-doc
+not-installed"texlive-contour
+not-installed"texlive-contour-doc
+not-installed"texlive-contracard
+not-installed"texlive-contracard-doc
+not-installed"texlive-conv-xkv
+not-installed"texlive-conv-xkv-doc
+not-installed"texlive-convbkmk
+not-installed"texlive-convbkmk-bin
+not-installed"texlive-convbkmk-doc
+not-installed"texlive-cooking
+not-installed"texlive-cooking-doc
+not-installed"texlive-cooking-units
+not-installed"texlive-cooking-units-doc
+not-installed"texlive-cookingsymbols
+not-installed"texlive-cookingsymbols-doc
+not-installed"texlive-cool
+not-installed"texlive-cool-doc
+not-installed"texlive-coollist
+not-installed"texlive-coollist-doc
+not-installed"texlive-coolstr
+not-installed"texlive-coolstr-doc
+not-installed"texlive-coolthms
+not-installed"texlive-coolthms-doc
+not-installed"texlive-cooltooltips
+not-installed"texlive-cooltooltips-doc
+not-installed"texlive-coordsys
+not-installed"texlive-coordsys-doc
+not-installed"texlive-copyedit
+not-installed"texlive-copyedit-doc
+not-installed"texlive-copyrightbox
+not-installed"texlive-copyrightbox-doc
+not-installed"texlive-cormorantgaramond
+not-installed"texlive-cormorantgaramond-doc
+not-installed"texlive-cormorantgaramond-fonts
+not-installed"texlive-correctmathalign
+not-installed"texlive-correctmathalign-doc
+not-installed"texlive-coseoul
+not-installed"texlive-coseoul-doc
+not-installed"texlive-countriesofeurope
+not-installed"texlive-countriesofeurope-doc
+not-installed"texlive-countriesofeurope-fonts
+not-installed"texlive-counttexruns
+not-installed"texlive-counttexruns-doc
+not-installed"texlive-courier
+not-installed"texlive-courier-fonts
+not-installed"texlive-courier-scaled
+not-installed"texlive-courier-scaled-doc
+not-installed"texlive-courseoutline
+not-installed"texlive-courseoutline-doc
+not-installed"texlive-coursepaper
+not-installed"texlive-coursepaper-doc
+not-installed"texlive-coverpage
+not-installed"texlive-coverpage-doc
+not-installed"texlive-covington
+not-installed"texlive-covington-doc
+not-installed"texlive-cprotect
+not-installed"texlive-cprotect-doc
+not-installed"texlive-cqubeamer
+not-installed"texlive-cqubeamer-doc
+not-installed"texlive-cquthesis
+not-installed"texlive-cquthesis-doc
+not-installed"texlive-crbox
+not-installed"texlive-crbox-doc
+not-installed"texlive-crimson
+not-installed"texlive-crimson-doc
+not-installed"texlive-crimson-fonts
+not-installed"texlive-crimsonpro
+not-installed"texlive-crimsonpro-doc
+not-installed"texlive-crimsonpro-fonts
+not-installed"texlive-crop
+not-installed"texlive-crop-doc
+not-installed"texlive-crossreference
+not-installed"texlive-crossreference-doc
+not-installed"texlive-crossreftools
+not-installed"texlive-crossreftools-doc
+not-installed"texlive-crossrefware
+not-installed"texlive-crossrefware-bin
+not-installed"texlive-crossrefware-doc
+not-installed"texlive-crossword
+not-installed"texlive-crossword-doc
+not-installed"texlive-crosswrd
+not-installed"texlive-crosswrd-doc
+not-installed"texlive-cryptocode
+not-installed"texlive-cryptocode-doc
+not-installed"texlive-cryst
+not-installed"texlive-cryst-doc
+not-installed"texlive-cryst-fonts
+not-installed"texlive-cs
+not-installed"texlive-cs-fonts
+not-installed"texlive-csbulletin
+not-installed"texlive-csbulletin-doc
+not-installed"texlive-cslatex
+not-installed"texlive-cslatex-bin
+not-installed"texlive-cslatex-doc
+not-installed"texlive-csplain
+not-installed"texlive-csplain-bin
+not-installed"texlive-csquotes
+not-installed"texlive-csquotes-de
+not-installed"texlive-csquotes-doc
+not-installed"texlive-css-colors
+not-installed"texlive-css-colors-doc
+not-installed"texlive-cstex
+not-installed"texlive-cstypo
+not-installed"texlive-cstypo-doc
+not-installed"texlive-csvsimple
+not-installed"texlive-csvsimple-doc
+not-installed"texlive-ctable
+not-installed"texlive-ctable-doc
+not-installed"texlive-ctablestack
+not-installed"texlive-ctablestack-doc
+not-installed"texlive-ctan-o-mat
+not-installed"texlive-ctan-o-mat-bin
+not-installed"texlive-ctan-o-mat-doc
+not-installed"texlive-ctan_chk
+not-installed"texlive-ctanbib
+not-installed"texlive-ctanbib-bin
+not-installed"texlive-ctanbib-doc
+not-installed"texlive-ctanify
+not-installed"texlive-ctanify-bin
+not-installed"texlive-ctanify-doc
+not-installed"texlive-ctanupload
+not-installed"texlive-ctanupload-bin
+not-installed"texlive-ctanupload-doc
+not-installed"texlive-ctex
+not-installed"texlive-ctex-doc
+not-installed"texlive-ctex-faq
+not-installed"texlive-ctib
+not-installed"texlive-ctib-doc
+not-installed"texlive-ctie
+not-installed"texlive-ctie-bin
+not-installed"texlive-cuisine
+not-installed"texlive-cuisine-doc
+not-installed"texlive-cuprum
+not-installed"texlive-cuprum-doc
+not-installed"texlive-cuprum-fonts
+not-installed"texlive-currency
+not-installed"texlive-currency-doc
+not-installed"texlive-currfile
+not-installed"texlive-currfile-doc
+not-installed"texlive-currvita
+not-installed"texlive-currvita-doc
+not-installed"texlive-cursolatex
+not-installed"texlive-curve
+not-installed"texlive-curve-doc
+not-installed"texlive-curve2e
+not-installed"texlive-curve2e-doc
+not-installed"texlive-curves
+not-installed"texlive-curves-doc
+not-installed"texlive-custom-bib
+not-installed"texlive-custom-bib-doc
+not-installed"texlive-cutwin
+not-installed"texlive-cutwin-doc
+not-installed"texlive-cv
+not-installed"texlive-cv-doc
+not-installed"texlive-cv4tw
+not-installed"texlive-cv4tw-doc
+not-installed"texlive-cweb
+not-installed"texlive-cweb-bin
+not-installed"texlive-cweb-doc
+not-installed"texlive-cweb-latex
+not-installed"texlive-cweb-latex-doc
+not-installed"texlive-cweb-old
+not-installed"texlive-cyber
+not-installed"texlive-cyber-doc
+not-installed"texlive-cybercic
+not-installed"texlive-cybercic-doc
+not-installed"texlive-cyklop
+not-installed"texlive-cyklop-doc
+not-installed"texlive-cyklop-fonts
+not-installed"texlive-cyrillic
+not-installed"texlive-cyrillic-bin
+not-installed"texlive-cyrillic-bin-bin
+not-installed"texlive-cyrillic-bin-doc
+not-installed"texlive-cyrillic-doc
+not-installed"texlive-cyrplain
+not-installed"texlive-dad
+not-installed"texlive-dad-doc
+not-installed"texlive-dad-fonts
+not-installed"texlive-dancers
+not-installed"texlive-dantelogo
+not-installed"texlive-dantelogo-doc
+not-installed"texlive-dantelogo-fonts
+not-installed"texlive-dashbox
+not-installed"texlive-dashbox-doc
+not-installed"texlive-dashrule
+not-installed"texlive-dashrule-doc
+not-installed"texlive-dashundergaps
+not-installed"texlive-dashundergaps-doc
+not-installed"texlive-dataref
+not-installed"texlive-dataref-doc
+not-installed"texlive-datatool
+not-installed"texlive-datatool-doc
+not-installed"texlive-dateiliste
+not-installed"texlive-dateiliste-doc
+not-installed"texlive-datenumber
+not-installed"texlive-datenumber-doc
+not-installed"texlive-datetime
+not-installed"texlive-datetime-doc
+not-installed"texlive-datetime2
+not-installed"texlive-datetime2-bahasai
+not-installed"texlive-datetime2-bahasai-doc
+not-installed"texlive-datetime2-basque
+not-installed"texlive-datetime2-basque-doc
+not-installed"texlive-datetime2-breton
+not-installed"texlive-datetime2-breton-doc
+not-installed"texlive-datetime2-bulgarian
+not-installed"texlive-datetime2-bulgarian-doc
+not-installed"texlive-datetime2-catalan
+not-installed"texlive-datetime2-catalan-doc
+not-installed"texlive-datetime2-croatian
+not-installed"texlive-datetime2-croatian-doc
+not-installed"texlive-datetime2-czech
+not-installed"texlive-datetime2-czech-doc
+not-installed"texlive-datetime2-danish
+not-installed"texlive-datetime2-danish-doc
+not-installed"texlive-datetime2-doc
+not-installed"texlive-datetime2-dutch
+not-installed"texlive-datetime2-dutch-doc
+not-installed"texlive-datetime2-en-fulltext
+not-installed"texlive-datetime2-en-fulltext-doc
+not-installed"texlive-datetime2-english
+not-installed"texlive-datetime2-english-doc
+not-installed"texlive-datetime2-esperanto
+not-installed"texlive-datetime2-esperanto-doc
+not-installed"texlive-datetime2-estonian
+not-installed"texlive-datetime2-estonian-doc
+not-installed"texlive-datetime2-finnish
+not-installed"texlive-datetime2-finnish-doc
+not-installed"texlive-datetime2-french
+not-installed"texlive-datetime2-french-doc
+not-installed"texlive-datetime2-galician
+not-installed"texlive-datetime2-galician-doc
+not-installed"texlive-datetime2-german
+not-installed"texlive-datetime2-german-doc
+not-installed"texlive-datetime2-greek
+not-installed"texlive-datetime2-greek-doc
+not-installed"texlive-datetime2-hebrew
+not-installed"texlive-datetime2-hebrew-doc
+not-installed"texlive-datetime2-icelandic
+not-installed"texlive-datetime2-icelandic-doc
+not-installed"texlive-datetime2-irish
+not-installed"texlive-datetime2-irish-doc
+not-installed"texlive-datetime2-it-fulltext
+not-installed"texlive-datetime2-it-fulltext-doc
+not-installed"texlive-datetime2-italian
+not-installed"texlive-datetime2-italian-doc
+not-installed"texlive-datetime2-latin
+not-installed"texlive-datetime2-latin-doc
+not-installed"texlive-datetime2-lsorbian
+not-installed"texlive-datetime2-lsorbian-doc
+not-installed"texlive-datetime2-magyar
+not-installed"texlive-datetime2-magyar-doc
+not-installed"texlive-datetime2-norsk
+not-installed"texlive-datetime2-norsk-doc
+not-installed"texlive-datetime2-polish
+not-installed"texlive-datetime2-polish-doc
+not-installed"texlive-datetime2-portuges
+not-installed"texlive-datetime2-portuges-doc
+not-installed"texlive-datetime2-romanian
+not-installed"texlive-datetime2-romanian-doc
+not-installed"texlive-datetime2-russian
+not-installed"texlive-datetime2-russian-doc
+not-installed"texlive-datetime2-samin
+not-installed"texlive-datetime2-samin-doc
+not-installed"texlive-datetime2-scottish
+not-installed"texlive-datetime2-scottish-doc
+not-installed"texlive-datetime2-serbian
+not-installed"texlive-datetime2-serbian-doc
+not-installed"texlive-datetime2-slovak
+not-installed"texlive-datetime2-slovak-doc
+not-installed"texlive-datetime2-slovene
+not-installed"texlive-datetime2-slovene-doc
+not-installed"texlive-datetime2-spanish
+not-installed"texlive-datetime2-spanish-doc
+not-installed"texlive-datetime2-swedish
+not-installed"texlive-datetime2-swedish-doc
+not-installed"texlive-datetime2-turkish
+not-installed"texlive-datetime2-turkish-doc
+not-installed"texlive-datetime2-ukrainian
+not-installed"texlive-datetime2-ukrainian-doc
+not-installed"texlive-datetime2-usorbian
+not-installed"texlive-datetime2-usorbian-doc
+not-installed"texlive-datetime2-welsh
+not-installed"texlive-datetime2-welsh-doc
+not-installed"texlive-dblfloatfix
+not-installed"texlive-dblfloatfix-doc
+not-installed"texlive-dccpaper
+not-installed"texlive-dccpaper-doc
+not-installed"texlive-dcpic
+not-installed"texlive-dcpic-doc
+not-installed"texlive-de-macro
+not-installed"texlive-de-macro-bin
+not-installed"texlive-de-macro-doc
+not-installed"texlive-decimal
+not-installed"texlive-decimal-doc
+not-installed"texlive-decorule
+not-installed"texlive-decorule-doc
+not-installed"texlive-dehyph
+not-installed"texlive-dehyph-exptl
+not-installed"texlive-dehyph-exptl-doc
+not-installed"texlive-dejavu
+not-installed"texlive-dejavu-doc
+not-installed"texlive-dejavu-fonts
+not-installed"texlive-dejavu-otf
+not-installed"texlive-dejavu-otf-doc
+not-installed"texlive-delim
+not-installed"texlive-delim-doc
+not-installed"texlive-delimseasy
+not-installed"texlive-delimseasy-doc
+not-installed"texlive-delimset
+not-installed"texlive-delimset-doc
+not-installed"texlive-delimtxt
+not-installed"texlive-delimtxt-doc
+not-installed"texlive-denisbdoc
+not-installed"texlive-denisbdoc-doc
+not-installed"texlive-detex
+not-installed"texlive-detex-bin
+not-installed"texlive-devel
+not-installed"texlive-dhua
+not-installed"texlive-dhua-doc
+not-installed"texlive-diadia
+not-installed"texlive-diadia-bin
+not-installed"texlive-diadia-doc
+not-installed"texlive-diagbox
+not-installed"texlive-diagbox-doc
+not-installed"texlive-diagmac2
+not-installed"texlive-diagmac2-doc
+not-installed"texlive-diagnose
+not-installed"texlive-diagnose-doc
+not-installed"texlive-dialogl
+not-installed"texlive-dialogl-doc
+not-installed"texlive-dice
+not-installed"texlive-dice-doc
+not-installed"texlive-dichokey
+not-installed"texlive-dichokey-doc
+not-installed"texlive-dickimaw
+not-installed"texlive-dictsym
+not-installed"texlive-dictsym-doc
+not-installed"texlive-dictsym-fonts
+not-installed"texlive-diffcoeff
+not-installed"texlive-diffcoeff-doc
+not-installed"texlive-digiconfigs
+not-installed"texlive-digiconfigs-doc
+not-installed"texlive-dijkstra
+not-installed"texlive-dijkstra-doc
+not-installed"texlive-din1505
+not-installed"texlive-din1505-doc
+not-installed"texlive-dinat
+not-installed"texlive-dinat-doc
+not-installed"texlive-dinbrief
+not-installed"texlive-dinbrief-doc
+not-installed"texlive-dingbat
+not-installed"texlive-dingbat-doc
+not-installed"texlive-directory
+not-installed"texlive-directory-doc
+not-installed"texlive-dirtree
+not-installed"texlive-dirtree-doc
+not-installed"texlive-dirtytalk
+not-installed"texlive-dirtytalk-doc
+not-installed"texlive-disser
+not-installed"texlive-disser-doc
+not-installed"texlive-ditaa
+not-installed"texlive-ditaa-doc
+not-installed"texlive-dithesis
+not-installed"texlive-dithesis-doc
+not-installed"texlive-dk-bib
+not-installed"texlive-dk-bib-doc
+not-installed"texlive-dlfltxb
+not-installed"texlive-dlfltxb-doc
+not-installed"texlive-dnaseq
+not-installed"texlive-dnaseq-doc
+not-installed"texlive-dnp
+not-installed"texlive-doc-pictex
+not-installed"texlive-docbytex
+not-installed"texlive-docbytex-doc
+not-installed"texlive-doclicense
+not-installed"texlive-doclicense-doc
+not-installed"texlive-docmfp
+not-installed"texlive-docmfp-doc
+not-installed"texlive-docmute
+not-installed"texlive-docmute-doc
+not-installed"texlive-docsurvey
+not-installed"texlive-doctools
+not-installed"texlive-doctools-doc
+not-installed"texlive-documentation
+not-installed"texlive-documentation-doc
+not-installed"texlive-doi
+not-installed"texlive-doi-doc
+not-installed"texlive-doipubmed
+not-installed"texlive-doipubmed-doc
+not-installed"texlive-dosepsbin
+not-installed"texlive-dosepsbin-bin
+not-installed"texlive-dosepsbin-doc
+not-installed"texlive-dot2texi
+not-installed"texlive-dot2texi-doc
+not-installed"texlive-dotarrow
+not-installed"texlive-dotarrow-doc
+not-installed"texlive-dotseqn
+not-installed"texlive-dotseqn-doc
+not-installed"texlive-dottex
+not-installed"texlive-dottex-doc
+not-installed"texlive-doublestroke
+not-installed"texlive-doublestroke-doc
+not-installed"texlive-doublestroke-fonts
+not-installed"texlive-dowith
+not-installed"texlive-dowith-doc
+not-installed"texlive-download
+not-installed"texlive-download-doc
+not-installed"texlive-dox
+not-installed"texlive-dox-doc
+not-installed"texlive-dozenal
+not-installed"texlive-dozenal-doc
+not-installed"texlive-dozenal-fonts
+not-installed"texlive-dpfloat
+not-installed"texlive-dpfloat-doc
+not-installed"texlive-dprogress
+not-installed"texlive-dprogress-doc
+not-installed"texlive-drac
+not-installed"texlive-drac-doc
+not-installed"texlive-draftcopy
+not-installed"texlive-draftcopy-doc
+not-installed"texlive-draftfigure
+not-installed"texlive-draftfigure-doc
+not-installed"texlive-draftwatermark
+not-installed"texlive-draftwatermark-doc
+not-installed"texlive-dramatist
+not-installed"texlive-dramatist-doc
+not-installed"texlive-dratex
+not-installed"texlive-dratex-doc
+not-installed"texlive-drawmatrix
+not-installed"texlive-drawmatrix-doc
+not-installed"texlive-drawstack
+not-installed"texlive-drawstack-doc
+not-installed"texlive-drm
+not-installed"texlive-drm-doc
+not-installed"texlive-drm-fonts
+not-installed"texlive-droid
+not-installed"texlive-droid-doc
+not-installed"texlive-droid-fonts
+not-installed"texlive-droit-fr
+not-installed"texlive-droit-fr-doc
+not-installed"texlive-drs
+not-installed"texlive-drs-doc
+not-installed"texlive-drv
+not-installed"texlive-drv-doc
+not-installed"texlive-dsptricks
+not-installed"texlive-dsptricks-doc
+not-installed"texlive-dsserif
+not-installed"texlive-dsserif-doc
+not-installed"texlive-dsserif-fonts
+not-installed"texlive-dtk
+not-installed"texlive-dtk-doc
+not-installed"texlive-dtl
+not-installed"texlive-dtl-bin
+not-installed"texlive-dtxdescribe
+not-installed"texlive-dtxdescribe-doc
+not-installed"texlive-dtxgallery
+not-installed"texlive-dtxgen
+not-installed"texlive-dtxgen-bin
+not-installed"texlive-dtxgen-doc
+not-installed"texlive-dtxtut
+not-installed"texlive-ducksay
+not-installed"texlive-ducksay-doc
+not-installed"texlive-duckuments
+not-installed"texlive-duckuments-doc
+not-installed"texlive-duerer
+not-installed"texlive-duerer-doc
+not-installed"texlive-duerer-latex
+not-installed"texlive-duerer-latex-doc
+not-installed"texlive-duotenzor
+not-installed"texlive-duotenzor-doc
+not-installed"texlive-dutchcal
+not-installed"texlive-dutchcal-doc
+not-installed"texlive-dutchcal-fonts
+not-installed"texlive-dvdcoll
+not-installed"texlive-dvdcoll-doc
+not-installed"texlive-dvgloss
+not-installed"texlive-dvgloss-doc
+not-installed"texlive-dviasm
+not-installed"texlive-dviasm-bin
+not-installed"texlive-dviasm-doc
+not-installed"texlive-dvicopy
+not-installed"texlive-dvicopy-bin
+not-installed"texlive-dvidvi
+not-installed"texlive-dvidvi-bin
+not-installed"texlive-dviincl
+not-installed"texlive-dviincl-doc
+not-installed"texlive-dviinfox
+not-installed"texlive-dviinfox-bin
+not-installed"texlive-dviinfox-doc
+not-installed"texlive-dviljk
+not-installed"texlive-dviljk-bin
+not-installed"texlive-dviout-util
+not-installed"texlive-dviout-util-bin
+not-installed"texlive-dvipdfmx
+not-installed"texlive-dvipdfmx-bin
+not-installed"texlive-dvipdfmx-doc
+not-installed"texlive-dvipng
+not-installed"texlive-dvipng-bin
+not-installed"texlive-dvipos
+not-installed"texlive-dvipos-bin
+not-installed"texlive-dvips
+not-installed"texlive-dvips-bin
+not-installed"texlive-dvips-doc
+not-installed"texlive-dvipsconfig
+not-installed"texlive-dvisvgm
+not-installed"texlive-dvisvgm-bin
+not-installed"texlive-dynamicnumber
+not-installed"texlive-dynamicnumber-doc
+not-installed"texlive-dynblocks
+not-installed"texlive-dynblocks-doc
+not-installed"texlive-dynkin-diagrams
+not-installed"texlive-dynkin-diagrams-doc
+not-installed"texlive-dyntree
+not-installed"texlive-dyntree-doc
+not-installed"texlive-e-french
+not-installed"texlive-e-french-doc
+not-installed"texlive-ean
+not-installed"texlive-ean-doc
+not-installed"texlive-ean13isbn
+not-installed"texlive-ean13isbn-doc
+not-installed"texlive-easy
+not-installed"texlive-easy-doc
+not-installed"texlive-easy-todo
+not-installed"texlive-easy-todo-doc
+not-installed"texlive-easyfig
+not-installed"texlive-easyfig-doc
+not-installed"texlive-easyformat
+not-installed"texlive-easyformat-doc
+not-installed"texlive-easylist
+not-installed"texlive-easylist-doc
+not-installed"texlive-easyreview
+not-installed"texlive-easyreview-doc
+not-installed"texlive-ebezier
+not-installed"texlive-ebezier-doc
+not-installed"texlive-ebgaramond
+not-installed"texlive-ebgaramond-doc
+not-installed"texlive-ebgaramond-fonts
+not-installed"texlive-ebgaramond-maths
+not-installed"texlive-ebgaramond-maths-doc
+not-installed"texlive-ebong
+not-installed"texlive-ebong-bin
+not-installed"texlive-ebong-doc
+not-installed"texlive-ebook
+not-installed"texlive-ebook-doc
+not-installed"texlive-ebproof
+not-installed"texlive-ebproof-doc
+not-installed"texlive-ebsthesis
+not-installed"texlive-ebsthesis-doc
+not-installed"texlive-ec
+not-installed"texlive-ec-doc
+not-installed"texlive-ecc
+not-installed"texlive-ecc-doc
+not-installed"texlive-ecclesiastic
+not-installed"texlive-ecclesiastic-doc
+not-installed"texlive-ecgdraw
+not-installed"texlive-ecgdraw-doc
+not-installed"texlive-ecltree
+not-installed"texlive-ecltree-doc
+not-installed"texlive-eco
+not-installed"texlive-eco-doc
+not-installed"texlive-ecobiblatex
+not-installed"texlive-ecobiblatex-doc
+not-installed"texlive-econ-bst
+not-installed"texlive-econ-bst-doc
+not-installed"texlive-econometrics
+not-installed"texlive-econometrics-doc
+not-installed"texlive-economic
+not-installed"texlive-economic-doc
+not-installed"texlive-ecothesis
+not-installed"texlive-ecv
+not-installed"texlive-ecv-doc
+not-installed"texlive-ed
+not-installed"texlive-ed-doc
+not-installed"texlive-edfnotes
+not-installed"texlive-edfnotes-doc
+not-installed"texlive-edmac
+not-installed"texlive-edmac-doc
+not-installed"texlive-edmargin
+not-installed"texlive-edmargin-doc
+not-installed"texlive-ednotes
+not-installed"texlive-ednotes-doc
+not-installed"texlive-eemeir
+not-installed"texlive-eemeir-doc
+not-installed"texlive-eepic
+not-installed"texlive-eepic-doc
+not-installed"texlive-efbox
+not-installed"texlive-efbox-doc
+not-installed"texlive-egameps
+not-installed"texlive-egameps-doc
+not-installed"texlive-egplot
+not-installed"texlive-egplot-doc
+not-installed"texlive-eiad
+not-installed"texlive-eiad-doc
+not-installed"texlive-eiad-ltx
+not-installed"texlive-eiad-ltx-doc
+not-installed"texlive-eijkhout
+not-installed"texlive-einfuehrung
+not-installed"texlive-einfuehrung2
+not-installed"texlive-ejpecp
+not-installed"texlive-ejpecp-doc
+not-installed"texlive-ekaia
+not-installed"texlive-ekaia-doc
+not-installed"texlive-elbioimp
+not-installed"texlive-elbioimp-doc
+not-installed"texlive-electrum
+not-installed"texlive-electrum-doc
+not-installed"texlive-electrum-fonts
+not-installed"texlive-eledform
+not-installed"texlive-eledform-doc
+not-installed"texlive-eledmac
+not-installed"texlive-eledmac-doc
+not-installed"texlive-elegantbook
+not-installed"texlive-elegantbook-doc
+not-installed"texlive-elegantnote
+not-installed"texlive-elegantnote-doc
+not-installed"texlive-elegantpaper
+not-installed"texlive-elegantpaper-doc
+not-installed"texlive-elements
+not-installed"texlive-elements-doc
+not-installed"texlive-ellipse
+not-installed"texlive-ellipse-doc
+not-installed"texlive-ellipsis
+not-installed"texlive-ellipsis-doc
+not-installed"texlive-elmath
+not-installed"texlive-elmath-doc
+not-installed"texlive-elocalloc
+not-installed"texlive-elocalloc-doc
+not-installed"texlive-elpres
+not-installed"texlive-elpres-doc
+not-installed"texlive-els-cas-templates
+not-installed"texlive-els-cas-templates-doc
+not-installed"texlive-elsarticle
+not-installed"texlive-elsarticle-doc
+not-installed"texlive-elteikthesis
+not-installed"texlive-elteikthesis-doc
+not-installed"texlive-eltex
+not-installed"texlive-eltex-doc
+not-installed"texlive-elvish
+not-installed"texlive-elvish-doc
+not-installed"texlive-elzcards
+not-installed"texlive-elzcards-doc
+not-installed"texlive-emarks
+not-installed"texlive-emarks-doc
+not-installed"texlive-embedall
+not-installed"texlive-embedall-doc
+not-installed"texlive-embrac
+not-installed"texlive-embrac-doc
+not-installed"texlive-emf
+not-installed"texlive-emf-doc
+not-installed"texlive-emisa
+not-installed"texlive-emisa-doc
+not-installed"texlive-emp
+not-installed"texlive-emp-doc
+not-installed"texlive-emptypage
+not-installed"texlive-emptypage-doc
+not-installed"texlive-emulateapj
+not-installed"texlive-emulateapj-doc
+not-installed"texlive-enctex
+not-installed"texlive-enctex-doc
+not-installed"texlive-encxvlna
+not-installed"texlive-encxvlna-doc
+not-installed"texlive-endfloat
+not-installed"texlive-endfloat-doc
+not-installed"texlive-endheads
+not-installed"texlive-endheads-doc
+not-installed"texlive-endiagram
+not-installed"texlive-endiagram-doc
+not-installed"texlive-endnotes
+not-installed"texlive-endnotes-doc
+not-installed"texlive-endnotesj
+not-installed"texlive-endnotesj-doc
+not-installed"texlive-endofproofwd
+not-installed"texlive-endofproofwd-doc
+not-installed"texlive-engpron
+not-installed"texlive-engpron-doc
+not-installed"texlive-engrec
+not-installed"texlive-engrec-doc
+not-installed"texlive-engtlc
+not-installed"texlive-engtlc-doc
+not-installed"texlive-enigma
+not-installed"texlive-enigma-doc
+not-installed"texlive-enotez
+not-installed"texlive-enotez-doc
+not-installed"texlive-enumitem
+not-installed"texlive-enumitem-doc
+not-installed"texlive-enumitem-zref
+not-installed"texlive-enumitem-zref-doc
+not-installed"texlive-envbig
+not-installed"texlive-envbig-doc
+not-installed"texlive-environ
+not-installed"texlive-environ-doc
+not-installed"texlive-envlab
+not-installed"texlive-envlab-doc
+not-installed"texlive-epigrafica
+not-installed"texlive-epigrafica-doc
+not-installed"texlive-epigrafica-fonts
+not-installed"texlive-epigram
+not-installed"texlive-epigraph
+not-installed"texlive-epigraph-doc
+not-installed"texlive-epiolmec
+not-installed"texlive-epiolmec-doc
+not-installed"texlive-epiolmec-fonts
+not-installed"texlive-eplain
+not-installed"texlive-eplain-bin
+not-installed"texlive-eplain-doc
+not-installed"texlive-epsdice
+not-installed"texlive-epsdice-doc
+not-installed"texlive-epsf
+not-installed"texlive-epsf-doc
+not-installed"texlive-epsf-dvipdfmx
+not-installed"texlive-epsf-dvipdfmx-doc
+not-installed"texlive-epsincl
+not-installed"texlive-epsincl-doc
+not-installed"texlive-epslatex-fr
+not-installed"texlive-epspdf
+not-installed"texlive-epspdf-bin
+not-installed"texlive-epspdf-doc
+not-installed"texlive-epspdfconversion
+not-installed"texlive-epspdfconversion-doc
+not-installed"texlive-epstopdf
+not-installed"texlive-epstopdf-bin
+not-installed"texlive-epstopdf-doc
+not-installed"texlive-eqell
+not-installed"texlive-eqell-doc
+not-installed"texlive-eqexpl
+not-installed"texlive-eqexpl-doc
+not-installed"texlive-eqlist
+not-installed"texlive-eqlist-doc
+not-installed"texlive-eqnalign
+not-installed"texlive-eqnalign-doc
+not-installed"texlive-eqname
+not-installed"texlive-eqnarray
+not-installed"texlive-eqnarray-doc
+not-installed"texlive-eqnnumwarn
+not-installed"texlive-eqnnumwarn-doc
+not-installed"texlive-eqparbox
+not-installed"texlive-eqparbox-doc
+not-installed"texlive-erdc
+not-installed"texlive-erdc-doc
+not-installed"texlive-erewhon
+not-installed"texlive-erewhon-doc
+not-installed"texlive-erewhon-fonts
+not-installed"texlive-errata
+not-installed"texlive-errata-doc
+not-installed"texlive-erw-l3
+not-installed"texlive-erw-l3-doc
+not-installed"texlive-es-tex-faq
+not-installed"texlive-esami
+not-installed"texlive-esami-doc
+not-installed"texlive-esdiff
+not-installed"texlive-esdiff-doc
+not-installed"texlive-esint
+not-installed"texlive-esint-doc
+not-installed"texlive-esint-type1
+not-installed"texlive-esint-type1-doc
+not-installed"texlive-esint-type1-fonts
+not-installed"texlive-esk
+not-installed"texlive-esk-doc
+not-installed"texlive-eskd
+not-installed"texlive-eskd-doc
+not-installed"texlive-eskdx
+not-installed"texlive-eskdx-doc
+not-installed"texlive-eso-pic
+not-installed"texlive-eso-pic-doc
+not-installed"texlive-esrelation
+not-installed"texlive-esrelation-doc
+not-installed"texlive-esrelation-fonts
+not-installed"texlive-esstix
+not-installed"texlive-esstix-doc
+not-installed"texlive-esstix-fonts
+not-installed"texlive-estcpmm
+not-installed"texlive-estcpmm-doc
+not-installed"texlive-esvect
+not-installed"texlive-esvect-doc
+not-installed"texlive-esvect-fonts
+not-installed"texlive-etaremune
+not-installed"texlive-etaremune-doc
+not-installed"texlive-etdipa
+not-installed"texlive-etex
+not-installed"texlive-etex-doc
+not-installed"texlive-etex-pkg
+not-installed"texlive-etex-pkg-doc
+not-installed"texlive-etextools
+not-installed"texlive-etextools-doc
+not-installed"texlive-ethiop
+not-installed"texlive-ethiop-doc
+not-installed"texlive-ethiop-t1
+not-installed"texlive-ethiop-t1-doc
+not-installed"texlive-ethiop-t1-fonts
+not-installed"texlive-etoc
+not-installed"texlive-etoc-doc
+not-installed"texlive-etoolbox
+not-installed"texlive-etoolbox-de
+not-installed"texlive-etoolbox-doc
+not-installed"texlive-etsvthor
+not-installed"texlive-etsvthor-doc
+not-installed"texlive-euenc
+not-installed"texlive-euenc-doc
+not-installed"texlive-euflag
+not-installed"texlive-euflag-doc
+not-installed"texlive-eukdate
+not-installed"texlive-eukdate-doc
+not-installed"texlive-euler
+not-installed"texlive-euler-doc
+not-installed"texlive-eulerpx
+not-installed"texlive-eulerpx-doc
+not-installed"texlive-eulervm
+not-installed"texlive-eulervm-doc
+not-installed"texlive-euro
+not-installed"texlive-euro-ce
+not-installed"texlive-euro-ce-doc
+not-installed"texlive-euro-doc
+not-installed"texlive-europasscv
+not-installed"texlive-europasscv-doc
+not-installed"texlive-europecv
+not-installed"texlive-europecv-doc
+not-installed"texlive-eurosym
+not-installed"texlive-eurosym-doc
+not-installed"texlive-eurosym-fonts
+not-installed"texlive-euxm
+not-installed"texlive-everyhook
+not-installed"texlive-everyhook-doc
+not-installed"texlive-everypage
+not-installed"texlive-everypage-doc
+not-installed"texlive-exam
+not-installed"texlive-exam-doc
+not-installed"texlive-exam-n
+not-installed"texlive-exam-n-doc
+not-installed"texlive-exam-randomizechoices
+not-installed"texlive-exam-randomizechoices-doc
+not-installed"texlive-examdesign
+not-installed"texlive-examdesign-doc
+not-installed"texlive-example
+not-installed"texlive-examplep
+not-installed"texlive-examplep-doc
+not-installed"texlive-exceltex
+not-installed"texlive-exceltex-bin
+not-installed"texlive-exceltex-doc
+not-installed"texlive-excludeonly
+not-installed"texlive-excludeonly-doc
+not-installed"texlive-exercise
+not-installed"texlive-exercise-doc
+not-installed"texlive-exercisebank
+not-installed"texlive-exercisebank-doc
+not-installed"texlive-exercisepoints
+not-installed"texlive-exercisepoints-doc
+not-installed"texlive-exercises
+not-installed"texlive-exercises-doc
+not-installed"texlive-exframe
+not-installed"texlive-exframe-doc
+not-installed"texlive-exp-testopt
+not-installed"texlive-exp-testopt-doc
+not-installed"texlive-expdlist
+not-installed"texlive-expdlist-doc
+not-installed"texlive-expex
+not-installed"texlive-expex-doc
+not-installed"texlive-export
+not-installed"texlive-export-doc
+not-installed"texlive-expressg
+not-installed"texlive-expressg-doc
+not-installed"texlive-exsheets
+not-installed"texlive-exsheets-doc
+not-installed"texlive-exsol
+not-installed"texlive-exsol-doc
+not-installed"texlive-extarrows
+not-installed"texlive-extarrows-doc
+not-installed"texlive-exteps
+not-installed"texlive-exteps-doc
+not-installed"texlive-extpfeil
+not-installed"texlive-extpfeil-doc
+not-installed"texlive-extract
+not-installed"texlive-extract-doc
+not-installed"texlive-extratools
+not-installed"texlive-extsizes
+not-installed"texlive-extsizes-doc
+not-installed"texlive-facsimile
+not-installed"texlive-facsimile-doc
+not-installed"texlive-factura
+not-installed"texlive-factura-doc
+not-installed"texlive-facture
+not-installed"texlive-facture-belge-simple-sans-tva
+not-installed"texlive-facture-belge-simple-sans-tva-doc
+not-installed"texlive-facture-doc
+not-installed"texlive-faktor
+not-installed"texlive-faktor-doc
+not-installed"texlive-fancybox
+not-installed"texlive-fancybox-doc
+not-installed"texlive-fancyhandout
+not-installed"texlive-fancyhandout-doc
+not-installed"texlive-fancyhdr
+not-installed"texlive-fancyhdr-doc
+not-installed"texlive-fancyhdr-it
+not-installed"texlive-fancylabel
+not-installed"texlive-fancylabel-doc
+not-installed"texlive-fancynum
+not-installed"texlive-fancynum-doc
+not-installed"texlive-fancypar
+not-installed"texlive-fancypar-doc
+not-installed"texlive-fancyref
+not-installed"texlive-fancyref-doc
+not-installed"texlive-fancyslides
+not-installed"texlive-fancyslides-doc
+not-installed"texlive-fancytabs
+not-installed"texlive-fancytabs-doc
+not-installed"texlive-fancytooltips
+not-installed"texlive-fancytooltips-doc
+not-installed"texlive-fancyvrb
+not-installed"texlive-fancyvrb-doc
+not-installed"texlive-fandol
+not-installed"texlive-fandol-doc
+not-installed"texlive-fandol-fonts
+not-installed"texlive-fascicules
+not-installed"texlive-fascicules-doc
+not-installed"texlive-fast-diagram
+not-installed"texlive-fast-diagram-doc
+not-installed"texlive-fbb
+not-installed"texlive-fbb-doc
+not-installed"texlive-fbb-fonts
+not-installed"texlive-fbithesis
+not-installed"texlive-fbithesis-doc
+not-installed"texlive-fbox
+not-installed"texlive-fbox-doc
+not-installed"texlive-fbs
+not-installed"texlive-fc
+not-installed"texlive-fc-doc
+not-installed"texlive-fcavtex
+not-installed"texlive-fcavtex-doc
+not-installed"texlive-fcltxdoc
+not-installed"texlive-fcltxdoc-doc
+not-installed"texlive-fcolumn
+not-installed"texlive-fcolumn-doc
+not-installed"texlive-fdsymbol
+not-installed"texlive-fdsymbol-doc
+not-installed"texlive-fdsymbol-fonts
+not-installed"texlive-fduthesis
+not-installed"texlive-fduthesis-doc
+not-installed"texlive-featpost
+not-installed"texlive-featpost-doc
+not-installed"texlive-fei
+not-installed"texlive-fei-doc
+not-installed"texlive-fenixpar
+not-installed"texlive-fenixpar-doc
+not-installed"texlive-fetamont
+not-installed"texlive-fetamont-doc
+not-installed"texlive-fetamont-fonts
+not-installed"texlive-fetchcls
+not-installed"texlive-fetchcls-doc
+not-installed"texlive-feupphdteses
+not-installed"texlive-feupphdteses-doc
+not-installed"texlive-feyn
+not-installed"texlive-feyn-doc
+not-installed"texlive-feynmf
+not-installed"texlive-feynmf-doc
+not-installed"texlive-feynmp-auto
+not-installed"texlive-feynmp-auto-doc
+not-installed"texlive-ffslides
+not-installed"texlive-ffslides-doc
+not-installed"texlive-fge
+not-installed"texlive-fge-doc
+not-installed"texlive-fge-fonts
+not-installed"texlive-fgruler
+not-installed"texlive-fgruler-doc
+not-installed"texlive-fibeamer
+not-installed"texlive-fibeamer-doc
+not-installed"texlive-fifinddo-info
+not-installed"texlive-fifinddo-info-doc
+not-installed"texlive-fifo-stack
+not-installed"texlive-fifo-stack-doc
+not-installed"texlive-fig4latex
+not-installed"texlive-fig4latex-bin
+not-installed"texlive-fig4latex-doc
+not-installed"texlive-figbas
+not-installed"texlive-figbas-doc
+not-installed"texlive-figbas-fonts
+not-installed"texlive-figbib
+not-installed"texlive-figbib-doc
+not-installed"texlive-figflow
+not-installed"texlive-figflow-doc
+not-installed"texlive-figsize
+not-installed"texlive-figsize-doc
+not-installed"texlive-filecontents
+not-installed"texlive-filecontents-doc
+not-installed"texlive-filecontentsdef
+not-installed"texlive-filecontentsdef-doc
+not-installed"texlive-filedate
+not-installed"texlive-filedate-doc
+not-installed"texlive-filehook
+not-installed"texlive-filehook-doc
+not-installed"texlive-fileinfo
+not-installed"texlive-fileinfo-doc
+not-installed"texlive-filemod
+not-installed"texlive-filemod-doc
+not-installed"texlive-filesystem
+not-installed"texlive-finbib
+not-installed"texlive-findhyph
+not-installed"texlive-findhyph-bin
+not-installed"texlive-findhyph-doc
+not-installed"texlive-fink
+not-installed"texlive-fink-doc
+not-installed"texlive-finstrut
+not-installed"texlive-finstrut-doc
+not-installed"texlive-fira
+not-installed"texlive-fira-doc
+not-installed"texlive-fira-fonts
+not-installed"texlive-firamath
+not-installed"texlive-firamath-doc
+not-installed"texlive-firamath-fonts
+not-installed"texlive-firamath-otf
+not-installed"texlive-firamath-otf-doc
+not-installed"texlive-first-latex-doc
+not-installed"texlive-fitbox
+not-installed"texlive-fitbox-doc
+not-installed"texlive-fithesis
+not-installed"texlive-fithesis-doc
+not-installed"texlive-fix2col
+not-installed"texlive-fix2col-doc
+not-installed"texlive-fixcmex
+not-installed"texlive-fixcmex-doc
+not-installed"texlive-fixfoot
+not-installed"texlive-fixfoot-doc
+not-installed"texlive-fixjfm
+not-installed"texlive-fixjfm-doc
+not-installed"texlive-fixlatvian
+not-installed"texlive-fixlatvian-doc
+not-installed"texlive-fixltxhyph
+not-installed"texlive-fixltxhyph-doc
+not-installed"texlive-fixme
+not-installed"texlive-fixme-doc
+not-installed"texlive-fixmetodonotes
+not-installed"texlive-fixmetodonotes-doc
+not-installed"texlive-fixpdfmag
+not-installed"texlive-fiziko
+not-installed"texlive-fiziko-doc
+not-installed"texlive-fjodor
+not-installed"texlive-fjodor-doc
+not-installed"texlive-flabels
+not-installed"texlive-flabels-doc
+not-installed"texlive-flacards
+not-installed"texlive-flacards-doc
+not-installed"texlive-flagderiv
+not-installed"texlive-flagderiv-doc
+not-installed"texlive-flashcards
+not-installed"texlive-flashcards-doc
+not-installed"texlive-flashmovie
+not-installed"texlive-flashmovie-doc
+not-installed"texlive-flipbook
+not-installed"texlive-flipbook-doc
+not-installed"texlive-flippdf
+not-installed"texlive-flippdf-doc
+not-installed"texlive-float
+not-installed"texlive-float-doc
+not-installed"texlive-floatrow
+not-installed"texlive-floatrow-doc
+not-installed"texlive-flowchart
+not-installed"texlive-flowchart-doc
+not-installed"texlive-flowfram
+not-installed"texlive-flowfram-doc
+not-installed"texlive-fltpoint
+not-installed"texlive-fltpoint-doc
+not-installed"texlive-fmp
+not-installed"texlive-fmp-doc
+not-installed"texlive-fmtcount
+not-installed"texlive-fmtcount-doc
+not-installed"texlive-fn2end
+not-installed"texlive-fn2end-doc
+not-installed"texlive-fnbreak
+not-installed"texlive-fnbreak-doc
+not-installed"texlive-fncychap
+not-installed"texlive-fncychap-doc
+not-installed"texlive-fncylab
+not-installed"texlive-fncylab-doc
+not-installed"texlive-fnpara
+not-installed"texlive-fnpara-doc
+not-installed"texlive-fnpct
+not-installed"texlive-fnpct-doc
+not-installed"texlive-fnspe
+not-installed"texlive-fnspe-doc
+not-installed"texlive-fntproof
+not-installed"texlive-fntproof-doc
+not-installed"texlive-fnumprint
+not-installed"texlive-fnumprint-doc
+not-installed"texlive-foekfont
+not-installed"texlive-foekfont-doc
+not-installed"texlive-foekfont-fonts
+not-installed"texlive-foilhtml
+not-installed"texlive-foilhtml-doc
+not-installed"texlive-fonetika
+not-installed"texlive-fonetika-doc
+not-installed"texlive-fonetika-fonts
+not-installed"texlive-font-change
+not-installed"texlive-font-change-doc
+not-installed"texlive-font-change-xetex
+not-installed"texlive-font-change-xetex-doc
+not-installed"texlive-fontawesome
+not-installed"texlive-fontawesome-doc
+not-installed"texlive-fontawesome-fonts
+not-installed"texlive-fontawesome5
+not-installed"texlive-fontawesome5-doc
+not-installed"texlive-fontawesome5-fonts
+not-installed"texlive-fontaxes
+not-installed"texlive-fontaxes-doc
+not-installed"texlive-fontbook
+not-installed"texlive-fontbook-doc
+not-installed"texlive-fontch
+not-installed"texlive-fontch-doc
+not-installed"texlive-fontinst
+not-installed"texlive-fontinst-bin
+not-installed"texlive-fontinst-doc
+not-installed"texlive-fontmfizz
+not-installed"texlive-fontmfizz-doc
+not-installed"texlive-fontmfizz-fonts
+not-installed"texlive-fontname
+not-installed"texlive-fontname-doc
+not-installed"texlive-fontools
+not-installed"texlive-fontools-bin
+not-installed"texlive-fontools-doc
+not-installed"texlive-fonts-churchslavonic
+not-installed"texlive-fonts-churchslavonic-doc
+not-installed"texlive-fonts-churchslavonic-fonts
+not-installed"texlive-fonts-tlwg
+not-installed"texlive-fonts-tlwg-doc
+not-installed"texlive-fonts-tlwg-fonts
+not-installed"texlive-fontspec
+not-installed"texlive-fontspec-doc
+not-installed"texlive-fonttable
+not-installed"texlive-fonttable-doc
+not-installed"texlive-fontware
+not-installed"texlive-fontware-bin
+not-installed"texlive-fontwrap
+not-installed"texlive-fontwrap-doc
+not-installed"texlive-footbib
+not-installed"texlive-footbib-doc
+not-installed"texlive-footmisc
+not-installed"texlive-footmisc-doc
+not-installed"texlive-footmisx
+not-installed"texlive-footmisx-doc
+not-installed"texlive-footnotebackref
+not-installed"texlive-footnotebackref-doc
+not-installed"texlive-footnotehyper
+not-installed"texlive-footnotehyper-doc
+not-installed"texlive-footnoterange
+not-installed"texlive-footnoterange-doc
+not-installed"texlive-footnpag
+not-installed"texlive-footnpag-doc
+not-installed"texlive-forarray
+not-installed"texlive-forarray-doc
+not-installed"texlive-foreign
+not-installed"texlive-foreign-doc
+not-installed"texlive-forest
+not-installed"texlive-forest-doc
+not-installed"texlive-forest-quickstart
+not-installed"texlive-forloop
+not-installed"texlive-forloop-doc
+not-installed"texlive-formation-latex-ul
+not-installed"texlive-formation-latex-ul-doc
+not-installed"texlive-formlett
+not-installed"texlive-formlett-doc
+not-installed"texlive-forms16be
+not-installed"texlive-forms16be-doc
+not-installed"texlive-formular
+not-installed"texlive-formular-doc
+not-installed"texlive-fouridx
+not-installed"texlive-fouridx-doc
+not-installed"texlive-fourier
+not-installed"texlive-fourier-doc
+not-installed"texlive-fourier-fonts
+not-installed"texlive-fouriernc
+not-installed"texlive-fouriernc-doc
+not-installed"texlive-fp
+not-installed"texlive-fp-doc
+not-installed"texlive-fpl
+not-installed"texlive-fpl-doc
+not-installed"texlive-fpl-fonts
+not-installed"texlive-fragmaster
+not-installed"texlive-fragmaster-bin
+not-installed"texlive-fragmaster-doc
+not-installed"texlive-fragments
+not-installed"texlive-fragments-doc
+not-installed"texlive-frame
+not-installed"texlive-frame-doc
+not-installed"texlive-framed
+not-installed"texlive-framed-doc
+not-installed"texlive-francais-bst
+not-installed"texlive-francais-bst-doc
+not-installed"texlive-frankenstein
+not-installed"texlive-frankenstein-doc
+not-installed"texlive-frcursive
+not-installed"texlive-frcursive-doc
+not-installed"texlive-frcursive-fonts
+not-installed"texlive-frederika2016
+not-installed"texlive-frederika2016-doc
+not-installed"texlive-frederika2016-fonts
+not-installed"texlive-frege
+not-installed"texlive-frege-doc
+not-installed"texlive-frenchmath
+not-installed"texlive-frenchmath-doc
+not-installed"texlive-frletter
+not-installed"texlive-frletter-doc
+not-installed"texlive-frontespizio
+not-installed"texlive-frontespizio-doc
+not-installed"texlive-ftc-notebook
+not-installed"texlive-ftc-notebook-doc
+not-installed"texlive-ftcap
+not-installed"texlive-ftcap-doc
+not-installed"texlive-ftnxtra
+not-installed"texlive-ftnxtra-doc
+not-installed"texlive-fullblck
+not-installed"texlive-fullblck-doc
+not-installed"texlive-fullminipage
+not-installed"texlive-fullminipage-doc
+not-installed"texlive-fullwidth
+not-installed"texlive-fullwidth-doc
+not-installed"texlive-functan
+not-installed"texlive-functan-doc
+not-installed"texlive-fundus-calligra
+not-installed"texlive-fundus-calligra-doc
+not-installed"texlive-fundus-cyr
+not-installed"texlive-fundus-sueterlin
+not-installed"texlive-fundus-sueterlin-doc
+not-installed"texlive-fvextra
+not-installed"texlive-fvextra-doc
+not-installed"texlive-fwlw
+not-installed"texlive-fwlw-doc
+not-installed"texlive-g-brief
+not-installed"texlive-g-brief-doc
+not-installed"texlive-gaceta
+not-installed"texlive-gaceta-doc
+not-installed"texlive-galois
+not-installed"texlive-galois-doc
+not-installed"texlive-gamebook
+not-installed"texlive-gamebook-doc
+not-installed"texlive-gammas
+not-installed"texlive-gammas-doc
+not-installed"texlive-garamond-math
+not-installed"texlive-garamond-math-doc
+not-installed"texlive-garamond-math-fonts
+not-installed"texlive-garrigues
+not-installed"texlive-garrigues-doc
+not-installed"texlive-garuda-c90
+not-installed"texlive-gastex
+not-installed"texlive-gastex-doc
+not-installed"texlive-gatech-thesis
+not-installed"texlive-gatech-thesis-doc
+not-installed"texlive-gates
+not-installed"texlive-gates-doc
+not-installed"texlive-gatherenum
+not-installed"texlive-gatherenum-doc
+not-installed"texlive-gauss
+not-installed"texlive-gauss-doc
+not-installed"texlive-gb4e
+not-installed"texlive-gb4e-doc
+not-installed"texlive-gbt7714
+not-installed"texlive-gbt7714-doc
+not-installed"texlive-gcard
+not-installed"texlive-gcard-doc
+not-installed"texlive-gchords
+not-installed"texlive-gchords-doc
+not-installed"texlive-gcite
+not-installed"texlive-gcite-doc
+not-installed"texlive-gender
+not-installed"texlive-gender-doc
+not-installed"texlive-gene-logic
+not-installed"texlive-gene-logic-doc
+not-installed"texlive-genealogy
+not-installed"texlive-genealogy-doc
+not-installed"texlive-genealogytree
+not-installed"texlive-genealogytree-doc
+not-installed"texlive-genmisc
+not-installed"texlive-genmpage
+not-installed"texlive-genmpage-doc
+not-installed"texlive-gentium-tug
+not-installed"texlive-gentium-tug-doc
+not-installed"texlive-gentium-tug-fonts
+not-installed"texlive-gentle
+not-installed"texlive-gentombow
+not-installed"texlive-gentombow-doc
+not-installed"texlive-geometry
+not-installed"texlive-geometry-de
+not-installed"texlive-geometry-doc
+not-installed"texlive-german
+not-installed"texlive-german-doc
+not-installed"texlive-germbib
+not-installed"texlive-germbib-doc
+not-installed"texlive-germkorr
+not-installed"texlive-germkorr-doc
+not-installed"texlive-geschichtsfrkl
+not-installed"texlive-geschichtsfrkl-doc
+not-installed"texlive-getfiledate
+not-installed"texlive-getfiledate-doc
+not-installed"texlive-getitems
+not-installed"texlive-getitems-doc
+not-installed"texlive-getmap
+not-installed"texlive-getmap-bin
+not-installed"texlive-getmap-doc
+not-installed"texlive-getoptk
+not-installed"texlive-getoptk-doc
+not-installed"texlive-gfnotation
+not-installed"texlive-gfnotation-doc
+not-installed"texlive-gfsartemisia
+not-installed"texlive-gfsartemisia-doc
+not-installed"texlive-gfsartemisia-fonts
+not-installed"texlive-gfsbaskerville
+not-installed"texlive-gfsbaskerville-doc
+not-installed"texlive-gfsbaskerville-fonts
+not-installed"texlive-gfsbodoni
+not-installed"texlive-gfsbodoni-doc
+not-installed"texlive-gfsbodoni-fonts
+not-installed"texlive-gfscomplutum
+not-installed"texlive-gfscomplutum-doc
+not-installed"texlive-gfscomplutum-fonts
+not-installed"texlive-gfsdidot
+not-installed"texlive-gfsdidot-doc
+not-installed"texlive-gfsdidot-fonts
+not-installed"texlive-gfsneohellenic
+not-installed"texlive-gfsneohellenic-doc
+not-installed"texlive-gfsneohellenic-fonts
+not-installed"texlive-gfsneohellenicmath
+not-installed"texlive-gfsneohellenicmath-doc
+not-installed"texlive-gfsneohellenicmath-fonts
+not-installed"texlive-gfsporson
+not-installed"texlive-gfsporson-doc
+not-installed"texlive-gfsporson-fonts
+not-installed"texlive-gfssolomos
+not-installed"texlive-gfssolomos-doc
+not-installed"texlive-gfssolomos-fonts
+not-installed"texlive-ghab
+not-installed"texlive-ghab-doc
+not-installed"texlive-ghsystem
+not-installed"texlive-ghsystem-doc
+not-installed"texlive-gillcm
+not-installed"texlive-gillcm-doc
+not-installed"texlive-gillius
+not-installed"texlive-gillius-doc
+not-installed"texlive-gillius-fonts
+not-installed"texlive-gincltex
+not-installed"texlive-gincltex-doc
+not-installed"texlive-ginpenc
+not-installed"texlive-ginpenc-doc
+not-installed"texlive-gitfile-info
+not-installed"texlive-gitfile-info-doc
+not-installed"texlive-gitinfo
+not-installed"texlive-gitinfo-doc
+not-installed"texlive-gitinfo2
+not-installed"texlive-gitinfo2-doc
+not-installed"texlive-gitlog
+not-installed"texlive-gitlog-doc
+not-installed"texlive-gitver
+not-installed"texlive-gitver-doc
+not-installed"texlive-globalvals
+not-installed"texlive-globalvals-doc
+not-installed"texlive-gloss
+not-installed"texlive-gloss-doc
+not-installed"texlive-gloss-occitan
+not-installed"texlive-gloss-occitan-doc
+not-installed"texlive-glossaries
+not-installed"texlive-glossaries-bin
+not-installed"texlive-glossaries-danish
+not-installed"texlive-glossaries-danish-doc
+not-installed"texlive-glossaries-doc
+not-installed"texlive-glossaries-dutch
+not-installed"texlive-glossaries-dutch-doc
+not-installed"texlive-glossaries-english
+not-installed"texlive-glossaries-english-doc
+not-installed"texlive-glossaries-estonian
+not-installed"texlive-glossaries-estonian-doc
+not-installed"texlive-glossaries-extra
+not-installed"texlive-glossaries-extra-doc
+not-installed"texlive-glossaries-finnish
+not-installed"texlive-glossaries-finnish-doc
+not-installed"texlive-glossaries-french
+not-installed"texlive-glossaries-french-doc
+not-installed"texlive-glossaries-german
+not-installed"texlive-glossaries-german-doc
+not-installed"texlive-glossaries-irish
+not-installed"texlive-glossaries-irish-doc
+not-installed"texlive-glossaries-italian
+not-installed"texlive-glossaries-italian-doc
+not-installed"texlive-glossaries-magyar
+not-installed"texlive-glossaries-magyar-doc
+not-installed"texlive-glossaries-polish
+not-installed"texlive-glossaries-polish-doc
+not-installed"texlive-glossaries-portuges
+not-installed"texlive-glossaries-portuges-doc
+not-installed"texlive-glossaries-serbian
+not-installed"texlive-glossaries-serbian-doc
+not-installed"texlive-glossaries-spanish
+not-installed"texlive-glossaries-spanish-doc
+not-installed"texlive-glyphlist
+not-installed"texlive-gmdoc
+not-installed"texlive-gmdoc-doc
+not-installed"texlive-gmdoc-enhance
+not-installed"texlive-gmdoc-enhance-doc
+not-installed"texlive-gmiflink
+not-installed"texlive-gmiflink-doc
+not-installed"texlive-gmp
+not-installed"texlive-gmp-doc
+not-installed"texlive-gmutils
+not-installed"texlive-gmutils-doc
+not-installed"texlive-gmverb
+not-installed"texlive-gmverb-doc
+not-installed"texlive-gmverse
+not-installed"texlive-gmverse-doc
+not-installed"texlive-gnu-freefont
+not-installed"texlive-gnu-freefont-doc
+not-installed"texlive-gnu-freefont-fonts
+not-installed"texlive-gnuplottex
+not-installed"texlive-gnuplottex-doc
+not-installed"texlive-go
+not-installed"texlive-go-doc
+not-installed"texlive-gobble
+not-installed"texlive-gobble-doc
+not-installed"texlive-gofonts
+not-installed"texlive-gofonts-doc
+not-installed"texlive-gofonts-fonts
+not-installed"texlive-gost
+not-installed"texlive-gost-doc
+not-installed"texlive-gothic
+not-installed"texlive-gothic-doc
+not-installed"texlive-gotoh
+not-installed"texlive-gotoh-doc
+not-installed"texlive-grabbox
+not-installed"texlive-grabbox-doc
+not-installed"texlive-gradientframe
+not-installed"texlive-gradientframe-doc
+not-installed"texlive-gradstudentresume
+not-installed"texlive-gradstudentresume-doc
+not-installed"texlive-grafcet
+not-installed"texlive-grafcet-doc
+not-installed"texlive-grant
+not-installed"texlive-grant-doc
+not-installed"texlive-graph35
+not-installed"texlive-graph35-doc
+not-installed"texlive-graphbox
+not-installed"texlive-graphbox-doc
+not-installed"texlive-graphics
+not-installed"texlive-graphics-cfg
+not-installed"texlive-graphics-cfg-doc
+not-installed"texlive-graphics-def
+not-installed"texlive-graphics-def-doc
+not-installed"texlive-graphics-doc
+not-installed"texlive-graphics-pln
+not-installed"texlive-graphics-pln-doc
+not-installed"texlive-graphicx-psmin
+not-installed"texlive-graphicx-psmin-doc
+not-installed"texlive-graphicxbox
+not-installed"texlive-graphicxbox-doc
+not-installed"texlive-graphicxpsd
+not-installed"texlive-graphicxpsd-doc
+not-installed"texlive-graphviz
+not-installed"texlive-graphviz-doc
+not-installed"texlive-grayhints
+not-installed"texlive-grayhints-doc
+not-installed"texlive-greek-fontenc
+not-installed"texlive-greek-fontenc-doc
+not-installed"texlive-greek-inputenc
+not-installed"texlive-greek-inputenc-doc
+not-installed"texlive-greekdates
+not-installed"texlive-greekdates-doc
+not-installed"texlive-greektex
+not-installed"texlive-greektex-doc
+not-installed"texlive-greektonoi
+not-installed"texlive-greektonoi-doc
+not-installed"texlive-greenpoint
+not-installed"texlive-greenpoint-doc
+not-installed"texlive-gregoriotex
+not-installed"texlive-gregoriotex-bin
+not-installed"texlive-gregoriotex-doc
+not-installed"texlive-gregoriotex-fonts
+not-installed"texlive-grfpaste
+not-installed"texlive-grfpaste-doc
+not-installed"texlive-grid
+not-installed"texlive-grid-doc
+not-installed"texlive-grid-system
+not-installed"texlive-grid-system-doc
+not-installed"texlive-gridset
+not-installed"texlive-gridset-doc
+not-installed"texlive-gridslides
+not-installed"texlive-gridslides-doc
+not-installed"texlive-grotesq
+not-installed"texlive-grotesq-doc
+not-installed"texlive-grotesq-fonts
+not-installed"texlive-grundgesetze
+not-installed"texlive-grundgesetze-doc
+not-installed"texlive-gsemthesis
+not-installed"texlive-gsemthesis-doc
+not-installed"texlive-gsftopk
+not-installed"texlive-gsftopk-bin
+not-installed"texlive-gsftopk-doc
+not-installed"texlive-gtl
+not-installed"texlive-gtl-doc
+not-installed"texlive-gtrcrd
+not-installed"texlive-gtrcrd-doc
+not-installed"texlive-gtrlib-largetrees
+not-installed"texlive-gtrlib-largetrees-doc
+not-installed"texlive-gu
+not-installed"texlive-gu-doc
+not-installed"texlive-guide-latex-fr
+not-installed"texlive-guide-to-latex
+not-installed"texlive-guitar
+not-installed"texlive-guitar-doc
+not-installed"texlive-guitarchordschemes
+not-installed"texlive-guitarchordschemes-doc
+not-installed"texlive-guitartabs
+not-installed"texlive-guitartabs-doc
+not-installed"texlive-guitlogo
+not-installed"texlive-guitlogo-doc
+not-installed"texlive-gustlib
+not-installed"texlive-gustlib-doc
+not-installed"texlive-gustprog
+not-installed"texlive-gzt
+not-installed"texlive-gzt-doc
+not-installed"texlive-h2020proposal
+not-installed"texlive-h2020proposal-doc
+not-installed"texlive-hackthefootline
+not-installed"texlive-hackthefootline-doc
+not-installed"texlive-hacm
+not-installed"texlive-hacm-doc
+not-installed"texlive-hacm-fonts
+not-installed"texlive-hagenberg-thesis
+not-installed"texlive-hagenberg-thesis-doc
+not-installed"texlive-halloweenmath
+not-installed"texlive-halloweenmath-doc
+not-installed"texlive-handin
+not-installed"texlive-handin-doc
+not-installed"texlive-handout
+not-installed"texlive-handout-doc
+not-installed"texlive-hands
+not-installed"texlive-hang
+not-installed"texlive-hang-doc
+not-installed"texlive-hanging
+not-installed"texlive-hanging-doc
+not-installed"texlive-hanoi
+not-installed"texlive-happy4th
+not-installed"texlive-har2nat
+not-installed"texlive-har2nat-doc
+not-installed"texlive-hardwrap
+not-installed"texlive-hardwrap-doc
+not-installed"texlive-harmony
+not-installed"texlive-harmony-doc
+not-installed"texlive-harnon-cv
+not-installed"texlive-harnon-cv-doc
+not-installed"texlive-harpoon
+not-installed"texlive-harpoon-doc
+not-installed"texlive-harvard
+not-installed"texlive-harvard-doc
+not-installed"texlive-harveyballs
+not-installed"texlive-harveyballs-doc
+not-installed"texlive-harvmac
+not-installed"texlive-harvmac-doc
+not-installed"texlive-hatching
+not-installed"texlive-hatching-doc
+not-installed"texlive-hausarbeit-jura
+not-installed"texlive-hausarbeit-jura-doc
+not-installed"texlive-havannah
+not-installed"texlive-havannah-doc
+not-installed"texlive-hc
+not-installed"texlive-hc-doc
+not-installed"texlive-he-she
+not-installed"texlive-he-she-doc
+not-installed"texlive-hecthese
+not-installed"texlive-hecthese-doc
+not-installed"texlive-helvetic
+not-installed"texlive-helvetic-fonts
+not-installed"texlive-hep
+not-installed"texlive-hep-doc
+not-installed"texlive-hepnames
+not-installed"texlive-hepnames-doc
+not-installed"texlive-hepparticles
+not-installed"texlive-hepparticles-doc
+not-installed"texlive-hepthesis
+not-installed"texlive-hepthesis-doc
+not-installed"texlive-hepunits
+not-installed"texlive-hepunits-doc
+not-installed"texlive-here
+not-installed"texlive-here-doc
+not-installed"texlive-heuristica
+not-installed"texlive-heuristica-doc
+not-installed"texlive-heuristica-fonts
+not-installed"texlive-hexgame
+not-installed"texlive-hexgame-doc
+not-installed"texlive-hf-tikz
+not-installed"texlive-hf-tikz-doc
+not-installed"texlive-hfbright
+not-installed"texlive-hfbright-doc
+not-installed"texlive-hfbright-fonts
+not-installed"texlive-hfoldsty
+not-installed"texlive-hfoldsty-doc
+not-installed"texlive-hhtensor
+not-installed"texlive-hhtensor-doc
+not-installed"texlive-histogr
+not-installed"texlive-histogr-doc
+not-installed"texlive-historische-zeitschrift
+not-installed"texlive-historische-zeitschrift-doc
+not-installed"texlive-hitec
+not-installed"texlive-hitec-doc
+not-installed"texlive-hithesis
+not-installed"texlive-hithesis-doc
+not-installed"texlive-hletter
+not-installed"texlive-hletter-doc
+not-installed"texlive-hlist
+not-installed"texlive-hlist-doc
+not-installed"texlive-hobby
+not-installed"texlive-hobby-doc
+not-installed"texlive-hobete
+not-installed"texlive-hobete-doc
+not-installed"texlive-hook-pre-commit-pkg
+not-installed"texlive-horoscop
+not-installed"texlive-horoscop-doc
+not-installed"texlive-hpsdiss
+not-installed"texlive-hpsdiss-doc
+not-installed"texlive-hrefhide
+not-installed"texlive-hrefhide-doc
+not-installed"texlive-hrlatex
+not-installed"texlive-hrlatex-doc
+not-installed"texlive-hulipsum
+not-installed"texlive-hulipsum-doc
+not-installed"texlive-hustthesis
+not-installed"texlive-hustthesis-doc
+not-installed"texlive-hvfloat
+not-installed"texlive-hvfloat-doc
+not-installed"texlive-hvindex
+not-installed"texlive-hvindex-doc
+not-installed"texlive-hypdvips
+not-installed"texlive-hypdvips-doc
+not-installed"texlive-hyper
+not-installed"texlive-hyper-doc
+not-installed"texlive-hyperbar
+not-installed"texlive-hyperbar-doc
+not-installed"texlive-hypernat
+not-installed"texlive-hypernat-doc
+not-installed"texlive-hyperref
+not-installed"texlive-hyperref-doc
+not-installed"texlive-hyperxmp
+not-installed"texlive-hyperxmp-doc
+not-installed"texlive-hyph-utf8
+not-installed"texlive-hyph-utf8-doc
+not-installed"texlive-hyphen-afrikaans
+not-installed"texlive-hyphen-ancientgreek
+not-installed"texlive-hyphen-arabic
+not-installed"texlive-hyphen-armenian
+not-installed"texlive-hyphen-base
+not-installed"texlive-hyphen-basque
+not-installed"texlive-hyphen-belarusian
+not-installed"texlive-hyphen-bulgarian
+not-installed"texlive-hyphen-catalan
+not-installed"texlive-hyphen-chinese
+not-installed"texlive-hyphen-churchslavonic
+not-installed"texlive-hyphen-coptic
+not-installed"texlive-hyphen-croatian
+not-installed"texlive-hyphen-czech
+not-installed"texlive-hyphen-danish
+not-installed"texlive-hyphen-dutch
+not-installed"texlive-hyphen-english
+not-installed"texlive-hyphen-esperanto
+not-installed"texlive-hyphen-estonian
+not-installed"texlive-hyphen-ethiopic
+not-installed"texlive-hyphen-farsi
+not-installed"texlive-hyphen-finnish
+not-installed"texlive-hyphen-french
+not-installed"texlive-hyphen-friulan
+not-installed"texlive-hyphen-galician
+not-installed"texlive-hyphen-georgian
+not-installed"texlive-hyphen-german
+not-installed"texlive-hyphen-greek
+not-installed"texlive-hyphen-greek-doc
+not-installed"texlive-hyphen-hungarian
+not-installed"texlive-hyphen-hungarian-doc
+not-installed"texlive-hyphen-icelandic
+not-installed"texlive-hyphen-indic
+not-installed"texlive-hyphen-indonesian
+not-installed"texlive-hyphen-interlingua
+not-installed"texlive-hyphen-irish
+not-installed"texlive-hyphen-italian
+not-installed"texlive-hyphen-kurmanji
+not-installed"texlive-hyphen-latin
+not-installed"texlive-hyphen-latvian
+not-installed"texlive-hyphen-lithuanian
+not-installed"texlive-hyphen-mongolian
+not-installed"texlive-hyphen-norwegian
+not-installed"texlive-hyphen-occitan
+not-installed"texlive-hyphen-piedmontese
+not-installed"texlive-hyphen-polish
+not-installed"texlive-hyphen-portuguese
+not-installed"texlive-hyphen-romanian
+not-installed"texlive-hyphen-romansh
+not-installed"texlive-hyphen-russian
+not-installed"texlive-hyphen-sanskrit
+not-installed"texlive-hyphen-sanskrit-doc
+not-installed"texlive-hyphen-serbian
+not-installed"texlive-hyphen-slovak
+not-installed"texlive-hyphen-slovenian
+not-installed"texlive-hyphen-spanish
+not-installed"texlive-hyphen-spanish-doc
+not-installed"texlive-hyphen-swedish
+not-installed"texlive-hyphen-thai
+not-installed"texlive-hyphen-turkish
+not-installed"texlive-hyphen-turkmen
+not-installed"texlive-hyphen-ukrainian
+not-installed"texlive-hyphen-uppersorbian
+not-installed"texlive-hyphen-welsh
+not-installed"texlive-hyphenat
+not-installed"texlive-hyphenat-doc
+not-installed"texlive-hyphenex
+not-installed"texlive-hyplain
+not-installed"texlive-hyplain-doc
+not-installed"texlive-ibycus-babel
+not-installed"texlive-ibycus-babel-doc
+not-installed"texlive-ibygrk
+not-installed"texlive-ibygrk-doc
+not-installed"texlive-ibygrk-fonts
+not-installed"texlive-icite
+not-installed"texlive-icite-doc
+not-installed"texlive-icsv
+not-installed"texlive-icsv-doc
+not-installed"texlive-identkey
+not-installed"texlive-identkey-doc
+not-installed"texlive-idxcmds
+not-installed"texlive-idxcmds-doc
+not-installed"texlive-idxlayout
+not-installed"texlive-idxlayout-doc
+not-installed"texlive-ieeepes
+not-installed"texlive-ieeepes-doc
+not-installed"texlive-ietfbibs
+not-installed"texlive-ifetex
+not-installed"texlive-ifetex-doc
+not-installed"texlive-iffont
+not-installed"texlive-iffont-doc
+not-installed"texlive-ifluatex
+not-installed"texlive-ifluatex-doc
+not-installed"texlive-ifmslide
+not-installed"texlive-ifmslide-doc
+not-installed"texlive-ifmtarg
+not-installed"texlive-ifmtarg-doc
+not-installed"texlive-ifnextok
+not-installed"texlive-ifnextok-doc
+not-installed"texlive-ifoddpage
+not-installed"texlive-ifoddpage-doc
+not-installed"texlive-ifplatform
+not-installed"texlive-ifplatform-doc
+not-installed"texlive-ifptex
+not-installed"texlive-ifptex-doc
+not-installed"texlive-ifsym
+not-installed"texlive-ifsym-doc
+not-installed"texlive-iftex
+not-installed"texlive-iftex-doc
+not-installed"texlive-ifthenx
+not-installed"texlive-ifthenx-doc
+not-installed"texlive-ifxetex
+not-installed"texlive-ifxetex-doc
+not-installed"texlive-ifxptex
+not-installed"texlive-ifxptex-doc
+not-installed"texlive-iitem
+not-installed"texlive-iitem-doc
+not-installed"texlive-ijmart
+not-installed"texlive-ijmart-doc
+not-installed"texlive-ijqc
+not-installed"texlive-ijqc-doc
+not-installed"texlive-ijsra
+not-installed"texlive-ijsra-doc
+not-installed"texlive-imac
+not-installed"texlive-imac-doc
+not-installed"texlive-image-gallery
+not-installed"texlive-image-gallery-doc
+not-installed"texlive-imakeidx
+not-installed"texlive-imakeidx-doc
+not-installed"texlive-imfellenglish
+not-installed"texlive-imfellenglish-doc
+not-installed"texlive-imfellenglish-fonts
+not-installed"texlive-impatient
+not-installed"texlive-impatient-cn
+not-installed"texlive-impatient-fr
+not-installed"texlive-impnattypo
+not-installed"texlive-impnattypo-doc
+not-installed"texlive-import
+not-installed"texlive-import-doc
+not-installed"texlive-imsproc
+not-installed"texlive-imsproc-doc
+not-installed"texlive-imtekda
+not-installed"texlive-imtekda-doc
+not-installed"texlive-incgraph
+not-installed"texlive-incgraph-doc
+not-installed"texlive-includernw
+not-installed"texlive-includernw-doc
+not-installed"texlive-inconsolata
+not-installed"texlive-inconsolata-doc
+not-installed"texlive-inconsolata-fonts
+not-installed"texlive-index
+not-installed"texlive-index-doc
+not-installed"texlive-indextools
+not-installed"texlive-indextools-doc
+not-installed"texlive-initials
+not-installed"texlive-initials-doc
+not-installed"texlive-initials-fonts
+not-installed"texlive-inline-images
+not-installed"texlive-inline-images-doc
+not-installed"texlive-inlinebib
+not-installed"texlive-inlinebib-doc
+not-installed"texlive-inlinedef
+not-installed"texlive-inlinedef-doc
+not-installed"texlive-inputtrc
+not-installed"texlive-inputtrc-doc
+not-installed"texlive-inriafonts
+not-installed"texlive-inriafonts-doc
+not-installed"texlive-inriafonts-fonts
+not-installed"texlive-insbox
+not-installed"texlive-insbox-doc
+not-installed"texlive-interactiveworkbook
+not-installed"texlive-interactiveworkbook-doc
+not-installed"texlive-interchar
+not-installed"texlive-interchar-doc
+not-installed"texlive-interfaces
+not-installed"texlive-interfaces-doc
+not-installed"texlive-interpreter
+not-installed"texlive-interpreter-doc
+not-installed"texlive-interval
+not-installed"texlive-interval-doc
+not-installed"texlive-intopdf
+not-installed"texlive-intopdf-doc
+not-installed"texlive-intro-scientific
+not-installed"texlive-inversepath
+not-installed"texlive-inversepath-doc
+not-installed"texlive-invoice
+not-installed"texlive-invoice-class
+not-installed"texlive-invoice-class-doc
+not-installed"texlive-invoice-doc
+not-installed"texlive-invoice2
+not-installed"texlive-invoice2-doc
+not-installed"texlive-iodhbwm
+not-installed"texlive-iodhbwm-doc
+not-installed"texlive-ionumbers
+not-installed"texlive-ionumbers-doc
+not-installed"texlive-iopart-num
+not-installed"texlive-iopart-num-doc
+not-installed"texlive-ipaex
+not-installed"texlive-ipaex-doc
+not-installed"texlive-ipaex-fonts
+not-installed"texlive-ipaex-type1
+not-installed"texlive-ipaex-type1-doc
+not-installed"texlive-ipaex-type1-fonts
+not-installed"texlive-iscram
+not-installed"texlive-iscram-doc
+not-installed"texlive-iso
+not-installed"texlive-iso-doc
+not-installed"texlive-iso10303
+not-installed"texlive-iso10303-doc
+not-installed"texlive-isodate
+not-installed"texlive-isodate-doc
+not-installed"texlive-isodoc
+not-installed"texlive-isodoc-doc
+not-installed"texlive-isomath
+not-installed"texlive-isomath-doc
+not-installed"texlive-isonums
+not-installed"texlive-isonums-doc
+not-installed"texlive-isopt
+not-installed"texlive-isopt-doc
+not-installed"texlive-isorot
+not-installed"texlive-isorot-doc
+not-installed"texlive-isotope
+not-installed"texlive-isotope-doc
+not-installed"texlive-issuulinks
+not-installed"texlive-issuulinks-doc
+not-installed"texlive-istgame
+not-installed"texlive-istgame-doc
+not-installed"texlive-itnumpar
+not-installed"texlive-itnumpar-doc
+not-installed"texlive-iwhdp
+not-installed"texlive-iwhdp-doc
+not-installed"texlive-iwona
+not-installed"texlive-iwona-doc
+not-installed"texlive-iwona-fonts
+not-installed"texlive-jablantile
+not-installed"texlive-jablantile-doc
+not-installed"texlive-jacow
+not-installed"texlive-jacow-doc
+not-installed"texlive-jadetex
+not-installed"texlive-jadetex-bin
+not-installed"texlive-jadetex-doc
+not-installed"texlive-jamtimes
+not-installed"texlive-jamtimes-doc
+not-installed"texlive-japanese-otf
+not-installed"texlive-japanese-otf-doc
+not-installed"texlive-japanese-otf-uptex
+not-installed"texlive-japanese-otf-uptex-doc
+not-installed"texlive-jfmutil
+not-installed"texlive-jfmutil-bin
+not-installed"texlive-jfmutil-doc
+not-installed"texlive-jigsaw
+not-installed"texlive-jigsaw-doc
+not-installed"texlive-jkmath
+not-installed"texlive-jkmath-doc
+not-installed"texlive-jknapltx
+not-installed"texlive-jknapltx-doc
+not-installed"texlive-jlabels
+not-installed"texlive-jlabels-doc
+not-installed"texlive-jlreq
+not-installed"texlive-jlreq-doc
+not-installed"texlive-jmlr
+not-installed"texlive-jmlr-doc
+not-installed"texlive-jmn
+not-installed"texlive-jmn-fonts
+not-installed"texlive-jneurosci
+not-installed"texlive-jneurosci-doc
+not-installed"texlive-jnuexam
+not-installed"texlive-jnuexam-doc
+not-installed"texlive-jpsj
+not-installed"texlive-jpsj-doc
+not-installed"texlive-js-misc
+not-installed"texlive-js-misc-doc
+not-installed"texlive-jsclasses
+not-installed"texlive-jsclasses-doc
+not-installed"texlive-jslectureplanner
+not-installed"texlive-jslectureplanner-doc
+not-installed"texlive-jumplines
+not-installed"texlive-jumplines-doc
+not-installed"texlive-junicode
+not-installed"texlive-junicode-doc
+not-installed"texlive-junicode-fonts
+not-installed"texlive-jura
+not-installed"texlive-jura-doc
+not-installed"texlive-juraabbrev
+not-installed"texlive-juraabbrev-doc
+not-installed"texlive-jurabib
+not-installed"texlive-jurabib-doc
+not-installed"texlive-juramisc
+not-installed"texlive-juramisc-doc
+not-installed"texlive-jurarsp
+not-installed"texlive-jurarsp-doc
+not-installed"texlive-jvlisting
+not-installed"texlive-jvlisting-doc
+not-installed"texlive-kalendarium
+not-installed"texlive-kalendarium-doc
+not-installed"texlive-kanaparser
+not-installed"texlive-kanaparser-doc
+not-installed"texlive-kantlipsum
+not-installed"texlive-kantlipsum-doc
+not-installed"texlive-karnaugh
+not-installed"texlive-karnaugh-doc
+not-installed"texlive-karnaugh-map
+not-installed"texlive-karnaugh-map-doc
+not-installed"texlive-karnaughmap
+not-installed"texlive-karnaughmap-doc
+not-installed"texlive-kastrup
+not-installed"texlive-kastrup-doc
+not-installed"texlive-kdgdocs
+not-installed"texlive-kdgdocs-doc
+not-installed"texlive-kerkis
+not-installed"texlive-kerkis-doc
+not-installed"texlive-kerkis-fonts
+not-installed"texlive-kerntest
+not-installed"texlive-kerntest-doc
+not-installed"texlive-ketcindy
+not-installed"texlive-ketcindy-bin
+not-installed"texlive-ketcindy-doc
+not-installed"texlive-keycommand
+not-installed"texlive-keycommand-doc
+not-installed"texlive-keyfloat
+not-installed"texlive-keyfloat-doc
+not-installed"texlive-keyindex
+not-installed"texlive-keyindex-doc
+not-installed"texlive-keyreader
+not-installed"texlive-keyreader-doc
+not-installed"texlive-keystroke
+not-installed"texlive-keystroke-doc
+not-installed"texlive-keyval2e
+not-installed"texlive-keyval2e-doc
+not-installed"texlive-keyvaltable
+not-installed"texlive-keyvaltable-doc
+not-installed"texlive-kix
+not-installed"texlive-kix-doc
+not-installed"texlive-kixfont
+not-installed"texlive-kixfont-doc
+not-installed"texlive-kluwer
+not-installed"texlive-kluwer-doc
+not-installed"texlive-knitting
+not-installed"texlive-knitting-doc
+not-installed"texlive-knitting-fonts
+not-installed"texlive-knittingpattern
+not-installed"texlive-knittingpattern-doc
+not-installed"texlive-knowledge
+not-installed"texlive-knowledge-doc
+not-installed"texlive-knuth
+not-installed"texlive-knuth-doc
+not-installed"texlive-knuth-lib
+not-installed"texlive-knuth-local
+not-installed"texlive-koma-moderncvclassic
+not-installed"texlive-koma-moderncvclassic-doc
+not-installed"texlive-koma-script
+not-installed"texlive-koma-script-doc
+not-installed"texlive-koma-script-examples
+not-installed"texlive-koma-script-sfs
+not-installed"texlive-koma-script-sfs-doc
+not-installed"texlive-komacv
+not-installed"texlive-komacv-doc
+not-installed"texlive-komacv-rg
+not-installed"texlive-komacv-rg-doc
+not-installed"texlive-kotex-oblivoir
+not-installed"texlive-kotex-oblivoir-doc
+not-installed"texlive-kotex-plain
+not-installed"texlive-kotex-plain-doc
+not-installed"texlive-kotex-utf
+not-installed"texlive-kotex-utf-doc
+not-installed"texlive-kotex-utils
+not-installed"texlive-kotex-utils-bin
+not-installed"texlive-kotex-utils-doc
+not-installed"texlive-kpathsea
+not-installed"texlive-kpathsea-bin
+not-installed"texlive-kpathsea-devel
+not-installed"texlive-kpathsea-doc
+not-installed"texlive-kpfonts
+not-installed"texlive-kpfonts-doc
+not-installed"texlive-kpfonts-fonts
+not-installed"texlive-ksfh_nat
+not-installed"texlive-ksp-thesis
+not-installed"texlive-ksp-thesis-doc
+not-installed"texlive-ktv-texdata
+not-installed"texlive-ktv-texdata-doc
+not-installed"texlive-ku-template
+not-installed"texlive-ku-template-doc
+not-installed"texlive-kurdishlipsum
+not-installed"texlive-kurdishlipsum-doc
+not-installed"texlive-kurier
+not-installed"texlive-kurier-doc
+not-installed"texlive-kurier-fonts
+not-installed"texlive-kvmap
+not-installed"texlive-kvmap-doc
+not-installed"texlive-l2picfaq
+not-installed"texlive-l2tabu
+not-installed"texlive-l2tabu-english
+not-installed"texlive-l2tabu-french
+not-installed"texlive-l2tabu-italian
+not-installed"texlive-l2tabu-spanish
+not-installed"texlive-l3build
+not-installed"texlive-l3build-bin
+not-installed"texlive-l3build-doc
+not-installed"texlive-l3experimental
+not-installed"texlive-l3experimental-doc
+not-installed"texlive-l3kernel
+not-installed"texlive-l3kernel-doc
+not-installed"texlive-l3packages
+not-installed"texlive-l3packages-doc
+not-installed"texlive-labbook
+not-installed"texlive-labbook-doc
+not-installed"texlive-labels
+not-installed"texlive-labels-doc
+not-installed"texlive-labelschanged
+not-installed"texlive-labelschanged-doc
+not-installed"texlive-labyrinth
+not-installed"texlive-labyrinth-doc
+not-installed"texlive-lacheck
+not-installed"texlive-lacheck-bin
+not-installed"texlive-ladder
+not-installed"texlive-ladder-doc
+not-installed"texlive-lambda
+not-installed"texlive-lambda-lists
+not-installed"texlive-lambda-lists-doc
+not-installed"texlive-langcode
+not-installed"texlive-langcode-doc
+not-installed"texlive-langsci
+not-installed"texlive-langsci-doc
+not-installed"texlive-lapdf
+not-installed"texlive-lapdf-doc
+not-installed"texlive-lastpackage
+not-installed"texlive-lastpackage-doc
+not-installed"texlive-lastpage
+not-installed"texlive-lastpage-doc
+not-installed"texlive-latex
+not-installed"texlive-latex-bib-ex
+not-installed"texlive-latex-bib2-ex
+not-installed"texlive-latex-bin
+not-installed"texlive-latex-bin-bin
+not-installed"texlive-latex-brochure
+not-installed"texlive-latex-course
+not-installed"texlive-latex-doc
+not-installed"texlive-latex-doc-ptr
+not-installed"texlive-latex-fonts
+not-installed"texlive-latex-fonts-doc
+not-installed"texlive-latex-git-log
+not-installed"texlive-latex-git-log-bin
+not-installed"texlive-latex-git-log-doc
+not-installed"texlive-latex-graphics-companion
+not-installed"texlive-latex-make
+not-installed"texlive-latex-make-doc
+not-installed"texlive-latex-mr
+not-installed"texlive-latex-notes-zh-cn
+not-installed"texlive-latex-papersize
+not-installed"texlive-latex-papersize-bin
+not-installed"texlive-latex-papersize-doc
+not-installed"texlive-latex-referenz
+not-installed"texlive-latex-refsheet
+not-installed"texlive-latex-tabellen
+not-installed"texlive-latex-tds
+not-installed"texlive-latex-tds-doc
+not-installed"texlive-latex-uni8
+not-installed"texlive-latex-uni8-doc
+not-installed"texlive-latex-veryshortguide
+not-installed"texlive-latex-via-exemplos
+not-installed"texlive-latex-web-companion
+not-installed"texlive-latex2e-help-texinfo
+not-installed"texlive-latex2e-help-texinfo-fr
+not-installed"texlive-latex2e-help-texinfo-spanish
+not-installed"texlive-latex2man
+not-installed"texlive-latex2man-bin
+not-installed"texlive-latex2man-doc
+not-installed"texlive-latex2nemeth
+not-installed"texlive-latex2nemeth-bin
+not-installed"texlive-latex2nemeth-doc
+not-installed"texlive-latex4musicians
+not-installed"texlive-latex4wp
+not-installed"texlive-latex4wp-it
+not-installed"texlive-latexbangla
+not-installed"texlive-latexbangla-doc
+not-installed"texlive-latexbug
+not-installed"texlive-latexbug-doc
+not-installed"texlive-latexcheat
+not-installed"texlive-latexcheat-de
+not-installed"texlive-latexcheat-esmx
+not-installed"texlive-latexcheat-ptbr
+not-installed"texlive-latexcolors
+not-installed"texlive-latexcolors-doc
+not-installed"texlive-latexconfig
+not-installed"texlive-latexcourse-rug
+not-installed"texlive-latexdemo
+not-installed"texlive-latexdemo-doc
+not-installed"texlive-latexdiff
+not-installed"texlive-latexdiff-bin
+not-installed"texlive-latexdiff-doc
+not-installed"texlive-latexfileinfo-pkgs
+not-installed"texlive-latexfileinfo-pkgs-doc
+not-installed"texlive-latexfileversion
+not-installed"texlive-latexfileversion-bin
+not-installed"texlive-latexfileversion-doc
+not-installed"texlive-latexgit
+not-installed"texlive-latexgit-doc
+not-installed"texlive-latexindent
+not-installed"texlive-latexindent-bin
+not-installed"texlive-latexindent-doc
+not-installed"texlive-latexmk
+not-installed"texlive-latexmk-bin
+not-installed"texlive-latexmk-doc
+not-installed"texlive-latexmp
+not-installed"texlive-latexmp-doc
+not-installed"texlive-latexpand
+not-installed"texlive-latexpand-bin
+not-installed"texlive-latexpand-doc
+not-installed"texlive-lato
+not-installed"texlive-lato-doc
+not-installed"texlive-lato-fonts
+not-installed"texlive-layaureo
+not-installed"texlive-layaureo-doc
+not-installed"texlive-layouts
+not-installed"texlive-layouts-doc
+not-installed"texlive-lazylist
+not-installed"texlive-lazylist-doc
+not-installed"texlive-lccaps
+not-installed"texlive-lccaps-doc
+not-installed"texlive-lcd
+not-installed"texlive-lcd-doc
+not-installed"texlive-lcdftypetools
+not-installed"texlive-lcdftypetools-bin
+not-installed"texlive-lcg
+not-installed"texlive-lcg-doc
+not-installed"texlive-lcyw
+not-installed"texlive-lcyw-doc
+not-installed"texlive-leading
+not-installed"texlive-leading-doc
+not-installed"texlive-leadsheets
+not-installed"texlive-leadsheets-doc
+not-installed"texlive-leaflet
+not-installed"texlive-leaflet-doc
+not-installed"texlive-lecturer
+not-installed"texlive-lecturer-doc
+not-installed"texlive-lectures
+not-installed"texlive-lectures-doc
+not-installed"texlive-ledmac
+not-installed"texlive-ledmac-doc
+not-installed"texlive-leftidx
+not-installed"texlive-leftidx-doc
+not-installed"texlive-leipzig
+not-installed"texlive-leipzig-doc
+not-installed"texlive-lengthconvert
+not-installed"texlive-lengthconvert-doc
+not-installed"texlive-lettre
+not-installed"texlive-lettre-doc
+not-installed"texlive-lettrine
+not-installed"texlive-lettrine-doc
+not-installed"texlive-levy
+not-installed"texlive-levy-doc
+not-installed"texlive-lewis
+not-installed"texlive-lewis-doc
+not-installed"texlive-lexikon
+not-installed"texlive-lexikon-doc
+not-installed"texlive-lexref
+not-installed"texlive-lexref-doc
+not-installed"texlive-lfb
+not-installed"texlive-lfb-doc
+not-installed"texlive-lgreek
+not-installed"texlive-lgreek-doc
+not-installed"texlive-lh
+not-installed"texlive-lh-doc
+not-installed"texlive-lhcyr
+not-installed"texlive-lhelp
+not-installed"texlive-lhelp-doc
+not-installed"texlive-libertine
+not-installed"texlive-libertine-doc
+not-installed"texlive-libertine-fonts
+not-installed"texlive-libertinegc
+not-installed"texlive-libertinegc-doc
+not-installed"texlive-libertinus
+not-installed"texlive-libertinus-doc
+not-installed"texlive-libertinus-fonts
+not-installed"texlive-libertinus-fonts-doc
+not-installed"texlive-libertinus-fonts-fonts
+not-installed"texlive-libertinus-otf
+not-installed"texlive-libertinus-otf-doc
+not-installed"texlive-libertinus-otf-fonts
+not-installed"texlive-libertinus-type1
+not-installed"texlive-libertinus-type1-doc
+not-installed"texlive-libertinus-type1-fonts
+not-installed"texlive-libertinust1math
+not-installed"texlive-libertinust1math-doc
+not-installed"texlive-libertinust1math-fonts
+not-installed"texlive-libgreek
+not-installed"texlive-libgreek-doc
+not-installed"texlive-librarian
+not-installed"texlive-librarian-doc
+not-installed"texlive-librebaskerville
+not-installed"texlive-librebaskerville-doc
+not-installed"texlive-librebaskerville-fonts
+not-installed"texlive-librebodoni
+not-installed"texlive-librebodoni-doc
+not-installed"texlive-librebodoni-fonts
+not-installed"texlive-librecaslon
+not-installed"texlive-librecaslon-doc
+not-installed"texlive-librecaslon-fonts
+not-installed"texlive-libris
+not-installed"texlive-libris-doc
+not-installed"texlive-libris-fonts
+not-installed"texlive-lilyglyphs
+not-installed"texlive-lilyglyphs-bin
+not-installed"texlive-lilyglyphs-doc
+not-installed"texlive-lilyglyphs-fonts
+not-installed"texlive-limap
+not-installed"texlive-limap-doc
+not-installed"texlive-limecv
+not-installed"texlive-limecv-doc
+not-installed"texlive-linearA
+not-installed"texlive-linearA-doc
+not-installed"texlive-linearA-fonts
+not-installed"texlive-linegoal
+not-installed"texlive-linegoal-doc
+not-installed"texlive-lineno
+not-installed"texlive-lineno-doc
+not-installed"texlive-ling-macros
+not-installed"texlive-ling-macros-doc
+not-installed"texlive-linguex
+not-installed"texlive-linguex-doc
+not-installed"texlive-linop
+not-installed"texlive-linop-doc
+not-installed"texlive-lion-msc
+not-installed"texlive-lion-msc-doc
+not-installed"texlive-lipsum
+not-installed"texlive-lipsum-doc
+not-installed"texlive-lisp-on-tex
+not-installed"texlive-lisp-on-tex-doc
+not-installed"texlive-listbib
+not-installed"texlive-listbib-bin
+not-installed"texlive-listbib-doc
+not-installed"texlive-listing
+not-installed"texlive-listing-doc
+not-installed"texlive-listings
+not-installed"texlive-listings-doc
+not-installed"texlive-listings-ext
+not-installed"texlive-listings-ext-bin
+not-installed"texlive-listings-ext-doc
+not-installed"texlive-listlbls
+not-installed"texlive-listlbls-doc
+not-installed"texlive-listliketab
+not-installed"texlive-listliketab-doc
+not-installed"texlive-listofitems
+not-installed"texlive-listofitems-doc
+not-installed"texlive-listofsymbols
+not-installed"texlive-listofsymbols-doc
+not-installed"texlive-lithuanian
+not-installed"texlive-lithuanian-doc
+not-installed"texlive-liturg
+not-installed"texlive-liturg-doc
+not-installed"texlive-lkproof
+not-installed"texlive-lkproof-doc
+not-installed"texlive-llncsconf
+not-installed"texlive-llncsconf-doc
+not-installed"texlive-lm
+not-installed"texlive-lm-doc
+installed"texlive-lm-fonts
+not-installed"texlive-lm-math
+not-installed"texlive-lm-math-doc
+not-installed"texlive-lm-math-fonts
+not-installed"texlive-lmake
+not-installed"texlive-lmake-doc
+not-installed"texlive-lni
+not-installed"texlive-lni-doc
+not-installed"texlive-lobster2
+not-installed"texlive-lobster2-doc
+not-installed"texlive-lobster2-fonts
+not-installed"texlive-locality
+not-installed"texlive-locality-doc
+not-installed"texlive-localloc
+not-installed"texlive-localloc-doc
+not-installed"texlive-logbox
+not-installed"texlive-logbox-doc
+not-installed"texlive-logical-markup-utils
+not-installed"texlive-logical-markup-utils-doc
+not-installed"texlive-logicproof
+not-installed"texlive-logicproof-doc
+not-installed"texlive-logicpuzzle
+not-installed"texlive-logicpuzzle-doc
+not-installed"texlive-logpap
+not-installed"texlive-logpap-doc
+not-installed"texlive-logreq
+not-installed"texlive-logreq-doc
+not-installed"texlive-lollipop
+not-installed"texlive-lollipop-bin
+not-installed"texlive-lollipop-doc
+not-installed"texlive-longdivision
+not-installed"texlive-longdivision-doc
+not-installed"texlive-longfbox
+not-installed"texlive-longfbox-doc
+not-installed"texlive-longfigure
+not-installed"texlive-longfigure-doc
+not-installed"texlive-longnamefilelist
+not-installed"texlive-longnamefilelist-doc
+not-installed"texlive-loops
+not-installed"texlive-loops-doc
+not-installed"texlive-lpform
+not-installed"texlive-lpform-doc
+not-installed"texlive-lpic
+not-installed"texlive-lpic-doc
+not-installed"texlive-lplfitch
+not-installed"texlive-lplfitch-doc
+not-installed"texlive-lps
+not-installed"texlive-lps-doc
+not-installed"texlive-lroundrect
+not-installed"texlive-lroundrect-doc
+not-installed"texlive-lsc
+not-installed"texlive-lsc-doc
+not-installed"texlive-lshort-bulgarian
+not-installed"texlive-lshort-chinese
+not-installed"texlive-lshort-czech
+not-installed"texlive-lshort-dutch
+not-installed"texlive-lshort-english
+not-installed"texlive-lshort-estonian
+not-installed"texlive-lshort-finnish
+not-installed"texlive-lshort-french
+not-installed"texlive-lshort-german
+not-installed"texlive-lshort-italian
+not-installed"texlive-lshort-japanese
+not-installed"texlive-lshort-korean
+not-installed"texlive-lshort-mongol
+not-installed"texlive-lshort-persian
+not-installed"texlive-lshort-polish
+not-installed"texlive-lshort-portuguese
+not-installed"texlive-lshort-russian
+not-installed"texlive-lshort-slovak
+not-installed"texlive-lshort-slovenian
+not-installed"texlive-lshort-spanish
+not-installed"texlive-lshort-thai
+not-installed"texlive-lshort-turkish
+not-installed"texlive-lshort-ukr
+not-installed"texlive-lshort-vietnamese
+not-installed"texlive-lstaddons
+not-installed"texlive-lstaddons-doc
+not-installed"texlive-lstbayes
+not-installed"texlive-lstbayes-doc
+not-installed"texlive-lstfiracode
+not-installed"texlive-lstfiracode-doc
+not-installed"texlive-lt3graph
+not-installed"texlive-lt3graph-doc
+not-installed"texlive-ltablex
+not-installed"texlive-ltablex-doc
+not-installed"texlive-ltabptch
+not-installed"texlive-ltabptch-doc
+not-installed"texlive-ltb2bib
+not-installed"texlive-ltb2bib-doc
+not-installed"texlive-ltxdockit
+not-installed"texlive-ltxdockit-doc
+not-installed"texlive-ltxfileinfo
+not-installed"texlive-ltxfileinfo-bin
+not-installed"texlive-ltxfileinfo-doc
+not-installed"texlive-ltxguidex
+not-installed"texlive-ltxguidex-doc
+not-installed"texlive-ltximg
+not-installed"texlive-ltximg-bin
+not-installed"texlive-ltximg-doc
+not-installed"texlive-ltxindex
+not-installed"texlive-ltxindex-doc
+not-installed"texlive-ltxkeys
+not-installed"texlive-ltxkeys-doc
+not-installed"texlive-ltxmisc
+not-installed"texlive-ltxnew
+not-installed"texlive-ltxnew-doc
+not-installed"texlive-ltxtools
+not-installed"texlive-ltxtools-doc
+not-installed"texlive-lua-alt-getopt
+not-installed"texlive-lua-alt-getopt-doc
+not-installed"texlive-lua-check-hyphen
+not-installed"texlive-lua-check-hyphen-doc
+not-installed"texlive-lua-visual-debug
+not-installed"texlive-lua-visual-debug-doc
+not-installed"texlive-lua2dox
+not-installed"texlive-lua2dox-bin
+not-installed"texlive-lua2dox-doc
+not-installed"texlive-luabibentry
+not-installed"texlive-luabibentry-doc
+not-installed"texlive-luabidi
+not-installed"texlive-luabidi-doc
+not-installed"texlive-luacode
+not-installed"texlive-luacode-doc
+not-installed"texlive-luahyphenrules
+not-installed"texlive-luahyphenrules-doc
+not-installed"texlive-luaimageembed
+not-installed"texlive-luaimageembed-doc
+not-installed"texlive-luaindex
+not-installed"texlive-luaindex-doc
+not-installed"texlive-luainputenc
+not-installed"texlive-luainputenc-doc
+not-installed"texlive-luaintro
+not-installed"texlive-lualatex-doc
+not-installed"texlive-lualatex-doc-de
+not-installed"texlive-lualatex-math
+not-installed"texlive-lualatex-math-doc
+not-installed"texlive-lualatex-truncate
+not-installed"texlive-lualatex-truncate-doc
+not-installed"texlive-lualibs
+not-installed"texlive-lualibs-doc
+not-installed"texlive-luamesh
+not-installed"texlive-luamesh-doc
+not-installed"texlive-luamplib
+not-installed"texlive-luamplib-doc
+not-installed"texlive-luaotfload
+not-installed"texlive-luaotfload-bin
+not-installed"texlive-luaotfload-doc
+not-installed"texlive-luapackageloader
+not-installed"texlive-luapackageloader-doc
+not-installed"texlive-luarandom
+not-installed"texlive-luarandom-doc
+not-installed"texlive-luasseq
+not-installed"texlive-luasseq-doc
+not-installed"texlive-luatex
+not-installed"texlive-luatex-bin
+not-installed"texlive-luatex-doc
+not-installed"texlive-luatex85
+not-installed"texlive-luatex85-doc
+not-installed"texlive-luatexbase
+not-installed"texlive-luatexbase-doc
+not-installed"texlive-luatexja
+not-installed"texlive-luatexja-doc
+not-installed"texlive-luatexko
+not-installed"texlive-luatexko-doc
+not-installed"texlive-luatextra
+not-installed"texlive-luatextra-doc
+not-installed"texlive-luatodonotes
+not-installed"texlive-luatodonotes-doc
+not-installed"texlive-luavlna
+not-installed"texlive-luavlna-doc
+not-installed"texlive-luaxml
+not-installed"texlive-luaxml-doc
+not-installed"texlive-lwarp
+not-installed"texlive-lwarp-bin
+not-installed"texlive-lwarp-doc
+not-installed"texlive-lxfonts
+not-installed"texlive-lxfonts-doc
+not-installed"texlive-lxfonts-fonts
+not-installed"texlive-ly1
+not-installed"texlive-ly1-doc
+not-installed"texlive-lyluatex
+not-installed"texlive-lyluatex-doc
+not-installed"texlive-m-tx
+not-installed"texlive-m-tx-bin
+not-installed"texlive-m-tx-doc
+not-installed"texlive-macros2e
+not-installed"texlive-macros2e-doc
+not-installed"texlive-macroswap
+not-installed"texlive-macroswap-doc
+not-installed"texlive-mafr
+not-installed"texlive-mafr-doc
+not-installed"texlive-magaz
+not-installed"texlive-magaz-doc
+not-installed"texlive-mailing
+not-installed"texlive-mailing-doc
+not-installed"texlive-mailmerge
+not-installed"texlive-mailmerge-doc
+not-installed"texlive-make4ht
+not-installed"texlive-make4ht-bin
+not-installed"texlive-make4ht-doc
+not-installed"texlive-makebarcode
+not-installed"texlive-makebarcode-doc
+not-installed"texlive-makebase
+not-installed"texlive-makebase-doc
+not-installed"texlive-makebox
+not-installed"texlive-makebox-doc
+not-installed"texlive-makecell
+not-installed"texlive-makecell-doc
+not-installed"texlive-makecirc
+not-installed"texlive-makecirc-doc
+not-installed"texlive-makecmds
+not-installed"texlive-makecmds-doc
+not-installed"texlive-makecookbook
+not-installed"texlive-makedtx
+not-installed"texlive-makedtx-bin
+not-installed"texlive-makedtx-doc
+not-installed"texlive-makeglos
+not-installed"texlive-makeglos-doc
+not-installed"texlive-makeindex
+not-installed"texlive-makeindex-bin
+not-installed"texlive-makeindex-doc
+not-installed"texlive-makeplot
+not-installed"texlive-makeplot-doc
+not-installed"texlive-maker
+not-installed"texlive-maker-doc
+not-installed"texlive-makeshape
+not-installed"texlive-makeshape-doc
+not-installed"texlive-mandi
+not-installed"texlive-mandi-doc
+not-installed"texlive-manfnt
+not-installed"texlive-manfnt-font
+not-installed"texlive-manfnt-font-fonts
+not-installed"texlive-manuscript
+not-installed"texlive-manuscript-doc
+not-installed"texlive-manyind
+not-installed"texlive-manyind-doc
+not-installed"texlive-margbib
+not-installed"texlive-margbib-doc
+not-installed"texlive-marginfit
+not-installed"texlive-marginfit-doc
+not-installed"texlive-marginfix
+not-installed"texlive-marginfix-doc
+not-installed"texlive-marginnote
+not-installed"texlive-marginnote-doc
+not-installed"texlive-markdown
+not-installed"texlive-markdown-doc
+not-installed"texlive-marvosym
+not-installed"texlive-marvosym-doc
+not-installed"texlive-marvosym-fonts
+not-installed"texlive-matc3
+not-installed"texlive-matc3-doc
+not-installed"texlive-matc3mem
+not-installed"texlive-matc3mem-doc
+not-installed"texlive-match_parens
+not-installed"texlive-match_parens-bin
+not-installed"texlive-match_parens-doc
+not-installed"texlive-math-e
+not-installed"texlive-math-into-latex-4
+not-installed"texlive-mathabx
+not-installed"texlive-mathabx-doc
+not-installed"texlive-mathabx-type1
+not-installed"texlive-mathabx-type1-doc
+not-installed"texlive-mathabx-type1-fonts
+not-installed"texlive-mathalfa
+not-installed"texlive-mathalfa-doc
+not-installed"texlive-mathastext
+not-installed"texlive-mathastext-doc
+not-installed"texlive-mathcomp
+not-installed"texlive-mathcomp-doc
+not-installed"texlive-mathdesign
+not-installed"texlive-mathdesign-doc
+not-installed"texlive-mathdesign-fonts
+not-installed"texlive-mathdots
+not-installed"texlive-mathdots-doc
+not-installed"texlive-mathexam
+not-installed"texlive-mathexam-doc
+not-installed"texlive-mathfam256
+not-installed"texlive-mathfam256-doc
+not-installed"texlive-mathfixs
+not-installed"texlive-mathfixs-doc
+not-installed"texlive-mathfont
+not-installed"texlive-mathfont-doc
+not-installed"texlive-mathpartir
+not-installed"texlive-mathpartir-doc
+not-installed"texlive-mathpazo
+not-installed"texlive-mathpazo-doc
+not-installed"texlive-mathpazo-fonts
+not-installed"texlive-mathpunctspace
+not-installed"texlive-mathpunctspace-doc
+not-installed"texlive-maths-symbols
+not-installed"texlive-mathspec
+not-installed"texlive-mathspec-doc
+not-installed"texlive-mathspic
+not-installed"texlive-mathspic-bin
+not-installed"texlive-mathspic-doc
+not-installed"texlive-mathtools
+not-installed"texlive-mathtools-doc
+not-installed"texlive-matlab-prettifier
+not-installed"texlive-matlab-prettifier-doc
+not-installed"texlive-mattens
+not-installed"texlive-mattens-doc
+not-installed"texlive-maybemath
+not-installed"texlive-maybemath-doc
+not-installed"texlive-mcaption
+not-installed"texlive-mcaption-doc
+not-installed"texlive-mceinleger
+not-installed"texlive-mceinleger-doc
+not-installed"texlive-mcexam
+not-installed"texlive-mcexam-doc
+not-installed"texlive-mcf2graph
+not-installed"texlive-mcf2graph-doc
+not-installed"texlive-mcite
+not-installed"texlive-mcite-doc
+not-installed"texlive-mciteplus
+not-installed"texlive-mciteplus-doc
+not-installed"texlive-mcmthesis
+not-installed"texlive-mcmthesis-doc
+not-installed"texlive-mdframed
+not-installed"texlive-mdframed-doc
+not-installed"texlive-mdputu
+not-installed"texlive-mdputu-doc
+not-installed"texlive-mdsymbol
+not-installed"texlive-mdsymbol-doc
+not-installed"texlive-mdsymbol-fonts
+not-installed"texlive-mdwtools
+not-installed"texlive-mdwtools-doc
+not-installed"texlive-media9
+not-installed"texlive-media9-doc
+not-installed"texlive-medstarbeamer
+not-installed"texlive-medstarbeamer-doc
+not-installed"texlive-meetingmins
+not-installed"texlive-meetingmins-doc
+not-installed"texlive-memdesign
+not-installed"texlive-memexsupp
+not-installed"texlive-memexsupp-doc
+not-installed"texlive-memoir
+not-installed"texlive-memoir-doc
+not-installed"texlive-memory
+not-installed"texlive-memory-doc
+not-installed"texlive-memorygraphs
+not-installed"texlive-memorygraphs-doc
+not-installed"texlive-mendex-doc
+not-installed"texlive-mendex-doc-doc
+not-installed"texlive-mensa-tex
+not-installed"texlive-mensa-tex-doc
+not-installed"texlive-mentis
+not-installed"texlive-mentis-doc
+not-installed"texlive-menu
+not-installed"texlive-menu-doc
+not-installed"texlive-menukeys
+not-installed"texlive-menukeys-doc
+not-installed"texlive-merriweather
+not-installed"texlive-merriweather-doc
+not-installed"texlive-merriweather-fonts
+not-installed"texlive-metafont
+not-installed"texlive-metafont-beginners
+not-installed"texlive-metafont-bin
+not-installed"texlive-metafont-doc
+not-installed"texlive-metago
+not-installed"texlive-metago-doc
+not-installed"texlive-metalogo
+not-installed"texlive-metalogo-doc
+not-installed"texlive-metalogox
+not-installed"texlive-metalogox-doc
+not-installed"texlive-metaobj
+not-installed"texlive-metaobj-doc
+not-installed"texlive-metaplot
+not-installed"texlive-metaplot-doc
+not-installed"texlive-metapost
+not-installed"texlive-metapost-bin
+not-installed"texlive-metapost-colorbrewer
+not-installed"texlive-metapost-colorbrewer-doc
+not-installed"texlive-metapost-doc
+not-installed"texlive-metapost-examples
+not-installed"texlive-metapost-fonts
+not-installed"texlive-metatex
+not-installed"texlive-metatex-doc
+not-installed"texlive-metatype1
+not-installed"texlive-metauml
+not-installed"texlive-metauml-doc
+not-installed"texlive-method
+not-installed"texlive-method-doc
+not-installed"texlive-metre
+not-installed"texlive-metre-doc
+not-installed"texlive-metrix
+not-installed"texlive-metrix-doc
+not-installed"texlive-mex
+not-installed"texlive-mex-bin
+not-installed"texlive-mex-doc
+not-installed"texlive-mf2pt1
+not-installed"texlive-mf2pt1-bin
+not-installed"texlive-mf2pt1-doc
+not-installed"texlive-mfirstuc
+not-installed"texlive-mfirstuc-doc
+not-installed"texlive-mflogo
+not-installed"texlive-mflogo-doc
+not-installed"texlive-mflogo-font
+not-installed"texlive-mflogo-font-doc
+not-installed"texlive-mflogo-font-fonts
+not-installed"texlive-mflua
+not-installed"texlive-mflua-bin
+not-installed"texlive-mfnfss
+not-installed"texlive-mfnfss-doc
+not-installed"texlive-mfpic
+not-installed"texlive-mfpic-doc
+not-installed"texlive-mfpic4ode
+not-installed"texlive-mfpic4ode-doc
+not-installed"texlive-mftinc
+not-installed"texlive-mftinc-doc
+not-installed"texlive-mfware
+not-installed"texlive-mfware-bin
+not-installed"texlive-mfware-doc
+not-installed"texlive-mgltex
+not-installed"texlive-mgltex-doc
+not-installed"texlive-mhchem
+not-installed"texlive-mhchem-doc
+not-installed"texlive-mhequ
+not-installed"texlive-mhequ-doc
+not-installed"texlive-mi-solns
+not-installed"texlive-mi-solns-doc
+not-installed"texlive-miama
+not-installed"texlive-miama-doc
+not-installed"texlive-miama-fonts
+not-installed"texlive-microtype
+not-installed"texlive-microtype-de
+not-installed"texlive-microtype-doc
+not-installed"texlive-midnight
+not-installed"texlive-midnight-doc
+not-installed"texlive-midpage
+not-installed"texlive-midpage-doc
+not-installed"texlive-miller
+not-installed"texlive-miller-doc
+not-installed"texlive-milog
+not-installed"texlive-milog-doc
+not-installed"texlive-milsymb
+not-installed"texlive-milsymb-doc
+not-installed"texlive-minibox
+not-installed"texlive-minibox-doc
+not-installed"texlive-minidocument
+not-installed"texlive-minidocument-doc
+not-installed"texlive-minifp
+not-installed"texlive-minifp-doc
+not-installed"texlive-minipage-marginpar
+not-installed"texlive-minipage-marginpar-doc
+not-installed"texlive-miniplot
+not-installed"texlive-miniplot-doc
+not-installed"texlive-minitoc
+not-installed"texlive-minitoc-doc
+not-installed"texlive-minorrevision
+not-installed"texlive-minorrevision-doc
+not-installed"texlive-minted
+not-installed"texlive-minted-doc
+not-installed"texlive-mintspirit
+not-installed"texlive-mintspirit-doc
+not-installed"texlive-mintspirit-fonts
+not-installed"texlive-minutes
+not-installed"texlive-minutes-doc
+not-installed"texlive-missaali
+not-installed"texlive-missaali-doc
+not-installed"texlive-missaali-fonts
+not-installed"texlive-mkgrkindex
+not-installed"texlive-mkgrkindex-bin
+not-installed"texlive-mkgrkindex-doc
+not-installed"texlive-mkjobtexmf
+not-installed"texlive-mkjobtexmf-bin
+not-installed"texlive-mkjobtexmf-doc
+not-installed"texlive-mkpattern
+not-installed"texlive-mkpattern-doc
+not-installed"texlive-mkpic
+not-installed"texlive-mkpic-bin
+not-installed"texlive-mkpic-doc
+not-installed"texlive-mla-paper
+not-installed"texlive-mla-paper-doc
+not-installed"texlive-mlist
+not-installed"texlive-mlist-doc
+not-installed"texlive-mltex
+not-installed"texlive-mltex-bin
+not-installed"texlive-mltex-doc
+not-installed"texlive-mmap
+not-installed"texlive-mmap-doc
+not-installed"texlive-mnotes
+not-installed"texlive-mnotes-doc
+not-installed"texlive-mnras
+not-installed"texlive-mnras-doc
+not-installed"texlive-mnsymbol
+not-installed"texlive-mnsymbol-doc
+not-installed"texlive-mnsymbol-fonts
+not-installed"texlive-modeles-factures-belges-assocs
+not-installed"texlive-modeles-factures-belges-assocs-doc
+not-installed"texlive-moderncv
+not-installed"texlive-moderncv-doc
+not-installed"texlive-modernposter
+not-installed"texlive-modernposter-doc
+not-installed"texlive-moderntimeline
+not-installed"texlive-moderntimeline-doc
+not-installed"texlive-modiagram
+not-installed"texlive-modiagram-doc
+not-installed"texlive-modref
+not-installed"texlive-modref-doc
+not-installed"texlive-modroman
+not-installed"texlive-modroman-doc
+not-installed"texlive-modular
+not-installed"texlive-modular-doc
+not-installed"texlive-modulus
+not-installed"texlive-modulus-doc
+not-installed"texlive-mongolian-babel
+not-installed"texlive-mongolian-babel-doc
+not-installed"texlive-monofill
+not-installed"texlive-monofill-doc
+not-installed"texlive-montex
+not-installed"texlive-montex-doc
+not-installed"texlive-montex-fonts
+not-installed"texlive-montserrat
+not-installed"texlive-montserrat-doc
+not-installed"texlive-montserrat-fonts
+not-installed"texlive-moodle
+not-installed"texlive-moodle-doc
+not-installed"texlive-moreenum
+not-installed"texlive-moreenum-doc
+not-installed"texlive-morefloats
+not-installed"texlive-morefloats-doc
+not-installed"texlive-morehype
+not-installed"texlive-morehype-doc
+not-installed"texlive-moresize
+not-installed"texlive-moresize-doc
+not-installed"texlive-moreverb
+not-installed"texlive-moreverb-doc
+not-installed"texlive-morewrites
+not-installed"texlive-morewrites-doc
+not-installed"texlive-morisawa
+not-installed"texlive-morisawa-doc
+not-installed"texlive-movie15
+not-installed"texlive-movie15-doc
+not-installed"texlive-mp3d
+not-installed"texlive-mp3d-doc
+not-installed"texlive-mparhack
+not-installed"texlive-mparhack-doc
+not-installed"texlive-mparrows
+not-installed"texlive-mparrows-doc
+not-installed"texlive-mpattern
+not-installed"texlive-mpattern-doc
+not-installed"texlive-mpcolornames
+not-installed"texlive-mpcolornames-doc
+not-installed"texlive-mpgraphics
+not-installed"texlive-mpgraphics-doc
+not-installed"texlive-mpman-ru
+not-installed"texlive-mpostinl
+not-installed"texlive-mpostinl-doc
+not-installed"texlive-mptopdf
+not-installed"texlive-mptopdf-bin
+not-installed"texlive-mptopdf-doc
+not-installed"texlive-mptrees
+not-installed"texlive-mptrees-doc
+not-installed"texlive-ms
+not-installed"texlive-ms-doc
+not-installed"texlive-msc
+not-installed"texlive-msc-doc
+not-installed"texlive-msg
+not-installed"texlive-msg-doc
+not-installed"texlive-mslapa
+not-installed"texlive-mslapa-doc
+not-installed"texlive-msu-thesis
+not-installed"texlive-msu-thesis-doc
+not-installed"texlive-mtgreek
+not-installed"texlive-mtgreek-doc
+not-installed"texlive-mucproc
+not-installed"texlive-mucproc-doc
+not-installed"texlive-mugsthesis
+not-installed"texlive-mugsthesis-doc
+not-installed"texlive-multenum
+not-installed"texlive-multenum-doc
+not-installed"texlive-multiaudience
+not-installed"texlive-multiaudience-doc
+not-installed"texlive-multibbl
+not-installed"texlive-multibbl-doc
+not-installed"texlive-multibib
+not-installed"texlive-multibib-doc
+not-installed"texlive-multibibliography
+not-installed"texlive-multibibliography-bin
+not-installed"texlive-multibibliography-doc
+not-installed"texlive-multicap
+not-installed"texlive-multicap-doc
+not-installed"texlive-multicolrule
+not-installed"texlive-multicolrule-doc
+not-installed"texlive-multidef
+not-installed"texlive-multidef-doc
+not-installed"texlive-multido
+not-installed"texlive-multido-doc
+not-installed"texlive-multienv
+not-installed"texlive-multienv-doc
+not-installed"texlive-multiexpand
+not-installed"texlive-multiexpand-doc
+not-installed"texlive-multilang
+not-installed"texlive-multilang-doc
+not-installed"texlive-multiobjective
+not-installed"texlive-multiobjective-doc
+not-installed"texlive-multirow
+not-installed"texlive-multirow-doc
+not-installed"texlive-munich
+not-installed"texlive-munich-doc
+not-installed"texlive-musicography
+not-installed"texlive-musicography-doc
+not-installed"texlive-musikui
+not-installed"texlive-musikui-doc
+not-installed"texlive-musixguit
+not-installed"texlive-musixguit-doc
+not-installed"texlive-musixtex
+not-installed"texlive-musixtex-bin
+not-installed"texlive-musixtex-doc
+not-installed"texlive-musixtex-fonts
+not-installed"texlive-musixtex-fonts-doc
+not-installed"texlive-musixtex-fonts-fonts
+not-installed"texlive-musixtnt
+not-installed"texlive-musixtnt-bin
+not-installed"texlive-musixtnt-doc
+not-installed"texlive-musuos
+not-installed"texlive-musuos-doc
+not-installed"texlive-muthesis
+not-installed"texlive-muthesis-doc
+not-installed"texlive-mversion
+not-installed"texlive-mversion-doc
+not-installed"texlive-mwcls
+not-installed"texlive-mwcls-doc
+not-installed"texlive-mwe
+not-installed"texlive-mwe-doc
+not-installed"texlive-mweights
+not-installed"texlive-mweights-doc
+not-installed"texlive-mxedruli
+not-installed"texlive-mxedruli-doc
+not-installed"texlive-mxedruli-fonts
+not-installed"texlive-mychemistry
+not-installed"texlive-mychemistry-doc
+not-installed"texlive-mycv
+not-installed"texlive-mycv-doc
+not-installed"texlive-mylatexformat
+not-installed"texlive-mylatexformat-doc
+not-installed"texlive-mynsfc
+not-installed"texlive-mynsfc-doc
+not-installed"texlive-na-box
+not-installed"texlive-na-box-doc
+not-installed"texlive-na-position
+not-installed"texlive-na-position-doc
+not-installed"texlive-nag
+not-installed"texlive-nag-doc
+not-installed"texlive-nameauth
+not-installed"texlive-nameauth-doc
+not-installed"texlive-namespc
+not-installed"texlive-namespc-doc
+not-installed"texlive-nanumtype1
+not-installed"texlive-nanumtype1-doc
+not-installed"texlive-nanumtype1-fonts
+not-installed"texlive-nar
+not-installed"texlive-natbib
+not-installed"texlive-natbib-doc
+not-installed"texlive-natded
+not-installed"texlive-natded-doc
+not-installed"texlive-nath
+not-installed"texlive-nath-doc
+not-installed"texlive-nature
+not-installed"texlive-nature-doc
+not-installed"texlive-navigator
+not-installed"texlive-navigator-doc
+not-installed"texlive-navydocs
+not-installed"texlive-navydocs-doc
+not-installed"texlive-ncclatex
+not-installed"texlive-ncclatex-doc
+not-installed"texlive-ncctools
+not-installed"texlive-ncctools-doc
+not-installed"texlive-ncntrsbk
+not-installed"texlive-ncntrsbk-fonts
+not-installed"texlive-nddiss
+not-installed"texlive-nddiss-doc
+not-installed"texlive-ndsu-thesis
+not-installed"texlive-ndsu-thesis-doc
+not-installed"texlive-needspace
+not-installed"texlive-needspace-doc
+not-installed"texlive-nestquot
+not-installed"texlive-neuralnetwork
+not-installed"texlive-neuralnetwork-doc
+not-installed"texlive-nevelok
+not-installed"texlive-nevelok-doc
+not-installed"texlive-newcommand
+not-installed"texlive-newenviron
+not-installed"texlive-newenviron-doc
+not-installed"texlive-newfile
+not-installed"texlive-newfile-doc
+not-installed"texlive-newlfm
+not-installed"texlive-newlfm-doc
+not-installed"texlive-newpx
+not-installed"texlive-newpx-doc
+not-installed"texlive-newpx-fonts
+not-installed"texlive-newsletr
+not-installed"texlive-newsletr-doc
+not-installed"texlive-newspaper
+not-installed"texlive-newspaper-doc
+not-installed"texlive-newtx
+not-installed"texlive-newtx-doc
+not-installed"texlive-newtx-fonts
+not-installed"texlive-newtxsf
+not-installed"texlive-newtxsf-doc
+not-installed"texlive-newtxsf-fonts
+not-installed"texlive-newtxtt
+not-installed"texlive-newtxtt-doc
+not-installed"texlive-newtxtt-fonts
+not-installed"texlive-newunicodechar
+not-installed"texlive-newunicodechar-doc
+not-installed"texlive-newvbtm
+not-installed"texlive-newvbtm-doc
+not-installed"texlive-newverbs
+not-installed"texlive-newverbs-doc
+not-installed"texlive-nextpage
+not-installed"texlive-nfssext-cfr
+not-installed"texlive-nfssext-cfr-doc
+not-installed"texlive-nicefilelist
+not-installed"texlive-nicefilelist-doc
+not-installed"texlive-niceframe
+not-installed"texlive-niceframe-doc
+not-installed"texlive-niceframe-type1
+not-installed"texlive-niceframe-type1-doc
+not-installed"texlive-niceframe-type1-fonts
+not-installed"texlive-nicematrix
+not-installed"texlive-nicematrix-doc
+not-installed"texlive-nicetext
+not-installed"texlive-nicetext-doc
+not-installed"texlive-nidanfloat
+not-installed"texlive-nidanfloat-doc
+not-installed"texlive-nih
+not-installed"texlive-nih-doc
+not-installed"texlive-nihbiosketch
+not-installed"texlive-nihbiosketch-doc
+not-installed"texlive-nimbus15
+not-installed"texlive-nimbus15-doc
+not-installed"texlive-nimbus15-fonts
+not-installed"texlive-njurepo
+not-installed"texlive-njurepo-doc
+not-installed"texlive-nkarta
+not-installed"texlive-nkarta-doc
+not-installed"texlive-nlctdoc
+not-installed"texlive-nlctdoc-doc
+not-installed"texlive-nmbib
+not-installed"texlive-nmbib-doc
+not-installed"texlive-noconflict
+not-installed"texlive-noconflict-doc
+not-installed"texlive-nodetree
+not-installed"texlive-nodetree-doc
+not-installed"texlive-noindentafter
+not-installed"texlive-noindentafter-doc
+not-installed"texlive-noitcrul
+not-installed"texlive-noitcrul-doc
+not-installed"texlive-nolbreaks
+not-installed"texlive-nolbreaks-doc
+not-installed"texlive-nomencl
+not-installed"texlive-nomencl-doc
+not-installed"texlive-nomentbl
+not-installed"texlive-nomentbl-doc
+not-installed"texlive-nonfloat
+not-installed"texlive-nonfloat-doc
+not-installed"texlive-nonumonpart
+not-installed"texlive-nonumonpart-doc
+not-installed"texlive-nopageno
+not-installed"texlive-nopageno-doc
+not-installed"texlive-norasi-c90
+not-installed"texlive-normalcolor
+not-installed"texlive-normalcolor-doc
+not-installed"texlive-nostarch
+not-installed"texlive-nostarch-doc
+not-installed"texlive-notes
+not-installed"texlive-notes-doc
+not-installed"texlive-notes2bib
+not-installed"texlive-notes2bib-doc
+not-installed"texlive-notespages
+not-installed"texlive-notespages-doc
+not-installed"texlive-notestex
+not-installed"texlive-notestex-doc
+not-installed"texlive-notex-bst
+not-installed"texlive-noto
+not-installed"texlive-noto-doc
+not-installed"texlive-noto-fonts
+not-installed"texlive-notoccite
+not-installed"texlive-notoccite-doc
+not-installed"texlive-novel
+not-installed"texlive-novel-doc
+not-installed"texlive-novel-fonts
+not-installed"texlive-nowidow
+not-installed"texlive-nowidow-doc
+not-installed"texlive-nox
+not-installed"texlive-nox-doc
+not-installed"texlive-npp-for-context
+not-installed"texlive-nrc
+not-installed"texlive-nrc-doc
+not-installed"texlive-ntgclass
+not-installed"texlive-ntgclass-doc
+not-installed"texlive-ntheorem
+not-installed"texlive-ntheorem-doc
+not-installed"texlive-ntheorem-vn
+not-installed"texlive-nuc
+not-installed"texlive-nuc-doc
+not-installed"texlive-nucleardata
+not-installed"texlive-nucleardata-doc
+not-installed"texlive-numberedblock
+not-installed"texlive-numberedblock-doc
+not-installed"texlive-numericplots
+not-installed"texlive-numericplots-doc
+not-installed"texlive-numname
+not-installed"texlive-numname-doc
+not-installed"texlive-numnameru
+not-installed"texlive-numnameru-doc
+not-installed"texlive-numprint
+not-installed"texlive-numprint-doc
+not-installed"texlive-numspell
+not-installed"texlive-numspell-doc
+not-installed"texlive-nwejm
+not-installed"texlive-nwejm-doc
+not-installed"texlive-oberdiek
+not-installed"texlive-oberdiek-doc
+not-installed"texlive-objectz
+not-installed"texlive-objectz-doc
+not-installed"texlive-obnov
+not-installed"texlive-obnov-doc
+not-installed"texlive-ocg-p
+not-installed"texlive-ocg-p-doc
+not-installed"texlive-ocgx
+not-installed"texlive-ocgx-doc
+not-installed"texlive-ocgx2
+not-installed"texlive-ocgx2-doc
+not-installed"texlive-ocherokee
+not-installed"texlive-ocherokee-doc
+not-installed"texlive-ocherokee-fonts
+not-installed"texlive-ocr-b
+not-installed"texlive-ocr-b-doc
+not-installed"texlive-ocr-b-outline
+not-installed"texlive-ocr-b-outline-doc
+not-installed"texlive-ocr-b-outline-fonts
+not-installed"texlive-ocr-latex
+not-installed"texlive-ocr-latex-doc
+not-installed"texlive-octave
+not-installed"texlive-octave-doc
+not-installed"texlive-octavo
+not-installed"texlive-octavo-doc
+not-installed"texlive-odsfile
+not-installed"texlive-odsfile-doc
+not-installed"texlive-ofs
+not-installed"texlive-ofs-doc
+not-installed"texlive-ogham
+not-installed"texlive-ogham-doc
+not-installed"texlive-oinuit
+not-installed"texlive-oinuit-doc
+not-installed"texlive-oinuit-fonts
+not-installed"texlive-old-arrows
+not-installed"texlive-old-arrows-doc
+not-installed"texlive-old-arrows-fonts
+not-installed"texlive-oldlatin
+not-installed"texlive-oldlatin-doc
+not-installed"texlive-oldstandard
+not-installed"texlive-oldstandard-doc
+not-installed"texlive-oldstandard-fonts
+not-installed"texlive-oldstyle
+not-installed"texlive-oldstyle-doc
+not-installed"texlive-olsak-misc
+not-installed"texlive-olsak-misc-doc
+not-installed"texlive-omega
+not-installed"texlive-omega-doc
+not-installed"texlive-omega-fonts
+not-installed"texlive-omegaware
+not-installed"texlive-omegaware-bin
+not-installed"texlive-onedown
+not-installed"texlive-onedown-doc
+not-installed"texlive-onlyamsmath
+not-installed"texlive-onlyamsmath-doc
+not-installed"texlive-onrannual
+not-installed"texlive-onrannual-doc
+not-installed"texlive-opcit
+not-installed"texlive-opcit-doc
+not-installed"texlive-opensans
+not-installed"texlive-opensans-doc
+not-installed"texlive-opensans-fonts
+not-installed"texlive-oplotsymbl
+not-installed"texlive-oplotsymbl-doc
+not-installed"texlive-opteng
+not-installed"texlive-opteng-doc
+not-installed"texlive-optidef
+not-installed"texlive-optidef-doc
+not-installed"texlive-optional
+not-installed"texlive-optional-doc
+not-installed"texlive-options
+not-installed"texlive-options-doc
+not-installed"texlive-ordinalpt
+not-installed"texlive-ordinalpt-doc
+not-installed"texlive-orkhun
+not-installed"texlive-orkhun-doc
+not-installed"texlive-oscola
+not-installed"texlive-oscola-doc
+not-installed"texlive-ot-tableau
+not-installed"texlive-ot-tableau-doc
+not-installed"texlive-othello
+not-installed"texlive-othello-doc
+not-installed"texlive-othelloboard
+not-installed"texlive-othelloboard-doc
+not-installed"texlive-otibet
+not-installed"texlive-otibet-doc
+not-installed"texlive-oubraces
+not-installed"texlive-oubraces-doc
+not-installed"texlive-outline
+not-installed"texlive-outline-doc
+not-installed"texlive-outliner
+not-installed"texlive-outliner-doc
+not-installed"texlive-outlines
+not-installed"texlive-outlines-doc
+not-installed"texlive-outlining
+not-installed"texlive-outlining-doc
+not-installed"texlive-overlays
+not-installed"texlive-overlays-doc
+not-installed"texlive-overlock
+not-installed"texlive-overlock-doc
+not-installed"texlive-overlock-fonts
+not-installed"texlive-overpic
+not-installed"texlive-overpic-doc
+not-installed"texlive-pacioli
+not-installed"texlive-pacioli-doc
+not-installed"texlive-padauk
+not-installed"texlive-padauk-doc
+not-installed"texlive-padauk-fonts
+not-installed"texlive-padcount
+not-installed"texlive-padcount-doc
+not-installed"texlive-pagecolor
+not-installed"texlive-pagecolor-doc
+not-installed"texlive-pagecont
+not-installed"texlive-pagecont-doc
+not-installed"texlive-pagenote
+not-installed"texlive-pagenote-doc
+not-installed"texlive-pagerange
+not-installed"texlive-pagerange-doc
+not-installed"texlive-pageslts
+not-installed"texlive-pageslts-doc
+not-installed"texlive-palatino
+not-installed"texlive-palatino-fonts
+not-installed"texlive-paper
+not-installed"texlive-paper-doc
+not-installed"texlive-papercdcase
+not-installed"texlive-papercdcase-doc
+not-installed"texlive-papermas
+not-installed"texlive-papermas-doc
+not-installed"texlive-papertex
+not-installed"texlive-papertex-doc
+not-installed"texlive-paracol
+not-installed"texlive-paracol-doc
+not-installed"texlive-parades
+not-installed"texlive-parades-doc
+not-installed"texlive-paralist
+not-installed"texlive-paralist-doc
+not-installed"texlive-parallel
+not-installed"texlive-parallel-doc
+not-installed"texlive-paratype
+not-installed"texlive-paratype-doc
+not-installed"texlive-paratype-fonts
+not-installed"texlive-paresse
+not-installed"texlive-paresse-doc
+not-installed"texlive-parnotes
+not-installed"texlive-parnotes-doc
+not-installed"texlive-parrun
+not-installed"texlive-parrun-doc
+not-installed"texlive-parselines
+not-installed"texlive-parselines-doc
+not-installed"texlive-parskip
+not-installed"texlive-parskip-doc
+not-installed"texlive-pas-cours
+not-installed"texlive-pas-cours-doc
+not-installed"texlive-pas-crosswords
+not-installed"texlive-pas-crosswords-doc
+not-installed"texlive-pas-cv
+not-installed"texlive-pas-cv-doc
+not-installed"texlive-pas-tableur
+not-installed"texlive-pas-tableur-doc
+not-installed"texlive-passivetex
+not-installed"texlive-patch
+not-installed"texlive-patchcmd
+not-installed"texlive-patchcmd-doc
+not-installed"texlive-patgen
+not-installed"texlive-patgen-bin
+not-installed"texlive-patgen2-tutorial
+not-installed"texlive-path
+not-installed"texlive-path-doc
+not-installed"texlive-pauldoc
+not-installed"texlive-pauldoc-doc
+not-installed"texlive-pawpict
+not-installed"texlive-pawpict-doc
+not-installed"texlive-pax
+not-installed"texlive-pax-bin
+not-installed"texlive-pax-doc
+not-installed"texlive-pb-diagram
+not-installed"texlive-pb-diagram-doc
+not-installed"texlive-pbibtex-base
+not-installed"texlive-pbibtex-base-doc
+not-installed"texlive-pbox
+not-installed"texlive-pbox-doc
+not-installed"texlive-pbsheet
+not-installed"texlive-pbsheet-doc
+not-installed"texlive-pdf-trans
+not-installed"texlive-pdf-trans-doc
+not-installed"texlive-pdf14
+not-installed"texlive-pdf14-doc
+not-installed"texlive-pdfbook2
+not-installed"texlive-pdfbook2-bin
+not-installed"texlive-pdfbook2-doc
+not-installed"texlive-pdfcomment
+not-installed"texlive-pdfcomment-doc
+not-installed"texlive-pdfcprot
+not-installed"texlive-pdfcprot-doc
+not-installed"texlive-pdfcrop
+not-installed"texlive-pdfcrop-bin
+not-installed"texlive-pdfcrop-doc
+not-installed"texlive-pdfjam
+not-installed"texlive-pdfjam-bin
+not-installed"texlive-pdfjam-doc
+not-installed"texlive-pdflatexpicscale
+not-installed"texlive-pdflatexpicscale-bin
+not-installed"texlive-pdflatexpicscale-doc
+not-installed"texlive-pdfmarginpar
+not-installed"texlive-pdfmarginpar-doc
+not-installed"texlive-pdfoverlay
+not-installed"texlive-pdfoverlay-doc
+not-installed"texlive-pdfpagediff
+not-installed"texlive-pdfpagediff-doc
+not-installed"texlive-pdfpages
+not-installed"texlive-pdfpages-doc
+not-installed"texlive-pdfpc-movie
+not-installed"texlive-pdfpc-movie-doc
+not-installed"texlive-pdfprivacy
+not-installed"texlive-pdfprivacy-doc
+not-installed"texlive-pdfreview
+not-installed"texlive-pdfreview-doc
+not-installed"texlive-pdfscreen
+not-installed"texlive-pdfscreen-doc
+not-installed"texlive-pdfslide
+not-installed"texlive-pdfslide-doc
+not-installed"texlive-pdfsync
+not-installed"texlive-pdfsync-doc
+not-installed"texlive-pdftex
+not-installed"texlive-pdftex-bin
+not-installed"texlive-pdftex-doc
+not-installed"texlive-pdftex-fonts
+not-installed"texlive-pdftex-quiet
+not-installed"texlive-pdftex-quiet-bin
+not-installed"texlive-pdftex-quiet-doc
+not-installed"texlive-pdftools
+not-installed"texlive-pdftools-bin
+not-installed"texlive-pdftools-doc
+not-installed"texlive-pdftricks
+not-installed"texlive-pdftricks-doc
+not-installed"texlive-pdftricks2
+not-installed"texlive-pdftricks2-doc
+not-installed"texlive-pdfwin
+not-installed"texlive-pdfwin-doc
+not-installed"texlive-pdfx
+not-installed"texlive-pdfx-doc
+not-installed"texlive-pdfxup
+not-installed"texlive-pdfxup-bin
+not-installed"texlive-pdfxup-doc
+not-installed"texlive-pecha
+not-installed"texlive-pecha-doc
+not-installed"texlive-pedigree-perl
+not-installed"texlive-pedigree-perl-bin
+not-installed"texlive-pedigree-perl-doc
+not-installed"texlive-penrose
+not-installed"texlive-penrose-doc
+not-installed"texlive-perception
+not-installed"texlive-perception-doc
+not-installed"texlive-perfectcut
+not-installed"texlive-perfectcut-doc
+not-installed"texlive-perltex
+not-installed"texlive-perltex-bin
+not-installed"texlive-perltex-doc
+not-installed"texlive-permute
+not-installed"texlive-permute-doc
+not-installed"texlive-persian-bib
+not-installed"texlive-persian-bib-doc
+not-installed"texlive-petiteannonce
+not-installed"texlive-petiteannonce-doc
+not-installed"texlive-petri-nets
+not-installed"texlive-petri-nets-bin
+not-installed"texlive-petri-nets-doc
+not-installed"texlive-pfarrei
+not-installed"texlive-pfarrei-bin
+not-installed"texlive-pfarrei-doc
+not-installed"texlive-pgf
+not-installed"texlive-pgf-blur
+not-installed"texlive-pgf-blur-doc
+not-installed"texlive-pgf-cmykshadings
+not-installed"texlive-pgf-cmykshadings-doc
+not-installed"texlive-pgf-doc
+not-installed"texlive-pgf-soroban
+not-installed"texlive-pgf-soroban-doc
+not-installed"texlive-pgf-spectra
+not-installed"texlive-pgf-spectra-doc
+not-installed"texlive-pgf-umlcd
+not-installed"texlive-pgf-umlcd-doc
+not-installed"texlive-pgf-umlsd
+not-installed"texlive-pgf-umlsd-doc
+not-installed"texlive-pgfgantt
+not-installed"texlive-pgfgantt-doc
+not-installed"texlive-pgfkeyx
+not-installed"texlive-pgfkeyx-doc
+not-installed"texlive-pgfmolbio
+not-installed"texlive-pgfmolbio-doc
+not-installed"texlive-pgfopts
+not-installed"texlive-pgfopts-doc
+not-installed"texlive-pgfornament
+not-installed"texlive-pgfornament-doc
+not-installed"texlive-pgfornament-han
+not-installed"texlive-pgfornament-han-doc
+not-installed"texlive-pgfplots
+not-installed"texlive-pgfplots-doc
+not-installed"texlive-phaistos
+not-installed"texlive-phaistos-doc
+not-installed"texlive-phaistos-fonts
+not-installed"texlive-phffullpagefigure
+not-installed"texlive-phffullpagefigure-doc
+not-installed"texlive-phfnote
+not-installed"texlive-phfnote-doc
+not-installed"texlive-phfparen
+not-installed"texlive-phfparen-doc
+not-installed"texlive-phfqit
+not-installed"texlive-phfqit-doc
+not-installed"texlive-phfquotetext
+not-installed"texlive-phfquotetext-doc
+not-installed"texlive-phfsvnwatermark
+not-installed"texlive-phfsvnwatermark-doc
+not-installed"texlive-phfthm
+not-installed"texlive-phfthm-doc
+not-installed"texlive-philex
+not-installed"texlive-philex-doc
+not-installed"texlive-philokalia
+not-installed"texlive-philokalia-doc
+not-installed"texlive-philokalia-fonts
+not-installed"texlive-philosophersimprint
+not-installed"texlive-philosophersimprint-doc
+not-installed"texlive-phonenumbers
+not-installed"texlive-phonenumbers-doc
+not-installed"texlive-phonetic
+not-installed"texlive-phonetic-doc
+not-installed"texlive-phonrule
+not-installed"texlive-phonrule-doc
+not-installed"texlive-photo
+not-installed"texlive-photo-doc
+not-installed"texlive-physics
+not-installed"texlive-physics-doc
+not-installed"texlive-piano
+not-installed"texlive-piano-doc
+not-installed"texlive-picinpar
+not-installed"texlive-picinpar-doc
+not-installed"texlive-pict2e
+not-installed"texlive-pict2e-doc
+not-installed"texlive-pictex
+not-installed"texlive-pictex-doc
+not-installed"texlive-pictex2
+not-installed"texlive-pictexsum
+not-installed"texlive-piechartmp
+not-installed"texlive-piechartmp-doc
+not-installed"texlive-piff
+not-installed"texlive-piff-doc
+not-installed"texlive-pigpen
+not-installed"texlive-pigpen-doc
+not-installed"texlive-pigpen-fonts
+not-installed"texlive-pinlabel
+not-installed"texlive-pinlabel-doc
+not-installed"texlive-pitex
+not-installed"texlive-pitex-doc
+not-installed"texlive-pittetd
+not-installed"texlive-pittetd-doc
+not-installed"texlive-pixelart
+not-installed"texlive-pixelart-doc
+not-installed"texlive-pkfix
+not-installed"texlive-pkfix-bin
+not-installed"texlive-pkfix-doc
+not-installed"texlive-pkfix-helper
+not-installed"texlive-pkfix-helper-bin
+not-installed"texlive-pkfix-helper-doc
+not-installed"texlive-pkgloader
+not-installed"texlive-pkgloader-doc
+not-installed"texlive-pkuthss
+not-installed"texlive-pkuthss-doc
+not-installed"texlive-pl
+not-installed"texlive-pl-doc
+not-installed"texlive-pl-fonts
+not-installed"texlive-placeat
+not-installed"texlive-placeat-doc
+not-installed"texlive-placeins
+not-installed"texlive-placeins-doc
+not-installed"texlive-placeins-plain
+not-installed"texlive-plain
+not-installed"texlive-plain-doc
+not-installed"texlive-plainpkg
+not-installed"texlive-plainpkg-doc
+not-installed"texlive-plantslabels
+not-installed"texlive-plantslabels-doc
+not-installed"texlive-plantuml
+not-installed"texlive-plantuml-doc
+not-installed"texlive-plari
+not-installed"texlive-plari-doc
+not-installed"texlive-plates
+not-installed"texlive-plates-doc
+not-installed"texlive-platex
+not-installed"texlive-platex-bin
+not-installed"texlive-platex-doc
+not-installed"texlive-platex-tools
+not-installed"texlive-platex-tools-doc
+not-installed"texlive-platexcheat
+not-installed"texlive-plautopatch
+not-installed"texlive-plautopatch-doc
+not-installed"texlive-play
+not-installed"texlive-play-doc
+not-installed"texlive-playfair
+not-installed"texlive-playfair-doc
+not-installed"texlive-playfair-fonts
+not-installed"texlive-plex
+not-installed"texlive-plex-doc
+not-installed"texlive-plex-fonts
+not-installed"texlive-plex-otf
+not-installed"texlive-plex-otf-doc
+not-installed"texlive-plipsum
+not-installed"texlive-plipsum-doc
+not-installed"texlive-plnfss
+not-installed"texlive-plnfss-doc
+not-installed"texlive-plstmary
+not-installed"texlive-plstmary-doc
+not-installed"texlive-plweb
+not-installed"texlive-plweb-doc
+not-installed"texlive-pm-isomath
+not-installed"texlive-pm-isomath-doc
+not-installed"texlive-pmgraph
+not-installed"texlive-pmgraph-doc
+not-installed"texlive-pmx
+not-installed"texlive-pmx-bin
+not-installed"texlive-pmx-doc
+not-installed"texlive-pmxchords
+not-installed"texlive-pmxchords-bin
+not-installed"texlive-pmxchords-doc
+not-installed"texlive-pnas2009
+not-installed"texlive-poemscol
+not-installed"texlive-poemscol-doc
+not-installed"texlive-poetry
+not-installed"texlive-poetry-doc
+not-installed"texlive-poetrytex
+not-installed"texlive-poetrytex-doc
+not-installed"texlive-polexpr
+not-installed"texlive-polexpr-doc
+not-installed"texlive-polski
+not-installed"texlive-polski-doc
+not-installed"texlive-poltawski
+not-installed"texlive-poltawski-doc
+not-installed"texlive-poltawski-fonts
+not-installed"texlive-polyglossia
+not-installed"texlive-polyglossia-doc
+not-installed"texlive-polynom
+not-installed"texlive-polynom-doc
+not-installed"texlive-polynomial
+not-installed"texlive-polynomial-doc
+not-installed"texlive-polytable
+not-installed"texlive-polytable-doc
+not-installed"texlive-poormanlog
+not-installed"texlive-poormanlog-doc
+not-installed"texlive-postage
+not-installed"texlive-postage-doc
+not-installed"texlive-postcards
+not-installed"texlive-postcards-doc
+not-installed"texlive-poster-mac
+not-installed"texlive-poster-mac-doc
+not-installed"texlive-powerdot
+not-installed"texlive-powerdot-FUBerlin
+not-installed"texlive-powerdot-FUBerlin-doc
+not-installed"texlive-powerdot-doc
+not-installed"texlive-powerdot-tuliplab
+not-installed"texlive-powerdot-tuliplab-doc
+not-installed"texlive-ppr-prv
+not-installed"texlive-ppr-prv-doc
+not-installed"texlive-pracjourn
+not-installed"texlive-pracjourn-doc
+not-installed"texlive-preprint
+not-installed"texlive-preprint-doc
+not-installed"texlive-prerex
+not-installed"texlive-prerex-doc
+not-installed"texlive-present
+not-installed"texlive-present-doc
+not-installed"texlive-presentations
+not-installed"texlive-presentations-en
+not-installed"texlive-pressrelease
+not-installed"texlive-pressrelease-doc
+not-installed"texlive-prettyref
+not-installed"texlive-prettyref-doc
+not-installed"texlive-preview
+not-installed"texlive-preview-doc
+not-installed"texlive-prftree
+not-installed"texlive-prftree-doc
+not-installed"texlive-printlen
+not-installed"texlive-printlen-doc
+not-installed"texlive-proba
+not-installed"texlive-proba-doc
+not-installed"texlive-probsoln
+not-installed"texlive-probsoln-doc
+not-installed"texlive-procIAGssymp
+not-installed"texlive-procIAGssymp-doc
+not-installed"texlive-prodint
+not-installed"texlive-prodint-doc
+not-installed"texlive-prodint-fonts
+not-installed"texlive-productbox
+not-installed"texlive-productbox-doc
+not-installed"texlive-program
+not-installed"texlive-program-doc
+not-installed"texlive-progress
+not-installed"texlive-progress-doc
+not-installed"texlive-progressbar
+not-installed"texlive-progressbar-doc
+not-installed"texlive-proofread
+not-installed"texlive-proofread-doc
+not-installed"texlive-prooftrees
+not-installed"texlive-prooftrees-doc
+not-installed"texlive-properties
+not-installed"texlive-properties-doc
+not-installed"texlive-proposal
+not-installed"texlive-proposal-doc
+not-installed"texlive-prosper
+not-installed"texlive-prosper-doc
+not-installed"texlive-protex
+not-installed"texlive-protex-doc
+not-installed"texlive-protocol
+not-installed"texlive-protocol-doc
+not-installed"texlive-przechlewski-book
+not-installed"texlive-przechlewski-book-doc
+not-installed"texlive-ps2pk
+not-installed"texlive-ps2pk-bin
+not-installed"texlive-psbao
+not-installed"texlive-psbao-doc
+not-installed"texlive-pseudocode
+not-installed"texlive-pseudocode-doc
+not-installed"texlive-psfrag
+not-installed"texlive-psfrag-doc
+not-installed"texlive-psfrag-italian
+not-installed"texlive-psfragx
+not-installed"texlive-psfragx-doc
+not-installed"texlive-psgo
+not-installed"texlive-psgo-doc
+not-installed"texlive-psizzl
+not-installed"texlive-psizzl-doc
+not-installed"texlive-pslatex
+not-installed"texlive-psnfss
+not-installed"texlive-psnfss-doc
+not-installed"texlive-pspicture
+not-installed"texlive-pspicture-doc
+not-installed"texlive-pst-2dplot
+not-installed"texlive-pst-2dplot-doc
+not-installed"texlive-pst-3d
+not-installed"texlive-pst-3d-doc
+not-installed"texlive-pst-3dplot
+not-installed"texlive-pst-3dplot-doc
+not-installed"texlive-pst-abspos
+not-installed"texlive-pst-abspos-doc
+not-installed"texlive-pst-am
+not-installed"texlive-pst-am-doc
+not-installed"texlive-pst-antiprism
+not-installed"texlive-pst-antiprism-doc
+not-installed"texlive-pst-arrow
+not-installed"texlive-pst-arrow-doc
+not-installed"texlive-pst-asr
+not-installed"texlive-pst-asr-doc
+not-installed"texlive-pst-bar
+not-installed"texlive-pst-bar-doc
+not-installed"texlive-pst-barcode
+not-installed"texlive-pst-barcode-doc
+not-installed"texlive-pst-bezier
+not-installed"texlive-pst-bezier-doc
+not-installed"texlive-pst-blur
+not-installed"texlive-pst-blur-doc
+not-installed"texlive-pst-bspline
+not-installed"texlive-pst-bspline-doc
+not-installed"texlive-pst-calculate
+not-installed"texlive-pst-calculate-doc
+not-installed"texlive-pst-calendar
+not-installed"texlive-pst-calendar-doc
+not-installed"texlive-pst-cie
+not-installed"texlive-pst-cie-doc
+not-installed"texlive-pst-circ
+not-installed"texlive-pst-circ-doc
+not-installed"texlive-pst-coil
+not-installed"texlive-pst-coil-doc
+not-installed"texlive-pst-contourplot
+not-installed"texlive-pst-contourplot-doc
+not-installed"texlive-pst-cox
+not-installed"texlive-pst-cox-doc
+not-installed"texlive-pst-dart
+not-installed"texlive-pst-dart-doc
+not-installed"texlive-pst-dbicons
+not-installed"texlive-pst-dbicons-doc
+not-installed"texlive-pst-diffraction
+not-installed"texlive-pst-diffraction-doc
+not-installed"texlive-pst-electricfield
+not-installed"texlive-pst-electricfield-doc
+not-installed"texlive-pst-eps
+not-installed"texlive-pst-eps-doc
+not-installed"texlive-pst-eucl
+not-installed"texlive-pst-eucl-doc
+not-installed"texlive-pst-eucl-translation-bg
+not-installed"texlive-pst-exa
+not-installed"texlive-pst-exa-doc
+not-installed"texlive-pst-feyn
+not-installed"texlive-pst-feyn-doc
+not-installed"texlive-pst-fill
+not-installed"texlive-pst-fill-doc
+not-installed"texlive-pst-fit
+not-installed"texlive-pst-fit-doc
+not-installed"texlive-pst-fr3d
+not-installed"texlive-pst-fr3d-doc
+not-installed"texlive-pst-fractal
+not-installed"texlive-pst-fractal-doc
+not-installed"texlive-pst-fun
+not-installed"texlive-pst-fun-doc
+not-installed"texlive-pst-func
+not-installed"texlive-pst-func-doc
+not-installed"texlive-pst-gantt
+not-installed"texlive-pst-gantt-doc
+not-installed"texlive-pst-geo
+not-installed"texlive-pst-geo-doc
+not-installed"texlive-pst-geometrictools
+not-installed"texlive-pst-geometrictools-doc
+not-installed"texlive-pst-ghsb
+not-installed"texlive-pst-ghsb-doc
+not-installed"texlive-pst-gr3d
+not-installed"texlive-pst-gr3d-doc
+not-installed"texlive-pst-grad
+not-installed"texlive-pst-grad-doc
+not-installed"texlive-pst-graphicx
+not-installed"texlive-pst-graphicx-doc
+not-installed"texlive-pst-infixplot
+not-installed"texlive-pst-infixplot-doc
+not-installed"texlive-pst-intersect
+not-installed"texlive-pst-intersect-doc
+not-installed"texlive-pst-jtree
+not-installed"texlive-pst-jtree-doc
+not-installed"texlive-pst-knot
+not-installed"texlive-pst-knot-doc
+not-installed"texlive-pst-labo
+not-installed"texlive-pst-labo-doc
+not-installed"texlive-pst-layout
+not-installed"texlive-pst-layout-doc
+not-installed"texlive-pst-lens
+not-installed"texlive-pst-lens-doc
+not-installed"texlive-pst-light3d
+not-installed"texlive-pst-light3d-doc
+not-installed"texlive-pst-lsystem
+not-installed"texlive-pst-lsystem-doc
+not-installed"texlive-pst-magneticfield
+not-installed"texlive-pst-magneticfield-doc
+not-installed"texlive-pst-marble
+not-installed"texlive-pst-marble-doc
+not-installed"texlive-pst-math
+not-installed"texlive-pst-math-doc
+not-installed"texlive-pst-mirror
+not-installed"texlive-pst-mirror-doc
+not-installed"texlive-pst-moire
+not-installed"texlive-pst-moire-doc
+not-installed"texlive-pst-node
+not-installed"texlive-pst-node-doc
+not-installed"texlive-pst-ob3d
+not-installed"texlive-pst-ob3d-doc
+not-installed"texlive-pst-ode
+not-installed"texlive-pst-ode-doc
+not-installed"texlive-pst-optexp
+not-installed"texlive-pst-optexp-doc
+not-installed"texlive-pst-optic
+not-installed"texlive-pst-optic-doc
+not-installed"texlive-pst-osci
+not-installed"texlive-pst-osci-doc
+not-installed"texlive-pst-ovl
+not-installed"texlive-pst-ovl-doc
+not-installed"texlive-pst-pad
+not-installed"texlive-pst-pad-doc
+not-installed"texlive-pst-pdf
+not-installed"texlive-pst-pdf-bin
+not-installed"texlive-pst-pdf-doc
+not-installed"texlive-pst-pdgr
+not-installed"texlive-pst-pdgr-doc
+not-installed"texlive-pst-perspective
+not-installed"texlive-pst-perspective-doc
+not-installed"texlive-pst-platon
+not-installed"texlive-pst-platon-doc
+not-installed"texlive-pst-plot
+not-installed"texlive-pst-plot-doc
+not-installed"texlive-pst-poker
+not-installed"texlive-pst-poker-doc
+not-installed"texlive-pst-poly
+not-installed"texlive-pst-poly-doc
+not-installed"texlive-pst-pulley
+not-installed"texlive-pst-pulley-doc
+not-installed"texlive-pst-qtree
+not-installed"texlive-pst-qtree-doc
+not-installed"texlive-pst-rputover
+not-installed"texlive-pst-rputover-doc
+not-installed"texlive-pst-rubans
+not-installed"texlive-pst-rubans-doc
+not-installed"texlive-pst-shell
+not-installed"texlive-pst-shell-doc
+not-installed"texlive-pst-sigsys
+not-installed"texlive-pst-sigsys-doc
+not-installed"texlive-pst-slpe
+not-installed"texlive-pst-slpe-doc
+not-installed"texlive-pst-solarsystem
+not-installed"texlive-pst-solarsystem-doc
+not-installed"texlive-pst-solides3d
+not-installed"texlive-pst-solides3d-doc
+not-installed"texlive-pst-soroban
+not-installed"texlive-pst-soroban-doc
+not-installed"texlive-pst-spectra
+not-installed"texlive-pst-spectra-doc
+not-installed"texlive-pst-spinner
+not-installed"texlive-pst-spinner-doc
+not-installed"texlive-pst-spirograph
+not-installed"texlive-pst-spirograph-doc
+not-installed"texlive-pst-stru
+not-installed"texlive-pst-stru-doc
+not-installed"texlive-pst-support
+not-installed"texlive-pst-text
+not-installed"texlive-pst-text-doc
+not-installed"texlive-pst-thick
+not-installed"texlive-pst-thick-doc
+not-installed"texlive-pst-tools
+not-installed"texlive-pst-tools-doc
+not-installed"texlive-pst-tree
+not-installed"texlive-pst-tree-doc
+not-installed"texlive-pst-tvz
+not-installed"texlive-pst-tvz-doc
+not-installed"texlive-pst-uml
+not-installed"texlive-pst-uml-doc
+not-installed"texlive-pst-vectorian
+not-installed"texlive-pst-vectorian-doc
+not-installed"texlive-pst-vehicle
+not-installed"texlive-pst-vehicle-doc
+not-installed"texlive-pst-venn
+not-installed"texlive-pst-venn-doc
+not-installed"texlive-pst-vowel
+not-installed"texlive-pst-vowel-doc
+not-installed"texlive-pst-vue3d
+not-installed"texlive-pst-vue3d-doc
+not-installed"texlive-pst2pdf
+not-installed"texlive-pst2pdf-bin
+not-installed"texlive-pst2pdf-doc
+not-installed"texlive-pstool
+not-installed"texlive-pstool-doc
+not-installed"texlive-pstools
+not-installed"texlive-pstools-bin
+not-installed"texlive-pstools-doc
+not-installed"texlive-pstricks
+not-installed"texlive-pstricks-add
+not-installed"texlive-pstricks-add-doc
+not-installed"texlive-pstricks-doc
+not-installed"texlive-pstricks_calcnotes
+not-installed"texlive-pstring
+not-installed"texlive-pstring-doc
+not-installed"texlive-ptex
+not-installed"texlive-ptex-base
+not-installed"texlive-ptex-base-doc
+not-installed"texlive-ptex-bin
+not-installed"texlive-ptex-fontmaps
+not-installed"texlive-ptex-fontmaps-bin
+not-installed"texlive-ptex-fontmaps-doc
+not-installed"texlive-ptex-fonts
+not-installed"texlive-ptex-fonts-doc
+not-installed"texlive-ptex-manual
+not-installed"texlive-ptex-manual-doc
+not-installed"texlive-ptex2pdf
+not-installed"texlive-ptex2pdf-bin
+not-installed"texlive-ptex2pdf-doc
+not-installed"texlive-ptexenc-devel
+not-installed"texlive-ptext
+not-installed"texlive-ptext-doc
+not-installed"texlive-ptolemaicastronomy
+not-installed"texlive-ptolemaicastronomy-doc
+not-installed"texlive-ptptex
+not-installed"texlive-ptptex-doc
+not-installed"texlive-punk
+not-installed"texlive-punk-doc
+not-installed"texlive-punk-latex
+not-installed"texlive-punk-latex-doc
+not-installed"texlive-punknova
+not-installed"texlive-punknova-doc
+not-installed"texlive-punknova-fonts
+not-installed"texlive-purifyeps
+not-installed"texlive-purifyeps-bin
+not-installed"texlive-purifyeps-doc
+not-installed"texlive-pxbase
+not-installed"texlive-pxbase-doc
+not-installed"texlive-pxchfon
+not-installed"texlive-pxchfon-doc
+not-installed"texlive-pxcjkcat
+not-installed"texlive-pxcjkcat-doc
+not-installed"texlive-pxfonts
+not-installed"texlive-pxfonts-doc
+not-installed"texlive-pxfonts-fonts
+not-installed"texlive-pxgreeks
+not-installed"texlive-pxgreeks-doc
+not-installed"texlive-pxjahyper
+not-installed"texlive-pxjahyper-doc
+not-installed"texlive-pxjodel
+not-installed"texlive-pxjodel-doc
+not-installed"texlive-pxpgfmark
+not-installed"texlive-pxpgfmark-doc
+not-installed"texlive-pxrubrica
+not-installed"texlive-pxrubrica-doc
+not-installed"texlive-pxtatescale
+not-installed"texlive-pxtatescale-doc
+not-installed"texlive-pxtxalfa
+not-installed"texlive-pxtxalfa-doc
+not-installed"texlive-pxufont
+not-installed"texlive-pxufont-doc
+not-installed"texlive-pygmentex
+not-installed"texlive-pygmentex-bin
+not-installed"texlive-pygmentex-doc
+not-installed"texlive-python
+not-installed"texlive-python-doc
+not-installed"texlive-pythonhighlight
+not-installed"texlive-pythonhighlight-doc
+not-installed"texlive-pythontex
+not-installed"texlive-pythontex-bin
+not-installed"texlive-pythontex-doc
+not-installed"texlive-qcircuit
+not-installed"texlive-qcircuit-doc
+not-installed"texlive-qcm
+not-installed"texlive-qcm-doc
+not-installed"texlive-qobitree
+not-installed"texlive-qobitree-doc
+not-installed"texlive-qpxqtx
+not-installed"texlive-qpxqtx-doc
+not-installed"texlive-qrcode
+not-installed"texlive-qrcode-doc
+not-installed"texlive-qsharp
+not-installed"texlive-qsharp-doc
+not-installed"texlive-qstest
+not-installed"texlive-qstest-doc
+not-installed"texlive-qsymbols
+not-installed"texlive-qsymbols-doc
+not-installed"texlive-qtree
+not-installed"texlive-qtree-doc
+not-installed"texlive-quantikz
+not-installed"texlive-quantikz-doc
+not-installed"texlive-quattrocento
+not-installed"texlive-quattrocento-doc
+not-installed"texlive-quattrocento-fonts
+not-installed"texlive-quicktype
+not-installed"texlive-quicktype-doc
+not-installed"texlive-quotchap
+not-installed"texlive-quotchap-doc
+not-installed"texlive-quoting
+not-installed"texlive-quoting-doc
+not-installed"texlive-quotmark
+not-installed"texlive-quotmark-doc
+not-installed"texlive-quran
+not-installed"texlive-quran-de
+not-installed"texlive-quran-de-doc
+not-installed"texlive-quran-doc
+not-installed"texlive-r_und_s
+not-installed"texlive-r_und_s-doc
+not-installed"texlive-raleway
+not-installed"texlive-raleway-doc
+not-installed"texlive-raleway-fonts
+not-installed"texlive-ran_toks
+not-installed"texlive-ran_toks-doc
+not-installed"texlive-randbild
+not-installed"texlive-randbild-doc
+not-installed"texlive-randomlist
+not-installed"texlive-randomlist-doc
+not-installed"texlive-randomwalk
+not-installed"texlive-randomwalk-doc
+not-installed"texlive-randtext
+not-installed"texlive-randtext-doc
+not-installed"texlive-rank-2-roots
+not-installed"texlive-rank-2-roots-doc
+not-installed"texlive-rccol
+not-installed"texlive-rccol-doc
+not-installed"texlive-rcs
+not-installed"texlive-rcs-doc
+not-installed"texlive-rcs-multi
+not-installed"texlive-rcs-multi-doc
+not-installed"texlive-rcsinfo
+not-installed"texlive-rcsinfo-doc
+not-installed"texlive-readarray
+not-installed"texlive-readarray-doc
+not-installed"texlive-realboxes
+not-installed"texlive-realboxes-doc
+not-installed"texlive-realhats
+not-installed"texlive-realhats-doc
+not-installed"texlive-realscripts
+not-installed"texlive-realscripts-doc
+not-installed"texlive-rec-thy
+not-installed"texlive-rec-thy-doc
+not-installed"texlive-recipe
+not-installed"texlive-recipe-doc
+not-installed"texlive-recipebook
+not-installed"texlive-recipebook-doc
+not-installed"texlive-recipecard
+not-installed"texlive-recipecard-doc
+not-installed"texlive-rectopma
+not-installed"texlive-rectopma-doc
+not-installed"texlive-recycle
+not-installed"texlive-recycle-doc
+not-installed"texlive-recycle-fonts
+not-installed"texlive-refcheck
+not-installed"texlive-refcheck-doc
+not-installed"texlive-refenums
+not-installed"texlive-refenums-doc
+not-installed"texlive-reflectgraphics
+not-installed"texlive-reflectgraphics-doc
+not-installed"texlive-refman
+not-installed"texlive-refman-doc
+not-installed"texlive-refstyle
+not-installed"texlive-refstyle-doc
+not-installed"texlive-regcount
+not-installed"texlive-regcount-doc
+not-installed"texlive-regexpatch
+not-installed"texlive-regexpatch-doc
+not-installed"texlive-register
+not-installed"texlive-register-doc
+not-installed"texlive-regstats
+not-installed"texlive-regstats-doc
+not-installed"texlive-reledmac
+not-installed"texlive-reledmac-doc
+not-installed"texlive-relenc
+not-installed"texlive-relenc-doc
+not-installed"texlive-relsize
+not-installed"texlive-relsize-doc
+not-installed"texlive-reotex
+not-installed"texlive-reotex-doc
+not-installed"texlive-repeatindex
+not-installed"texlive-repeatindex-doc
+not-installed"texlive-repere
+not-installed"texlive-repere-doc
+not-installed"texlive-repltext
+not-installed"texlive-repltext-doc
+not-installed"texlive-resphilosophica
+not-installed"texlive-resphilosophica-doc
+not-installed"texlive-resumecls
+not-installed"texlive-resumecls-doc
+not-installed"texlive-resumemac
+not-installed"texlive-resumemac-doc
+not-installed"texlive-returntogrid
+not-installed"texlive-returntogrid-doc
+not-installed"texlive-reverxii
+not-installed"texlive-revquantum
+not-installed"texlive-revquantum-doc
+not-installed"texlive-revtex
+not-installed"texlive-revtex-doc
+not-installed"texlive-revtex4
+not-installed"texlive-revtex4-doc
+not-installed"texlive-rgltxdoc
+not-installed"texlive-rgltxdoc-doc
+not-installed"texlive-ribbonproofs
+not-installed"texlive-ribbonproofs-doc
+not-installed"texlive-rjlparshap
+not-installed"texlive-rjlparshap-doc
+not-installed"texlive-rlepsf
+not-installed"texlive-rlepsf-doc
+not-installed"texlive-rmathbr
+not-installed"texlive-rmathbr-doc
+not-installed"texlive-rmpage
+not-installed"texlive-rmpage-doc
+not-installed"texlive-roboto
+not-installed"texlive-roboto-doc
+not-installed"texlive-roboto-fonts
+not-installed"texlive-robustcommand
+not-installed"texlive-robustcommand-doc
+not-installed"texlive-robustindex
+not-installed"texlive-robustindex-doc
+not-installed"texlive-roex
+not-installed"texlive-romanbar
+not-installed"texlive-romanbar-doc
+not-installed"texlive-romanbarpagenumber
+not-installed"texlive-romanbarpagenumber-doc
+not-installed"texlive-romande
+not-installed"texlive-romande-doc
+not-installed"texlive-romande-fonts
+not-installed"texlive-romanneg
+not-installed"texlive-romanneg-doc
+not-installed"texlive-romannum
+not-installed"texlive-romannum-doc
+not-installed"texlive-rosario
+not-installed"texlive-rosario-doc
+not-installed"texlive-rosario-fonts
+not-installed"texlive-rotfloat
+not-installed"texlive-rotfloat-doc
+not-installed"texlive-rotpages
+not-installed"texlive-rotpages-doc
+not-installed"texlive-roundbox
+not-installed"texlive-roundbox-doc
+not-installed"texlive-roundrect
+not-installed"texlive-roundrect-doc
+not-installed"texlive-rrgtrees
+not-installed"texlive-rrgtrees-doc
+not-installed"texlive-rsc
+not-installed"texlive-rsc-doc
+not-installed"texlive-rsfs
+not-installed"texlive-rsfs-doc
+not-installed"texlive-rsfs-fonts
+not-installed"texlive-rsfso
+not-installed"texlive-rsfso-doc
+not-installed"texlive-rterface
+not-installed"texlive-rterface-doc
+not-installed"texlive-rtkinenc
+not-installed"texlive-rtkinenc-doc
+not-installed"texlive-rtklage
+not-installed"texlive-rtklage-doc
+not-installed"texlive-rubik
+not-installed"texlive-rubik-bin
+not-installed"texlive-rubik-doc
+not-installed"texlive-ruhyphen
+not-installed"texlive-rulercompass
+not-installed"texlive-rulercompass-doc
+not-installed"texlive-russ
+not-installed"texlive-russ-doc
+not-installed"texlive-rutitlepage
+not-installed"texlive-rutitlepage-doc
+not-installed"texlive-rviewport
+not-installed"texlive-rviewport-doc
+not-installed"texlive-rvwrite
+not-installed"texlive-rvwrite-doc
+not-installed"texlive-ryersonsgsthesis
+not-installed"texlive-ryersonsgsthesis-doc
+not-installed"texlive-ryethesis
+not-installed"texlive-ryethesis-doc
+not-installed"texlive-sa-tikz
+not-installed"texlive-sa-tikz-doc
+not-installed"texlive-sageep
+not-installed"texlive-sageep-doc
+not-installed"texlive-sanitize-umlaut
+not-installed"texlive-sanitize-umlaut-doc
+not-installed"texlive-sanskrit
+not-installed"texlive-sanskrit-doc
+not-installed"texlive-sanskrit-t1
+not-installed"texlive-sanskrit-t1-doc
+not-installed"texlive-sanskrit-t1-fonts
+not-installed"texlive-sansmath
+not-installed"texlive-sansmath-doc
+not-installed"texlive-sansmathaccent
+not-installed"texlive-sansmathaccent-doc
+not-installed"texlive-sansmathfonts
+not-installed"texlive-sansmathfonts-doc
+not-installed"texlive-sansmathfonts-fonts
+not-installed"texlive-sapthesis
+not-installed"texlive-sapthesis-doc
+not-installed"texlive-sasnrdisplay
+not-installed"texlive-sasnrdisplay-doc
+not-installed"texlive-sauerj
+not-installed"texlive-sauerj-doc
+not-installed"texlive-sauter
+not-installed"texlive-sauterfonts
+not-installed"texlive-sauterfonts-doc
+not-installed"texlive-savefnmark
+not-installed"texlive-savefnmark-doc
+not-installed"texlive-savesym
+not-installed"texlive-savetrees
+not-installed"texlive-savetrees-doc
+not-installed"texlive-scale
+not-installed"texlive-scale-doc
+not-installed"texlive-scalebar
+not-installed"texlive-scalebar-doc
+not-installed"texlive-scalerel
+not-installed"texlive-scalerel-doc
+not-installed"texlive-scanpages
+not-installed"texlive-scanpages-doc
+not-installed"texlive-scanpages-fonts
+not-installed"texlive-schemabloc
+not-installed"texlive-schemabloc-doc
+not-installed"texlive-schemata
+not-installed"texlive-schemata-doc
+not-installed"texlive-scheme-basic
+not-installed"texlive-scheme-context
+not-installed"texlive-scheme-full
+not-installed"texlive-scheme-gust
+not-installed"texlive-scheme-infraonly
+not-installed"texlive-scheme-medium
+not-installed"texlive-scheme-minimal
+not-installed"texlive-scheme-small
+not-installed"texlive-scheme-tetex
+not-installed"texlive-schule
+not-installed"texlive-schule-doc
+not-installed"texlive-schulschriften
+not-installed"texlive-schulschriften-doc
+not-installed"texlive-schwalbe-chess
+not-installed"texlive-schwalbe-chess-doc
+not-installed"texlive-scientific-thesis-cover
+not-installed"texlive-scientific-thesis-cover-doc
+not-installed"texlive-sciposter
+not-installed"texlive-sciposter-doc
+not-installed"texlive-sclang-prettifier
+not-installed"texlive-sclang-prettifier-doc
+not-installed"texlive-scratch
+not-installed"texlive-scratch-doc
+not-installed"texlive-scratch3
+not-installed"texlive-scratch3-doc
+not-installed"texlive-scratchx
+not-installed"texlive-scratchx-doc
+not-installed"texlive-screenplay
+not-installed"texlive-screenplay-doc
+not-installed"texlive-screenplay-pkg
+not-installed"texlive-screenplay-pkg-doc
+not-installed"texlive-scrjrnl
+not-installed"texlive-scrjrnl-doc
+not-installed"texlive-scrlttr2copy
+not-installed"texlive-scrlttr2copy-doc
+not-installed"texlive-scsnowman
+not-installed"texlive-scsnowman-doc
+not-installed"texlive-sdrt
+not-installed"texlive-sdrt-doc
+not-installed"texlive-sduthesis
+not-installed"texlive-sduthesis-doc
+not-installed"texlive-secdot
+not-installed"texlive-secdot-doc
+not-installed"texlive-section
+not-installed"texlive-section-doc
+not-installed"texlive-sectionbox
+not-installed"texlive-sectionbox-doc
+not-installed"texlive-sectionbreak
+not-installed"texlive-sectionbreak-doc
+not-installed"texlive-sectsty
+not-installed"texlive-sectsty-doc
+not-installed"texlive-seealso
+not-installed"texlive-seealso-doc
+not-installed"texlive-seetexk
+not-installed"texlive-seetexk-bin
+not-installed"texlive-selectp
+not-installed"texlive-selectp-doc
+not-installed"texlive-selnolig
+not-installed"texlive-selnolig-doc
+not-installed"texlive-semantic
+not-installed"texlive-semantic-doc
+not-installed"texlive-semantic-markup
+not-installed"texlive-semantic-markup-doc
+not-installed"texlive-semaphor
+not-installed"texlive-semaphor-doc
+not-installed"texlive-semaphor-fonts
+not-installed"texlive-seminar
+not-installed"texlive-seminar-doc
+not-installed"texlive-semioneside
+not-installed"texlive-semioneside-doc
+not-installed"texlive-semproc
+not-installed"texlive-semproc-doc
+not-installed"texlive-sepfootnotes
+not-installed"texlive-sepfootnotes-doc
+not-installed"texlive-sepnum
+not-installed"texlive-sepnum-doc
+not-installed"texlive-seqsplit
+not-installed"texlive-seqsplit-doc
+not-installed"texlive-serbian-apostrophe
+not-installed"texlive-serbian-apostrophe-doc
+not-installed"texlive-serbian-date-lat
+not-installed"texlive-serbian-date-lat-doc
+not-installed"texlive-serbian-def-cyr
+not-installed"texlive-serbian-def-cyr-doc
+not-installed"texlive-serbian-lig
+not-installed"texlive-serbian-lig-doc
+not-installed"texlive-sesamanuel
+not-installed"texlive-sesamanuel-doc
+not-installed"texlive-sesstime
+not-installed"texlive-sesstime-doc
+not-installed"texlive-setdeck
+not-installed"texlive-setdeck-doc
+not-installed"texlive-setspace
+not-installed"texlive-setspace-doc
+not-installed"texlive-seuthesis
+not-installed"texlive-seuthesis-doc
+not-installed"texlive-seuthesix
+not-installed"texlive-seuthesix-doc
+not-installed"texlive-sexam
+not-installed"texlive-sexam-doc
+not-installed"texlive-sf298
+not-installed"texlive-sf298-doc
+not-installed"texlive-sffms
+not-installed"texlive-sffms-doc
+not-installed"texlive-sfg
+not-installed"texlive-sfg-doc
+not-installed"texlive-sfmath
+not-installed"texlive-sgame
+not-installed"texlive-sgame-doc
+not-installed"texlive-shade
+not-installed"texlive-shade-doc
+not-installed"texlive-shadethm
+not-installed"texlive-shadethm-doc
+not-installed"texlive-shadow
+not-installed"texlive-shadow-doc
+not-installed"texlive-shadowtext
+not-installed"texlive-shadowtext-doc
+not-installed"texlive-shapepar
+not-installed"texlive-shapepar-doc
+not-installed"texlive-shapes
+not-installed"texlive-shapes-doc
+not-installed"texlive-shdoc
+not-installed"texlive-shdoc-doc
+not-installed"texlive-shipunov
+not-installed"texlive-shipunov-doc
+not-installed"texlive-shobhika
+not-installed"texlive-shobhika-doc
+not-installed"texlive-shobhika-fonts
+not-installed"texlive-short-math-guide
+not-installed"texlive-shorttoc
+not-installed"texlive-shorttoc-doc
+not-installed"texlive-show2e
+not-installed"texlive-show2e-doc
+not-installed"texlive-showcharinbox
+not-installed"texlive-showcharinbox-doc
+not-installed"texlive-showdim
+not-installed"texlive-showdim-doc
+not-installed"texlive-showexpl
+not-installed"texlive-showexpl-doc
+not-installed"texlive-showhyphens
+not-installed"texlive-showhyphens-doc
+not-installed"texlive-showlabels
+not-installed"texlive-showlabels-doc
+not-installed"texlive-showtags
+not-installed"texlive-showtags-doc
+not-installed"texlive-shuffle
+not-installed"texlive-shuffle-doc
+not-installed"texlive-sidecap
+not-installed"texlive-sidecap-doc
+not-installed"texlive-sidenotes
+not-installed"texlive-sidenotes-doc
+not-installed"texlive-sides
+not-installed"texlive-sides-doc
+not-installed"texlive-signchart
+not-installed"texlive-signchart-doc
+not-installed"texlive-silence
+not-installed"texlive-silence-doc
+not-installed"texlive-simple-resume-cv
+not-installed"texlive-simple-resume-cv-doc
+not-installed"texlive-simple-thesis-dissertation
+not-installed"texlive-simple-thesis-dissertation-doc
+not-installed"texlive-simplecd
+not-installed"texlive-simplecd-doc
+not-installed"texlive-simplecv
+not-installed"texlive-simplecv-doc
+not-installed"texlive-simpleinvoice
+not-installed"texlive-simpleinvoice-doc
+not-installed"texlive-simplekv
+not-installed"texlive-simplekv-doc
+not-installed"texlive-simpler-wick
+not-installed"texlive-simpler-wick-doc
+not-installed"texlive-simplewick
+not-installed"texlive-simplewick-doc
+not-installed"texlive-simplified-latex
+not-installed"texlive-simurgh
+not-installed"texlive-simurgh-doc
+not-installed"texlive-sitem
+not-installed"texlive-sitem-doc
+not-installed"texlive-siunitx
+not-installed"texlive-siunitx-doc
+not-installed"texlive-skak
+not-installed"texlive-skak-doc
+not-installed"texlive-skaknew
+not-installed"texlive-skaknew-doc
+not-installed"texlive-skaknew-fonts
+not-installed"texlive-skb
+not-installed"texlive-skb-doc
+not-installed"texlive-skdoc
+not-installed"texlive-skdoc-doc
+not-installed"texlive-skeycommand
+not-installed"texlive-skeycommand-doc
+not-installed"texlive-skeyval
+not-installed"texlive-skeyval-doc
+not-installed"texlive-skmath
+not-installed"texlive-skmath-doc
+not-installed"texlive-skrapport
+not-installed"texlive-skrapport-doc
+not-installed"texlive-skull
+not-installed"texlive-slantsc
+not-installed"texlive-slantsc-doc
+not-installed"texlive-slideshow
+not-installed"texlive-slideshow-doc
+not-installed"texlive-smalltableof
+not-installed"texlive-smalltableof-doc
+not-installed"texlive-smartdiagram
+not-installed"texlive-smartdiagram-doc
+not-installed"texlive-smartref
+not-installed"texlive-smartref-doc
+not-installed"texlive-smartunits
+not-installed"texlive-smartunits-doc
+not-installed"texlive-snapshot
+not-installed"texlive-snapshot-doc
+not-installed"texlive-snotez
+not-installed"texlive-snotez-doc
+not-installed"texlive-songbook
+not-installed"texlive-songbook-doc
+not-installed"texlive-songs
+not-installed"texlive-songs-doc
+not-installed"texlive-sort-by-letters
+not-installed"texlive-sort-by-letters-doc
+not-installed"texlive-soton
+not-installed"texlive-soton-doc
+not-installed"texlive-soul
+not-installed"texlive-soul-doc
+not-installed"texlive-soup
+not-installed"texlive-soup-doc
+not-installed"texlive-sourcecodepro
+not-installed"texlive-sourcecodepro-doc
+not-installed"texlive-sourcecodepro-fonts
+not-installed"texlive-sourcesanspro
+not-installed"texlive-sourcesanspro-doc
+not-installed"texlive-sourcesanspro-fonts
+not-installed"texlive-sourceserifpro
+not-installed"texlive-sourceserifpro-doc
+not-installed"texlive-sourceserifpro-fonts
+not-installed"texlive-spalign
+not-installed"texlive-spalign-doc
+not-installed"texlive-spanish-mx
+not-installed"texlive-spanish-mx-doc
+not-installed"texlive-spark-otf
+not-installed"texlive-spark-otf-doc
+not-installed"texlive-sparklines
+not-installed"texlive-sparklines-doc
+not-installed"texlive-spath3
+not-installed"texlive-spath3-doc
+not-installed"texlive-spectralsequences
+not-installed"texlive-spectralsequences-doc
+not-installed"texlive-spelling
+not-installed"texlive-spelling-doc
+not-installed"texlive-sphdthesis
+not-installed"texlive-sphdthesis-doc
+not-installed"texlive-spie
+not-installed"texlive-spie-doc
+not-installed"texlive-splines
+not-installed"texlive-splines-doc
+not-installed"texlive-splitbib
+not-installed"texlive-splitbib-doc
+not-installed"texlive-splitindex
+not-installed"texlive-splitindex-bin
+not-installed"texlive-splitindex-doc
+not-installed"texlive-spot
+not-installed"texlive-spot-doc
+not-installed"texlive-spotcolor
+not-installed"texlive-spotcolor-doc
+not-installed"texlive-spreadtab
+not-installed"texlive-spreadtab-doc
+not-installed"texlive-spverbatim
+not-installed"texlive-spverbatim-doc
+not-installed"texlive-sr-vorl
+not-installed"texlive-sr-vorl-doc
+not-installed"texlive-srbook-mem
+not-installed"texlive-srbook-mem-doc
+not-installed"texlive-srcltx
+not-installed"texlive-srcltx-doc
+not-installed"texlive-srcredact
+not-installed"texlive-srcredact-bin
+not-installed"texlive-srcredact-doc
+not-installed"texlive-srdp-mathematik
+not-installed"texlive-srdp-mathematik-doc
+not-installed"texlive-sseq
+not-installed"texlive-sseq-doc
+not-installed"texlive-sslides
+not-installed"texlive-sslides-doc
+not-installed"texlive-stack
+not-installed"texlive-stackengine
+not-installed"texlive-stackengine-doc
+not-installed"texlive-stage
+not-installed"texlive-stage-doc
+not-installed"texlive-standalone
+not-installed"texlive-standalone-doc
+not-installed"texlive-stanli
+not-installed"texlive-stanli-doc
+not-installed"texlive-starfont
+not-installed"texlive-starfont-doc
+not-installed"texlive-starfont-fonts
+not-installed"texlive-startex
+not-installed"texlive-startex-doc
+not-installed"texlive-statex
+not-installed"texlive-statex-doc
+not-installed"texlive-statex2
+not-installed"texlive-statex2-doc
+not-installed"texlive-statistics
+not-installed"texlive-statistics-doc
+not-installed"texlive-statistik
+not-installed"texlive-statistik-doc
+not-installed"texlive-statmath
+not-installed"texlive-statmath-doc
+not-installed"texlive-staves
+not-installed"texlive-staves-doc
+not-installed"texlive-staves-fonts
+not-installed"texlive-stdclsdv
+not-installed"texlive-stdclsdv-doc
+not-installed"texlive-stdpage
+not-installed"texlive-stdpage-doc
+not-installed"texlive-stealcaps
+not-installed"texlive-stealcaps-doc
+not-installed"texlive-steinmetz
+not-installed"texlive-steinmetz-doc
+not-installed"texlive-stellenbosch
+not-installed"texlive-stellenbosch-doc
+not-installed"texlive-stex
+not-installed"texlive-stex-doc
+not-installed"texlive-stickstoo
+not-installed"texlive-stickstoo-doc
+not-installed"texlive-stickstoo-fonts
+not-installed"texlive-stix
+not-installed"texlive-stix-doc
+not-installed"texlive-stix-fonts
+not-installed"texlive-stix2-otf
+not-installed"texlive-stix2-otf-doc
+not-installed"texlive-stix2-otf-fonts
+not-installed"texlive-stix2-type1
+not-installed"texlive-stix2-type1-doc
+not-installed"texlive-stix2-type1-fonts
+not-installed"texlive-stmaryrd
+not-installed"texlive-stmaryrd-doc
+not-installed"texlive-stmaryrd-fonts
+not-installed"texlive-storebox
+not-installed"texlive-storebox-doc
+not-installed"texlive-storecmd
+not-installed"texlive-storecmd-doc
+not-installed"texlive-stringstrings
+not-installed"texlive-stringstrings-doc
+not-installed"texlive-structmech
+not-installed"texlive-struktex
+not-installed"texlive-struktex-doc
+not-installed"texlive-sttools
+not-installed"texlive-sttools-doc
+not-installed"texlive-stubs
+not-installed"texlive-stubs-doc
+not-installed"texlive-studenthandouts
+not-installed"texlive-studenthandouts-doc
+not-installed"texlive-sty2dtx
+not-installed"texlive-sty2dtx-bin
+not-installed"texlive-sty2dtx-doc
+not-installed"texlive-suanpan
+not-installed"texlive-suanpan-doc
+not-installed"texlive-subdepth
+not-installed"texlive-subdepth-doc
+not-installed"texlive-subeqn
+not-installed"texlive-subeqn-doc
+not-installed"texlive-subeqnarray
+not-installed"texlive-subeqnarray-doc
+not-installed"texlive-subfig
+not-installed"texlive-subfig-doc
+not-installed"texlive-subfigmat
+not-installed"texlive-subfigmat-doc
+not-installed"texlive-subfigure
+not-installed"texlive-subfigure-doc
+not-installed"texlive-subfiles
+not-installed"texlive-subfiles-doc
+not-installed"texlive-subfloat
+not-installed"texlive-subfloat-doc
+not-installed"texlive-substances
+not-installed"texlive-substances-doc
+not-installed"texlive-substitutefont
+not-installed"texlive-substitutefont-doc
+not-installed"texlive-substr
+not-installed"texlive-substr-doc
+not-installed"texlive-subsupscripts
+not-installed"texlive-subsupscripts-doc
+not-installed"texlive-sudoku
+not-installed"texlive-sudoku-doc
+not-installed"texlive-sudokubundle
+not-installed"texlive-sudokubundle-doc
+not-installed"texlive-suftesi
+not-installed"texlive-suftesi-doc
+not-installed"texlive-sugconf
+not-installed"texlive-sugconf-doc
+not-installed"texlive-superiors
+not-installed"texlive-superiors-doc
+not-installed"texlive-superiors-fonts
+not-installed"texlive-supertabular
+not-installed"texlive-supertabular-doc
+not-installed"texlive-susy
+not-installed"texlive-susy-doc
+not-installed"texlive-svg
+not-installed"texlive-svg-doc
+not-installed"texlive-svg-inkscape
+not-installed"texlive-svgcolor
+not-installed"texlive-svgcolor-doc
+not-installed"texlive-svn
+not-installed"texlive-svn-doc
+not-installed"texlive-svn-multi
+not-installed"texlive-svn-multi-bin
+not-installed"texlive-svn-multi-doc
+not-installed"texlive-svn-prov
+not-installed"texlive-svn-prov-doc
+not-installed"texlive-svninfo
+not-installed"texlive-svninfo-doc
+not-installed"texlive-svrsymbols
+not-installed"texlive-svrsymbols-doc
+not-installed"texlive-svrsymbols-fonts
+not-installed"texlive-swebib
+not-installed"texlive-swebib-doc
+not-installed"texlive-swimgraf
+not-installed"texlive-swimgraf-doc
+not-installed"texlive-syllogism
+not-installed"texlive-syllogism-doc
+not-installed"texlive-symbol
+not-installed"texlive-symbol-fonts
+not-installed"texlive-sympytexpackage
+not-installed"texlive-sympytexpackage-doc
+not-installed"texlive-synctex
+not-installed"texlive-synctex-bin
+not-installed"texlive-synctex-devel
+not-installed"texlive-synproof
+not-installed"texlive-synproof-doc
+not-installed"texlive-syntax
+not-installed"texlive-syntax-doc
+not-installed"texlive-syntrace
+not-installed"texlive-syntrace-doc
+not-installed"texlive-synttree
+not-installed"texlive-synttree-doc
+not-installed"texlive-systeme
+not-installed"texlive-systeme-doc
+not-installed"texlive-t-angles
+not-installed"texlive-t-angles-doc
+not-installed"texlive-t2
+not-installed"texlive-t2-doc
+not-installed"texlive-tabfigures
+not-installed"texlive-tabfigures-doc
+not-installed"texlive-table-fct
+not-installed"texlive-table-fct-doc
+not-installed"texlive-tableaux
+not-installed"texlive-tableaux-doc
+not-installed"texlive-tablefootnote
+not-installed"texlive-tablefootnote-doc
+not-installed"texlive-tableof
+not-installed"texlive-tableof-doc
+not-installed"texlive-tablestyles
+not-installed"texlive-tablestyles-doc
+not-installed"texlive-tablists
+not-installed"texlive-tablists-doc
+not-installed"texlive-tablor
+not-installed"texlive-tablor-doc
+not-installed"texlive-tabls
+not-installed"texlive-tabls-doc
+not-installed"texlive-tablvar
+not-installed"texlive-tablvar-doc
+not-installed"texlive-tabriz-thesis
+not-installed"texlive-tabriz-thesis-doc
+not-installed"texlive-tabstackengine
+not-installed"texlive-tabstackengine-doc
+not-installed"texlive-tabto-generic
+not-installed"texlive-tabto-ltx
+not-installed"texlive-tabto-ltx-doc
+not-installed"texlive-tabu
+not-installed"texlive-tabu-doc
+not-installed"texlive-tabularborder
+not-installed"texlive-tabularborder-doc
+not-installed"texlive-tabularcalc
+not-installed"texlive-tabularcalc-doc
+not-installed"texlive-tabularew
+not-installed"texlive-tabularew-doc
+not-installed"texlive-tabulars-e
+not-installed"texlive-tabulary
+not-installed"texlive-tabulary-doc
+not-installed"texlive-tabvar
+not-installed"texlive-tabvar-doc
+not-installed"texlive-tabvar-fonts
+not-installed"texlive-tagging
+not-installed"texlive-tagging-doc
+not-installed"texlive-tagpair
+not-installed"texlive-tagpair-doc
+not-installed"texlive-tagpdf
+not-installed"texlive-tagpdf-doc
+not-installed"texlive-talk
+not-installed"texlive-talk-doc
+not-installed"texlive-tamefloats
+not-installed"texlive-tamefloats-doc
+not-installed"texlive-tamethebeast
+not-installed"texlive-tap
+not-installed"texlive-tap-doc
+not-installed"texlive-tapir
+not-installed"texlive-tapir-doc
+not-installed"texlive-tapir-fonts
+not-installed"texlive-tasks
+not-installed"texlive-tasks-doc
+not-installed"texlive-tcldoc
+not-installed"texlive-tcldoc-doc
+not-installed"texlive-tcolorbox
+not-installed"texlive-tcolorbox-doc
+not-installed"texlive-tdclock
+not-installed"texlive-tdclock-doc
+not-installed"texlive-tds
+not-installed"texlive-tdsfrmath
+not-installed"texlive-tdsfrmath-doc
+not-installed"texlive-technics
+not-installed"texlive-technics-doc
+not-installed"texlive-technion-thesis-template
+not-installed"texlive-technion-thesis-template-doc
+not-installed"texlive-ted
+not-installed"texlive-ted-doc
+not-installed"texlive-templates-fenn
+not-installed"texlive-templates-sommer
+not-installed"texlive-templatetools
+not-installed"texlive-templatetools-doc
+not-installed"texlive-tempora
+not-installed"texlive-tempora-doc
+not-installed"texlive-tempora-fonts
+not-installed"texlive-tengwarscript
+not-installed"texlive-tengwarscript-doc
+not-installed"texlive-tensor
+not-installed"texlive-tensor-doc
+not-installed"texlive-termcal
+not-installed"texlive-termcal-de
+not-installed"texlive-termcal-de-doc
+not-installed"texlive-termcal-doc
+not-installed"texlive-termlist
+not-installed"texlive-termlist-doc
+not-installed"texlive-termmenu
+not-installed"texlive-termmenu-doc
+not-installed"texlive-testhyphens
+not-installed"texlive-testhyphens-doc
+not-installed"texlive-testidx
+not-installed"texlive-testidx-doc
+not-installed"texlive-tetex
+not-installed"texlive-tetex-bin
+not-installed"texlive-tetex-doc
+not-installed"texlive-tetragonos
+not-installed"texlive-tetragonos-doc
+not-installed"texlive-teubner
+not-installed"texlive-teubner-doc
+not-installed"texlive-tex
+not-installed"texlive-tex-bin
+not-installed"texlive-tex-ewd
+not-installed"texlive-tex-ewd-doc
+not-installed"texlive-tex-font-errors-cheatsheet
+not-installed"texlive-tex-gyre
+not-installed"texlive-tex-gyre-doc
+not-installed"texlive-tex-gyre-fonts
+not-installed"texlive-tex-gyre-math
+not-installed"texlive-tex-gyre-math-doc
+not-installed"texlive-tex-gyre-math-fonts
+not-installed"texlive-tex-ini-files
+not-installed"texlive-tex-ini-files-doc
+not-installed"texlive-tex-label
+not-installed"texlive-tex-label-doc
+not-installed"texlive-tex-locale
+not-installed"texlive-tex-locale-doc
+not-installed"texlive-tex-overview
+not-installed"texlive-tex-ps
+not-installed"texlive-tex-ps-doc
+not-installed"texlive-tex-refs
+not-installed"texlive-tex-virtual-academy-pl
+not-installed"texlive-tex4ebook
+not-installed"texlive-tex4ebook-bin
+not-installed"texlive-tex4ebook-doc
+not-installed"texlive-tex4ht
+not-installed"texlive-tex4ht-bin
+not-installed"texlive-tex4ht-doc
+not-installed"texlive-texapi
+not-installed"texlive-texapi-doc
+not-installed"texlive-texbytopic
+not-installed"texlive-texcount
+not-installed"texlive-texcount-bin
+not-installed"texlive-texcount-doc
+not-installed"texlive-texdate
+not-installed"texlive-texdate-doc
+not-installed"texlive-texdef
+not-installed"texlive-texdef-bin
+not-installed"texlive-texdef-doc
+not-installed"texlive-texdiff
+not-installed"texlive-texdiff-bin
+not-installed"texlive-texdiff-doc
+not-installed"texlive-texdirflatten
+not-installed"texlive-texdirflatten-bin
+not-installed"texlive-texdirflatten-doc
+not-installed"texlive-texdoc
+not-installed"texlive-texdoc-bin
+not-installed"texlive-texdoc-doc
+not-installed"texlive-texdoctk
+not-installed"texlive-texdoctk-bin
+not-installed"texlive-texdoctk-doc
+not-installed"texlive-texdraw
+not-installed"texlive-texdraw-doc
+not-installed"texlive-texfot
+not-installed"texlive-texfot-bin
+not-installed"texlive-texfot-doc
+not-installed"texlive-texilikechaps
+not-installed"texlive-texilikecover
+not-installed"texlive-texinfo
+not-installed"texlive-texlive-common
+not-installed"texlive-texlive-cz
+not-installed"texlive-texlive-de
+not-installed"texlive-texlive-en
+not-installed"texlive-texlive-es
+not-installed"texlive-texlive-fr
+not-installed"texlive-texlive-it
+not-installed"texlive-texlive-pl
+not-installed"texlive-texlive-ru
+not-installed"texlive-texlive-sr
+not-installed"texlive-texlive-zh-cn
+not-installed"texlive-texlive.infra
+not-installed"texlive-texlive.infra-doc
+not-installed"texlive-texliveonfly
+not-installed"texlive-texliveonfly-bin
+not-installed"texlive-texliveonfly-doc
+not-installed"texlive-texloganalyser
+not-installed"texlive-texloganalyser-bin
+not-installed"texlive-texloganalyser-doc
+not-installed"texlive-texlogos
+not-installed"texlive-texlua-devel
+not-installed"texlive-texluajit-devel
+not-installed"texlive-texmate
+not-installed"texlive-texmate-doc
+not-installed"texlive-texments
+not-installed"texlive-texments-doc
+not-installed"texlive-texosquery
+not-installed"texlive-texosquery-bin
+not-installed"texlive-texosquery-doc
+not-installed"texlive-texpower
+not-installed"texlive-texpower-doc
+not-installed"texlive-texproposal
+not-installed"texlive-texshade
+not-installed"texlive-texshade-doc
+not-installed"texlive-texsis
+not-installed"texlive-texsis-bin
+not-installed"texlive-texsis-doc
+not-installed"texlive-textcase
+not-installed"texlive-textcase-doc
+not-installed"texlive-textfit
+not-installed"texlive-textfit-doc
+not-installed"texlive-textglos
+not-installed"texlive-textglos-doc
+not-installed"texlive-textgreek
+not-installed"texlive-textgreek-doc
+not-installed"texlive-textmerg
+not-installed"texlive-textmerg-doc
+not-installed"texlive-textopo
+not-installed"texlive-textopo-doc
+not-installed"texlive-textpath
+not-installed"texlive-textpath-doc
+not-installed"texlive-textpos
+not-installed"texlive-textpos-doc
+not-installed"texlive-textualicomma
+not-installed"texlive-textualicomma-doc
+not-installed"texlive-texvc
+not-installed"texlive-texvc-doc
+not-installed"texlive-texware
+not-installed"texlive-texware-bin
+not-installed"texlive-tfrupee
+not-installed"texlive-tfrupee-doc
+not-installed"texlive-tfrupee-fonts
+not-installed"texlive-thaienum
+not-installed"texlive-thaienum-doc
+not-installed"texlive-thaispec
+not-installed"texlive-thaispec-doc
+not-installed"texlive-thalie
+not-installed"texlive-thalie-doc
+not-installed"texlive-theatre
+not-installed"texlive-theoremref
+not-installed"texlive-theoremref-doc
+not-installed"texlive-thesis-ekf
+not-installed"texlive-thesis-ekf-doc
+not-installed"texlive-thesis-gwu
+not-installed"texlive-thesis-gwu-doc
+not-installed"texlive-thesis-qom
+not-installed"texlive-thesis-qom-doc
+not-installed"texlive-thesis-titlepage-fhac
+not-installed"texlive-thesis-titlepage-fhac-doc
+not-installed"texlive-thinsp
+not-installed"texlive-thinsp-doc
+not-installed"texlive-thmbox
+not-installed"texlive-thmbox-doc
+not-installed"texlive-thmtools
+not-installed"texlive-thmtools-doc
+not-installed"texlive-threadcol
+not-installed"texlive-threadcol-doc
+not-installed"texlive-threeddice
+not-installed"texlive-threeddice-doc
+not-installed"texlive-threeparttable
+not-installed"texlive-threeparttable-doc
+not-installed"texlive-threeparttablex
+not-installed"texlive-threeparttablex-doc
+not-installed"texlive-thucoursework
+not-installed"texlive-thucoursework-doc
+not-installed"texlive-thumb
+not-installed"texlive-thumb-doc
+not-installed"texlive-thumbpdf
+not-installed"texlive-thumbpdf-bin
+not-installed"texlive-thumbpdf-doc
+not-installed"texlive-thumbs
+not-installed"texlive-thumbs-doc
+not-installed"texlive-thumby
+not-installed"texlive-thumby-doc
+not-installed"texlive-thuthesis
+not-installed"texlive-thuthesis-doc
+not-installed"texlive-ticket
+not-installed"texlive-ticket-doc
+not-installed"texlive-ticollege
+not-installed"texlive-ticollege-doc
+not-installed"texlive-tie
+not-installed"texlive-tie-bin
+not-installed"texlive-tikz-3dplot
+not-installed"texlive-tikz-3dplot-doc
+not-installed"texlive-tikz-bayesnet
+not-installed"texlive-tikz-bayesnet-doc
+not-installed"texlive-tikz-cd
+not-installed"texlive-tikz-cd-doc
+not-installed"texlive-tikz-dependency
+not-installed"texlive-tikz-dependency-doc
+not-installed"texlive-tikz-dimline
+not-installed"texlive-tikz-dimline-doc
+not-installed"texlive-tikz-feynhand
+not-installed"texlive-tikz-feynhand-doc
+not-installed"texlive-tikz-feynman
+not-installed"texlive-tikz-feynman-doc
+not-installed"texlive-tikz-imagelabels
+not-installed"texlive-tikz-imagelabels-doc
+not-installed"texlive-tikz-inet
+not-installed"texlive-tikz-inet-doc
+not-installed"texlive-tikz-kalender
+not-installed"texlive-tikz-kalender-doc
+not-installed"texlive-tikz-karnaugh
+not-installed"texlive-tikz-karnaugh-doc
+not-installed"texlive-tikz-ladder
+not-installed"texlive-tikz-ladder-doc
+not-installed"texlive-tikz-layers
+not-installed"texlive-tikz-layers-doc
+not-installed"texlive-tikz-nef
+not-installed"texlive-tikz-nef-doc
+not-installed"texlive-tikz-network
+not-installed"texlive-tikz-network-doc
+not-installed"texlive-tikz-opm
+not-installed"texlive-tikz-opm-doc
+not-installed"texlive-tikz-optics
+not-installed"texlive-tikz-optics-doc
+not-installed"texlive-tikz-page
+not-installed"texlive-tikz-page-doc
+not-installed"texlive-tikz-palattice
+not-installed"texlive-tikz-palattice-doc
+not-installed"texlive-tikz-qtree
+not-installed"texlive-tikz-qtree-doc
+not-installed"texlive-tikz-relay
+not-installed"texlive-tikz-sfc
+not-installed"texlive-tikz-sfc-doc
+not-installed"texlive-tikz-timing
+not-installed"texlive-tikz-timing-doc
+not-installed"texlive-tikz-truchet
+not-installed"texlive-tikz-truchet-doc
+not-installed"texlive-tikzcodeblocks
+not-installed"texlive-tikzcodeblocks-doc
+not-installed"texlive-tikzducks
+not-installed"texlive-tikzducks-doc
+not-installed"texlive-tikzinclude
+not-installed"texlive-tikzinclude-doc
+not-installed"texlive-tikzlings
+not-installed"texlive-tikzlings-doc
+not-installed"texlive-tikzmark
+not-installed"texlive-tikzmark-doc
+not-installed"texlive-tikzmarmots
+not-installed"texlive-tikzmarmots-doc
+not-installed"texlive-tikzorbital
+not-installed"texlive-tikzorbital-doc
+not-installed"texlive-tikzpagenodes
+not-installed"texlive-tikzpagenodes-doc
+not-installed"texlive-tikzpeople
+not-installed"texlive-tikzpeople-doc
+not-installed"texlive-tikzpfeile
+not-installed"texlive-tikzpfeile-doc
+not-installed"texlive-tikzposter
+not-installed"texlive-tikzposter-doc
+not-installed"texlive-tikzscale
+not-installed"texlive-tikzscale-doc
+not-installed"texlive-tikzsymbols
+not-installed"texlive-tikzsymbols-doc
+not-installed"texlive-timbreicmc
+not-installed"texlive-timbreicmc-doc
+not-installed"texlive-times
+not-installed"texlive-times-fonts
+not-installed"texlive-timetable
+not-installed"texlive-timing-diagrams
+not-installed"texlive-timing-diagrams-doc
+not-installed"texlive-tinos
+not-installed"texlive-tinos-doc
+not-installed"texlive-tinos-fonts
+not-installed"texlive-tipa
+not-installed"texlive-tipa-de
+not-installed"texlive-tipa-doc
+not-installed"texlive-tipa-fonts
+not-installed"texlive-tipfr
+not-installed"texlive-tipfr-doc
+not-installed"texlive-titlecaps
+not-installed"texlive-titlecaps-doc
+not-installed"texlive-titlefoot
+not-installed"texlive-titlepages
+not-installed"texlive-titlepic
+not-installed"texlive-titlepic-doc
+not-installed"texlive-titleref
+not-installed"texlive-titleref-doc
+not-installed"texlive-titlesec
+not-installed"texlive-titlesec-doc
+not-installed"texlive-titling
+not-installed"texlive-titling-doc
+not-installed"texlive-tkz-base
+not-installed"texlive-tkz-base-doc
+not-installed"texlive-tkz-berge
+not-installed"texlive-tkz-berge-doc
+not-installed"texlive-tkz-doc
+not-installed"texlive-tkz-doc-doc
+not-installed"texlive-tkz-euclide
+not-installed"texlive-tkz-euclide-doc
+not-installed"texlive-tkz-fct
+not-installed"texlive-tkz-fct-doc
+not-installed"texlive-tkz-graph
+not-installed"texlive-tkz-graph-doc
+not-installed"texlive-tkz-kiviat
+not-installed"texlive-tkz-kiviat-doc
+not-installed"texlive-tkz-linknodes
+not-installed"texlive-tkz-linknodes-doc
+not-installed"texlive-tkz-orm
+not-installed"texlive-tkz-orm-doc
+not-installed"texlive-tkz-tab
+not-installed"texlive-tkz-tab-doc
+not-installed"texlive-tlc-article
+not-installed"texlive-tlc-article-doc
+not-installed"texlive-tlc2
+not-installed"texlive-tlcockpit
+not-installed"texlive-tlcockpit-bin
+not-installed"texlive-tlcockpit-doc
+not-installed"texlive-tlshell
+not-installed"texlive-tlshell-bin
+not-installed"texlive-tlshell-doc
+not-installed"texlive-tocbibind
+not-installed"texlive-tocbibind-doc
+not-installed"texlive-tocdata
+not-installed"texlive-tocdata-doc
+not-installed"texlive-tocloft
+not-installed"texlive-tocloft-doc
+not-installed"texlive-tocvsec2
+not-installed"texlive-tocvsec2-doc
+not-installed"texlive-todo
+not-installed"texlive-todo-doc
+not-installed"texlive-todonotes
+not-installed"texlive-todonotes-doc
+not-installed"texlive-tokenizer
+not-installed"texlive-tokenizer-doc
+not-installed"texlive-toolbox
+not-installed"texlive-toolbox-doc
+not-installed"texlive-tools
+not-installed"texlive-tools-doc
+not-installed"texlive-topfloat
+not-installed"texlive-topfloat-doc
+not-installed"texlive-topiclongtable
+not-installed"texlive-topiclongtable-doc
+not-installed"texlive-topletter
+not-installed"texlive-topletter-doc
+not-installed"texlive-toptesi
+not-installed"texlive-toptesi-doc
+not-installed"texlive-totcount
+not-installed"texlive-totcount-doc
+not-installed"texlive-totpages
+not-installed"texlive-totpages-doc
+not-installed"texlive-tpic2pdftex
+not-installed"texlive-tpic2pdftex-bin
+not-installed"texlive-tpslifonts
+not-installed"texlive-tpslifonts-doc
+not-installed"texlive-tqft
+not-installed"texlive-tqft-doc
+not-installed"texlive-tracklang
+not-installed"texlive-tracklang-doc
+not-installed"texlive-trajan
+not-installed"texlive-trajan-doc
+not-installed"texlive-trajan-fonts
+not-installed"texlive-tram
+not-installed"texlive-tram-doc
+not-installed"texlive-translation-array-fr
+not-installed"texlive-translation-arsclassica-de
+not-installed"texlive-translation-biblatex-de
+not-installed"texlive-translation-chemsym-de
+not-installed"texlive-translation-dcolumn-fr
+not-installed"texlive-translation-ecv-de
+not-installed"texlive-translation-enumitem-de
+not-installed"texlive-translation-europecv-de
+not-installed"texlive-translation-filecontents-de
+not-installed"texlive-translation-moreverb-de
+not-installed"texlive-translation-natbib-fr
+not-installed"texlive-translation-tabbing-fr
+not-installed"texlive-translations
+not-installed"texlive-translations-doc
+not-installed"texlive-translator
+not-installed"texlive-translator-doc
+not-installed"texlive-tree-dvips
+not-installed"texlive-tree-dvips-doc
+not-installed"texlive-treetex
+not-installed"texlive-treetex-doc
+not-installed"texlive-trfsigns
+not-installed"texlive-trfsigns-doc
+not-installed"texlive-trigonometry
+not-installed"texlive-trigonometry-doc
+not-installed"texlive-trimspaces
+not-installed"texlive-trimspaces-doc
+not-installed"texlive-trivfloat
+not-installed"texlive-trivfloat-doc
+not-installed"texlive-trsym
+not-installed"texlive-trsym-doc
+not-installed"texlive-truncate
+not-installed"texlive-truncate-doc
+not-installed"texlive-tsemlines
+not-installed"texlive-ttfutils
+not-installed"texlive-ttfutils-bin
+not-installed"texlive-ttfutils-doc
+not-installed"texlive-tucv
+not-installed"texlive-tucv-doc
+not-installed"texlive-tudscr
+not-installed"texlive-tudscr-doc
+not-installed"texlive-tufte-latex
+not-installed"texlive-tufte-latex-doc
+not-installed"texlive-tugboat
+not-installed"texlive-tugboat-doc
+not-installed"texlive-tugboat-plain
+not-installed"texlive-tugboat-plain-doc
+not-installed"texlive-tui
+not-installed"texlive-tui-doc
+not-installed"texlive-turabian
+not-installed"texlive-turabian-doc
+not-installed"texlive-turabian-formatting
+not-installed"texlive-turabian-formatting-doc
+not-installed"texlive-turkmen
+not-installed"texlive-turkmen-doc
+not-installed"texlive-turnstile
+not-installed"texlive-turnstile-doc
+not-installed"texlive-turnthepage
+not-installed"texlive-turnthepage-doc
+not-installed"texlive-twoinone
+not-installed"texlive-twoinone-doc
+not-installed"texlive-twoup
+not-installed"texlive-twoup-doc
+not-installed"texlive-txfonts
+not-installed"texlive-txfonts-doc
+not-installed"texlive-txfonts-fonts
+not-installed"texlive-txfontsb
+not-installed"texlive-txfontsb-doc
+not-installed"texlive-txfontsb-fonts
+not-installed"texlive-txgreeks
+not-installed"texlive-txgreeks-doc
+not-installed"texlive-txuprcal
+not-installed"texlive-txuprcal-doc
+not-installed"texlive-txuprcal-fonts
+not-installed"texlive-type1cm
+not-installed"texlive-type1cm-doc
+not-installed"texlive-typed-checklist
+not-installed"texlive-typed-checklist-doc
+not-installed"texlive-typeface
+not-installed"texlive-typeface-doc
+not-installed"texlive-typehtml
+not-installed"texlive-typehtml-doc
+not-installed"texlive-typeoutfileinfo
+not-installed"texlive-typeoutfileinfo-bin
+not-installed"texlive-typeoutfileinfo-doc
+not-installed"texlive-typewriter
+not-installed"texlive-typewriter-doc
+not-installed"texlive-typicons
+not-installed"texlive-typicons-doc
+not-installed"texlive-typicons-fonts
+not-installed"texlive-typoaid
+not-installed"texlive-typoaid-doc
+not-installed"texlive-typogrid
+not-installed"texlive-typogrid-doc
+not-installed"texlive-uaclasses
+not-installed"texlive-uaclasses-doc
+not-installed"texlive-uafthesis
+not-installed"texlive-uafthesis-doc
+not-installed"texlive-uantwerpendocs
+not-installed"texlive-uantwerpendocs-doc
+not-installed"texlive-uassign
+not-installed"texlive-uassign-doc
+not-installed"texlive-ucalgmthesis
+not-installed"texlive-ucalgmthesis-doc
+not-installed"texlive-ucbthesis
+not-installed"texlive-ucbthesis-doc
+not-installed"texlive-ucdavisthesis
+not-installed"texlive-ucdavisthesis-doc
+not-installed"texlive-ucharcat
+not-installed"texlive-ucharcat-doc
+not-installed"texlive-ucharclasses
+not-installed"texlive-ucharclasses-doc
+not-installed"texlive-ucs
+not-installed"texlive-ucs-doc
+not-installed"texlive-ucsmonograph
+not-installed"texlive-ucsmonograph-doc
+not-installed"texlive-ucthesis
+not-installed"texlive-ucthesis-doc
+not-installed"texlive-udesoftec
+not-installed"texlive-udesoftec-doc
+not-installed"texlive-uebungsblatt
+not-installed"texlive-uebungsblatt-doc
+not-installed"texlive-uestcthesis
+not-installed"texlive-uestcthesis-doc
+not-installed"texlive-uhc
+not-installed"texlive-uhc-doc
+not-installed"texlive-uhc-fonts
+not-installed"texlive-uhhassignment
+not-installed"texlive-uhhassignment-doc
+not-installed"texlive-uhrzeit
+not-installed"texlive-uhrzeit-doc
+not-installed"texlive-uiucredborder
+not-installed"texlive-uiucredborder-doc
+not-installed"texlive-uiucthesis
+not-installed"texlive-uiucthesis-doc
+not-installed"texlive-ukrhyph
+not-installed"texlive-ukrhyph-doc
+not-installed"texlive-ulem
+not-installed"texlive-ulem-doc
+not-installed"texlive-ulqda
+not-installed"texlive-ulqda-bin
+not-installed"texlive-ulqda-doc
+not-installed"texlive-ulthese
+not-installed"texlive-ulthese-doc
+not-installed"texlive-umbclegislation
+not-installed"texlive-umbclegislation-doc
+not-installed"texlive-umich-thesis
+not-installed"texlive-umich-thesis-doc
+not-installed"texlive-uml
+not-installed"texlive-uml-doc
+not-installed"texlive-umlaute
+not-installed"texlive-umlaute-doc
+not-installed"texlive-umoline
+not-installed"texlive-umoline-doc
+not-installed"texlive-umthesis
+not-installed"texlive-umthesis-doc
+not-installed"texlive-umtypewriter
+not-installed"texlive-umtypewriter-fonts
+not-installed"texlive-unamth-template
+not-installed"texlive-unamthesis
+not-installed"texlive-unamthesis-doc
+not-installed"texlive-undergradmath
+not-installed"texlive-underlin
+not-installed"texlive-underlin-doc
+not-installed"texlive-underoverlap
+not-installed"texlive-underoverlap-doc
+not-installed"texlive-underscore
+not-installed"texlive-underscore-doc
+not-installed"texlive-undolabl
+not-installed"texlive-undolabl-doc
+not-installed"texlive-unfonts-core
+not-installed"texlive-unfonts-core-doc
+not-installed"texlive-unfonts-core-fonts
+not-installed"texlive-unfonts-extra
+not-installed"texlive-unfonts-extra-doc
+not-installed"texlive-unfonts-extra-fonts
+not-installed"texlive-uni-wtal-ger
+not-installed"texlive-uni-wtal-ger-doc
+not-installed"texlive-uni-wtal-lin
+not-installed"texlive-uni-wtal-lin-doc
+not-installed"texlive-unicode-bidi
+not-installed"texlive-unicode-bidi-doc
+not-installed"texlive-unicode-data
+not-installed"texlive-unicode-data-doc
+not-installed"texlive-unicode-math
+not-installed"texlive-unicode-math-doc
+not-installed"texlive-unisugar
+not-installed"texlive-unisugar-doc
+not-installed"texlive-unitn-bimrep
+not-installed"texlive-unitn-bimrep-doc
+not-installed"texlive-units
+not-installed"texlive-units-doc
+not-installed"texlive-unitsdef
+not-installed"texlive-unitsdef-doc
+not-installed"texlive-universa
+not-installed"texlive-universa-doc
+not-installed"texlive-universalis
+not-installed"texlive-universalis-doc
+not-installed"texlive-universalis-fonts
+not-installed"texlive-univie-ling
+not-installed"texlive-univie-ling-doc
+not-installed"texlive-unravel
+not-installed"texlive-unravel-doc
+not-installed"texlive-unswcover
+not-installed"texlive-unswcover-doc
+not-installed"texlive-uothesis
+not-installed"texlive-uothesis-doc
+not-installed"texlive-uowthesis
+not-installed"texlive-uowthesis-doc
+not-installed"texlive-uowthesistitlepage
+not-installed"texlive-uowthesistitlepage-doc
+not-installed"texlive-upca
+not-installed"texlive-upca-doc
+not-installed"texlive-updmap-map
+not-installed"texlive-uplatex
+not-installed"texlive-uplatex-bin
+not-installed"texlive-uplatex-doc
+not-installed"texlive-upmethodology
+not-installed"texlive-upmethodology-doc
+not-installed"texlive-uppunctlm
+not-installed"texlive-uppunctlm-doc
+not-installed"texlive-upquote
+not-installed"texlive-upquote-doc
+not-installed"texlive-uptex
+not-installed"texlive-uptex-base
+not-installed"texlive-uptex-base-doc
+not-installed"texlive-uptex-bin
+not-installed"texlive-uptex-fonts
+not-installed"texlive-uptex-fonts-doc
+not-installed"texlive-upzhkinsoku
+not-installed"texlive-upzhkinsoku-doc
+not-installed"texlive-urcls
+not-installed"texlive-urcls-doc
+not-installed"texlive-uri
+not-installed"texlive-uri-doc
+not-installed"texlive-url
+not-installed"texlive-url-doc
+not-installed"texlive-urlbst
+not-installed"texlive-urlbst-bin
+not-installed"texlive-urlbst-doc
+not-installed"texlive-urwchancal
+not-installed"texlive-urwchancal-doc
+not-installed"texlive-usebib
+not-installed"texlive-usebib-doc
+not-installed"texlive-ushort
+not-installed"texlive-ushort-doc
+not-installed"texlive-uspace
+not-installed"texlive-uspace-doc
+not-installed"texlive-uspatent
+not-installed"texlive-uspatent-doc
+not-installed"texlive-ut-thesis
+not-installed"texlive-ut-thesis-doc
+not-installed"texlive-utexasthesis
+not-installed"texlive-utexasthesis-doc
+not-installed"texlive-utf8mex
+not-installed"texlive-utf8mex-doc
+not-installed"texlive-utopia
+not-installed"texlive-utopia-doc
+not-installed"texlive-utopia-fonts
+not-installed"texlive-uwmslide
+not-installed"texlive-uwmslide-doc
+not-installed"texlive-uwthesis
+not-installed"texlive-uwthesis-doc
+not-installed"texlive-vak
+not-installed"texlive-vak-doc
+not-installed"texlive-vancouver
+not-installed"texlive-vancouver-doc
+not-installed"texlive-variablelm
+not-installed"texlive-variablelm-doc
+not-installed"texlive-variations
+not-installed"texlive-variations-doc
+not-installed"texlive-varindex
+not-installed"texlive-varindex-doc
+not-installed"texlive-varisize
+not-installed"texlive-varisize-doc
+not-installed"texlive-varsfromjobname
+not-installed"texlive-varsfromjobname-doc
+not-installed"texlive-varwidth
+not-installed"texlive-varwidth-doc
+not-installed"texlive-vaucanson-g
+not-installed"texlive-vaucanson-g-doc
+not-installed"texlive-vdmlisting
+not-installed"texlive-vdmlisting-doc
+not-installed"texlive-velthuis
+not-installed"texlive-velthuis-bin
+not-installed"texlive-velthuis-doc
+not-installed"texlive-velthuis-fonts
+not-installed"texlive-venn
+not-installed"texlive-venn-doc
+not-installed"texlive-venndiagram
+not-installed"texlive-venndiagram-doc
+not-installed"texlive-venturisadf
+not-installed"texlive-venturisadf-doc
+not-installed"texlive-venturisadf-fonts
+not-installed"texlive-verbasef
+not-installed"texlive-verbasef-doc
+not-installed"texlive-verbatimbox
+not-installed"texlive-verbatimbox-doc
+not-installed"texlive-verbatimcopy
+not-installed"texlive-verbatimcopy-doc
+not-installed"texlive-verbdef
+not-installed"texlive-verbdef-doc
+not-installed"texlive-verbments
+not-installed"texlive-verbments-doc
+not-installed"texlive-verse
+not-installed"texlive-verse-doc
+not-installed"texlive-version
+not-installed"texlive-version-doc
+not-installed"texlive-versions
+not-installed"texlive-versions-doc
+not-installed"texlive-versonotes
+not-installed"texlive-versonotes-doc
+not-installed"texlive-vertbars
+not-installed"texlive-vertbars-doc
+not-installed"texlive-vgrid
+not-installed"texlive-vgrid-doc
+not-installed"texlive-vhistory
+not-installed"texlive-vhistory-doc
+not-installed"texlive-visualfaq
+not-installed"texlive-visualpstricks
+not-installed"texlive-visualtikz
+not-installed"texlive-vlna
+not-installed"texlive-vlna-bin
+not-installed"texlive-vmargin
+not-installed"texlive-vmargin-doc
+not-installed"texlive-vntex
+not-installed"texlive-vntex-doc
+not-installed"texlive-vntex-fonts
+not-installed"texlive-vocaltract
+not-installed"texlive-vocaltract-doc
+not-installed"texlive-volumes
+not-installed"texlive-volumes-doc
+not-installed"texlive-voss-mathcol
+not-installed"texlive-vpe
+not-installed"texlive-vpe-bin
+not-installed"texlive-vpe-doc
+not-installed"texlive-vruler
+not-installed"texlive-vruler-doc
+not-installed"texlive-vwcol
+not-installed"texlive-vwcol-doc
+not-installed"texlive-wadalab
+not-installed"texlive-wadalab-doc
+not-installed"texlive-wadalab-fonts
+not-installed"texlive-wallcalendar
+not-installed"texlive-wallcalendar-doc
+not-installed"texlive-wallpaper
+not-installed"texlive-wallpaper-doc
+not-installed"texlive-warning
+not-installed"texlive-warning-doc
+not-installed"texlive-warpcol
+not-installed"texlive-warpcol-doc
+not-installed"texlive-was
+not-installed"texlive-was-doc
+not-installed"texlive-wasy
+not-installed"texlive-wasy-doc
+not-installed"texlive-wasy2-ps
+not-installed"texlive-wasy2-ps-doc
+not-installed"texlive-wasy2-ps-fonts
+not-installed"texlive-wasysym
+not-installed"texlive-wasysym-doc
+not-installed"texlive-web
+not-installed"texlive-web-bin
+not-installed"texlive-webguide
+not-installed"texlive-webquiz
+not-installed"texlive-webquiz-bin
+not-installed"texlive-webquiz-doc
+not-installed"texlive-widetable
+not-installed"texlive-widetable-doc
+not-installed"texlive-widows-and-orphans
+not-installed"texlive-widows-and-orphans-doc
+not-installed"texlive-williams
+not-installed"texlive-williams-doc
+not-installed"texlive-windycity
+not-installed"texlive-windycity-doc
+not-installed"texlive-withargs
+not-installed"texlive-withargs-doc
+not-installed"texlive-witharrows
+not-installed"texlive-witharrows-doc
+not-installed"texlive-wnri
+not-installed"texlive-wnri-doc
+not-installed"texlive-wnri-latex
+not-installed"texlive-wnri-latex-doc
+not-installed"texlive-wordcount
+not-installed"texlive-wordcount-bin
+not-installed"texlive-wordcount-doc
+not-installed"texlive-wordlike
+not-installed"texlive-wordlike-doc
+not-installed"texlive-worksheet
+not-installed"texlive-worksheet-doc
+not-installed"texlive-wrapfig
+not-installed"texlive-wrapfig-doc
+not-installed"texlive-wsemclassic
+not-installed"texlive-wsemclassic-doc
+not-installed"texlive-wsuipa
+not-installed"texlive-wsuipa-doc
+not-installed"texlive-wtref
+not-installed"texlive-wtref-doc
+not-installed"texlive-xargs
+not-installed"texlive-xargs-doc
+not-installed"texlive-xassoccnt
+not-installed"texlive-xassoccnt-doc
+not-installed"texlive-xbmks
+not-installed"texlive-xbmks-doc
+not-installed"texlive-xcharter
+not-installed"texlive-xcharter-doc
+not-installed"texlive-xcharter-fonts
+not-installed"texlive-xcite
+not-installed"texlive-xcite-doc
+not-installed"texlive-xcjk2uni
+not-installed"texlive-xcjk2uni-doc
+not-installed"texlive-xcntperchap
+not-installed"texlive-xcntperchap-doc
+not-installed"texlive-xcolor
+not-installed"texlive-xcolor-doc
+not-installed"texlive-xcolor-material
+not-installed"texlive-xcolor-material-doc
+not-installed"texlive-xcolor-solarized
+not-installed"texlive-xcolor-solarized-doc
+not-installed"texlive-xcomment
+not-installed"texlive-xcomment-doc
+not-installed"texlive-xcookybooky
+not-installed"texlive-xcookybooky-doc
+not-installed"texlive-xcpdftips
+not-installed"texlive-xcpdftips-doc
+not-installed"texlive-xdoc
+not-installed"texlive-xdoc-doc
+not-installed"texlive-xduthesis
+not-installed"texlive-xduthesis-doc
+not-installed"texlive-xdvi
+not-installed"texlive-xdvi-bin
+not-installed"texlive-xdvi-doc
+not-installed"texlive-xebaposter
+not-installed"texlive-xebaposter-doc
+not-installed"texlive-xechangebar
+not-installed"texlive-xechangebar-doc
+not-installed"texlive-xecjk
+not-installed"texlive-xecjk-doc
+not-installed"texlive-xecolor
+not-installed"texlive-xecolor-doc
+not-installed"texlive-xecyr
+not-installed"texlive-xecyr-doc
+not-installed"texlive-xeindex
+not-installed"texlive-xeindex-doc
+not-installed"texlive-xellipsis
+not-installed"texlive-xellipsis-doc
+not-installed"texlive-xepersian
+not-installed"texlive-xepersian-doc
+not-installed"texlive-xesearch
+not-installed"texlive-xesearch-doc
+not-installed"texlive-xespotcolor
+not-installed"texlive-xespotcolor-doc
+not-installed"texlive-xetex
+not-installed"texlive-xetex-bin
+not-installed"texlive-xetex-devanagari
+not-installed"texlive-xetex-devanagari-doc
+not-installed"texlive-xetex-doc
+not-installed"texlive-xetex-itrans
+not-installed"texlive-xetex-itrans-doc
+not-installed"texlive-xetex-pstricks
+not-installed"texlive-xetex-pstricks-doc
+not-installed"texlive-xetex-tibetan
+not-installed"texlive-xetex-tibetan-doc
+not-installed"texlive-xetexconfig
+not-installed"texlive-xetexfontinfo
+not-installed"texlive-xetexfontinfo-doc
+not-installed"texlive-xetexko
+not-installed"texlive-xetexko-doc
+not-installed"texlive-xetexref
+not-installed"texlive-xevlna
+not-installed"texlive-xevlna-doc
+not-installed"texlive-xfakebold
+not-installed"texlive-xfakebold-doc
+not-installed"texlive-xfor
+not-installed"texlive-xfor-doc
+not-installed"texlive-xgreek
+not-installed"texlive-xgreek-doc
+not-installed"texlive-xhfill
+not-installed"texlive-xhfill-doc
+not-installed"texlive-xifthen
+not-installed"texlive-xifthen-doc
+not-installed"texlive-xii
+not-installed"texlive-xii-lat
+not-installed"texlive-xindex
+not-installed"texlive-xindex-bin
+not-installed"texlive-xindex-doc
+not-installed"texlive-xint
+not-installed"texlive-xint-doc
+not-installed"texlive-xits
+not-installed"texlive-xits-doc
+not-installed"texlive-xits-fonts
+not-installed"texlive-xkeyval
+not-installed"texlive-xkeyval-doc
+not-installed"texlive-xlop
+not-installed"texlive-xlop-doc
+not-installed"texlive-xltabular
+not-installed"texlive-xltabular-doc
+not-installed"texlive-xltxtra
+not-installed"texlive-xltxtra-doc
+not-installed"texlive-xmltex
+not-installed"texlive-xmltex-bin
+not-installed"texlive-xmltex-doc
+not-installed"texlive-xmltexconfig
+not-installed"texlive-xmpincl
+not-installed"texlive-xmpincl-doc
+not-installed"texlive-xnewcommand
+not-installed"texlive-xnewcommand-doc
+not-installed"texlive-xoptarg
+not-installed"texlive-xoptarg-doc
+not-installed"texlive-xpatch
+not-installed"texlive-xpatch-doc
+not-installed"texlive-xpeek
+not-installed"texlive-xpeek-doc
+not-installed"texlive-xpiano
+not-installed"texlive-xpiano-doc
+not-installed"texlive-xpicture
+not-installed"texlive-xpicture-doc
+not-installed"texlive-xpinyin
+not-installed"texlive-xpinyin-doc
+not-installed"texlive-xprintlen
+not-installed"texlive-xprintlen-doc
+not-installed"texlive-xpunctuate
+not-installed"texlive-xpunctuate-doc
+not-installed"texlive-xq
+not-installed"texlive-xq-doc
+not-installed"texlive-xsavebox
+not-installed"texlive-xsavebox-doc
+not-installed"texlive-xsim
+not-installed"texlive-xsim-doc
+not-installed"texlive-xskak
+not-installed"texlive-xskak-doc
+not-installed"texlive-xstring
+not-installed"texlive-xstring-doc
+not-installed"texlive-xtab
+not-installed"texlive-xtab-doc
+not-installed"texlive-xtuthesis
+not-installed"texlive-xtuthesis-doc
+not-installed"texlive-xunicode
+not-installed"texlive-xunicode-doc
+not-installed"texlive-xurl
+not-installed"texlive-xurl-doc
+not-installed"texlive-xwatermark
+not-installed"texlive-xwatermark-doc
+not-installed"texlive-xyling
+not-installed"texlive-xyling-doc
+not-installed"texlive-xymtex
+not-installed"texlive-xymtex-doc
+not-installed"texlive-xypic
+not-installed"texlive-xypic-doc
+not-installed"texlive-xypic-fonts
+not-installed"texlive-xypic-tut-pt
+not-installed"texlive-xytree
+not-installed"texlive-xytree-doc
+not-installed"texlive-yafoot
+not-installed"texlive-yafoot-doc
+not-installed"texlive-yagusylo
+not-installed"texlive-yagusylo-doc
+not-installed"texlive-yaletter
+not-installed"texlive-yaletter-doc
+not-installed"texlive-yannisgr
+not-installed"texlive-yannisgr-doc
+not-installed"texlive-yathesis
+not-installed"texlive-yathesis-doc
+not-installed"texlive-yax
+not-installed"texlive-yax-doc
+not-installed"texlive-ycbook
+not-installed"texlive-ycbook-doc
+not-installed"texlive-ydoc
+not-installed"texlive-ydoc-doc
+not-installed"texlive-yfonts
+not-installed"texlive-yfonts-doc
+not-installed"texlive-yfonts-t1
+not-installed"texlive-yfonts-t1-doc
+not-installed"texlive-yfonts-t1-fonts
+not-installed"texlive-yhmath
+not-installed"texlive-yhmath-doc
+not-installed"texlive-yhmath-fonts
+not-installed"texlive-yinit-otf
+not-installed"texlive-yinit-otf-doc
+not-installed"texlive-yinit-otf-fonts
+not-installed"texlive-york-thesis
+not-installed"texlive-york-thesis-doc
+not-installed"texlive-youngtab
+not-installed"texlive-youngtab-doc
+not-installed"texlive-yplan
+not-installed"texlive-yplan-bin
+not-installed"texlive-yplan-doc
+not-installed"texlive-ytableau
+not-installed"texlive-ytableau-doc
+not-installed"texlive-zapfchan
+not-installed"texlive-zapfchan-fonts
+not-installed"texlive-zapfding
+not-installed"texlive-zapfding-fonts
+not-installed"texlive-zebra-goodies
+not-installed"texlive-zebra-goodies-doc
+not-installed"texlive-zed-csp
+not-installed"texlive-zed-csp-doc
+not-installed"texlive-zhlineskip
+not-installed"texlive-zhlineskip-doc
+not-installed"texlive-zhlipsum
+not-installed"texlive-zhlipsum-doc
+not-installed"texlive-zhmetrics
+not-installed"texlive-zhmetrics-doc
+not-installed"texlive-zhmetrics-uptex
+not-installed"texlive-zhmetrics-uptex-doc
+not-installed"texlive-zhnumber
+not-installed"texlive-zhnumber-doc
+not-installed"texlive-zhspacing
+not-installed"texlive-zhspacing-doc
+not-installed"texlive-ziffer
+not-installed"texlive-ziffer-doc
+not-installed"texlive-zlmtt
+not-installed"texlive-zlmtt-doc
+not-installed"texlive-zootaxa-bst
+not-installed"texlive-zootaxa-bst-doc
+not-installed"texlive-zwgetfdate
+not-installed"texlive-zwgetfdate-doc
+not-installed"texlive-zwpagelayout
+not-installed"texlive-zwpagelayout-doc
+not-installed"texlive-zxjafbfont
+not-installed"texlive-zxjafbfont-doc
+not-installed"texlive-zxjafont
+not-installed"texlive-zxjafont-doc
+not-installed"texlive-zxjatype
+not-installed"texlive-zxjatype-doc
+not-installed"texmaker
+not-installed"texmath
+not-installed"texstudio
+not-installed"texworks
+not-installed"texworks-plugin-lua
+not-installed"texworks-plugin-python
+installed"tftp
+not-installed"tftpboot-installation-common
+not-installed"tftpboot-installation-openSUSE-Kubic-x86_64
+not-installed"tftpboot-installation-openSUSE-MicroOS-x86_64
+not-installed"tftpboot-installation-openSUSE-Tumbleweed-i586
+not-installed"tftpboot-installation-openSUSE-Tumbleweed-x86_64
+not-installed"tgt
+not-installed"thai-fonts
+not-installed"the_silver_searcher
+not-installed"thermald
+not-installed"thessalonica-oldstandard-otf-fonts
+not-installed"thessalonica-oldstandard-ttf-fonts
+not-installed"thessalonica-tempora-lgc-otf-fonts
+not-installed"thessalonica-tempora-lgc-ttf-fonts
+not-installed"thessalonica-theano-otf-fonts
+not-installed"thessalonica-theano-ttf-fonts
+installed"thin-provisioning-tools
+not-installed"threadweaver-devel
+not-installed"threadweaver-devel-32bit
+not-installed"thrift
+not-installed"thryomanes-fonts
+not-installed"thttpd
+not-installed"thunar
+not-installed"thunar-devel
+not-installed"thunar-lang
+not-installed"thunar-plugin-archive
+not-installed"thunar-plugin-archive-lang
+not-installed"thunar-plugin-media-tags
+not-installed"thunar-plugin-media-tags-lang
+not-installed"thunar-plugin-shares
+not-installed"thunar-plugin-shares-lang
+not-installed"thunar-plugin-vcs
+not-installed"thunar-plugin-vcs-lang
+not-installed"thunar-sendto-blueman
+not-installed"thunar-sendto-clamtk
+not-installed"thunar-volman
+not-installed"thunar-volman-branding-openSUSE
+not-installed"thunar-volman-branding-upstream
+not-installed"thunar-volman-lang
+not-installed"thunarx-python
+not-installed"thunarx-python-doc
+not-installed"thunderbolt-user-space
+not-installed"tibetan-machine-uni-fonts
+not-installed"tidy
+not-installed"tidy-doc
+not-installed"tidyp
+not-installed"tiff
+not-installed"tig
+not-installed"tiger-types
+not-installed"tiger-types-javadoc
+installed"tigervnc
+not-installed"tigervnc-x11vnc
+not-installed"tilda
+not-installed"tilda-lang
+not-installed"tilde
+not-installed"tiled
+not-installed"tilix
+not-installed"tilix-lang
+installed"time
+not-installed"time-api
+not-installed"time-api-javadoc
+installed"timezone
+installed"timezone-java
+not-installed"timidity
+not-installed"tinc
+not-installed"tini
+not-installed"tini-static
+not-installed"tint
+not-installed"tint2
+not-installed"tint2-lang
+not-installed"tintii
+not-installed"tinyb-devel
+not-installed"tinyca2
+not-installed"tinyfecvpn
+not-installed"tinygettext-devel
+not-installed"tinyobjloader-devel
+not-installed"tinyproxy
+not-installed"tinyssh
+not-installed"tinyxml-devel
+not-installed"tinyxml-docs
+not-installed"tinyxml2-devel
+not-installed"tiobench
+not-installed"tipcutils
+not-installed"tix
+not-installed"tj
+installed"tk
+not-installed"tk-32bit
+not-installed"tk-devel
+not-installed"tkdiff
+not-installed"tkfont
+not-installed"tkimg
+not-installed"tkimg-devel
+not-installed"tkinfo
+not-installed"tkirc
+not-installed"tktable
+not-installed"tkxcd
+not-installed"tlp
+not-installed"tlp-rdw
+not-installed"tls
+not-installed"tlswrap
+not-installed"tmate
+not-installed"tmon
+not-installed"tmpwatch
+installed"tmux
+not-installed"tmux-powerline
+not-installed"tmxtools
+not-installed"tn5250
+not-installed"tn5250-devel
+not-installed"tnef
+installed"tnftp
+not-installed"tntdb-doc
+not-installed"tntdb-mysql
+not-installed"tntdb-postgresql
+not-installed"tntdb-replicate
+not-installed"tntdb-sqlite
+not-installed"tntnet
+not-installed"tntnet
+not-installed"tntnet-debuginfo
+not-installed"tntnet-debugsource
+not-installed"tog-pegasus
+not-installed"tog-pegasus-devel
+not-installed"tog-pegasus-libs
+not-installed"tog-pegasus-test
+not-installed"togaII-131
+not-installed"togaII-131
+not-installed"togaII-131-debuginfo
+not-installed"togaII-134
+not-installed"togaII-134
+not-installed"togaII-134-debuginfo
+not-installed"togaII-141
+not-installed"togaII-141
+not-installed"togaII-142
+not-installed"togaII-142
+not-installed"togaII-142-debuginfo
+not-installed"tolua
+not-installed"toluapp-5.1
+not-installed"toluapp-5.3
+not-installed"tomatoes
+not-installed"tomboy
+not-installed"tomboy-lang
+not-installed"tomcat
+not-installed"tomcat-admin-webapps
+not-installed"tomcat-docs-webapp
+not-installed"tomcat-el-3_0-api
+not-installed"tomcat-embed
+not-installed"tomcat-javadoc
+not-installed"tomcat-jsp-2_3-api
+not-installed"tomcat-jsvc
+not-installed"tomcat-lib
+not-installed"tomcat-servlet-4_0-api
+not-installed"tomcat-webapps
+not-installed"tomoe
+not-installed"tomoe-devel
+not-installed"tomoe-doc
+not-installed"tomoe-gtk
+not-installed"tomoe-gtk-devel
+not-installed"tomoe-gtk-doc
+not-installed"tomoe-gtk-lang
+not-installed"tomoyo-tools
+not-installed"topal
+not-installed"topal
+not-installed"tor
+not-installed"torbrowser-apparmor-profile
+not-installed"torbrowser-launcher
+not-installed"torbrowser-launcher-lang
+not-installed"torrentinfo
+not-installed"torsocks
+not-installed"totem
+not-installed"totem-devel
+not-installed"totem-lang
+not-installed"totem-pl-parser
+not-installed"totem-pl-parser-devel
+not-installed"totem-pl-parser-lang
+not-installed"totem-plugin-brasero
+not-installed"totem-plugin-gnome-dvb-daemon
+not-installed"totem-plugins
+not-installed"touchegg
+not-installed"touchegg-gui
+not-installed"tovid
+not-installed"tovid
+not-installed"tpm-quote-tools
+not-installed"tpm-tools
+not-installed"tpm-tools-devel
+not-installed"tpm-tools-pkcs11
+not-installed"tpm2-0-tss
+not-installed"tpm2-0-tss-devel
+not-installed"tpm2-tss-engine
+not-installed"tpm2-tss-engine-bash-completion
+not-installed"tpm2-tss-engine-devel
+not-installed"tpm2.0-abrmd
+not-installed"tpm2.0-abrmd-devel
+not-installed"tpm2.0-tools
+not-installed"trace-cmd
+installed"traceroute
+not-installed"trackballs
+not-installed"tracker
+not-installed"tracker-devel
+not-installed"tracker-lang
+not-installed"tracker-miner-files
+not-installed"tracker-miner-rss
+not-installed"tracker-miners
+not-installed"tracker-miners-lang
+not-installed"trader
+not-installed"trader-lang
+not-installed"tragtor
+not-installed"tragtor
+not-installed"trang
+not-installed"transactional-update
+not-installed"transactional-update-zypp-config
+not-installed"transcode
+not-installed"transcode
+not-installed"transcode-debuginfo
+not-installed"transcode-debugsource
+not-installed"transconnect
+not-installed"transfig
+not-installed"transifex-client
+not-installed"translate-shell
+not-installed"translate-toolkit
+not-installed"translate-toolkit-devel-doc
+installed"translation-update
+not-installed"translation-update-bg
+not-installed"translation-update-ca
+not-installed"translation-update-cs
+not-installed"translation-update-da
+not-installed"translation-update-de
+not-installed"translation-update-dz
+not-installed"translation-update-el
+not-installed"translation-update-en_CA
+not-installed"translation-update-en_GB
+not-installed"translation-update-es
+not-installed"translation-update-et
+not-installed"translation-update-eu
+not-installed"translation-update-fi
+not-installed"translation-update-fr
+not-installed"translation-update-ga
+not-installed"translation-update-gl
+not-installed"translation-update-hr
+not-installed"translation-update-hu
+not-installed"translation-update-it
+not-installed"translation-update-ja
+not-installed"translation-update-ko
+not-installed"translation-update-lt
+not-installed"translation-update-lv
+not-installed"translation-update-ml
+not-installed"translation-update-nb
+not-installed"translation-update-ne
+not-installed"translation-update-nl
+not-installed"translation-update-pa
+not-installed"translation-update-pl
+not-installed"translation-update-pt
+not-installed"translation-update-pt_BR
+not-installed"translation-update-ro
+not-installed"translation-update-ru
+not-installed"translation-update-sk
+not-installed"translation-update-sl
+not-installed"translation-update-sr
+not-installed"translation-update-sv
+not-installed"translation-update-tr
+not-installed"translation-update-uk
+not-installed"translation-update-upstream
+not-installed"translation-update-vi
+not-installed"translation-update-zh_CN
+not-installed"translation-update-zh_TW
+not-installed"translator
+not-installed"translator-lang
+not-installed"transmageddon
+not-installed"transmageddon-lang
+not-installed"transmission
+installed"transmission-common
+not-installed"transmission-daemon
+not-installed"transmission-gtk
+not-installed"transmission-gtk-lang
+installed"transmission-qt
+installed"transmission-qt-lang
+not-installed"transporter
+not-installed"transporter-lang
+not-installed"transset
+not-installed"tre
+not-installed"tre-devel
+not-installed"tre-lang
+installed"tree
+not-installed"treeline
+not-installed"trello-full-backup
+not-installed"trigger-rally
+not-installed"trigger-rally-data
+not-installed"trilead-ssh2
+not-installed"trilead-ssh2-javadoc
+not-installed"trilinos
+not-installed"trilinos-devel
+not-installed"trilinos-doc
+not-installed"trilinos-gnu-mpich-hpc
+not-installed"trilinos-gnu-mpich-hpc-devel
+not-installed"trilinos-gnu-mvapich2-hpc
+not-installed"trilinos-gnu-mvapich2-hpc-devel
+not-installed"trilinos-gnu-openmpi2-hpc
+not-installed"trilinos-gnu-openmpi2-hpc-devel
+not-installed"trilinos-hpc-doc
+not-installed"trilinos-openmpi2
+not-installed"trilinos-openmpi2-devel
+not-installed"trilinos_12_10_1-gnu-mpich-hpc
+not-installed"trilinos_12_10_1-gnu-mpich-hpc-devel
+not-installed"trilinos_12_10_1-gnu-mvapich2-hpc
+not-installed"trilinos_12_10_1-gnu-mvapich2-hpc-devel
+not-installed"trilinos_12_10_1-gnu-openmpi2-hpc
+not-installed"trilinos_12_10_1-gnu-openmpi2-hpc-devel
+not-installed"trilinos_12_10_1-hpc-doc
+not-installed"trinity
+not-installed"tripwire
+not-installed"trojita
+not-installed"trousers
+not-installed"trousers-devel
+not-installed"trustedgrub
+not-installed"trustedgrub2
+not-installed"trustedgrub2-i386-pc
+not-installed"truth
+not-installed"truth-javadoc
+not-installed"tryton
+not-installed"trytond
+not-installed"trytond_account
+not-installed"trytond_account_invoice
+not-installed"trytond_account_invoice_stock
+not-installed"trytond_account_product
+not-installed"trytond_company
+not-installed"trytond_country
+not-installed"trytond_currency
+not-installed"trytond_party
+not-installed"trytond_product
+not-installed"trytond_purchase
+not-installed"trytond_purchase_request
+not-installed"trytond_stock
+not-installed"trytond_stock_lot
+not-installed"trytond_stock_supply
+not-installed"tslib
+not-installed"tslib-devel
+not-installed"tslib-devel-32bit
+not-installed"tslib-plugins
+not-installed"tsung
+not-installed"ttaenc
+not-installed"ttaenc
+not-installed"ttaenc-debuginfo
+not-installed"ttf2pt1
+not-installed"tudu
+not-installed"tuladha-jejeg-fonts
+not-installed"tumbler
+not-installed"tumbler-devel
+not-installed"tumbler-doc
+not-installed"tumbler-lang
+not-installed"tumbleweed-cli
+not-installed"tunapie
+not-installed"tunapie
+not-installed"tunctl
+installed"tuned
+not-installed"tuned-gtk
+not-installed"tuned-profiles-atomic
+not-installed"tuned-profiles-nfv
+not-installed"tuned-profiles-oracle
+not-installed"tuned-profiles-realtime
+not-installed"tuned-profiles-sap
+not-installed"tuned-profiles-sap-hana
+not-installed"tuned-utils
+not-installed"tuned-utils-systemtap
+not-installed"tup
+not-installed"tup-doc
+not-installed"tupitube
+not-installed"tupitube-plugins
+not-installed"turing
+not-installed"turing
+not-installed"turing-debuginfo
+not-installed"turing-debugsource
+not-installed"turing-devel
+not-installed"tuxcursors
+not-installed"tuxguitar
+not-installed"tuxpaint
+not-installed"tuxpaint-config
+not-installed"tuxpaint-config-lang
+not-installed"tuxpaint-devel
+not-installed"tuxpaint-stamps
+not-installed"tuxpaint-stamps-animals
+not-installed"tuxpaint-stamps-clothes
+not-installed"tuxpaint-stamps-food
+not-installed"tuxpaint-stamps-hobbies
+not-installed"tuxpaint-stamps-household
+not-installed"tuxpaint-stamps-medical
+not-installed"tuxpaint-stamps-military
+not-installed"tuxpaint-stamps-naturalforces
+not-installed"tuxpaint-stamps-people
+not-installed"tuxpaint-stamps-plants
+not-installed"tuxpaint-stamps-seasonal
+not-installed"tuxpaint-stamps-space
+not-installed"tuxpaint-stamps-sports
+not-installed"tuxpaint-stamps-symbols
+not-installed"tuxpaint-stamps-town
+not-installed"tuxpaint-stamps-vehicles
+not-installed"tv-common
+not-installed"tv-fonts
+not-installed"tvbrowser
+not-installed"tvheadend
+not-installed"tvnamer
+not-installed"tvnamer
+not-installed"tvtime
+not-installed"tvtime-lang
+not-installed"twemoji-color-font
+not-installed"twilio-utils
+not-installed"twind
+not-installed"twinkle
+not-installed"twm
+not-installed"twolame
+not-installed"txt2man
+not-installed"txt2tags
+not-installed"typelib-1_0-Accounts-1_0
+not-installed"typelib-1_0-AccountsService-1_0
+not-installed"typelib-1_0-Amtk-5
+not-installed"typelib-1_0-Anjuta-3_0
+not-installed"typelib-1_0-AppIndicator-0_1
+installed"typelib-1_0-AppIndicator3-0_1
+not-installed"typelib-1_0-AppStream-1.0
+not-installed"typelib-1_0-AppStreamGlib-1_0
+installed"typelib-1_0-Atk-1_0
+not-installed"typelib-1_0-AtrilDocument-1_5_0
+not-installed"typelib-1_0-AtrilView-1_5_0
+not-installed"typelib-1_0-Atspi-2_0
+not-installed"typelib-1_0-Avahi-0_6
+not-installed"typelib-1_0-AyatanaAppIndicator-0_1
+not-installed"typelib-1_0-AyatanaAppIndicator3-0_1
+not-installed"typelib-1_0-AyatanaIdo3-0_4
+not-installed"typelib-1_0-Babl-0_1
+not-installed"typelib-1_0-Bamf-3_0
+not-installed"typelib-1_0-BlockDev-2_0
+not-installed"typelib-1_0-BraseroBurn-3_2_0
+not-installed"typelib-1_0-BraseroMedia-3_2_0
+not-installed"typelib-1_0-BuzztraxCore-1_1
+not-installed"typelib-1_0-BuzztraxCore-1_1-32bit
+not-installed"typelib-1_0-BuzztraxIc-1_1
+not-installed"typelib-1_0-BuzztraxIc-1_1-32bit
+not-installed"typelib-1_0-CMenu-3_0
+not-installed"typelib-1_0-Caja-2_0
+not-installed"typelib-1_0-Camel-1_2
+not-installed"typelib-1_0-Caribou-1_0
+not-installed"typelib-1_0-Champlain-0_12
+not-installed"typelib-1_0-Cheese-3_0
+not-installed"typelib-1_0-CinnamonDesktop-3_0
+not-installed"typelib-1_0-CjsPrivate-1_0
+not-installed"typelib-1_0-Clutter-1_0
+not-installed"typelib-1_0-ClutterGst-3_0
+not-installed"typelib-1_0-Cogl-1_0
+not-installed"typelib-1_0-Cogl-2_0
+not-installed"typelib-1_0-CoglPango-1_0
+not-installed"typelib-1_0-CoglPango-2_0
+not-installed"typelib-1_0-Colord-1_0
+not-installed"typelib-1_0-ColordGtk-1_0
+not-installed"typelib-1_0-Colorhug-1_0
+not-installed"typelib-1_0-CryptUI-0_0
+not-installed"typelib-1_0-Cvc-1_0
+not-installed"typelib-1_0-Dbusmenu-0_4
+not-installed"typelib-1_0-DbusmenuGtk-0_4
+not-installed"typelib-1_0-DbusmenuGtk3-0_4
+not-installed"typelib-1_0-Dee-1_0
+not-installed"typelib-1_0-Devhelp-3_0
+not-installed"typelib-1_0-EBook-1_2
+not-installed"typelib-1_0-EBookContacts-1_2
+not-installed"typelib-1_0-EDataServer-1_2
+not-installed"typelib-1_0-EDataServerUI-1_2
+not-installed"typelib-1_0-Eek-0_90
+not-installed"typelib-1_0-Entangle-0_1
+not-installed"typelib-1_0-Eom-1_0
+not-installed"typelib-1_0-EvinceDocument-3_0
+not-installed"typelib-1_0-EvinceView-3_0
+not-installed"typelib-1_0-Farstream-0_2
+not-installed"typelib-1_0-Fcitx-1_0
+installed"typelib-1_0-Flatpak-1_0
+not-installed"typelib-1_0-Folks-0_6
+not-installed"typelib-1_0-FolksEds-0_6
+not-installed"typelib-1_0-FolksTelepathy-0_6
+not-installed"typelib-1_0-FolksTracker-0_6
+not-installed"typelib-1_0-Fwupd-2_0
+not-installed"typelib-1_0-GCab-1_0
+not-installed"typelib-1_0-GData-0_0
+not-installed"typelib-1_0-GES-1_0
+not-installed"typelib-1_0-GExiv2-0_10
+not-installed"typelib-1_0-GFBGraph-0_2
+not-installed"typelib-1_0-GMenu-3_0
+not-installed"typelib-1_0-GMime-2_6
+not-installed"typelib-1_0-GMime-3_0
+not-installed"typelib-1_0-GOffice-0_10
+not-installed"typelib-1_0-GPaste-1_0
+not-installed"typelib-1_0-GSSDP-1_0
+not-installed"typelib-1_0-GSound-1_0
+not-installed"typelib-1_0-GTop-2_0
+not-installed"typelib-1_0-GUPnP-1_0
+not-installed"typelib-1_0-GUPnPAV-1_0
+not-installed"typelib-1_0-GUPnPDLNA-2_0
+not-installed"typelib-1_0-GUPnPDLNAGst-2_0
+not-installed"typelib-1_0-GUPnPIgd-1_0
+not-installed"typelib-1_0-GUdev-1_0
+not-installed"typelib-1_0-GUsb-1_0
+installed"typelib-1_0-GVnc-1_0
+not-installed"typelib-1_0-GVncPulse-1_0
+not-installed"typelib-1_0-GWeather-3_0
+not-installed"typelib-1_0-GXPS-0_1
+not-installed"typelib-1_0-Gck-1
+not-installed"typelib-1_0-Gcr-3
+not-installed"typelib-1_0-GcrUi-3
+not-installed"typelib-1_0-Gda-5_0
+not-installed"typelib-1_0-Gdaui-5_0
+installed"typelib-1_0-GdkPixbuf-2_0
+not-installed"typelib-1_0-GdkPixdata-2_0
+not-installed"typelib-1_0-Gdl-3
+not-installed"typelib-1_0-Gdm-1_0
+not-installed"typelib-1_0-Gee-0_8
+not-installed"typelib-1_0-Gee-1_0
+not-installed"typelib-1_0-Gegl-0_4
+not-installed"typelib-1_0-Geoclue-2_0
+not-installed"typelib-1_0-GeocodeGlib-1_0
+not-installed"typelib-1_0-Gepub-0_6
+not-installed"typelib-1_0-Ggit-1_0
+not-installed"typelib-1_0-Gitg-1_0
+not-installed"typelib-1_0-GitgExt-1_0
+not-installed"typelib-1_0-GjsPrivate-1_0
+not-installed"typelib-1_0-Gkbd-3_0
+not-installed"typelib-1_0-Gladeui-2_0
+not-installed"typelib-1_0-GnomeAutoar-0_1
+not-installed"typelib-1_0-GnomeAutoarGtk-0_1
+not-installed"typelib-1_0-GnomeBluetooth-1_0
+installed"typelib-1_0-GnomeDesktop-3_0
+installed"typelib-1_0-GnomeKeyring-1_0
+not-installed"typelib-1_0-GoVirt-1_0
+not-installed"typelib-1_0-Goa-1_0
+not-installed"typelib-1_0-Gom-1_0
+not-installed"typelib-1_0-GooCanvas-2_0
+not-installed"typelib-1_0-Govf-0_1
+not-installed"typelib-1_0-Granite-1_0
+not-installed"typelib-1_0-Graphene-1_0
+not-installed"typelib-1_0-Grl-0_3
+not-installed"typelib-1_0-GrlNet-0_3
+not-installed"typelib-1_0-GrlPls-0_3
+not-installed"typelib-1_0-Grss-0_7
+not-installed"typelib-1_0-Gsf-1
+not-installed"typelib-1_0-Gspell-1
+installed"typelib-1_0-Gst-1_0
+not-installed"typelib-1_0-GstAllocators-1_0
+not-installed"typelib-1_0-GstApp-1_0
+not-installed"typelib-1_0-GstAudio-1_0
+not-installed"typelib-1_0-GstGL-1_0
+not-installed"typelib-1_0-GstInsertBin-1_0
+not-installed"typelib-1_0-GstMpegts-1_0
+not-installed"typelib-1_0-GstPbutils-1_0
+not-installed"typelib-1_0-GstPlayer-1_0
+not-installed"typelib-1_0-GstRtp-1_0
+not-installed"typelib-1_0-GstRtsp-1_0
+not-installed"typelib-1_0-GstRtspServer-1_0
+not-installed"typelib-1_0-GstSdp-1_0
+not-installed"typelib-1_0-GstTag-1_0
+not-installed"typelib-1_0-GstTranscoder-1_0
+not-installed"typelib-1_0-GstValidate-1_0
+not-installed"typelib-1_0-GstVideo-1_0
+not-installed"typelib-1_0-GstWebRTC-1_0
+not-installed"typelib-1_0-Gtd-1_0
+not-installed"typelib-1_0-Gtk-2_0
+installed"typelib-1_0-Gtk-3_0
+not-installed"typelib-1_0-Gtk-4_0
+not-installed"typelib-1_0-GtkClutter-1_0
+not-installed"typelib-1_0-GtkFrdp-0_1
+not-installed"typelib-1_0-GtkSource-3_0
+installed"typelib-1_0-GtkSource-4
+not-installed"typelib-1_0-GtkSpell-3_0
+installed"typelib-1_0-GtkVnc-2_0
+not-installed"typelib-1_0-Gucharmap-2_90
+not-installed"typelib-1_0-Handy-0_0
+not-installed"typelib-1_0-HarfBuzz-0_0
+not-installed"typelib-1_0-Hinawa-2_0
+not-installed"typelib-1_0-IBus-1_0
+not-installed"typelib-1_0-Ido3-0_1
+installed"typelib-1_0-JavaScriptCore-4_0
+not-installed"typelib-1_0-Json-1_0
+not-installed"typelib-1_0-Jsonrpc-1_0
+not-installed"typelib-1_0-Keybinder-0_0
+not-installed"typelib-1_0-Keybinder-3_0
+not-installed"typelib-1_0-Libmsi-1_0
+installed"typelib-1_0-Libosinfo-1_0
+not-installed"typelib-1_0-LibvirtGConfig-1_0
+installed"typelib-1_0-LibvirtGLib-1_0
+not-installed"typelib-1_0-LibvirtGObject-1_0
+not-installed"typelib-1_0-LibvirtSandbox-1_0
+not-installed"typelib-1_0-LightDM-1
+not-installed"typelib-1_0-Manette-0_2-0
+not-installed"typelib-1_0-MateDesktop-2_0
+not-installed"typelib-1_0-MateMenu-2_0
+not-installed"typelib-1_0-MatePanelApplet-4_0
+not-installed"typelib-1_0-Matekbd-1_0
+not-installed"typelib-1_0-MediaArt-2_0
+not-installed"typelib-1_0-Memphis-0_2
+not-installed"typelib-1_0-Midori-0_6
+not-installed"typelib-1_0-ModemManager-1_0
+not-installed"typelib-1_0-Modulemd-1_0
+not-installed"typelib-1_0-Modulemd-2_0
+not-installed"typelib-1_0-Muffin-0_0
+installed"typelib-1_0-NM-1_0
+not-installed"typelib-1_0-NMA-1_0
+not-installed"typelib-1_0-NMClient-1_0
+not-installed"typelib-1_0-Nautilus-3_0
+not-installed"typelib-1_0-Nemo-3_0
+not-installed"typelib-1_0-NetworkManager-1_0
+installed"typelib-1_0-Notify-0_7
+not-installed"typelib-1_0-OSTree-1_0
+not-installed"typelib-1_0-OsmGpsMap-1_0
+not-installed"typelib-1_0-PackageKitGlib-1_0
+installed"typelib-1_0-Pango-1_0
+not-installed"typelib-1_0-Peas-1_0
+not-installed"typelib-1_0-PeasGtk-1_0
+not-installed"typelib-1_0-Playerctl-2_0_1
+not-installed"typelib-1_0-Pluma-1_0
+not-installed"typelib-1_0-Polari-1_0
+not-installed"typelib-1_0-Polkit-1_0
+not-installed"typelib-1_0-Poppler-0_18
+not-installed"typelib-1_0-Rest-0_7
+not-installed"typelib-1_0-Retro-0_14-0
+not-installed"typelib-1_0-Rsvg-2_0
+not-installed"typelib-1_0-RygelCore-2_6
+not-installed"typelib-1_0-RygelRenderer-2_6
+not-installed"typelib-1_0-RygelRendererGst-2_6
+not-installed"typelib-1_0-RygelServer-2_6
+not-installed"typelib-1_0-Secret-1
+not-installed"typelib-1_0-Signon-1_0
+not-installed"typelib-1_0-Skk-1_0
+installed"typelib-1_0-Soup-2_4
+installed"typelib-1_0-SpiceClientGlib-2_0
+installed"typelib-1_0-SpiceClientGtk-3_0
+not-installed"typelib-1_0-TelepathyFarstream-0_6
+not-installed"typelib-1_0-TelepathyGlib-0_12
+not-installed"typelib-1_0-TelepathyLogger-0_2
+not-installed"typelib-1_0-Template-1_0
+not-installed"typelib-1_0-Tepl-4
+not-installed"typelib-1_0-Thunarx-3_0
+not-installed"typelib-1_0-TotemPlParser-1_0
+not-installed"typelib-1_0-Tracker-2_0
+not-installed"typelib-1_0-TrackerControl-2_0
+not-installed"typelib-1_0-TrackerMiner-2_0
+not-installed"typelib-1_0-UDisks-2_0
+not-installed"typelib-1_0-Uhm-0_0
+not-installed"typelib-1_0-Unique-1_0
+not-installed"typelib-1_0-Unity-7_0
+not-installed"typelib-1_0-UnityExtras-7_0
+not-installed"typelib-1_0-UpowerGlib-1_0
+not-installed"typelib-1_0-Urfkill-0_0
+not-installed"typelib-1_0-Vips-8_5
+installed"typelib-1_0-Vte-2.91
+installed"typelib-1_0-WebKit2-4_0
+not-installed"typelib-1_0-WebKit2WebExtension-4_0
+not-installed"typelib-1_0-Wnck-1_0
+not-installed"typelib-1_0-Wnck-3_0
+not-installed"typelib-1_0-Workrave-1_0
+not-installed"typelib-1_0-XApp-1_0
+not-installed"typelib-1_0-Xkl-1_0
+not-installed"typelib-1_0-Xmlb-1_0
+not-installed"typelib-1_0-XplayerPlParser-1_0
+not-installed"typelib-1_0-XreaderDocument-1_5
+not-installed"typelib-1_0-XreaderView-1_5
+not-installed"typelib-1_0-Zeitgeist-2_0
+not-installed"typelib-1_0-Zpj-0_0
+not-installed"typelib-1_0-kkc-1_0
+not-installed"typelib-1_0-libdazzle-1_0
+not-installed"typelib-1_0-libmirage-3_2
+not-installed"typelib-1_0-libxfce4util-1_0
+not-installed"typesafe-config
+not-installed"typesafe-config-javadoc
+installed"typescript
+not-installed"tzdb
+not-installed"u-boot-tools
+not-installed"u2f-host
+not-installed"u2f-server
+not-installed"u3-tool
+not-installed"uae
+not-installed"uae
+not-installed"uae-debuginfo
+not-installed"uae-debugsource
+not-installed"ubuntu-fonts
+not-installed"ubuntu-mate-icon-theme
+not-installed"ubuntu-mate-wallpapers
+not-installed"ubuntu-mono-icon-theme
+not-installed"uchardet
+not-installed"ucl-devel
+not-installed"ucm
+installed"ucode-amd
+installed"ucode-intel
+not-installed"ucommon
+not-installed"ucommon-devel
+not-installed"ucpp
+not-installed"ucpp-devel
+not-installed"udav
+installed"udev
+not-installed"udev-browse
+installed"udev-configure-printer
+not-installed"udev-persistent-ifnames
+not-installed"udftools
+not-installed"udhcp
+not-installed"udiskie
+not-installed"udiskie-lang
+installed"udisks2
+installed"udisks2-lang
+not-installed"udns
+not-installed"udns-devel
+not-installed"udp2raw-tunnel
+not-installed"udpspeeder
+not-installed"udtrace
+not-installed"ufiformat
+not-installed"ufraw
+not-installed"ufraw-lang
+not-installed"uftpd
+not-installed"ufw
+not-installed"ufw-lang
+not-installed"uget
+not-installed"uget-integrator
+not-installed"uget-lang
+not-installed"uhd-devel
+not-installed"uhd-doc
+not-installed"uhd-firmware
+not-installed"uhd-udev
+not-installed"uhttpmock-devel
+not-installed"uhubctl
+not-installed"uid_wrapper
+not-installed"uim
+not-installed"uim-32bit
+not-installed"uim-devel
+not-installed"uim-gtk2
+not-installed"uim-gtk2-32bit
+not-installed"uim-gtk3
+not-installed"uim-gtk3-32bit
+not-installed"uim-qt5
+not-installed"uim-qt5-32bit
+not-installed"uisp
+not-installed"ulfius-devel
+not-installed"ullae-veliyae
+not-installed"ulogd
+not-installed"ulogd-mysql
+not-installed"ulogd-pcap
+not-installed"ulogd-pgsql
+not-installed"ulogd-sqlite3
+not-installed"ultimatestunts
+not-installed"ultimatestunts-data
+not-installed"ultrastar-deluxe
+not-installed"umbrello
+not-installed"umbrello-lang
+not-installed"umoci
+not-installed"un-fonts
+not-installed"unar
+not-installed"unbound
+installed"unbound-anchor
+not-installed"unbound-devel
+not-installed"unbound-munin
+not-installed"unclutter
+not-installed"uncrustify
+not-installed"unetbootin
+not-installed"unibilium-devel
+not-installed"unicode-blocks
+not-installed"unicode-emoji
+not-installed"unicode-ucd
+not-installed"unicode-ucd-unihan
+not-installed"unifdef
+not-installed"unifraktur-fonts
+not-installed"unionfs-fuse
+not-installed"uniraum
+not-installed"uniraum
+not-installed"uniraum-debuginfo
+not-installed"uniraum-debugsource
+not-installed"uniraum-devel
+not-installed"unison
+not-installed"units
+not-installed"unittest-cpp-devel
+installed"unity-gtk-module-common
+installed"unity-gtk2-module
+installed"unity-gtk3-module
+not-installed"universal-ctags
+not-installed"univocity-parsers
+not-installed"univocity-parsers-javadoc
+installed"unixODBC
+not-installed"unixODBC-32bit
+not-installed"unixODBC-devel
+not-installed"unixbench
+not-installed"unknown-horizons
+not-installed"unknown-horizons-lang
+not-installed"unmass
+not-installed"unoconv
+not-installed"unpaper
+installed"unrar
+not-installed"unrar_wrapper
+not-installed"unsermake
+not-installed"unshield
+not-installed"unshield-devel
+installed"unzip
+installed"unzip-doc
+not-installed"unzip-rcc
+not-installed"unzix
+installed"update-alternatives
+not-installed"update-bootloader-rpm-macros
+not-installed"update-checker
+installed"update-desktop-files
+not-installed"update-test-32bit-pkg
+not-installed"update-test-32bit-pkg
+not-installed"update-test-32bit-pkg-32bit
+not-installed"update-test-affects-package-manager
+not-installed"update-test-affects-package-manager
+not-installed"update-test-broken
+not-installed"update-test-feature
+not-installed"update-test-feature
+not-installed"update-test-interactive
+not-installed"update-test-optional
+not-installed"update-test-optional
+not-installed"update-test-reboot-needed
+not-installed"update-test-reboot-needed
+not-installed"update-test-relogin-suggested
+not-installed"update-test-relogin-suggested
+not-installed"update-test-security
+not-installed"update-test-security
+not-installed"update-test-trivial
+not-installed"update-test-trivial
+not-installed"update-test-trivial
+not-installed"update_test
+not-installed"uperf
+not-installed"upm-devel
+installed"upower
+installed"upower-lang
+not-installed"upsm
+not-installed"upx
+not-installed"uranium
+not-installed"uranium-firmware-lulzbot
+not-installed"uranium-lulzbot
+not-installed"urbanlightscape
+not-installed"urfkill
+not-installed"urh
+not-installed"uriparser
+not-installed"uriparser-devel
+not-installed"uriparser-doc
+not-installed"urlscan
+not-installed"urlview
+not-installed"urlwatch
+not-installed"urxvt-font-size
+not-installed"urxvt-perls
+not-installed"us428control
+installed"usb_modeswitch
+installed"usb_modeswitch-data
+not-installed"usbauth
+not-installed"usbauth-notifier
+not-installed"usbguard
+not-installed"usbguard-applet-qt
+not-installed"usbguard-devel
+not-installed"usbguard-tools
+installed"usbmuxd
+not-installed"usbprog
+not-installed"usbprog-devel
+not-installed"usbprog-gui
+not-installed"usbredir
+not-installed"usbredir-devel
+not-installed"usbtop
+installed"usbutils
+not-installed"usbview
+not-installed"usnic_tools
+not-installed"usrp-firmware
+not-installed"usrp-tools
+not-installed"usx2yloader
+not-installed"utempter-devel
+not-installed"utempter-devel-32bit
+not-installed"utf8proc-devel
+not-installed"utfcpp-devel
+not-installed"uthash-devel
+installed"util-linux
+installed"util-linux-lang
+installed"util-linux-systemd
+not-installed"util-macros-devel
+not-installed"utils-libnfs
+not-installed"utox
+not-installed"uucp
+not-installed"uucp-xinetd
+not-installed"uudeview
+not-installed"uuid-devel
+not-installed"uuidd
+not-installed"uvcdynctrl
+not-installed"uwac0-0-devel
+not-installed"uwsc
+not-installed"uwsgi
+not-installed"uwsgi-emperor_pg
+not-installed"uwsgi-emperor_zeromq
+not-installed"uwsgi-geoip
+not-installed"uwsgi-gevent
+not-installed"uwsgi-glusterfs
+not-installed"uwsgi-greenlet
+not-installed"uwsgi-jvm
+not-installed"uwsgi-ldap
+not-installed"uwsgi-libffi
+not-installed"uwsgi-logzmq
+not-installed"uwsgi-lua
+not-installed"uwsgi-pam
+not-installed"uwsgi-php7
+not-installed"uwsgi-psgi
+not-installed"uwsgi-pypy
+not-installed"uwsgi-python
+not-installed"uwsgi-python3
+not-installed"uwsgi-sqlite3
+not-installed"uwsgi-xslt
+not-installed"v4l-conf
+not-installed"v4l-tools
+not-installed"v4l-utils
+not-installed"v4l-utils-devel-tools
+not-installed"v4l-utils-lang
+not-installed"v4l2loopback-kmp-default
+not-installed"v4l2loopback-kmp-pae
+not-installed"v4l2loopback-utils
+not-installed"vacation
+not-installed"vacuum-im
+not-installed"vacuum-im-devel
+not-installed"vacuum-im-lang
+not-installed"vacuum-im-plugins-dbusnotifications
+not-installed"vacuum-im-plugins-gmailnotify
+not-installed"vacuum-im-plugins-spellchecker
+not-installed"vacuum-im-plugins-statistics
+not-installed"vacuum-im-plugins-usermood
+not-installed"vacuum-im-plugins-usertune
+not-installed"vagrant
+not-installed"vagrant-bash-completion
+not-installed"vagrant-doc
+not-installed"vagrant-emacs
+not-installed"vagrant-libvirt
+not-installed"vagrant-libvirt-doc
+not-installed"vagrant-vim
+not-installed"vala
+not-installed"vala-panel
+not-installed"vala-panel-appmenu-lang
+not-installed"vala-panel-devel
+not-installed"vala-panel-extras-battery
+not-installed"vala-panel-extras-gtop
+not-installed"vala-panel-extras-lang
+not-installed"vala-panel-extras-volume
+not-installed"vala-panel-extras-weather
+not-installed"vala-panel-extras-xkb
+not-installed"vala-panel-extras-xkb-flags
+not-installed"vala-panel-lang
+not-installed"vala-panel-plugin-appmenu
+not-installed"vala-panel-plugin-sntray
+not-installed"vala-panel-plugin-sntray-lang
+not-installed"vala-panel-plugins-base
+not-installed"vala-panel-plugins-wnck
+not-installed"vala-panel-runner
+not-installed"valadoc
+not-installed"valadoc-doclet-devhelp
+not-installed"valadoc-doclet-gtkdoc
+not-installed"valadoc-doclet-html
+not-installed"valgrind
+not-installed"valgrind-32bit
+not-installed"valgrind-devel
+not-installed"vamp-aubio-plugins
+not-installed"vamp-aubio-plugins
+not-installed"vamp-aubio-plugins-debuginfo
+not-installed"vamp-libxtract-plugins
+not-installed"vamp-libxtract-plugins
+not-installed"vamp-libxtract-plugins-debuginfo
+not-installed"vamp-match-plugin
+not-installed"vamp-match-plugin
+not-installed"vamp-match-plugin-debuginfo
+not-installed"vamp-match-plugin-debugsource
+not-installed"vamp-mazurka-plugins
+not-installed"vamp-mazurka-plugins
+not-installed"vamp-mazurka-plugins-debuginfo
+not-installed"vamp-mazurka-plugins-debugsource
+not-installed"vamp-plugin-sdk
+not-installed"vamp-plugin-sdk-devel
+not-installed"vamp-plugin-tester
+not-installed"vamp-plugin-tester
+not-installed"vamp-plugin-tester-debuginfo
+not-installed"vamp-plugin-tester-debugsource
+not-installed"vamp-qm-plugins
+not-installed"vamp-qm-plugins
+not-installed"vamp-qm-plugins-debuginfo
+not-installed"vamps
+not-installed"vamps
+not-installed"vapoursynth-devel
+not-installed"vapoursynth-plugin-eedi3
+not-installed"vapoursynth-plugin-imwri
+not-installed"vapoursynth-plugin-miscfilters
+not-installed"vapoursynth-plugin-morpho
+not-installed"vapoursynth-plugin-ocr
+not-installed"vapoursynth-plugin-removegrain
+not-installed"vapoursynth-plugin-subtext
+not-installed"vapoursynth-plugin-vinverse
+not-installed"vapoursynth-plugin-vivtc
+not-installed"vapoursynth-tools
+not-installed"variety
+not-installed"varnish
+not-installed"varnish-devel
+not-installed"vboot
+not-installed"vbrfix
+not-installed"vcdimager
+not-installed"vcdimager-devel
+not-installed"vclt-tools
+not-installed"vclt-tools
+not-installed"vcron
+not-installed"vcsh
+not-installed"vcsh-zsh-completion
+not-installed"vde2
+not-installed"vde2-cryptcab
+not-installed"vde2-slirp
+not-installed"vdr-plugin-mcli
+not-installed"vdr-plugin-mcli
+not-installed"vdr-plugin-mcli-debuginfo
+not-installed"vdr-plugin-mcli-debugsource
+not-installed"ved
+not-installed"vegastrike
+not-installed"vegastrike-data
+not-installed"vegastrike-extra
+not-installed"vegastrike-music
+not-installed"vegastrike-speech
+not-installed"velocity
+not-installed"velocity-demo
+not-installed"velocity-javadoc
+not-installed"velocity-manual
+not-installed"velum
+not-installed"velum-branding
+not-installed"verilator
+not-installed"verilator-devel
+not-installed"verilator-doc
+not-installed"verilator-doc-pdf
+not-installed"verilator-examples
+not-installed"veusz
+not-installed"vgrep
+not-installed"vhba-kmp-default
+not-installed"vhba-kmp-pae
+not-installed"vhostmd
+not-installed"vidcutter
+not-installed"videoporama
+not-installed"videoporama
+not-installed"vido
+not-installed"vido-lang
+not-installed"viewnior
+not-installed"viewnior-lang
+not-installed"viewres
+not-installed"viewvc
+not-installed"vifm
+not-installed"vifm-colors
+not-installed"vigra-devel
+installed"vim
+not-installed"vim-bootstrap
+not-installed"vim-completion-golang
+installed"vim-data
+installed"vim-data-common
+not-installed"vim-fzf
+not-installed"vim-icinga2
+not-installed"vim-plugin-NERDcommenter
+not-installed"vim-plugin-NERDtree
+not-installed"vim-plugin-a
+not-installed"vim-plugin-ack
+not-installed"vim-plugin-align
+not-installed"vim-plugin-bufexplorer
+not-installed"vim-plugin-calendar
+not-installed"vim-plugin-colorschemes
+not-installed"vim-plugin-colorsel
+not-installed"vim-plugin-conky
+not-installed"vim-plugin-devhelp
+not-installed"vim-plugin-diffchanges
+not-installed"vim-plugin-editorconfig
+not-installed"vim-plugin-fugitive
+not-installed"vim-plugin-gitdiff
+not-installed"vim-plugin-gnupg
+not-installed"vim-plugin-latex
+not-installed"vim-plugin-locateopen
+not-installed"vim-plugin-matrix
+not-installed"vim-plugin-minibufexpl
+not-installed"vim-plugin-multiplesearch
+not-installed"vim-plugin-neomutt
+not-installed"vim-plugin-nginx
+not-installed"vim-plugin-powerline
+not-installed"vim-plugin-project
+not-installed"vim-plugin-quilt
+not-installed"vim-plugin-rails
+not-installed"vim-plugin-searchcomplete
+not-installed"vim-plugin-showmarks
+not-installed"vim-plugin-snipmate
+not-installed"vim-plugin-supertab
+not-installed"vim-plugin-taglist
+not-installed"vim-plugin-tlib
+not-installed"vim-plugin-tregisters
+not-installed"vim-plugin-tselectbuffer
+not-installed"vim-plugin-tselectfiles
+not-installed"vim-plugin-utl
+not-installed"vim-plugin-vimwiki
+not-installed"vim-plugin-zoomwin
+not-installed"vimb
+not-installed"vimpc
+not-installed"vimpc
+not-installed"vimpc-debuginfo
+not-installed"vimpc-debugsource
+not-installed"vinagre
+not-installed"vinagre-lang
+not-installed"vino
+not-installed"vino-lang
+not-installed"vips-doc
+not-installed"vips-tools
+not-installed"virglrenderer-devel
+not-installed"virglrenderer-test-server
+installed"virt-install
+installed"virt-manager
+installed"virt-manager-common
+not-installed"virt-sandbox
+not-installed"virt-top
+installed"virt-v2v
+installed"virt-viewer
+installed"virt-what
+not-installed"virtualbox
+not-installed"virtualbox-devel
+not-installed"virtualbox-guest-desktop-icons
+not-installed"virtualbox-guest-source
+not-installed"virtualbox-guest-tools
+not-installed"virtualbox-guest-x11
+not-installed"virtualbox-host-source
+not-installed"virtualbox-kmp-default
+not-installed"virtualbox-qt
+not-installed"virtualbox-vnc
+not-installed"virtualbox-websrv
+not-installed"viruskiller
+not-installed"visio2svg-conv
+not-installed"visualjackm
+not-installed"vit
+not-installed"vitetris
+not-installed"vivaldi
+not-installed"vivaldi
+not-installed"vkd3d-devel
+not-installed"vkd3d-devel-32bit
+not-installed"vkeybd
+not-installed"vkmark
+not-installed"vkquake
+installed"vlan
+installed"vlc
+not-installed"vlc
+not-installed"vlc-beta
+not-installed"vlc-beta
+not-installed"vlc-beta-debuginfo
+not-installed"vlc-beta-debugsource
+not-installed"vlc-beta-devel
+not-installed"vlc-beta-noX
+not-installed"vlc-beta-noX-debuginfo
+not-installed"vlc-beta-noX-lang
+not-installed"vlc-beta-qt
+not-installed"vlc-beta-qt-debuginfo
+installed"vlc-codec-gstreamer
+not-installed"vlc-codec-gstreamer-debuginfo
+installed"vlc-codecs
+not-installed"vlc-codecs-debuginfo
+not-installed"vlc-debuginfo
+not-installed"vlc-debugsource
+not-installed"vlc-devel
+not-installed"vlc-jack
+not-installed"vlc-jack-debuginfo
+not-installed"vlc-lang
+installed"vlc-noX
+not-installed"vlc-noX-debuginfo
+installed"vlc-qt
+not-installed"vlc-qt-debuginfo
+installed"vlc-vdpau
+not-installed"vlc-vdpau-debuginfo
+not-installed"vlgothic-fonts
+not-installed"vlmc
+not-installed"vlmc
+not-installed"vlmc-debuginfo
+not-installed"vlmc-debugsource
+not-installed"vm-dump-metrics
+installed"vm-install
+not-installed"vmmlib
+not-installed"vmmlib-devel
+not-installed"vmmlib-doc
+not-installed"vms-empire
+not-installed"vmtouch
+not-installed"vncmanager
+not-installed"vncmanager-controller
+not-installed"vncmanager-controller-gnome
+not-installed"vncmanager-greeter
+not-installed"vnote
+not-installed"vnstat
+not-installed"vnstat-cgi
+not-installed"vo-aacenc
+not-installed"vo-aacenc-debugsource
+not-installed"vo-amrwbenc
+not-installed"vo-amrwbenc-debugsource
+not-installed"vobcopy
+not-installed"vobcopy
+not-installed"vobcopy-debuginfo
+not-installed"vobcopy-debugsource
+not-installed"vocal
+not-installed"vocal-lang
+not-installed"vodovod
+not-installed"voikkospell
+not-installed"vokoscreen
+not-installed"vollkorn-fonts
+installed"vorbis-tools
+installed"vorbis-tools-lang
+not-installed"vorbisgain
+not-installed"voro++
+not-installed"voro++-devel
+not-installed"vorta
+not-installed"votca-csg
+not-installed"votca-csg-bash
+not-installed"votca-csg-common
+not-installed"votca-csg-devel
+not-installed"votca-csg-doc
+not-installed"votca-csg-tutorials
+not-installed"votca-csgapps
+not-installed"votca-ctp
+not-installed"votca-ctp-common
+not-installed"votca-ctp-devel
+not-installed"votca-ctp-doc
+not-installed"votca-tools
+not-installed"votca-tools-devel
+not-installed"votca-xtp
+not-installed"votca-xtp-common
+not-installed"votca-xtp-devel
+not-installed"votca-xtp-doc
+not-installed"voxelands
+not-installed"vpcs
+not-installed"vpnc
+not-installed"vpp
+not-installed"vpp-api-lua
+not-installed"vpp-api-python
+not-installed"vpp-devel
+not-installed"vpp-plugins
+not-installed"vpx-tools
+not-installed"vsftpd
+not-installed"vsqlite++-devel
+not-installed"vtable-dumper
+not-installed"vtcl
+not-installed"vte-devel
+installed"vte-lang
+not-installed"vte-tools
+not-installed"vtk-devel
+not-installed"vtk-devel-doc
+not-installed"vtk-examples
+not-installed"vtk-java
+not-installed"vtk-openmpi-devel
+not-installed"vtk-openmpi-devel-doc
+not-installed"vtk-openmpi-java
+not-installed"vtk-openmpi-qt
+not-installed"vtk-openmpi2-devel
+not-installed"vtk-openmpi2-devel-doc
+not-installed"vtk-openmpi2-java
+not-installed"vtk-openmpi2-qt
+not-installed"vtk-qt
+not-installed"vtkdata
+not-installed"vulkan-devel
+not-installed"vulkan-headers
+installed"vulkan-tools
+not-installed"vulkan-validationlayers
+not-installed"vusb-analyzer
+not-installed"vym
+not-installed"w3c-markup-validator
+not-installed"w3c-markup-validator-libs
+installed"w3m
+installed"w3m-inline-image
+not-installed"w3mir
+not-installed"w_scan
+not-installed"wadptr
+not-installed"waffle
+not-installed"waffle-devel
+installed"wallpaper-branding-openSUSE
+not-installed"wallpapers-openSUSE-extra
+not-installed"wallstreet
+not-installed"wammu
+not-installed"wammu-lang
+not-installed"wang-fonts
+not-installed"warewulf-cluster
+not-installed"warewulf-common
+not-installed"warewulf-doc
+not-installed"warewulf-provision
+not-installed"warewulf-provision-i386-initramfs
+not-installed"warewulf-provision-ipxe-images
+not-installed"warewulf-provision-server
+not-installed"warewulf-provision-x86_64-initramfs
+not-installed"warewulf-vnfs
+not-installed"warzone2100
+not-installed"warzone2100-data
+not-installed"watchman
+not-installed"watchman-python
+not-installed"wavemon
+not-installed"wavpack
+not-installed"wavpack-devel
+not-installed"way-cooler
+not-installed"waybar
+not-installed"wayland-devel
+not-installed"wayland-devel-32bit
+not-installed"wayland-protocols-devel
+not-installed"waylandpp
+not-installed"waylandpp-devel
+not-installed"wbxml2-tools
+not-installed"wcd
+not-installed"wcslib-devel
+not-installed"wcslib-doc
+not-installed"wcslib-tools
+not-installed"wdiff
+not-installed"wdiff-lang
+not-installed"wdm
+not-installed"weather-wallpaper
+not-installed"weather-wallpaper-lang
+not-installed"weave-k8s-yaml
+not-installed"weave-kube
+not-installed"weave-npc
+not-installed"webalizer
+not-installed"webalizer-flags
+not-installed"webcamoid
+not-installed"webcamoid-devel
+not-installed"webdot
+not-installed"webenginepart
+not-installed"webkit-jsc-4
+installed"webkit2gtk-4_0-injected-bundles
+not-installed"webkit2gtk3-devel
+not-installed"webkit2gtk3-minibrowser
+not-installed"webkit2gtk3-plugin-process-gtk2
+not-installed"websocketpp-devel
+not-installed"webvfx
+not-installed"webvfx-devel
+not-installed"webvfx-module
+not-installed"weechat
+not-installed"weechat-aspell
+not-installed"weechat-devel
+not-installed"weechat-lang
+not-installed"weechat-lua
+not-installed"weechat-perl
+not-installed"weechat-python
+not-installed"weechat-ruby
+not-installed"weechat-tcl
+not-installed"weld-parent
+not-installed"werken-xpath
+not-installed"werken-xpath-javadoc
+not-installed"wesnoth
+not-installed"wesnoth-campaign-server
+not-installed"wesnoth-data
+not-installed"wesnoth-fslayout
+not-installed"wesnoth-server
+not-installed"weston
+not-installed"weston-devel
+installed"wget
+not-installed"wgetpaste
+not-installed"when-command
+not-installed"when-command-lang
+not-installed"whfc
+installed"which
+not-installed"whohas
+not-installed"whois
+installed"wicked
+installed"wicked-service
+not-installed"widelands
+not-installed"widelands-data
+not-installed"widelands-debug
+not-installed"wiggle
+not-installed"wiiuse-devel
+not-installed"wimlib-devel
+not-installed"wimtools
+not-installed"wine
+not-installed"wine-32bit
+not-installed"wine-devel
+not-installed"wine-devel-32bit
+installed"wine-gecko
+installed"wine-mono
+not-installed"wine-nine-standalone
+not-installed"wine-nine-standalone-32bit
+installed"wine-staging
+installed"wine-staging-32bit
+not-installed"wine-staging-devel
+not-installed"wine-staging-devel-32bit
+not-installed"wineasio
+not-installed"wineasio
+not-installed"wineasio-32bit
+not-installed"wineasio-32bit-debuginfo
+not-installed"wineasio-debuginfo
+not-installed"wineasio-debugsource
+installed"winetricks
+not-installed"winff
+not-installed"winff
+not-installed"winff-debuginfo
+not-installed"winff-debugsource
+not-installed"winff-lang
+not-installed"winpr2-devel
+not-installed"winrs
+not-installed"wipe
+installed"wireguard-tools
+installed"wireless-regdb
+installed"wireless-tools
+not-installed"wireshark
+not-installed"wireshark-devel
+not-installed"wireshark-plugin-libvirt
+not-installed"wireshark-ui-qt
+not-installed"withlock
+not-installed"wizznic
+not-installed"wkhtmltopdf
+not-installed"wkhtmltopdf-devel
+not-installed"wlc-devel
+not-installed"wlroots-devel
+not-installed"wm-icons
+not-installed"wmakerconf
+installed"wmctrl
+not-installed"wmgui
+not-installed"wminput
+not-installed"wmpomme
+not-installed"wmutils
+not-installed"wnck-sharp
+not-installed"woff2-devel
+installed"wol
+installed"wol-lang
+not-installed"wol-udev-rules
+not-installed"wondershaper
+not-installed"woodstox-core
+not-installed"woodstox-core-javadoc
+not-installed"wordcut
+not-installed"wordcut-devel
+not-installed"wordnet
+not-installed"wordnet-devel
+installed"words
+not-installed"words-british
+not-installed"words-canadian
+not-installed"workrave
+not-installed"workrave-devel
+installed"wpa_supplicant
+not-installed"wpa_supplicant-gui
+not-installed"wpan-tools
+not-installed"wput
+not-installed"wput
+not-installed"wput-debuginfo
+not-installed"wput-debugsource
+not-installed"wput-lang
+not-installed"wqy-bitmap-fonts
+not-installed"wqy-microhei-fonts
+not-installed"wqy-zenhei-fonts
+not-installed"wrapsix
+not-installed"writerperfect
+not-installed"wrk
+not-installed"ws-jaxme
+not-installed"ws-jaxme-javadoc
+not-installed"ws-jaxme-manual
+not-installed"wsdl4j
+not-installed"wsdl4j-javadoc
+not-installed"wslay
+not-installed"wslay-devel
+not-installed"wsmancli
+not-installed"wt
+not-installed"wt-devel
+not-installed"wumpus
+not-installed"wv
+not-installed"wv-devel
+not-installed"wv2-devel
+not-installed"wxEDID
+not-installed"wxEphe
+not-installed"wxGTK3-3_2-devel
+not-installed"wxMaxima
+not-installed"wxQt-3_2-devel
+not-installed"wxWidgets-3_0-devel
+not-installed"wxWidgets-3_0-devel-32bit
+not-installed"wxWidgets-3_0-docs
+not-installed"wxWidgets-3_0-nostl-devel
+not-installed"wxWidgets-3_0-plugin-sound_sdlu-3_0
+not-installed"wxWidgets-3_0-plugin-sound_sdlu-3_0-32bit
+not-installed"wxWidgets-3_2-devel
+not-installed"wxWidgets-3_2-plugin-sound_sdlu-3_2
+not-installed"wxWidgets-docs
+installed"wxWidgets-lang
+not-installed"wxWidgets-wxcontainer
+not-installed"wxWidgets-wxcontainer-compat-lib-config
+not-installed"wxWidgets-wxcontainer-debugsource
+not-installed"wxWidgets-wxcontainer-devel
+not-installed"wxWidgets-wxcontainer-devel-debuginfo
+not-installed"wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer
+not-installed"wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-32bit
+not-installed"wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-32bit-debuginfo
+not-installed"wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-debuginfo
+not-installed"wxcam
+not-installed"wxcam
+not-installed"wxcam-debuginfo
+not-installed"wxcam-debugsource
+not-installed"wxhexeditor
+not-installed"wxhexeditor-lang
+not-installed"wxlua
+not-installed"wxlua-devel
+not-installed"wxmp3gain
+not-installed"wxmp3gain-lang
+not-installed"wxsqlite3-devel
+not-installed"wxstedit
+not-installed"wxstedit-devel
+not-installed"wxsvg
+not-installed"wyrd
+not-installed"wyrmgus
+not-installed"wyrmgus-devel
+not-installed"wyrmsun
+installed"x11
+not-installed"x11-japanese-bitmap-fonts
+installed"x11-tools
+not-installed"x11-video-nvidiaG04
+installed"x11-video-nvidiaG05
+not-installed"x11perf
+not-installed"x11vnc
+not-installed"x11vnc-frontend
+not-installed"x264
+not-installed"x264-debuginfo
+not-installed"x265
+not-installed"x265
+not-installed"x265-debuginfo
+not-installed"x265-debugsource
+not-installed"x2x
+not-installed"x3270
+not-installed"x86info
+not-installed"xalan-c
+not-installed"xalan-j2
+not-installed"xalan-j2-demo
+not-installed"xalan-j2-manual
+not-installed"xalan-j2-xsltc
+not-installed"xano-mincho-fonts
+not-installed"xaos
+not-installed"xaos-lang
+not-installed"xapian-core
+not-installed"xapian-core-doc
+not-installed"xapian-core-examples
+not-installed"xapps-common
+not-installed"xapps-common-lang
+not-installed"xar
+installed"xauth
+not-installed"xautolock
+not-installed"xautomation
+not-installed"xaw3dd
+not-installed"xawtv
+not-installed"xbacklight
+not-installed"xbanish
+not-installed"xbase
+not-installed"xbase-devel
+not-installed"xbase-doc
+not-installed"xbean
+not-installed"xbean-javadoc
+not-installed"xbench
+not-installed"xbiff
+not-installed"xbindkeys
+installed"xbitmaps
+not-installed"xbitmaps-devel
+not-installed"xboard
+not-installed"xboard
+not-installed"xboard-debuginfo
+not-installed"xboard-debugsource
+not-installed"xbomb
+not-installed"xboxdrv
+installed"xbrlapi
+not-installed"xbrz-devel
+not-installed"xbsql
+not-installed"xbsql-devel
+not-installed"xcalc
+not-installed"xcalib
+not-installed"xcalib-profiles
+not-installed"xcb
+not-installed"xcb-proto-devel
+not-installed"xcb-util-cursor-devel
+not-installed"xcb-util-cursor-devel-32bit
+not-installed"xcb-util-devel
+not-installed"xcb-util-devel-32bit
+not-installed"xcb-util-errors-devel
+not-installed"xcb-util-image-devel
+not-installed"xcb-util-image-devel-32bit
+not-installed"xcb-util-keysyms-devel
+not-installed"xcb-util-keysyms-devel-32bit
+not-installed"xcb-util-renderutil-devel
+not-installed"xcb-util-renderutil-devel-32bit
+not-installed"xcb-util-wm-devel
+not-installed"xcb-util-wm-devel-32bit
+not-installed"xcb-util-xrm-devel
+not-installed"xcfa
+not-installed"xcfa
+not-installed"xcfa-debuginfo
+not-installed"xcfa-lang
+not-installed"xclass
+not-installed"xclass-devel
+installed"xclip
+not-installed"xclipboard
+installed"xclock
+not-installed"xcm
+not-installed"xcmsdb
+not-installed"xcolors
+not-installed"xcompmgr
+installed"xconsole
+not-installed"xcoral
+not-installed"xcowsay
+not-installed"xcursor-themes
+not-installed"xcursorgen
+not-installed"xdbedizzy
+not-installed"xdelta3
+not-installed"xdg-dbus-proxy
+installed"xdg-desktop-portal
+not-installed"xdg-desktop-portal-devel
+not-installed"xdg-desktop-portal-gtk
+not-installed"xdg-desktop-portal-gtk-lang
+installed"xdg-desktop-portal-kde
+installed"xdg-desktop-portal-kde-lang
+installed"xdg-desktop-portal-lang
+installed"xdg-menu
+installed"xdg-user-dirs
+not-installed"xdg-user-dirs-gtk
+not-installed"xdg-user-dirs-gtk-lang
+installed"xdg-user-dirs-lang
+installed"xdg-utils
+not-installed"xdiskusage
+not-installed"xditview
+installed"xdm
+not-installed"xdm-xsession
+installed"xdmbgrd
+not-installed"xdmsc
+not-installed"xdotool
+not-installed"xdotool-devel
+not-installed"xdpyinfo
+not-installed"xdriinfo
+not-installed"xed
+not-installed"xed-devel
+not-installed"xed-lang
+not-installed"xedit
+not-installed"xemacs
+not-installed"xemacs-el
+not-installed"xemacs-info
+not-installed"xemacs-packages
+not-installed"xemacs-packages-el
+not-installed"xemacs-packages-info
+installed"xembedsniproxy
+not-installed"xen
+not-installed"xen-devel
+not-installed"xen-doc-html
+installed"xen-libs
+not-installed"xen-libs-32bit
+not-installed"xen-tools
+not-installed"xen-tools-domU
+not-installed"xen_server
+not-installed"xen_tools
+not-installed"xengine
+not-installed"xerces-c
+not-installed"xerces-c-doc
+not-installed"xerces-j2
+not-installed"xerces-j2-demo
+not-installed"xerces-j2-javadoc
+not-installed"xev
+not-installed"xeyes
+installed"xf86-input-evdev
+not-installed"xf86-input-evdev-devel
+installed"xf86-input-joystick
+not-installed"xf86-input-joystick-devel
+installed"xf86-input-keyboard
+installed"xf86-input-libinput
+not-installed"xf86-input-libinput-devel
+installed"xf86-input-mouse
+not-installed"xf86-input-mouse-devel
+installed"xf86-input-synaptics
+not-installed"xf86-input-synaptics-devel
+installed"xf86-input-vmmouse
+installed"xf86-input-void
+installed"xf86-input-wacom
+not-installed"xf86-input-wacom-devel
+not-installed"xf86-video-amdgpu
+not-installed"xf86-video-ark
+not-installed"xf86-video-ast
+not-installed"xf86-video-ati
+not-installed"xf86-video-chips
+not-installed"xf86-video-cirrus
+not-installed"xf86-video-dummy
+installed"xf86-video-fbdev
+not-installed"xf86-video-fbturbo
+not-installed"xf86-video-fbturbo-live
+not-installed"xf86-video-glint
+not-installed"xf86-video-i128
+not-installed"xf86-video-intel
+not-installed"xf86-video-intel-32bit
+not-installed"xf86-video-mach64
+not-installed"xf86-video-mga
+not-installed"xf86-video-neomagic
+installed"xf86-video-nouveau
+not-installed"xf86-video-nv
+not-installed"xf86-video-openchrome
+not-installed"xf86-video-qxl
+not-installed"xf86-video-r128
+not-installed"xf86-video-savage
+not-installed"xf86-video-siliconmotion
+not-installed"xf86-video-sis
+not-installed"xf86-video-sisusb
+not-installed"xf86-video-tdfx
+not-installed"xf86-video-tga
+not-installed"xf86-video-trident
+not-installed"xf86-video-v4l
+installed"xf86-video-vesa
+not-installed"xf86-video-vmware
+not-installed"xf86-video-voodoo
+not-installed"xf86dga
+not-installed"xfburn
+not-installed"xfburn-lang
+not-installed"xfce
+not-installed"xfce4-appfinder
+not-installed"xfce4-appfinder-lang
+not-installed"xfce4-battery-plugin
+not-installed"xfce4-battery-plugin-lang
+not-installed"xfce4-calculator-plugin
+not-installed"xfce4-calculator-plugin-lang
+not-installed"xfce4-clipman-plugin
+not-installed"xfce4-clipman-plugin-lang
+not-installed"xfce4-cpufreq-plugin
+not-installed"xfce4-cpufreq-plugin-lang
+not-installed"xfce4-cpugraph-plugin
+not-installed"xfce4-cpugraph-plugin-lang
+not-installed"xfce4-datetime-plugin
+not-installed"xfce4-datetime-plugin-lang
+not-installed"xfce4-dev-tools
+not-installed"xfce4-dict
+not-installed"xfce4-dict-lang
+not-installed"xfce4-diskperf-plugin
+not-installed"xfce4-diskperf-plugin-lang
+not-installed"xfce4-eyes-plugin
+not-installed"xfce4-eyes-plugin-lang
+not-installed"xfce4-fsguard-plugin
+not-installed"xfce4-fsguard-plugin-lang
+not-installed"xfce4-genmon-plugin
+not-installed"xfce4-genmon-plugin-lang
+not-installed"xfce4-icon-theme
+not-installed"xfce4-mailwatch-plugin
+not-installed"xfce4-mailwatch-plugin-lang
+not-installed"xfce4-mixer
+not-installed"xfce4-mixer-lang
+not-installed"xfce4-mixer-plugin
+not-installed"xfce4-mount-plugin
+not-installed"xfce4-mount-plugin-lang
+not-installed"xfce4-mpc-plugin
+not-installed"xfce4-mpc-plugin-lang
+not-installed"xfce4-multiload-nandhp-plugin
+not-installed"xfce4-netload-plugin
+not-installed"xfce4-netload-plugin-lang
+not-installed"xfce4-netspeed-plugin
+not-installed"xfce4-notes-plugin
+not-installed"xfce4-notes-plugin-lang
+not-installed"xfce4-notifyd
+not-installed"xfce4-notifyd-branding-openSUSE
+not-installed"xfce4-notifyd-branding-upstream
+not-installed"xfce4-notifyd-lang
+not-installed"xfce4-notifyd-theme-adapta
+not-installed"xfce4-notifyd-theme-plata
+not-installed"xfce4-panel
+not-installed"xfce4-panel-branding-openSUSE
+not-installed"xfce4-panel-branding-upstream
+not-installed"xfce4-panel-devel
+not-installed"xfce4-panel-lang
+not-installed"xfce4-panel-plugin-appmenu
+not-installed"xfce4-panel-plugin-battery
+not-installed"xfce4-panel-plugin-battery-lang
+not-installed"xfce4-panel-plugin-calculator
+not-installed"xfce4-panel-plugin-calculator-lang
+not-installed"xfce4-panel-plugin-clipman
+not-installed"xfce4-panel-plugin-clipman-lang
+not-installed"xfce4-panel-plugin-cpufreq
+not-installed"xfce4-panel-plugin-cpufreq-lang
+not-installed"xfce4-panel-plugin-cpugraph
+not-installed"xfce4-panel-plugin-cpugraph-lang
+not-installed"xfce4-panel-plugin-datetime
+not-installed"xfce4-panel-plugin-datetime-lang
+not-installed"xfce4-panel-plugin-dict
+not-installed"xfce4-panel-plugin-diskperf
+not-installed"xfce4-panel-plugin-diskperf-lang
+not-installed"xfce4-panel-plugin-eyes
+not-installed"xfce4-panel-plugin-eyes-lang
+not-installed"xfce4-panel-plugin-fsguard
+not-installed"xfce4-panel-plugin-fsguard-lang
+not-installed"xfce4-panel-plugin-genmon
+not-installed"xfce4-panel-plugin-genmon-lang
+not-installed"xfce4-panel-plugin-mailwatch
+not-installed"xfce4-panel-plugin-mailwatch-lang
+not-installed"xfce4-panel-plugin-mount
+not-installed"xfce4-panel-plugin-mount-lang
+not-installed"xfce4-panel-plugin-mpc
+not-installed"xfce4-panel-plugin-mpc-lang
+not-installed"xfce4-panel-plugin-multiload-nandhp
+not-installed"xfce4-panel-plugin-netload
+not-installed"xfce4-panel-plugin-netload-lang
+not-installed"xfce4-panel-plugin-netspeed
+not-installed"xfce4-panel-plugin-notes
+not-installed"xfce4-panel-plugin-notes-lang
+not-installed"xfce4-panel-plugin-places
+not-installed"xfce4-panel-plugin-places-lang
+not-installed"xfce4-panel-plugin-pulseaudio
+not-installed"xfce4-panel-plugin-pulseaudio-lang
+not-installed"xfce4-panel-plugin-sensors
+not-installed"xfce4-panel-plugin-sensors-devel
+not-installed"xfce4-panel-plugin-sensors-lang
+not-installed"xfce4-panel-plugin-smartbookmark
+not-installed"xfce4-panel-plugin-smartbookmark-lang
+not-installed"xfce4-panel-plugin-sntray
+not-installed"xfce4-panel-plugin-statusnotifier
+not-installed"xfce4-panel-plugin-statusnotifier-lang
+not-installed"xfce4-panel-plugin-systemload
+not-installed"xfce4-panel-plugin-systemload-lang
+not-installed"xfce4-panel-plugin-timeout
+not-installed"xfce4-panel-plugin-timeout-lang
+not-installed"xfce4-panel-plugin-timer
+not-installed"xfce4-panel-plugin-timer-lang
+not-installed"xfce4-panel-plugin-verve
+not-installed"xfce4-panel-plugin-verve-lang
+not-installed"xfce4-panel-plugin-wavelan
+not-installed"xfce4-panel-plugin-wavelan-lang
+not-installed"xfce4-panel-plugin-weather
+not-installed"xfce4-panel-plugin-weather-lang
+not-installed"xfce4-panel-plugin-whiskermenu
+not-installed"xfce4-panel-plugin-whiskermenu-lang
+not-installed"xfce4-panel-plugin-xkb
+not-installed"xfce4-panel-plugin-xkb-lang
+not-installed"xfce4-panel-profiles
+not-installed"xfce4-panel-restore-defaults
+not-installed"xfce4-places-plugin
+not-installed"xfce4-places-plugin-lang
+not-installed"xfce4-power-manager
+not-installed"xfce4-power-manager-branding-openSUSE
+not-installed"xfce4-power-manager-branding-upstream
+not-installed"xfce4-power-manager-lang
+not-installed"xfce4-power-manager-plugin
+not-installed"xfce4-pulseaudio-plugin
+not-installed"xfce4-pulseaudio-plugin-lang
+not-installed"xfce4-screensaver
+not-installed"xfce4-screenshooter
+not-installed"xfce4-screenshooter-lang
+not-installed"xfce4-screenshooter-plugin
+not-installed"xfce4-sensors-plugin
+not-installed"xfce4-sensors-plugin-devel
+not-installed"xfce4-sensors-plugin-lang
+not-installed"xfce4-session
+not-installed"xfce4-session-branding-openSUSE
+not-installed"xfce4-session-branding-upstream
+not-installed"xfce4-session-lang
+not-installed"xfce4-settings
+not-installed"xfce4-settings-branding-openSUSE
+not-installed"xfce4-settings-branding-upstream
+not-installed"xfce4-settings-lang
+not-installed"xfce4-smartbookmark-plugin
+not-installed"xfce4-smartbookmark-plugin-lang
+not-installed"xfce4-splash-branding-openSUSE
+not-installed"xfce4-statusnotifier-plugin
+not-installed"xfce4-statusnotifier-plugin-lang
+not-installed"xfce4-stopwatch-plugin
+not-installed"xfce4-stopwatch-plugin-lang
+not-installed"xfce4-systemload-plugin
+not-installed"xfce4-systemload-plugin-lang
+not-installed"xfce4-taskmanager
+not-installed"xfce4-taskmanager-lang
+not-installed"xfce4-terminal
+not-installed"xfce4-terminal-lang
+not-installed"xfce4-time-out-plugin
+not-installed"xfce4-time-out-plugin-lang
+not-installed"xfce4-timer-plugin
+not-installed"xfce4-timer-plugin-lang
+not-installed"xfce4-vala
+not-installed"xfce4-verve-plugin
+not-installed"xfce4-verve-plugin-lang
+not-installed"xfce4-volumed
+not-installed"xfce4-volumed-pulse
+not-installed"xfce4-wavelan-plugin
+not-installed"xfce4-wavelan-plugin-lang
+not-installed"xfce4-weather-plugin
+not-installed"xfce4-weather-plugin-lang
+not-installed"xfce4-whiskermenu-plugin
+not-installed"xfce4-whiskermenu-plugin-lang
+not-installed"xfce4-xkb-plugin
+not-installed"xfce4-xkb-plugin-lang
+not-installed"xfconf
+not-installed"xfconf-lang
+not-installed"xfd
+not-installed"xfdashboard
+not-installed"xfdashboard-devel
+not-installed"xfdashboard-lang
+not-installed"xfdashboard-themes
+not-installed"xfdesktop
+not-installed"xfdesktop-branding-openSUSE
+not-installed"xfdesktop-branding-upstream
+not-installed"xfdesktop-lang
+not-installed"xfig
+not-installed"xfishtank
+not-installed"xfmpc
+not-installed"xfmpc-lang
+not-installed"xfontsel
+not-installed"xfs
+not-installed"xfsdump
+not-installed"xfsinfo
+installed"xfsprogs
+not-installed"xfsprogs-devel
+not-installed"xfwm4
+not-installed"xfwm4-branding-openSUSE
+not-installed"xfwm4-branding-upstream
+not-installed"xfwm4-lang
+not-installed"xfwm4-theme-adapta
+not-installed"xfwm4-theme-plata
+not-installed"xfwm4-themes
+not-installed"xfwpcnm
+not-installed"xfwpcnm
+not-installed"xfwpcnm-debuginfo
+not-installed"xgalaga++
+not-installed"xgalaga-sdl
+not-installed"xgamma
+not-installed"xgc
+not-installed"xgnokii
+not-installed"xgrabsc
+not-installed"xhfsutil
+installed"xhost
+not-installed"xhtml-dtd
+not-installed"xiccd
+not-installed"xindy
+not-installed"xindy-doc
+not-installed"xindy-rules
+not-installed"xine-browser-plugin
+not-installed"xine-browser-plugin
+not-installed"xine-browser-plugin-debuginfo
+not-installed"xine-browser-plugin-debugsource
+not-installed"xine-lib
+not-installed"xine-lib-debugsource
+not-installed"xine-skins
+not-installed"xine-skins
+not-installed"xine-ui
+not-installed"xine-ui
+not-installed"xine-ui-32bit
+not-installed"xine-ui-32bit-debuginfo
+not-installed"xine-ui-debuginfo
+not-installed"xine-ui-debugsource
+installed"xinetd
+installed"xinit
+not-installed"xinput
+not-installed"xiphos
+not-installed"xiphos-lang
+not-installed"xiterm
+not-installed"xjadeo
+installed"xkbcomp
+not-installed"xkbcomp-devel
+not-installed"xkbevd
+not-installed"xkbprint
+not-installed"xkbutils
+installed"xkeyboard-config
+installed"xkeyboard-config-lang
+not-installed"xkeycaps
+not-installed"xkill
+installed"xl2tpd
+not-installed"xlatencytop
+not-installed"xless
+installed"xli
+not-installed"xload
+not-installed"xlockmore
+not-installed"xlogin
+not-installed"xlogo
+not-installed"xls2csv
+not-installed"xlsatoms
+not-installed"xlsclients
+not-installed"xlsfonts
+not-installed"xmag
+not-installed"xmahjongg
+not-installed"xman
+not-installed"xmanja
+installed"xmessage
+not-installed"xmgrace
+not-installed"xmgrace-devel
+not-installed"xmh
+not-installed"xmined
+installed"xml-commons-apis
+not-installed"xml-commons-apis-bootstrap
+not-installed"xml-commons-apis-javadoc
+not-installed"xml-commons-apis-manual
+not-installed"xml-commons-resolver
+not-installed"xml-commons-resolver-bootstrap
+not-installed"xml-commons-resolver-javadoc
+not-installed"xml-commons-which-bootstrap
+not-installed"xml-im-exporter
+not-installed"xml-im-exporter-javadoc
+not-installed"xml-security-c-bin
+not-installed"xml2po
+not-installed"xml2po-devel
+not-installed"xmlb-tool
+not-installed"xmlbeans
+not-installed"xmlbeans-mini
+not-installed"xmlbeans-scripts
+not-installed"xmlbird-devel
+installed"xmlcharent
+not-installed"xmldb-api
+not-installed"xmldb-api-javadoc
+not-installed"xmldb-api-sdk
+not-installed"xmldb-common
+not-installed"xmlformat
+not-installed"xmlgraphics-batik
+not-installed"xmlgraphics-batik-css
+not-installed"xmlgraphics-batik-demo
+not-installed"xmlgraphics-batik-javadoc
+not-installed"xmlgraphics-batik-rasterizer
+not-installed"xmlgraphics-batik-slideshow
+not-installed"xmlgraphics-batik-squiggle
+not-installed"xmlgraphics-batik-svgpp
+not-installed"xmlgraphics-batik-ttf2svg
+not-installed"xmlgraphics-commons
+not-installed"xmlgraphics-commons-javadoc
+not-installed"xmlgraphics-fop
+not-installed"xmlrpc-c-devel
+not-installed"xmlsec1
+not-installed"xmlsec1-devel
+not-installed"xmlsec1-gcrypt-devel
+not-installed"xmlsec1-gnutls-devel
+not-installed"xmlsec1-nss-devel
+not-installed"xmlsec1-openssl-devel
+installed"xmlstarlet
+not-installed"xmlto
+not-installed"xmltoman
+not-installed"xmltooling-schemas
+not-installed"xmltv
+not-installed"xmltv
+not-installed"xmltv-grabbers
+not-installed"xmlunit
+not-installed"xmlunit-javadoc
+not-installed"xmms2
+not-installed"xmms2-devel
+not-installed"xmms2-docs
+not-installed"xmms2-perl
+not-installed"xmms2-plugin-airplay
+not-installed"xmms2-plugin-ao
+not-installed"xmms2-plugin-apefile
+not-installed"xmms2-plugin-asf
+not-installed"xmms2-plugin-asx
+not-installed"xmms2-plugin-base
+not-installed"xmms2-plugin-cdda
+not-installed"xmms2-plugin-cue
+not-installed"xmms2-plugin-curl
+not-installed"xmms2-plugin-daap
+not-installed"xmms2-plugin-flac
+not-installed"xmms2-plugin-flv
+not-installed"xmms2-plugin-gme
+not-installed"xmms2-plugin-gvfs
+not-installed"xmms2-plugin-html
+not-installed"xmms2-plugin-ices
+not-installed"xmms2-plugin-icymetaint
+not-installed"xmms2-plugin-id3v2
+not-installed"xmms2-plugin-jack
+not-installed"xmms2-plugin-karaoke
+not-installed"xmms2-plugin-m3u
+not-installed"xmms2-plugin-modplug
+not-installed"xmms2-plugin-mp4
+not-installed"xmms2-plugin-musepack
+not-installed"xmms2-plugin-normalize
+not-installed"xmms2-plugin-ofa
+not-installed"xmms2-plugin-pulse
+not-installed"xmms2-plugin-samba
+not-installed"xmms2-plugin-sndfile
+not-installed"xmms2-plugin-speex
+not-installed"xmms2-plugin-tta
+not-installed"xmms2-plugin-vocoder
+not-installed"xmms2-plugin-wave
+not-installed"xmms2-plugin-wavpack
+not-installed"xmms2-ruby
+not-installed"xmobar
+installed"xmodmap
+not-installed"xmonad
+not-installed"xmoontool
+not-installed"xmore
+not-installed"xmorph
+not-installed"xmorph-devel
+not-installed"xmoto
+not-installed"xmoto-data
+not-installed"xmp
+not-installed"xmvn
+not-installed"xmvn-api
+not-installed"xmvn-bisect
+not-installed"xmvn-connector-aether
+not-installed"xmvn-connector-aether-javadoc
+not-installed"xmvn-connector-ivy
+not-installed"xmvn-connector-ivy-javadoc
+not-installed"xmvn-core
+not-installed"xmvn-install
+not-installed"xmvn-minimal
+not-installed"xmvn-mojo
+not-installed"xmvn-mojo-javadoc
+not-installed"xmvn-parent
+not-installed"xmvn-resolve
+not-installed"xmvn-subst
+not-installed"xnoise
+not-installed"xnoise-lang
+not-installed"xom
+not-installed"xonotic
+not-installed"xonotic-data
+not-installed"xonotic-server
+not-installed"xonsh
+not-installed"xonsh-doc
+not-installed"xorg-cf-files
+not-installed"xorg-docs
+not-installed"xorg-scripts
+not-installed"xorg-sgml-doctools
+not-installed"xorg-x11
+installed"xorg-x11-Xvnc
+not-installed"xorg-x11-Xvnc-java
+installed"xorg-x11-Xvnc-module
+not-installed"xorg-x11-Xvnc-novnc
+not-installed"xorg-x11-devel
+not-installed"xorg-x11-driver-input
+installed"xorg-x11-driver-video
+installed"xorg-x11-essentials
+installed"xorg-x11-fonts
+installed"xorg-x11-fonts-core
+installed"xorg-x11-libX11-ccache
+not-installed"xorg-x11-libs
+installed"xorg-x11-server
+not-installed"xorg-x11-server-Xspice
+installed"xorg-x11-server-extra
+not-installed"xorg-x11-server-sdk
+not-installed"xorg-x11-server-source
+installed"xorg-x11-server-wayland
+not-installed"xorg-x11-util-devel
+not-installed"xorgproto-devel
+not-installed"xorgxrdp
+installed"xorriso
+not-installed"xorriso-tcltk
+not-installed"xortool
+not-installed"xosd
+not-installed"xosd-devel
+not-installed"xosview
+not-installed"xournal
+not-installed"xournalpp
+not-installed"xournalpp-lang
+not-installed"xpaint
+not-installed"xpaint
+not-installed"xpaint-debuginfo
+not-installed"xpaint-debugsource
+not-installed"xpaint-devel
+not-installed"xpenguins
+not-installed"xpinguin
+not-installed"xplanet
+not-installed"xplatproviders
+not-installed"xplayer
+not-installed"xplayer-devel
+not-installed"xplayer-lang
+not-installed"xplayer-plparser
+not-installed"xplayer-plparser-devel
+not-installed"xplayer-plparser-lang
+not-installed"xplayer-plugin-zeitgeist
+not-installed"xplayer-plugins
+not-installed"xplsprinters
+not-installed"xpp2
+not-installed"xpp2-demo
+not-installed"xpp2-javadoc
+not-installed"xpp2-manual
+not-installed"xpp3
+not-installed"xpp3-javadoc
+not-installed"xpp3-minimal
+not-installed"xpr
+not-installed"xpra
+not-installed"xpra-html5
+not-installed"xprehashprinterlist
+not-installed"xprintidle
+not-installed"xprompt
+installed"xprop
+not-installed"xquarto
+installed"xrandr
+installed"xrdb
+not-installed"xrdp
+not-installed"xrdp-devel
+not-installed"xreader
+not-installed"xreader-devel
+not-installed"xreader-lang
+not-installed"xreader-plugin-epubdocument
+not-installed"xreader-plugin-pdfdocument
+not-installed"xreader-plugin-psdocument
+not-installed"xreader-plugin-tiffdocument
+not-installed"xreader-plugin-xpsdocument
+not-installed"xrefresh
+not-installed"xrestop
+not-installed"xroach
+not-installed"xrootd-cl
+not-installed"xrootd-cl-devel
+not-installed"xrootd-client
+not-installed"xrootd-client-devel
+not-installed"xrootd-fuse
+not-installed"xrootd-libs
+not-installed"xrootd-libs-devel
+not-installed"xrootd-private-devel
+not-installed"xrootd-server
+not-installed"xrootd-server-devel
+not-installed"xsane
+not-installed"xscope
+installed"xscreensaver
+installed"xscreensaver-data
+not-installed"xscreensaver-data-extra
+installed"xscreensaver-lang
+not-installed"xsd
+not-installed"xsd-doc
+installed"xsel
+not-installed"xselection
+not-installed"xsession
+installed"xset
+not-installed"xsetmode
+not-installed"xsetpointer
+installed"xsetroot
+not-installed"xsettingsd
+not-installed"xslide
+not-installed"xsm
+not-installed"xsp
+not-installed"xstdcmap
+not-installed"xstereograph
+not-installed"xstream
+not-installed"xstream-benchmark
+not-installed"xstream-javadoc
+not-installed"xstream-parent
+not-installed"xstroke
+not-installed"xsynth-dssi
+not-installed"xsys
+not-installed"xsys
+not-installed"xsys-debuginfo
+not-installed"xsys-debugsource
+not-installed"xt7-player-mpv
+not-installed"xt7-player-mpv
+not-installed"xtables-addons
+not-installed"xtables-addons-kmp-default
+not-installed"xtables-addons-kmp-pae
+not-installed"xtables-geoip
+installed"xtables-plugins
+not-installed"xteddy
+installed"xterm
+installed"xterm-bin
+installed"xtermset
+not-installed"xtexit
+not-installed"xtrabackup
+not-installed"xtrabackup-test
+not-installed"xtrans
+not-installed"xtrx-tools
+not-installed"xtrx-usb-udev
+not-installed"xtrx_lms7002m-devel
+not-installed"xtrxdsp-tests
+not-installed"xtrxll-tools
+not-installed"xv
+not-installed"xvfb-run
+not-installed"xvid4conf
+not-installed"xvid4conf
+not-installed"xvid4conf-debuginfo
+not-installed"xvid4conf-debugsource
+not-installed"xvidcap
+not-installed"xvidcap
+not-installed"xvidcap-debuginfo
+not-installed"xvidcap-debugsource
+not-installed"xvidcore
+not-installed"xvidcore
+not-installed"xvidcore-debugsource
+not-installed"xvidenc
+not-installed"xvidenc
+not-installed"xvidtune
+not-installed"xviewer
+not-installed"xviewer-devel
+not-installed"xviewer-lang
+not-installed"xviewer-plugin-exif-display
+not-installed"xviewer-plugin-export-to-folder
+not-installed"xviewer-plugin-fit-to-width
+not-installed"xviewer-plugin-light-theme
+not-installed"xviewer-plugin-map
+not-installed"xviewer-plugin-postasa
+not-installed"xviewer-plugin-pythonconsole
+not-installed"xviewer-plugin-send-by-mail
+not-installed"xviewer-plugin-slideshowshuffle
+not-installed"xviewer-plugins
+not-installed"xviewer-plugins-data
+not-installed"xviewer-plugins-lang
+not-installed"xvinfo
+not-installed"xvkbd
+not-installed"xwd
+not-installed"xwininfo
+not-installed"xwmfs
+not-installed"xwud
+not-installed"xxhash
+not-installed"xxhash-devel
+not-installed"xxkb
+not-installed"xyconv
+not-installed"xyconvert
+not-installed"xylib-devel
+not-installed"xyscan
+not-installed"xyscan-doc
+installed"xz
+not-installed"xz-devel
+not-installed"xz-devel-32bit
+not-installed"xz-java
+not-installed"xz-java-javadoc
+installed"xz-lang
+not-installed"xz-static-devel
+not-installed"xzgv
+not-installed"yad
+not-installed"yad
+not-installed"yad-debuginfo
+not-installed"yad-debugsource
+not-installed"yafc
+not-installed"yaics
+not-installed"yajl
+not-installed"yakuake
+not-installed"yakuake-lang
+not-installed"yamagi-quake2
+not-installed"yamagi-quake2-ctf
+not-installed"yamdi
+not-installed"yamdi
+not-installed"yamdi-debuginfo
+not-installed"yamdi-debugsource
+not-installed"yaml-cpp-devel
+not-installed"yang-tools
+not-installed"yank
+not-installed"yara
+not-installed"yara-doc
+not-installed"yaru-icon-theme
+not-installed"yasm
+not-installed"yasm-devel
+installed"yast2
+not-installed"yast2-adcommon-python
+installed"yast2-add-on
+not-installed"yast2-adsi
+not-installed"yast2-aduc
+installed"yast2-alternatives
+installed"yast2-apparmor
+not-installed"yast2-audit-laf
+installed"yast2-auth-client
+installed"yast2-auth-server
+not-installed"yast2-boot-server
+installed"yast2-bootloader
+not-installed"yast2-buildtools
+not-installed"yast2-caasp
+not-installed"yast2-cluster
+not-installed"yast2-configuration-management
+installed"yast2-control-center
+installed"yast2-control-center-qt
+installed"yast2-core
+not-installed"yast2-core-devel
+installed"yast2-country
+installed"yast2-country-data
+not-installed"yast2-devtools
+not-installed"yast2-dhcp-server
+not-installed"yast2-dns-manager
+not-installed"yast2-dns-server
+not-installed"yast2-docker
+not-installed"yast2-drbd
+not-installed"yast2-fcoe-client
+installed"yast2-firewall
+not-installed"yast2-firstboot
+not-installed"yast2-fonts
+not-installed"yast2-ftp-server
+not-installed"yast2-geo-cluster
+not-installed"yast2-gpmc
+installed"yast2-hardware-detection
+not-installed"yast2-http-server
+installed"yast2-installation
+not-installed"yast2-installation-control
+not-installed"yast2-instserver
+not-installed"yast2-iplb
+installed"yast2-iscsi-client
+not-installed"yast2-iscsi-lio-server
+not-installed"yast2-isns
+installed"yast2-journal
+installed"yast2-kdump
+installed"yast2-ldap
+installed"yast2-logs
+installed"yast2-mail
+installed"yast2-metapackage-handler
+not-installed"yast2-multipath
+installed"yast2-network
+installed"yast2-nfs-client
+installed"yast2-nfs-common
+not-installed"yast2-nfs-server
+installed"yast2-nis-client
+not-installed"yast2-nis-server
+installed"yast2-ntp-client
+installed"yast2-online-update
+not-installed"yast2-online-update-configuration
+installed"yast2-online-update-frontend
+installed"yast2-packager
+installed"yast2-pam
+installed"yast2-perl-bindings
+installed"yast2-pkg-bindings
+not-installed"yast2-pkg-bindings-devel-doc
+installed"yast2-printer
+installed"yast2-proxy
+not-installed"yast2-python-bindings
+installed"yast2-python3-bindings
+installed"yast2-qt-branding-openSUSE
+not-installed"yast2-rdp
+not-installed"yast2-rear
+not-installed"yast2-rmt
+installed"yast2-ruby-bindings
+installed"yast2-samba-client
+not-installed"yast2-samba-provision
+installed"yast2-samba-server
+installed"yast2-scanner
+installed"yast2-schema
+installed"yast2-security
+installed"yast2-services-manager
+installed"yast2-slp
+not-installed"yast2-slp-server
+installed"yast2-snapper
+installed"yast2-sound
+not-installed"yast2-squid
+installed"yast2-storage-ng
+installed"yast2-sudo
+installed"yast2-support
+installed"yast2-sysconfig
+not-installed"yast2-testsuite
+installed"yast2-tftp-server
+installed"yast2-theme
+installed"yast2-theme-breeze
+installed"yast2-theme-oxygen
+not-installed"yast2-trans
+not-installed"yast2-trans-af
+not-installed"yast2-trans-allpacks
+not-installed"yast2-trans-ar
+not-installed"yast2-trans-ast
+not-installed"yast2-trans-bg
+not-installed"yast2-trans-bn
+not-installed"yast2-trans-bs
+not-installed"yast2-trans-ca
+not-installed"yast2-trans-cs
+not-installed"yast2-trans-cy
+not-installed"yast2-trans-da
+not-installed"yast2-trans-de
+not-installed"yast2-trans-el
+installed"yast2-trans-en
+not-installed"yast2-trans-en_GB
+installed"yast2-trans-en_US
+not-installed"yast2-trans-eo
+not-installed"yast2-trans-es
+not-installed"yast2-trans-es_AR
+not-installed"yast2-trans-et
+not-installed"yast2-trans-eu
+not-installed"yast2-trans-fa
+not-installed"yast2-trans-fi
+not-installed"yast2-trans-fr
+not-installed"yast2-trans-gl
+not-installed"yast2-trans-gu
+not-installed"yast2-trans-he
+not-installed"yast2-trans-hi
+not-installed"yast2-trans-hr
+not-installed"yast2-trans-hu
+not-installed"yast2-trans-id
+not-installed"yast2-trans-it
+not-installed"yast2-trans-ja
+not-installed"yast2-trans-jv
+not-installed"yast2-trans-ka
+not-installed"yast2-trans-kab
+not-installed"yast2-trans-km
+not-installed"yast2-trans-kn
+not-installed"yast2-trans-ko
+not-installed"yast2-trans-ku
+not-installed"yast2-trans-lo
+not-installed"yast2-trans-lt
+not-installed"yast2-trans-lv
+not-installed"yast2-trans-mk
+not-installed"yast2-trans-mr
+not-installed"yast2-trans-nb
+not-installed"yast2-trans-nds
+not-installed"yast2-trans-ne
+not-installed"yast2-trans-nl
+not-installed"yast2-trans-nn
+not-installed"yast2-trans-pa
+not-installed"yast2-trans-pl
+not-installed"yast2-trans-ps
+not-installed"yast2-trans-pt
+not-installed"yast2-trans-pt_BR
+not-installed"yast2-trans-ro
+not-installed"yast2-trans-ru
+not-installed"yast2-trans-si
+not-installed"yast2-trans-sk
+not-installed"yast2-trans-sl
+not-installed"yast2-trans-sq
+not-installed"yast2-trans-sr
+not-installed"yast2-trans-sr-latin
+installed"yast2-trans-stats
+not-installed"yast2-trans-sv
+not-installed"yast2-trans-sw
+not-installed"yast2-trans-ta
+not-installed"yast2-trans-tg
+not-installed"yast2-trans-th
+not-installed"yast2-trans-tr
+not-installed"yast2-trans-uk
+not-installed"yast2-trans-vi
+not-installed"yast2-trans-wa
+not-installed"yast2-trans-xh
+not-installed"yast2-trans-zh_CN
+not-installed"yast2-trans-zh_TW
+not-installed"yast2-trans-zu
+installed"yast2-transfer
+installed"yast2-tune
+installed"yast2-update
+not-installed"yast2-update-FACTORY
+not-installed"yast2-usbauth
+installed"yast2-users
+installed"yast2-vm
+installed"yast2-vpn
+installed"yast2-x11
+installed"yast2-xml
+installed"yast2-ycp-ui-bindings
+not-installed"yast2-ycp-ui-bindings-devel
+installed"yast2_basis
+not-installed"yate
+not-installed"yate
+not-installed"yate-bts
+not-installed"yate-debuginfo
+not-installed"yate-debugsource
+not-installed"yate-devel
+not-installed"yate-scripts
+not-installed"yate-with-amrnb
+not-installed"yaz
+not-installed"yaz-doc
+not-installed"yder-devel
+not-installed"yelp
+not-installed"yelp-devel
+not-installed"yelp-lang
+not-installed"yelp-tools
+not-installed"yelp-xsl
+not-installed"yishu
+not-installed"yishu-lang
+not-installed"ykclient
+not-installed"ykpers
+not-installed"yodl
+not-installed"yomi-formula
+not-installed"you-get
+not-installed"you-get-bash-completion
+not-installed"you-get-fish-completion
+not-installed"you-get-zsh-completion
+installed"youtube-dl
+not-installed"youtube-dl
+installed"youtube-dl-bash-completion
+not-installed"youtube-dl-fish-completion
+not-installed"youtube-dl-gui
+not-installed"youtube-dl-gui-lang
+installed"youtube-dl-zsh-completion
+installed"yp-tools
+not-installed"ypbind
+not-installed"ypserv
+not-installed"ytalk
+not-installed"yubico-piv-tool
+not-installed"yubikey-manager
+not-installed"yubikey-manager-qt
+not-installed"yubikey-personalization-gui
+not-installed"yubioath-desktop
+not-installed"yudit
+not-installed"yum
+not-installed"yum-aliases
+not-installed"yum-allowdowngrade
+not-installed"yum-basearchonly
+not-installed"yum-changelog
+not-installed"yum-downloadonly
+not-installed"yum-fastestmirror
+not-installed"yum-filter-data
+not-installed"yum-lang
+not-installed"yum-list-data
+not-installed"yum-merge-conf
+not-installed"yum-metadata-parser
+not-installed"yum-priorities
+not-installed"yum-protect-packages
+not-installed"yum-protectbase
+not-installed"yum-refresh-updatesd
+not-installed"yum-tmprepo
+not-installed"yum-tsflags
+not-installed"yum-updatesd
+not-installed"yum-upgrade-helper
+not-installed"yum-utils
+not-installed"yum-verify
+not-installed"yum-versionlock
+not-installed"z
+not-installed"z3
+not-installed"z3-devel
+not-installed"zabbix-agent
+not-installed"zabbix-bash-completion
+not-installed"zabbix-java-gateway
+not-installed"zabbix-phpfrontend
+not-installed"zabbix-proxy
+not-installed"zabbix-proxy-mysql
+not-installed"zabbix-proxy-postgresql
+not-installed"zabbix-proxy-sqlite
+not-installed"zabbix-server
+not-installed"zabbix-server-mysql
+not-installed"zabbix-server-postgresql
+not-installed"zabbix-server-sqlite
+installed"zam-plugins
+not-installed"zanshin
+not-installed"zanshin-lang
+not-installed"zathura
+not-installed"zathura-bash-completion
+not-installed"zathura-devel
+not-installed"zathura-lang
+not-installed"zathura-plugin-cb
+not-installed"zathura-plugin-djvu
+not-installed"zathura-plugin-pdf-poppler
+not-installed"zathura-plugin-ps
+not-installed"zathura-zsh-completion
+not-installed"zaz
+not-installed"zbar
+not-installed"zbuild
+not-installed"zbuild
+not-installed"zchunk
+not-installed"zd1211-firmware
+not-installed"zdbsp
+not-installed"zdoom
+not-installed"zdoom
+not-installed"zeal
+not-installed"zeitgeist
+not-installed"zeitgeist-devel
+not-installed"zelda-roth-se
+not-installed"zelda-roth-se
+not-installed"zelda-xd2-mercuris-chess
+not-installed"zelda-xd2-mercuris-chess
+installed"zenity
+installed"zenity-lang
+not-installed"zerobranestudio
+installed"zerofree
+not-installed"zeroinstall-injector
+not-installed"zeromq-devel
+installed"zeromq-tools
+not-installed"zhu3d
+not-installed"zile
+not-installed"zile-doc
+not-installed"zim
+not-installed"zim-lang
+not-installed"zimg-devel
+not-installed"zinnia
+not-installed"zinnia-devel
+not-installed"zinnia-tomoe
+installed"zip
+not-installed"zipkin-cpp-opentracing-devel
+not-installed"zipkin-cpp-opentracing-devel-static
+installed"zisofs-tools
+not-installed"zita-convolver-devel
+installed"zlib-devel
+not-installed"zlib-devel-32bit
+not-installed"zlib-devel-static
+not-installed"zlib-devel-static-32bit
+not-installed"zlibrary-data
+not-installed"zlibrary-devel
+not-installed"zlibrary0_99
+not-installed"zn_poly-devel
+not-installed"znc
+not-installed"znc-devel
+not-installed"znc-lang
+not-installed"znc-perl
+not-installed"znc-python3
+not-installed"znc-tcl
+not-installed"zod
+not-installed"zod
+not-installed"zod-data
+not-installed"zod-debuginfo
+not-installed"zoo
+not-installed"zopfli
+not-installed"zp
+not-installed"zpaq
+not-installed"zramcfg
+not-installed"zsdx
+not-installed"zsdx
+installed"zsh
+not-installed"zsh-htmldoc
+not-installed"zstd
+not-installed"zsync
+not-installed"zsync-devel
+not-installed"zutils
+not-installed"zvbi
+not-installed"zvbi-devel
+not-installed"zvbi-devel-32bit
+not-installed"zvbi-lang
+not-installed"zxing-cpp-devel
+not-installed"zynaddsubfx
+not-installed"zynaddsubfx-common
+not-installed"zynaddsubfx-dssi
+not-installed"zynaddsubfx-lv2
+not-installed"zynaddsubfx-vst
+installed"zypper
+installed"zypper-aptitude
+not-installed"zypper-docker
+installed"zypper-lifecycle-plugin
+installed"zypper-log
+not-installed"zypper-migration-plugin
+installed"zypper-needs-restarting
+not-installed"zziplib-devel
+not-installed"zziplib-devel-32bit'
+_zypp_all=( ${(Q)"${(z)$(<<\EO:_zypp_all
+'0ad' '0ad-data' '2048-cli' '2ManDVD' '2ManDVD' '2ManDVD-debuginfo' '2ManDVD-debugsource' '2ping' '32bit' '389-ds' '389-ds-devel' '389-ds-snmp' '3dsconv' '3dsconv' '3gpwiz' '3gpwiz' '3omns' '4pane' '4pane-lang' '4store' '4ti2' '4ti2-devel' '6tunnel' '7kaa' '7kaa-music' 'ASL' 'ASL-devel' 'ASL-doc' 'AdobeICCProfiles' 'AppCSXCAD' 'AppStream' 'AppStream-devel' 'AppStream-doc' 'AppStream-lang' 'AtomicParsley' 'AtomicParsley' 'AtomicParsley-debuginfo' 'AtomicParsley-debugsource' 'Bear' 'BitTorrent' 'BitTorrent' 'BitTorrent-curses' 'BitTorrent-gtk' 'Botan' 'Botan-doc' 'Box2D-doc' 'CSXCAD-devel' 'CSXCAD-matlab' 'CharLS-devel' 'Coin-devel' 'ColPack-devel' 'ColPack-devel-32bit' 'ColorFull-devel' 'CorsixTH' 'Crystalcursors' 'DVDStyler' 'DVDStyler-lang' 'DeepLearningToga-1.5.21a' 'DeepLearningToga-1.5.21a' 'DeepLearningToga-1.5.21a-debuginfo' 'DevIL-devel' 'DisplayCAL' 'DisplayCluster' 'DisplayCluster' 'DisplayCluster-debuginfo' 'DisplayCluster-debugsource' 'DisplayCluster-devel' 'DisplayCluster-doc' 'ETL' 'ETL-devel' 'FAudio-devel' 'FAudio-devel-32bit' 'FastCGI' 'FastCGI-devel' 'Field3D' 'Field3D' 'Field3D-debuginfo' 'Field3D-debugsource' 'Field3D-devel' 'FirmwareUpdateKit' 'FlightGear' 'FlightGear-data' 'FlightGear-docs' 'FreeCAD' 'GeneralUser' 'GeneralUser' 'GeoIP' 'GeoIP-data' 'GraphicsMagick' 'GraphicsMagick-devel' 'HSAIL-Tools' 'HepMC-devel' 'HepMC2-devel' 'Herwig-devel' 'Herwig-libs' 'IccXML' 'ImageMagick' 'ImageMagick-config-7-SUSE' 'ImageMagick-config-7-upstream' 'ImageMagick-devel' 'ImageMagick-devel-32bit' 'ImageMagick-doc' 'ImageMagick-extra' 'J7Z' 'J7Z-kf5' 'Jamulus' 'KEALib-devel' 'LHAPDF-devel' 'LiE' 'LiE-doc' 'LiVES' 'LiVES' 'LiVES-debuginfo' 'LiVES-debugsource' 'LiVES-lang' 'LibVNCServer-devel' 'Lunchbox' 'Lunchbox-debugsource' 'Lunchbox-devel' 'Lunchbox-doc' 'MLDonkey' 'MLDonkey' 'MLDonkey-debuginfo' 'MLDonkey-debugsource' 'MLDonkey-gui' 'MLDonkey-gui-debuginfo' 'MP4Tools' 'MP4Tools' 'MP4Tools-debuginfo' 'MP4Tools-debugsource' 'MP4Tools-lang' 'MPlayer' 'MPlayer' 'MPlayer-debuginfo' 'MPlayer-debugsource' 'MPlayer-doc' 'Mesa' 'Mesa-32bit' 'Mesa-KHR-devel' 'Mesa-demo' 'Mesa-demo-x' 'Mesa-devel' 'Mesa-dri' 'Mesa-dri-32bit' 'Mesa-dri-devel' 'Mesa-dri-nouveau' 'Mesa-dri-nouveau-32bit' 'Mesa-gallium' 'Mesa-gallium-32bit' 'Mesa-libEGL-devel' 'Mesa-libEGL1' 'Mesa-libEGL1-32bit' 'Mesa-libGL-devel' 'Mesa-libGL1' 'Mesa-libGL1-32bit' 'Mesa-libGLESv1_CM-devel' 'Mesa-libGLESv1_CM1' 'Mesa-libGLESv2-2' 'Mesa-libGLESv2-devel' 'Mesa-libGLESv3-devel' 'Mesa-libOpenCL' 'Mesa-libVulkan-devel' 'Mesa-libd3d' 'Mesa-libd3d-32bit' 'Mesa-libd3d-devel' 'Mesa-libd3d-devel-32bit' 'Mesa-libglapi-devel' 'Mesa-libglapi-devel-32bit' 'Mesa-libglapi0' 'Mesa-libglapi0-32bit' 'Mesa-libva' 'ModemManager' 'ModemManager-bash-completion' 'ModemManager-devel' 'ModemManager-lang' 'Modules' 'Modules-doc' 'MotionBox' 'MozillaFirefox' 'MozillaFirefox-branding-openSUSE' 'MozillaFirefox-branding-upstream' 'MozillaFirefox-buildsymbols' 'MozillaFirefox-devel' 'MozillaFirefox-translations-common' 'MozillaFirefox-translations-other' 'MozillaThunderbird' 'MozillaThunderbird-buildsymbols' 'MozillaThunderbird-translations-common' 'MozillaThunderbird-translations-other' 'MultiMarkdown-6' 'MyGUI' 'MyGUI-demo' 'MyGUI-devel' 'MyGUI-devel-doc' 'NetworkManager' 'NetworkManager-applet' 'NetworkManager-applet-lang' 'NetworkManager-branding-openSUSE' 'NetworkManager-branding-upstream' 'NetworkManager-connection-editor' 'NetworkManager-devel' 'NetworkManager-devel-32bit' 'NetworkManager-fortisslvpn' 'NetworkManager-fortisslvpn-gnome' 'NetworkManager-fortisslvpn-lang' 'NetworkManager-iodine' 'NetworkManager-iodine-gnome' 'NetworkManager-iodine-lang' 'NetworkManager-l2tp' 'NetworkManager-l2tp-gnome' 'NetworkManager-l2tp-lang' 'NetworkManager-lang' 'NetworkManager-libreswan' 'NetworkManager-libreswan-gnome' 'NetworkManager-libreswan-lang' 'NetworkManager-openconnect' 'NetworkManager-openconnect-gnome' 'NetworkManager-openconnect-lang' 'NetworkManager-openvpn' 'NetworkManager-openvpn-gnome' 'NetworkManager-openvpn-lang' 'NetworkManager-pptp' 'NetworkManager-pptp-gnome' 'NetworkManager-pptp-lang' 'NetworkManager-strongswan' 'NetworkManager-strongswan-gnome' 'NetworkManager-strongswan-lang' 'NetworkManager-vpnc' 'NetworkManager-vpnc-gnome' 'NetworkManager-vpnc-lang' 'OOKiedokie' 'OpenColorIO' 'OpenColorIO-devel' 'OpenColorIO-doc' 'OpenIPMI' 'OpenIPMI-devel' 'OpenIPMI-python' 'OpenImageIO' 'OpenImageIO-devel' 'OpenLP' 'OpenOctaveMidi' 'OpenOctaveMidi' 'OpenOctaveMidi-debuginfo' 'OpenOctaveMidi-lang' 'OpenOctaveMidi-unstable' 'OpenOctaveMidi-unstable' 'OpenOctaveMidi-unstable-debuginfo' 'OpenOctaveMidi-unstable-debugsource' 'OpenOctaveMidi-unstable-lang' 'OpenPrintingPPDs' 'OpenPrintingPPDs-ghostscript' 'OpenPrintingPPDs-hpijs' 'OpenPrintingPPDs-postscript' 'OpenSceneGraph' 'OpenSceneGraph-examples' 'OpenSceneGraph-plugins' 'OpenSceneGraph34' 'OpenSceneGraph34-examples' 'OpenSceneGraph34-plugins' 'OpenShadingLanguage' 'OpenShadingLanguage-MaterialX-shaders-source' 'OpenShadingLanguage-common-headers' 'OpenShadingLanguage-devel' 'OpenShadingLanguage-doc' 'OpenShadingLanguage-example-shaders-source' 'Osmo4' 'Osmo4-debuginfo' 'PackageKit' 'PackageKit-Qt-devel' 'PackageKit-backend-zypp' 'PackageKit-branding-openSUSE' 'PackageKit-branding-upstream' 'PackageKit-devel' 'PackageKit-gstreamer-plugin' 'PackageKit-gtk3-module' 'PackageKit-lang' 'PgTcl' 'Photini' 'PlayOnLinux' 'Printrun' 'Printrun-common' 'ProjectX' 'ProjectX' 'PyGreSQL' 'PythonQt-devel' 'QCSXCAD-devel' 'QGnomePlatform' 'QGnomePlatform-32bit' 'QMPlay2' 'QMPlay2-devel' 'QtAV' 'QtAV-devel' 'QtAV-players' 'QtAV-qml' 'QtDMM' 'R-BH' 'R-KernSmooth' 'R-MASS' 'R-Matrix' 'R-Matrix-devel' 'R-PKI' 'R-R6' 'R-RCurl' 'R-RJSONIO' 'R-Rcpp' 'R-Rcpp-devel' 'R-Rcpp-doc' 'R-base' 'R-base-devel' 'R-base64enc' 'R-bitops' 'R-boot' 'R-class' 'R-cluster' 'R-codetools' 'R-compiler' 'R-core' 'R-core-devel' 'R-core-doc' 'R-core-libs' 'R-core-packages' 'R-crayon' 'R-curl' 'R-datasets' 'R-digest' 'R-digest-devel' 'R-foreign' 'R-grDevices' 'R-graphics' 'R-grid' 'R-httpuv' 'R-jsonlite' 'R-later' 'R-lattice' 'R-magrittr' 'R-methods' 'R-mgcv' 'R-nlme' 'R-nnet' 'R-openssl' 'R-openssl-doc' 'R-packrat' 'R-parallel' 'R-plumber' 'R-praise' 'R-promises' 'R-recommended-packages' 'R-rlang' 'R-rpart' 'R-rsconnect' 'R-rstudioapi' 'R-spatial' 'R-splines' 'R-stats' 'R-stats4' 'R-stringi' 'R-stringi-devel' 'R-survival' 'R-tcltk' 'R-tools' 'R-utils' 'R-yaml' 'Reaction' 'Reaction-data' 'Regina-REXX' 'Regina-REXX-devel' 'Regina-REXX-doc' 'RemoteBox' 'Rivet-devel' 'Rivet-plugins' 'RobboLito0085' 'RobboLito0085' 'RobboLito0085-debuginfo' 'SHERPA-MC-devel' 'SUSEConnect' 'SampleICC' 'ShellCheck' 'SimGear-devel' 'SoQt-devel' 'SoQt-doc' 'Supybot' 'THE' 'THE-doc' 'ThePEG-devel' 'ThePEG-libs' 'UEFITool' 'VFlib3' 'VFlib3-devel' 'Vc-devel' 'Vc-devel-doc' 'Vc-devel-static' 'ViTables' 'VirtualGL' 'VirtualGL-32bit' 'VirtualGL-devel' 'WindowMaker' 'WindowMaker-applets' 'WindowMaker-devel' 'WindowMaker-themes' 'WoeUSB' 'XyGrib' 'YODA-devel' 'a2jmidid' 'a2jmidid' 'a2jmidid-debuginfo' 'a2jmidid-debugsource' 'a2ps' 'a2ps-devel' 'a2ps-h' 'a52dec' 'aMule' 'aMule' 'aMule-debuginfo' 'aMule-debugsource' 'aMule-kde4' 'aMule-kde4-debuginfo' 'aaa_base' 'aaa_base-extras' 'aaa_base-malloccheck' 'aaa_base-wsl' 'aacsupdater' 'aacsupdater' 'aacsupdater-debuginfo' 'aacsupdater-debugsource' 'aalib' 'aalib-devel' 'aalib-devel-32bit' 'abcde' 'abcm2ps' 'abi-compliance-checker' 'abi-dumper' 'abi-monitor' 'abi-tracker' 'abiword' 'abiword-docs' 'abook' 'abook-lang' 'abootimg' 'abseil-cpp-devel' 'abxtest' 'acars-examples' 'acarsdec' 'accerciser' 'accerciser-lang' 'accerciser-plugin-IPython' 'accountsservice' 'accountsservice-devel' 'accountsservice-lang' 'acct' 'ack' 'acl' 'acpi' 'acpica' 'acpid' 'actkbd' 'adaptec-firmware' 'adaptx' 'adaptx-doc' 'adaptx-javadoc' 'adcli' 'adcli-doc' 'addrwatch' 'ade-devel' 'adinatha-fonts' 'adjtimex' 'adlmidi' 'adlmidi-tools' 'adminer' 'adminer-designs' 'adminer-editor' 'adminer-firebird' 'adminer-mysql' 'adminer-pgsql' 'adminer-sqlite' 'adms' 'adms-devel' 'adns' 'adobe-sourcecodepro-fonts' 'adobe-sourcehansans-cn-fonts' 'adobe-sourcehansans-hk-fonts' 'adobe-sourcehansans-jp-fonts' 'adobe-sourcehansans-kr-fonts' 'adobe-sourcehansans-tw-fonts' 'adobe-sourcehanserif-cn-fonts' 'adobe-sourcehanserif-jp-fonts' 'adobe-sourcehanserif-kr-fonts' 'adobe-sourcehanserif-tw-fonts' 'adobe-sourcesanspro-fonts' 'adobe-sourceserifpro-fonts' 'adolc-devel' 'adolc-devel-32bit' 'adolc-doc' 'ads' 'adwaita-icon-theme' 'adwaita-qt5' 'aegisub' 'aelfred' 'aelfred-javadoc' 'aer-inject' 'aespipe' 'afl' 'aften' 'aften' 'aften-debuginfo' 'agenda' 'agenda-lang' 'agrep' 'aha' 'aide' 'aide-test' 'aircrack-ng' 'aircrack-ng' 'aircrack-ng-debuginfo' 'aircrack-ng-debugsource' 'airspy' 'airspy-devel' 'airspy-udev' 'airspyhf-devel' 'airspyhf-udev' 'aisleriot' 'aisleriot-lang' 'aisleriot-themes' 'akonadi-calendar-devel' 'akonadi-calendar-lang' 'akonadi-calendar-tools' 'akonadi-calendar-tools-lang' 'akonadi-contact' 'akonadi-contact-devel' 'akonadi-contact-lang' 'akonadi-import-wizard' 'akonadi-import-wizard-devel' 'akonadi-import-wizard-lang' 'akonadi-mime' 'akonadi-mime-devel' 'akonadi-mime-lang' 'akonadi-notes-devel' 'akonadi-notes-lang' 'akonadi-plugin-calendar' 'akonadi-plugin-contacts' 'akonadi-plugin-kalarmcal' 'akonadi-plugin-mime' 'akonadi-search' 'akonadi-search-devel' 'akonadi-search-lang' 'akonadi-server' 'akonadi-server-devel' 'akonadi-server-lang' 'akonadi-server-sqlite' 'akonadiconsole' 'akregator' 'akregator-lang' 'alac' 'alac-devel' 'alac_decoder' 'alac_decoder' 'alac_decoder-debuginfo' 'alac_decoder-debugsource' 'alacarte' 'alacarte-lang' 'alacritty' 'alacritty-bash-completion' 'alacritty-fish-completion' 'alacritty-zsh-completion' 'albert' 'aldusleaf-crimson-text-fonts' 'alee-fonts' 'alevt' 'alevtd' 'alex' 'almanah' 'almanah-lang' 'alpine' 'alpine-branding-openSUSE' 'alsa' 'alsa-devel' 'alsa-devel-32bit' 'alsa-docs' 'alsa-firmware' 'alsa-oss' 'alsa-oss-32bit' 'alsa-plugins' 'alsa-plugins-32bit' 'alsa-plugins-a52' 'alsa-plugins-aaf' 'alsa-plugins-dca' 'alsa-plugins-dca-debuginfo' 'alsa-plugins-jack' 'alsa-plugins-jack-32bit' 'alsa-plugins-lavrate' 'alsa-plugins-maemo' 'alsa-plugins-maemo-32bit' 'alsa-plugins-pulse' 'alsa-plugins-pulse-32bit' 'alsa-plugins-samplerate' 'alsa-plugins-samplerate-32bit' 'alsa-plugins-speex' 'alsa-utils' 'alsabat' 'alsaequal' 'alttab' 'amanda' 'amarok' 'amarok-lang' 'amavisd-new' 'amavisd-new-docs' 'amazon-ecs-init' 'amazon-ssm-agent' 'amrnb' 'amrnb' 'amrnb-debuginfo' 'amrnb-debugsource' 'amrwb' 'amrwb' 'amrwb-debuginfo' 'amrwb-debugsource' 'amsynth' 'amsynth-lang' 'amsynth-plugin-dssi' 'amsynth-plugin-lv2' 'amsynth-plugin-vst' 'amtk-5-lang' 'amtk-devel' 'amtterm' 'amtterm-gtk' 'amtu' 'analitza' 'analitza-devel' 'analitza-lang' 'analyzeMFT' 'angelscript' 'angelscript-devel' 'anjuta' 'anjuta-devel' 'anjuta-extras' 'anjuta-extras-lang' 'anjuta-lang' 'anki' 'ansible' 'ansible-runner' 'ansifilter' 'ansifilter-gui' 'ant' 'ant-antlr' 'ant-apache-bcel' 'ant-apache-bsf' 'ant-apache-log4j' 'ant-apache-oro' 'ant-apache-regexp' 'ant-apache-resolver' 'ant-apache-xalan2' 'ant-commons-logging' 'ant-commons-net' 'ant-contrib' 'ant-contrib-javadoc' 'ant-contrib-manual' 'ant-findbugs' 'ant-javamail' 'ant-jdepend' 'ant-jmf' 'ant-jsch' 'ant-junit' 'ant-junit5' 'ant-manual' 'ant-phone' 'ant-scala' 'ant-scala-bootstrap' 'ant-scripts' 'ant-swing' 'ant-testutil' 'anthy' 'anthy-devel' 'antimicro' 'antlr' 'antlr-devel' 'antlr-java' 'antlr-manual' 'antlr-maven-plugin' 'antlr-maven-plugin-javadoc' 'antlr3c-devel' 'antlr4' 'aom-tools' 'aop' 'aopalliance' 'aopalliance-javadoc' 'apache-commons-beanutils' 'apache-commons-beanutils-javadoc' 'apache-commons-chain' 'apache-commons-chain-javadoc' 'apache-commons-cli' 'apache-commons-cli-javadoc' 'apache-commons-codec' 'apache-commons-codec-javadoc' 'apache-commons-collections' 'apache-commons-collections-javadoc' 'apache-commons-collections-testframework' 'apache-commons-collections4' 'apache-commons-collections4-javadoc' 'apache-commons-compress' 'apache-commons-compress-javadoc' 'apache-commons-configuration' 'apache-commons-configuration-javadoc' 'apache-commons-csv' 'apache-commons-csv-javadoc' 'apache-commons-daemon' 'apache-commons-daemon-javadoc' 'apache-commons-daemon-jsvc' 'apache-commons-dbcp' 'apache-commons-dbcp-javadoc' 'apache-commons-dbcp1' 'apache-commons-dbcp1-javadoc' 'apache-commons-digester' 'apache-commons-digester-javadoc' 'apache-commons-el' 'apache-commons-el-javadoc' 'apache-commons-email' 'apache-commons-email-javadoc' 'apache-commons-exec' 'apache-commons-exec-javadoc' 'apache-commons-fileupload' 'apache-commons-fileupload-javadoc' 'apache-commons-httpclient' 'apache-commons-httpclient-demo' 'apache-commons-httpclient-javadoc' 'apache-commons-httpclient-manual' 'apache-commons-io' 'apache-commons-io-javadoc' 'apache-commons-jexl' 'apache-commons-jexl-javadoc' 'apache-commons-jxpath' 'apache-commons-jxpath-javadoc' 'apache-commons-lang' 'apache-commons-lang-javadoc' 'apache-commons-lang3' 'apache-commons-lang3-javadoc' 'apache-commons-logging' 'apache-commons-math' 'apache-commons-math-javadoc' 'apache-commons-net' 'apache-commons-net-javadoc' 'apache-commons-parent' 'apache-commons-pool' 'apache-commons-pool-javadoc' 'apache-commons-pool2' 'apache-commons-pool2-javadoc' 'apache-commons-text' 'apache-commons-text-javadoc' 'apache-commons-validator' 'apache-commons-validator-javadoc' 'apache-commons-vfs2' 'apache-commons-vfs2-ant' 'apache-commons-vfs2-examples' 'apache-commons-vfs2-javadoc' 'apache-ivy' 'apache-ivy-javadoc' 'apache-parent' 'apache-pdfbox' 'apache-pdfbox-javadoc' 'apache-portlet-1_0-api' 'apache-portlet-1_0-api-javadoc' 'apache-rex' 'apache-rpm-macros' 'apache-rpm-macros-control' 'apache2' 'apache2-devel' 'apache2-doc' 'apache2-event' 'apache2-example-pages' 'apache2-icons-oxygen' 'apache2-mod_apparmor' 'apache2-mod_auth_openidc' 'apache2-mod_authn_otp' 'apache2-mod_dnssd' 'apache2-mod_encoding' 'apache2-mod_evasive' 'apache2-mod_fcgid' 'apache2-mod_jk' 'apache2-mod_maxminddb' 'apache2-mod_mono' 'apache2-mod_musicindex' 'apache2-mod_musicindex' 'apache2-mod_musicindex-debuginfo' 'apache2-mod_musicindex-debugsource' 'apache2-mod_nss' 'apache2-mod_perl' 'apache2-mod_perl-devel' 'apache2-mod_php7' 'apache2-mod_security2' 'apache2-mod_uwsgi' 'apache2-mod_wsgi' 'apache2-mod_wsgi-python3' 'apache2-prefork' 'apache2-utils' 'apache2-worker' 'apcupsd' 'apcupsd-cgi' 'apcupsd-gui' 'apetag' 'apetag' 'apetag-debuginfo' 'apetag-debugsource' 'apfel-devel' 'apfel-doc' 'apg' 'apiguardian' 'apiguardian-javadoc' 'apparmor' 'apparmor-abstractions' 'apparmor-docs' 'apparmor-parser' 'apparmor-parser-lang' 'apparmor-profiles' 'apparmor-rpm-macros' 'apparmor-utils' 'apparmor-utils-lang' 'appeditor' 'appeditor-lang' 'appframework' 'appframework-javadoc' 'appimaged' 'appindicator-sharp' 'appindicator-sharp-devel' 'applet-window-appmenu' 'applet-window-buttons' 'appmenu-gtk-module-common' 'appmenu-gtk2-module' 'appmenu-gtk3-module' 'appmenu-qt' 'appmenu-registrar' 'appres' 'appstream-glib' 'appstream-glib-devel' 'appstream-glib-lang' 'apr-devel' 'apr-util-devel' 'apt-cacher-ng' 'apulse' 'apulse-32bit' 'aqbanking' 'aqbanking-devel' 'aqbanking-doc' 'aqbanking-ebics' 'aqbanking-lang' 'aqbanking-ofx' 'aqute-bnd' 'aqute-bnd-javadoc' 'aqute-bndlib' 'arabic-ae-fonts' 'arabic-amiri-fonts' 'arabic-bitmap-fonts' 'arabic-fonts' 'arabic-kacst-fonts' 'arabic-kacstone-fonts' 'arabic-naqsh-fonts' 'aranym' 'arc' 'arc-icon-theme' 'archivemail' 'archivemount' 'argon2' 'argon2-devel' 'argon2-doc' 'args4j' 'args4j-javadoc' 'argus' 'argus-client' 'argus-server' 'argyllcms' 'argyllcms-doc' 'aria2' 'aria2-devel' 'aria2-lang' 'arj' 'ark' 'ark-lang' 'armadillo-devel' 'armadillo-devel-32bit' 'armadillo-doc' 'armagetron' 'arp-scan' 'arpack-ng-devel' 'arpack-ng-devel-32bit' 'arphic-bkai00mp-fonts' 'arphic-bsmi00lp-fonts' 'arphic-fonts' 'arphic-gbsn00lp-fonts' 'arphic-gkai00mp-fonts' 'arphic-ukai-fonts' 'arphic-uming-fonts' 'arping2' 'arprec-devel' 'arptables' 'arpwatch' 'arpwatch-ethercodes' 'arpwatch-ethercodes-build' 'art-sharp2' 'artha' 'artifacts' 'artifacts-validator' 'artikulate' 'artikulate-lang' 'arts' 'arts' 'arts-32bit' 'arts-32bit-debuginfo' 'arts-debuginfo' 'arts-debugsource' 'arts-devel' 'arts-devel-debuginfo' 'arts-gmcop' 'arts-gmcop-debuginfo' 'as10k1' 'asciidoc' 'asciidoc-examples' 'asciinema' 'asclock' 'asco' 'asco-doc' 'aseqview' 'asio-devel' 'asl' 'asm3' 'asm3-examples' 'asm3-javadoc' 'asm5' 'asm5-examples' 'asm5-javadoc' 'asn1c' 'aspell' 'aspell-af' 'aspell-agal' 'aspell-am' 'aspell-ar' 'aspell-ast' 'aspell-az' 'aspell-be' 'aspell-bg' 'aspell-bn' 'aspell-br' 'aspell-ca' 'aspell-cs' 'aspell-csb' 'aspell-cy' 'aspell-da' 'aspell-de' 'aspell-devel' 'aspell-el' 'aspell-en' 'aspell-eo' 'aspell-es' 'aspell-et' 'aspell-fa' 'aspell-fi' 'aspell-fo' 'aspell-fr' 'aspell-fy' 'aspell-ga' 'aspell-gd' 'aspell-gl' 'aspell-grc' 'aspell-gu' 'aspell-gv' 'aspell-he' 'aspell-hi' 'aspell-hil' 'aspell-hr' 'aspell-hsb' 'aspell-hu' 'aspell-hus' 'aspell-hy' 'aspell-ia' 'aspell-id' 'aspell-is' 'aspell-ispell' 'aspell-it' 'aspell-kn' 'aspell-ku' 'aspell-ky' 'aspell-la' 'aspell-lt' 'aspell-lv' 'aspell-mg' 'aspell-mi' 'aspell-mk' 'aspell-ml' 'aspell-mn' 'aspell-mr' 'aspell-ms' 'aspell-mt' 'aspell-nb' 'aspell-nds' 'aspell-nl' 'aspell-nn' 'aspell-ny' 'aspell-or' 'aspell-pa' 'aspell-pl' 'aspell-pt_BR' 'aspell-pt_PT' 'aspell-qu' 'aspell-ro' 'aspell-ru' 'aspell-rw' 'aspell-sc' 'aspell-sk' 'aspell-sl' 'aspell-spell' 'aspell-sr' 'aspell-sv' 'aspell-sw' 'aspell-ta' 'aspell-te' 'aspell-tet' 'aspell-tk' 'aspell-tl' 'aspell-tn' 'aspell-tr' 'aspell-uk' 'aspell-uz' 'aspell-vi' 'aspell-wa' 'aspell-yi' 'aspell-zu' 'assertj-core' 'assertj-core-javadoc' 'assimp-devel' 'asterisk-sounds-devel' 'asteroid' 'asteroids3D' 'astyle' 'asunder' 'asunder' 'asunder-debuginfo' 'asunder-debugsource' 'asunder-lang' 'asusfan' 'at' 'at-spi-sharp' 'at-spi-sharp-devel' 'at-spi2-atk-common' 'at-spi2-atk-devel' 'at-spi2-atk-gtk2' 'at-spi2-core' 'at-spi2-core-devel' 'at-spi2-core-devel-32bit' 'at-spi2-core-lang' 'atftp' 'atheme' 'atheme-devel' 'atinject' 'atinject-javadoc' 'atinject-tck' 'atinout' 'atk-devel' 'atk-devel-32bit' 'atk-doc' 'atk-lang' 'atkmm-devel' 'atkmm-devel-32bit' 'atkmm-doc' 'atkmm1_6-devel' 'atkmm1_6-devel-32bit' 'atkmm1_6-doc' 'atlascpp-devel' 'atmel-firmware' 'atomiks' 'atomix' 'atomix-lang' 'atool' 'atop' 'atop-daemon' 'atril' 'atril-backends' 'atril-devel' 'atril-lang' 'atril-thumbnailer' 'attica-qt5' 'attica-qt5-devel' 'attica-qt5-devel-32bit' 'attr' 'attractmode' 'aubio-tools' 'audacious' 'audacious-devel' 'audacious-lang' 'audacious-plugins' 'audacious-plugins' 'audacious-plugins-debuginfo' 'audacious-plugins-debugsource' 'audacious-plugins-extra' 'audacious-plugins-extra-debuginfo' 'audacious-plugins-lang' 'audacity' 'audacity-lang' 'audaspace' 'audaspace-devel' 'audaspace-doc' 'audaspace-plugins' 'audenc' 'audenc' 'audio-recorder' 'audio-recorder-lang' 'audiofile' 'audiofile-devel' 'audiofile-devel-32bit' 'audiofile-doc' 'audiotools' 'audiotools' 'audiotools-debuginfo' 'audiotools-debugsource' 'audit' 'audit-audispd-plugins' 'audit-devel' 'audit-devel-32bit' 'audit-visualize' 'augeas' 'augeas-devel' 'augeas-devel-32bit' 'augeas-lense-tests' 'augeas-lenses' 'authbind' 'auto' 'auto-common' 'auto-factory' 'auto-javadoc' 'auto-service' 'auto-value' 'autobench' 'autobuild' 'autoconf' 'autoconf-archive' 'autoconf-el' 'autoconf213' 'autocutsel' 'autofdo' 'autofs' 'autogen' 'autojump' 'automake' 'automoc4' 'autonym-fonts' 'autoopts' 'autopano-sift-C' 'autopano-sift-C' 'autopano-sift-C-debuginfo' 'autopano-sift-C-debugsource' 'autossh' 'autotrace' 'autotrace-devel' 'autotrash' 'autoyast2' 'autoyast2-installation' 'avahi' 'avahi-autoipd' 'avahi-compat-howl-devel' 'avahi-compat-mDNSResponder-devel' 'avahi-lang' 'avahi-mono' 'avahi-utils' 'avahi-utils-gtk' 'avalon-framework' 'avalon-framework-javadoc' 'avalon-logkit' 'avalon-logkit-javadoc' 'avesta-fonts' 'avfs' 'avfs-devel' 'avgtime' 'avidemux' 'avidemux' 'avidemux-debuginfo' 'avidemux-debugsource' 'avidemux-gtk' 'avidemux-gtk-debuginfo' 'avidemux-lang' 'avidemux-plugin-arts' 'avidemux-plugin-arts-debuginfo' 'avidemux-qt' 'avidemux-qt-debuginfo' 'avidemux3' 'avidemux3' 'avidemux3-cli' 'avidemux3-cli-debuginfo' 'avidemux3-debuginfo' 'avidemux3-debugsource' 'avidemux3-qt5' 'avidemux3-qt5-debuginfo' 'avidemux3-qt5-lang' 'avifile' 'avifile' 'avifile-data' 'avifile-debuginfo' 'avifile-debugsource' 'avifile-win32' 'avocado-common' 'avocado-examples' 'avocado-vt-common' 'avogadrolibs' 'avogadrolibs-devel' 'avr-libc' 'avrdude' 'avrdude-devel' 'avxsynth' 'avxsynth' 'avxsynth-debuginfo' 'avxsynth-debugsource' 'avxsynth-devel' 'avxsynth-plugins' 'avxsynth-plugins-debuginfo' 'awesfx' 'awesome' 'awesome-branding-openSUSE' 'awesome-branding-upstream' 'awesome-freedesktop' 'awesome-shifty' 'awesome-vicious' 'aws-cli' 'aws-efs-utils' 'ax25-tools' 'axel' 'axis' 'axis-manual' 'ayatana-appindicator-sharp' 'ayatana-appindicator-sharp-devel' 'ayatana-ido-devel' 'aytests-tests' 'azove' 'azure-cli' 'azure-cli-acr' 'azure-cli-acs' 'azure-cli-advisor' 'azure-cli-ams' 'azure-cli-appservice' 'azure-cli-backup' 'azure-cli-batch' 'azure-cli-batchai' 'azure-cli-billing' 'azure-cli-botservice' 'azure-cli-cdn' 'azure-cli-cloud' 'azure-cli-cognitiveservices' 'azure-cli-command-modules-nspkg' 'azure-cli-component' 'azure-cli-configure' 'azure-cli-consumption' 'azure-cli-container' 'azure-cli-core' 'azure-cli-cosmosdb' 'azure-cli-dla' 'azure-cli-dls' 'azure-cli-dms' 'azure-cli-eventgrid' 'azure-cli-eventhubs' 'azure-cli-extension' 'azure-cli-feedback' 'azure-cli-find' 'azure-cli-hdinsight' 'azure-cli-interactive' 'azure-cli-iot' 'azure-cli-iotcentral' 'azure-cli-keyvault' 'azure-cli-kusto' 'azure-cli-lab' 'azure-cli-maps' 'azure-cli-monitor' 'azure-cli-network' 'azure-cli-nspkg' 'azure-cli-policyinsights' 'azure-cli-profile' 'azure-cli-rdbms' 'azure-cli-redis' 'azure-cli-relay' 'azure-cli-reservations' 'azure-cli-resource' 'azure-cli-role' 'azure-cli-search' 'azure-cli-security' 'azure-cli-servicebus' 'azure-cli-servicefabric' 'azure-cli-signalr' 'azure-cli-sql' 'azure-cli-sqlvm' 'azure-cli-storage' 'azure-cli-taskhelp' 'azure-cli-telemetry' 'azure-cli-test' 'azure-cli-vm' 'b43-fwcutter' 'b43legacy-firmware' 'b43legacy-firmware' 'b5i2iso' 'b5i2iso' 'b5i2iso-debuginfo' 'babe' 'babelstone-han-fonts' 'babelstone-marchen-fonts' 'babelstone-modern-fonts' 'babelstone-ogham-fonts' 'babelstone-phags-pa-fonts' 'babelstone-runic-fonts' 'babeltrace' 'babeltrace-devel' 'babl-devel' 'backintime' 'backintime-lang' 'backintime-qt' 'backward-cpp' 'backward-cpp-devel' 'baekmuk-bitmap-fonts' 'baekmuk-ttf-fonts' 'baka-mplayer' 'ballerburg' 'baloo5-devel' 'baloo5-file' 'baloo5-file-lang' 'baloo5-imports' 'baloo5-imports-lang' 'baloo5-kioslaves' 'baloo5-kioslaves-lang' 'baloo5-tools' 'baloo5-tools-lang' 'baloo5-widgets' 'baloo5-widgets-devel' 'baloo5-widgets-lang' 'balsa' 'balsa-lang' 'bam' 'bamf-daemon' 'bamf-devel' 'bamf-doc' 'bandwidth' 'baobab' 'baobab-lang' 'barbie_seahorse_adventures' 'barcode' 'barcode-devel' 'bareftp' 'base' 'base64coder' 'base64coder-javadoc' 'bash' 'bash-completion' 'bash-completion-devel' 'bash-completion-doc' 'bash-devel' 'bash-doc' 'bash-lang' 'bash-loadables' 'basic_desktop' 'bat' 'batctl' 'bats' 'bazel' 'bazel-gazelle' 'bazel-gazelle-source' 'bazel-rules-foreign-cc-source' 'bazel-rules-go-source' 'bazel-rules-proto-source' 'bazel-skylib-source' 'bazel-toolchains-source' 'bazel0.19' 'bazel0.24' 'bazel0.25' 'bazel0.26' 'bb' 'bbe' 'bbswitch' 'bbswitch-kmp-default' 'bbswitch-kmp-pae' 'bc' 'bcache-tools' 'bcal' 'bcc-devel' 'bcc-docs' 'bcc-examples' 'bcc-lua' 'bcc-tools' 'bcel' 'bcel5_3' 'bcel5_3-javadoc' 'bcg729-devel' 'bchunk' 'bcm20702a1-firmware' 'bcm43xx-firmware' 'bcmatroska2-devel' 'bctoolbox-devel' 'bcunit-devel' 'bcunit-doc' 'bdfresize' 'bdftopcf' 'bea-stax' 'bea-stax-api' 'beansbinding' 'beansbinding-javadoc' 'beaver' 'beets' 'beforelight' 'beignet' 'beignet-devel' 'belcard-devel' 'belle-sip-devel' 'belr-devel' 'bemenu' 'bemenu-devel' 'benchmark-devel' 'benji' 'bento4' 'bento4' 'bento4-debuginfo' 'bento4-debugsource' 'bento4-devel' 'berkeleydb' 'berkeleydb-demo' 'berkeleydb-javadoc' 'berkeleydb-manual' 'bestplugins' 'beust-jcommander' 'beust-jcommander-javadoc' 'bff' 'bff-samples' 'bff4' 'biabam' 'biblesync-devel' 'bibletime' 'biboumi' 'bibtool' 'bibview' 'bijiben' 'bijiben-lang' 'bin86' 'bind' 'bind-chrootenv' 'bind-devel' 'bind-devel-32bit' 'bind-doc' 'bind-lwresd' 'bind-utils' 'bindfs' 'bing' 'bino' 'bino' 'bino-debuginfo' 'bino-debugsource' 'bino-lang' 'binutils' 'binutils-devel' 'binutils-devel-32bit' 'binutils-gold' 'binwalk' 'biosdevname' 'bird' 'bird-common' 'bird-doc' 'bird6' 'birdie' 'birdie-lang' 'bison' 'bison-32bit' 'bison-lang' 'bitcoin-qt5' 'bitcoin-test' 'bitcoin-utils' 'bitcoind' 'bitlbee' 'bitlbee-devel' 'bitlbee-discord' 'bitlbee-doc' 'bitlbee-facebook' 'bitlbee-mastodon' 'bitlbee-steam' 'bitmap' 'bitstream-vera-fonts' 'bittwist' 'blabel' 'blabel' 'blacs-devel-headers' 'bladeRF' 'bladeRF-devel' 'bladeRF-udev' 'blas-devel' 'blas-devel-32bit' 'blas-devel-static' 'blas-man' 'blasphemer' 'bleachbit' 'bleachbit-lang' 'blender' 'blender-cycles-devel' 'blender-lang' 'bless' 'bless-doc' 'blinken' 'blinken-lang' 'bliss' 'bliss-devel' 'blktests' 'blktrace' 'bloaty' 'blobAndConquer' 'blobwars' 'blobwars-lang' 'blockout' 'blog' 'blog-devel' 'blog-plymouth' 'blogbench' 'blogc' 'blosc-devel' 'blueberry' 'blueberry-lang' 'bluedevil5' 'bluedevil5-lang' 'bluefish' 'blueman' 'blueman-lang' 'bluemoon' 'blueprint-cursor-theme' 'blueproximity' 'blueproximity-lang' 'bluez' 'bluez-auto-enable-devices' 'bluez-cups' 'bluez-devel' 'bluez-devel-32bit' 'bluez-firmware' 'bluez-qt-devel' 'bluez-qt-imports' 'bluez-qt-udev' 'bluez-test' 'bluez-tools' 'bmake' 'bmon' 'bnd-maven-plugin' 'bnd-maven-plugin-javadoc' 'bogofilter-common' 'bogofilter-db' 'bogofilter-doc' 'bogofilter-kyotocabinet' 'bogofilter-sqlite3' 'boinc-client' 'boinc-client-lang' 'boinc-manager' 'boinc-manager-lang' 'bolt' 'bolt-tools' 'bomber' 'bomber-lang' 'bombono' 'bombono' 'bombono-debuginfo' 'bombono-debugsource' 'bombono-lang' 'bomi' 'bomi' 'bomi-debuginfo' 'bomi-debugsource' 'bomns' 'bonk' 'bonk' 'bonk-debuginfo' 'bonnie' 'bonnie++' 'boo' 'boo-2_0_9_3' 'boo-devel' 'books' 'books' 'bookworm' 'bookworm-lang' 'boomaga' 'boomaga-lang' 'boost-devel' 'boost-gnu-hpc' 'boost-gnu-hpc-devel' 'boost-gnu-mvapich2-hpc' 'boost-gnu-mvapich2-hpc-devel' 'boost-gnu-mvapich2-hpc-python2' 'boost-gnu-mvapich2-hpc-python3' 'boost-gnu-openmpi2-hpc' 'boost-gnu-openmpi2-hpc-devel' 'boost-gnu-openmpi2-hpc-python2' 'boost-gnu-openmpi2-hpc-python3' 'boost-jam' 'boost-license1_69_0' 'boost1_69_0-doc-html' 'boost1_69_0-doc-pdf' 'boost1_69_0-jam' 'boost1_69_0-quickbook' 'boost_1_69_0-gnu-hpc' 'boost_1_69_0-gnu-hpc-devel' 'boost_1_69_0-gnu-hpc-jam' 'boost_1_69_0-gnu-mvapich2-hpc' 'boost_1_69_0-gnu-mvapich2-hpc-devel' 'boost_1_69_0-gnu-mvapich2-hpc-python2' 'boost_1_69_0-gnu-mvapich2-hpc-python3' 'boost_1_69_0-gnu-openmpi2-hpc' 'boost_1_69_0-gnu-openmpi2-hpc-devel' 'boost_1_69_0-gnu-openmpi2-hpc-python2' 'boost_1_69_0-gnu-openmpi2-hpc-python3' 'bootchart' 'booth' 'booth-test' 'bootsplash-branding-KDE' 'bootsplash-branding-upstream' 'borgbackup' 'borgbackup-bash-completion' 'borgbackup-doc' 'borgbackup-fish-completion' 'borgbackup-zsh-completion' 'borgmatic' 'boringssl-devel' 'bosh' 'bouncycastle' 'bouncycastle-javadoc' 'bovo' 'bovo-lang' 'bpftool' 'bpg-fonts' 'bpm-tools' 'bpmdj' 'bpmdj' 'bpmdj-debuginfo' 'bpmdj-debugsource' 'bpython' 'bpython-doc' 'brackets' 'brackets' 'brackets-debuginfo' 'branding-openSUSE' 'branding-upstream' 'brasero' 'brasero-devel' 'brasero-lang' 'brasero-nautilus' 'breeze' 'breeze4-style' 'breeze5-cursors' 'breeze5-decoration' 'breeze5-icons' 'breeze5-style' 'breeze5-style-lang' 'breeze5-wallpapers' 'brevity' 'bridge-utils' 'bridge-utils-devel' 'brightnessctl' 'brise' 'brisk-menu' 'brisk-menu-lang' 'bristol' 'bristol' 'bristol-debuginfo' 'bristol-debugsource' 'brlapi-devel' 'brlapi-java' 'brlemu' 'brltty' 'brltty-driver-at-spi2' 'brltty-driver-brlapi' 'brltty-driver-espeak' 'brltty-driver-libbraille' 'brltty-driver-speech-dispatcher' 'brltty-driver-xwindow' 'brltty-lang' 'brltty-utils' 'broadcom-wl' 'broadcom-wl' 'broadcom-wl-debugsource' 'broadcom-wl-kmp-default' 'broadcom-wl-kmp-default-debuginfo' 'broadcom-wl-kmp-pae' 'broadcom-wl-kmp-pae-debuginfo' 'brotli' 'brp-check-suse' 'brp-extract-appdata' 'brp-extract-translations' 'brp-trim-translations' 'bs' 'bs-update' 'bs2b-tools' 'bsd-games' 'bsdiff' 'bsdtar' 'bsf' 'bsf-javadoc' 'bsh2' 'bsh2-bsf' 'bsh2-classgen' 'bsh2-demo' 'bsh2-javadoc' 'bsh2-manual' 'bsod' 'bsod' 'bsod-debuginfo' 'bsod-debugsource' 'bspwm' 'bspwm-bash-completion' 'bspwm-fish-completion' 'bspwm-zsh-completion' 'bssl_wrapper-devel' 'bstone' 'btar' 'btcflash' 'btfs' 'btrfs-extent-same' 'btrfsmaintenance' 'btrfsprogs' 'btrfsprogs-static' 'btrfsprogs-udev-rules' 'bubblewrap' 'buffer' 'bugreporter' 'bugzilla' 'bugzilla-lang-de' 'build' 'build-compare' 'build-initvm-i586' 'build-initvm-x86_64' 'build-mkbaselibs' 'build-mkdrpms' 'buildah' 'buildstream' 'bumblebee' 'bumblebee-status' 'bumblebee-status-module-cmus' 'bumblebee-status-module-dnf' 'bumblebee-status-module-mocp' 'bumblebee-status-module-mpd' 'bumblebee-status-module-redshift' 'bumpversion' 'burn_360' 'burn_360' 'burncdda' 'burncdda' 'busybox' 'busybox-static' 'butt' 'butt' 'butt-debuginfo' 'butt-debugsource' 'buzztrax' 'buzztrax-lang' 'buzztrax-plugins' 'bvi' 'bwbar' 'bwidget' 'bwm-ng' 'byacc' 'byaccj' 'byobu' 'byobu-doc' 'bytelist' 'byzanz' 'byzanz-lang' 'bzflag' 'bzip2' 'bzip2-doc' 'bzr' 'bzr-lang' 'bzr-test' 'bzrtp-devel' 'c-ares-devel' 'c-toxcore' 'c-toxcore-daemon' 'c-toxcore-devel' 'c3p0' 'c3p0-javadoc' 'c_count' 'ca-certificates' 'ca-certificates-cacert' 'ca-certificates-mozilla' 'ca-certificates-steamtricks' 'caasp-cli' 'cabal-install' 'cabal-install-bash-completion' 'cabal2spec' 'cabextract' 'caca-utils' 'cachefilesd' 'cacti' 'cacti-spine' 'cadabra2' 'cadabra2-doc' 'cadabra2-examples' 'cadabra2-gui' 'cadaver' 'caffe' 'caffe-devel' 'caffe-examples' 'caffe-gnu-hpc' 'caffe-gnu-hpc-devel' 'caffe-gnu-hpc-examples' 'caffe_1_0-gnu-hpc' 'caffe_1_0-gnu-hpc-devel' 'caffe_1_0-gnu-hpc-examples' 'caffeine' 'cage' 'cairo-clock' 'cairo-clock-lang' 'cairo-devel' 'cairo-devel-32bit' 'cairo-tools' 'cairomm-devel' 'cairomm-devel-32bit' 'cairomm-doc' 'cairomm1_0-devel' 'cairomm1_0-devel-32bit' 'cairomm1_0-doc' 'caja' 'caja-devel' 'caja-engrampa' 'caja-extension-actions' 'caja-extension-atril' 'caja-extension-dropbox' 'caja-extension-eiciel' 'caja-extension-folder-color' 'caja-extension-gksu' 'caja-extension-image-converter' 'caja-extension-nextcloud' 'caja-extension-nitroshare' 'caja-extension-open-terminal' 'caja-extension-sendto' 'caja-extension-sendto-devel' 'caja-extension-sendto-gajim' 'caja-extension-sendto-pidgin' 'caja-extension-sendto-upnp' 'caja-extension-share' 'caja-extension-terminal' 'caja-extension-terminal-lang' 'caja-extension-wallpaper' 'caja-extension-xattr-tags' 'caja-extensions-common-lang' 'caja-gschemas' 'caja-lang' 'cal10n' 'cal10n-javadoc' 'cal3d' 'cal3d-devel' 'cal3d-doc' 'calamares' 'calamares-branding-upstream' 'calamares-webview' 'calamaris' 'calc' 'calc-devel' 'calcurse' 'calcurse-lang' 'calendarsupport' 'calendarsupport-devel' 'calendarsupport-lang' 'calf' 'calf' 'calf-bash-completion' 'calf-debuginfo' 'calf-debugsource' 'calibre' 'calligra' 'calligra-devel' 'calligra-doc' 'calligra-extras-converter' 'calligra-extras-dolphin' 'calligra-extras-okular' 'calligra-gemini' 'calligra-karbon' 'calligra-lang' 'calligra-plan' 'calligra-plan-lang' 'calligra-sheets' 'calligra-stage' 'calligra-tools' 'calligra-words' 'camsource' 'camsource-devel' 'canberra-gtk-play' 'canberra-gtk-play-gnome' 'canna' 'canna-devel' 'canna-libs' 'canna-libs-32bit' 'canna-yubin' 'cannadic' 'cantarell-fonts' 'cantata' 'cantata-lang' 'cantor' 'cantor-devel' 'cantor-lang' 'canutils' 'canutils-pengutronix' 'capi4hylafax' 'capi4linux' 'capi4linux-32bit' 'capi4linux-devel' 'capi4linux-devel-32bit' 'capifax' 'capifax' 'capifax-debuginfo' 'capifax-debugsource' 'capnet-assist' 'capnet-assist-lang' 'capnproto' 'cardpeek' 'cargo' 'cargo-doc' 'cargo-vendor' 'caribou' 'caribou-common' 'caribou-devel' 'caribou-gtk-module-common' 'caribou-gtk2-module' 'caribou-gtk3-module' 'caribou-lang' 'carla' 'carla-devel' 'carla-vst' 'caslon-fonts' 'casync' 'catatonit' 'catcodec' 'catfish' 'catfish-lang' 'caudec' 'caudec' 'cava' 'cblas-devel' 'cblas-devel-32bit' 'cblas-devel-static' 'cc-tool' 'ccache' 'ccd2cue' 'ccd2cue-doc' 'ccd2iso' 'ccd2iso' 'ccd2iso-debuginfo' 'ccd2iso-debugsource' 'ccgfs' 'cclive' 'cclive' 'cclive-debuginfo' 'cclive-debugsource' 'ccls' 'ccrtp-devel' 'ccrtp-doc' 'ccrypt' 'ccrypt-emacs' 'ccrypt-lang' 'ccze' 'ccze-devel' 'cd-discid' 'cd-paranoia' 'cdctl' 'cdctl' 'cdctl-debuginfo' 'cdctl-debugsource' 'cdda2wav' 'cddlib-devel' 'cddlib-doc' 'cdecl' 'cdemu-client' 'cdemu-client-lang' 'cdemu-daemon' 'cdi-api' 'cdi-api-javadoc' 'cdi2iso' 'cdi2iso' 'cdi2iso-debuginfo' 'cdio-utils' 'cdk-devel' 'cdogs-sdl' 'cdparanoia' 'cdparanoia-devel' 'cdrdao' 'cdrecord' 'cdrskin' 'cec-client' 'cecilia' 'cedict' 'cedilla' 'ceferino' 'celluloid' 'celluloid-lang' 'cellwriter' 'celt' 'celt051' 'celt051-devel' 'ceph' 'ceph-base' 'ceph-common' 'ceph-csi' 'ceph-dashboard-e2e' 'ceph-fuse' 'ceph-grafana-dashboards' 'ceph-iscsi' 'ceph-mds' 'ceph-mgr' 'ceph-mgr-dashboard' 'ceph-mgr-diskprediction-cloud' 'ceph-mgr-diskprediction-local' 'ceph-mgr-rook' 'ceph-mgr-ssh' 'ceph-mon' 'ceph-osd' 'ceph-prometheus-alerts' 'ceph-radosgw' 'ceph-resource-agents' 'ceph-test' 'ceph_base' 'cephfs-shell' 'cerbere' 'cereal-devel' 'certbot-systemd-timer' 'certstrap' 'cervisia' 'cervisia-lang' 'cetcd-devel' 'cf-cli' 'cf-cli-test' 'cfengine' 'cfengine-doc' 'cfengine-examples' 'cfengine-masterfiles' 'cfitsio' 'cfitsio-devel' 'cfitsio-devel-doc' 'cfityk' 'cflow' 'cfn-lint' 'cgal-demo-examples-devel' 'cgal-devel' 'cgal-doc' 'cgdb' 'cgit' 'cglib' 'cglib-javadoc' 'chafa' 'chafa-devel' 'chafa-doc' 'chameleon' 'changelog-generator-data' 'charliecloud' 'charliecloud-doc' 'charliecloud-examples' 'chartmuseum' 'charybdis' 'chasen' 'chasen-devel' 'chck-devel' 'check-create-certificate' 'check-devel' 'check_postgres' 'checkbashisms' 'checkmedia' 'checkpolicy' 'cheese' 'cheese-devel' 'cheese-lang' 'chemical-mime-data' 'cherrytree' 'cherrytree-lang' 'chessx' 'chewing-data' 'chewing-utils' 'chezdav' 'chezmoi' 'chkstat' 'chmlib-devel' 'chmlib-devel-32bit' 'chmlib-examples' 'chntpw' 'chocolate-doom' 'chocolate-doom-bash-completion' 'choqok' 'choqok-devel' 'chromaprint-fpcalc' 'chrome-gnome-shell' 'chrome-uget-integrator' 'chromedriver' 'chromium' 'chromium' 'chromium-bsu' 'chromium-ffmpeg-extra' 'chromium-ffmpeg-extra' 'chromium-ffmpeg-extra-debuginfo' 'chromium-plugin-widevinecdm' 'chromium-plugin-widevinecdm' 'chromium-uget-integrator' 'chrony' 'chrpath' 'ciano' 'ciano-lang' 'cifs-utils' 'cifs-utils-devel' 'cilium' 'cilium-cni' 'cilium-devel' 'cilium-docker' 'cilium-etcd-operator' 'cilium-init' 'cilium-k8s-yaml' 'cilium-microscope' 'cilium-operator' 'cilium-proxy' 'cim-schema' 'cimple' 'cimple-cmpi-adapter' 'cimple-devel' 'cimple-pegasus-adapter' 'cinema' 'cinema-lang' 'cinnamon' 'cinnamon-control-center' 'cinnamon-control-center-common' 'cinnamon-control-center-devel' 'cinnamon-control-center-lang' 'cinnamon-devel-doc' 'cinnamon-gschemas' 'cinnamon-gschemas-branding-openSUSE' 'cinnamon-gschemas-branding-upstream' 'cinnamon-lang' 'cinnamon-metatheme-numix' 'cinnamon-screensaver' 'cinnamon-screensaver-lang' 'cinnamon-session' 'cinnamon-session-lang' 'cinnamon-settings-daemon' 'cinnamon-settings-daemon-devel' 'cinnamon-settings-daemon-lang' 'cinnamon-theme-adapta' 'cinnamon-theme-plata' 'circuslinux' 'cjs' 'cjs-devel' 'ck-devel' 'ckb-next' 'ckermit' 'ckermit-doc' 'clFFT' 'clFFT-devel' 'clack' 'clamav' 'clamav-devel' 'clamtk' 'clamtk-lang' 'clamz' 'clang' 'clang-checker' 'clang-devel' 'clang6' 'clang6-checker' 'clang6-devel' 'clang6-devel-32bit' 'clang7' 'clang7-checker' 'clang7-devel' 'clang7-devel-32bit' 'clang8' 'clang8-checker' 'clang8-devel' 'clang8-devel-32bit' 'clanlib' 'clanlib-devel' 'clanlib-doc' 'clanlib-examples' 'clatd' 'claws-mail' 'claws-mail-devel' 'claws-mail-lang' 'clawsker' 'clawsker' 'clawsker-lang' 'clazy' 'cld2-devel' 'cldr-emoji-annotation' 'cldr-emoji-annotation-devel' 'clementine' 'clementine' 'clicfs' 'clinfo' 'clipgrab' 'clipit' 'clipped' 'clipped-lang' 'clippy' 'clisp' 'clisp-doc' 'clive' 'clive' 'clive-utils' 'clive-utils' 'clivefeed' 'clivepass' 'clivescan' 'cln' 'cln-devel' 'clone-master-clean-up' 'cloud-init' 'cloud-init-config-MicroOS' 'cloud-init-config-caasp' 'cloud-init-config-suse' 'cloud-init-doc' 'cloud-init-vmware-guestinfo' 'cloud-netconfig-azure' 'cloud-netconfig-ec2' 'clpeak' 'clucene-core-devel' 'clustduct' 'cluster-glue' 'clustershell' 'clusterssh' 'clutter-devel' 'clutter-gst-devel' 'clutter-gtk-devel' 'clutter-gtk-lang' 'clutter-lang' 'clzip' 'cm-unicode-fonts' 'cmake' 'cmake-gui' 'cmake-man' 'cmark' 'cmark-devel' 'cmis-client' 'cmpi-bindings-perl' 'cmpi-bindings-pywbem' 'cmpi-bindings-ruby' 'cmpi-provider-register' 'cmpi-pywbem-base' 'cmpi-pywbem-power-management' 'cmrt-devel' 'cmuclmtk' 'cmus' 'cmus-plugin-cdio' 'cmus-plugin-cue' 'cmus-plugin-ffmpeg' 'cmus-plugin-flac' 'cmus-plugin-jack' 'cmus-plugin-libao' 'cmus-plugin-mikmod' 'cmus-plugin-modplug' 'cmus-plugin-mpc' 'cmus-plugin-opus' 'cmus-plugin-pulse' 'cmus-plugin-sndio' 'cmus-plugin-vorbis' 'cmus-plugin-wavpack' 'cmus-plugins-all' 'cni' 'cni-plugins' 'cntlm' 'cobbler' 'cobbler-tests' 'cobbler-web' 'coccigrep' 'coccinelle' 'codec2' 'codec2-devel' 'codec2-examples' 'codehaus-parent' 'codelite' 'codespell' 'codium' 'cogl-devel' 'cogl-lang' 'collectd' 'collectd-plugin-dbi' 'collectd-plugin-gps' 'collectd-plugin-ipmi' 'collectd-plugin-java' 'collectd-plugin-lua' 'collectd-plugin-lvm' 'collectd-plugin-mcelog' 'collectd-plugin-memcachec' 'collectd-plugin-mysql' 'collectd-plugin-notify-desktop' 'collectd-plugin-nut' 'collectd-plugin-openldap' 'collectd-plugin-ovs' 'collectd-plugin-pcie' 'collectd-plugin-pinba' 'collectd-plugin-postgresql' 'collectd-plugin-python3' 'collectd-plugin-sigrok' 'collectd-plugin-smart' 'collectd-plugin-snmp' 'collectd-plugin-synproxy' 'collectd-plugin-virt' 'collectd-plugin-write_stackdriver' 'collectd-plugin-write_syslog' 'collectd-plugins-all' 'collectd-spamassassin' 'collectd-web' 'collectd-web-js' 'collectl' 'colm-devel' 'colm-doc' 'color-filesystem' 'colord' 'colord-color-profiles' 'colord-gtk' 'colord-gtk-lang' 'colord-kde' 'colord-kde-lang' 'colord-lang' 'colordiff' 'colorhug-client' 'colorhug-client-lang' 'colormake' 'colorpicker' 'colorpicker-lang' 'comgt' 'comgt' 'comgt-debuginfo' 'comgt-debugsource' 'command-not-found' 'compartm' 'compcache' 'compface' 'compface-devel' 'compicc' 'compiz' 'compiz-bcop' 'compiz-branding-SLED' 'compiz-branding-openSUSE' 'compiz-branding-upstream' 'compiz-devel' 'compiz-emerald' 'compiz-emerald-devel' 'compiz-emerald-lang' 'compiz-emerald-theme-manager' 'compiz-emerald-themes' 'compiz-gnome' 'compiz-lang' 'compiz-manager' 'compiz-plugins' 'compiz-plugins-experimental' 'compiz-plugins-experimental-devel' 'compiz-plugins-experimental-lang' 'compiz-plugins-extra' 'compiz-plugins-extra-devel' 'compiz-plugins-extra-lang' 'compiz-plugins-main' 'compiz-plugins-main-devel' 'compiz-plugins-main-lang' 'compizconfig-settings-manager' 'compizconfig-settings-manager-common' 'compizconfig-settings-manager-lang' 'complexity' 'compsize' 'compton' 'compton-conf' 'compton-conf-lang' 'concurrent' 'conkeror' 'conky' 'conky' 'conky-debuginfo' 'conky-debugsource' 'conky-doc' 'conman' 'conmon' 'connect' 'connect' 'connman' 'connman-client' 'connman-devel' 'connman-doc' 'connman-nmcompat' 'connman-plugin-hh2serial-gps' 'connman-plugin-iospm' 'connman-plugin-l2tp' 'connman-plugin-openconnect' 'connman-plugin-openvpn' 'connman-plugin-polkit' 'connman-plugin-pptp' 'connman-plugin-tist' 'connman-plugin-vpnc' 'connman-test' 'conntrack-tools' 'conntrackd' 'console' 'console-setup' 'container-diff' 'container-feeder' 'container_runtime' 'container_runtime_kubernetes' 'containerd' 'containerd-ctr' 'containerd-kubic' 'containerd-kubic-ctr' 'contractor' 'converseen' 'converseen-lang' 'convmv' 'cookiecutter' 'cookiecutter-doc' 'cool-retro-term' 'coolkey' 'coolkey-32bit' 'coolkey-devel' 'copy-agent' 'copy-agent' 'copy-agent-gnome' 'copy-agent-mate' 'coreboot-utils' 'coredns' 'coredns-extras' 'coreutils' 'coreutils-lang' 'coreutils-testsuite' 'corosync' 'corosync-qdevice' 'corosync-qnetd' 'corosync-testagents' 'courier-authlib' 'courier-authlib-devel' 'courier-authlib-ldap' 'courier-authlib-mysql' 'courier-authlib-pgsql' 'courier-authlib-pipe' 'courier-authlib-sqlite' 'courier-authlib-userdb' 'courier-imap' 'courier-prime-fonts' 'courier-unicode-devel' 'courier-unicode-doc' 'cowsay' 'cozy' 'cozy-lang' 'cpanspec' 'cpdvd' 'cpdvd' 'cpio' 'cpio-lang' 'cpio-mt' 'cpluff' 'cpmono_v07-fonts' 'cpp' 'cpp7' 'cpp8' 'cpp9' 'cppcheck' 'cppcheck-gui' 'cppi' 'cppi-lang' 'cppreference-doc' 'cppreference-doc-devhelp' 'cppreference-doc-qhelp' 'cpprest-devel' 'cpptasks' 'cpptasks-javadoc' 'cppunit-devel' 'cppunit-devel-32bit' 'cppunit-devel-doc' 'cppzmq-devel' 'cpuid' 'cpulimit' 'cpupower' 'cpupower-bench' 'cpupower-devel' 'cpuset' 'cpustat' 'cpvts' 'cpvts' 'cracklib' 'cracklib-devel' 'cracklib-devel-32bit' 'cracklib-dict-full' 'cracklib-dict-small' 'crafty' 'crafty' 'crafty-debuginfo' 'cram-common' 'crash' 'crash-devel' 'crash-doc' 'crash-eppic' 'crash-gcore' 'crash-kmp-default' 'crawl' 'crawl-data' 'crawl-sdl' 'crazydiskinfo' 'crda' 'createrepo' 'createrepo_c' 'creduce' 'cri-o' 'cri-o-kubeadm-criconfig' 'cri-tools' 'criu' 'criu-devel' 'crmsh' 'crmsh-scripts' 'crmsh-test' 'cron' 'cronic' 'cronie' 'cronie-anacron' 'cross-aarch64-binutils' 'cross-aarch64-gcc7' 'cross-aarch64-gcc7-icecream-backend' 'cross-aarch64-gcc8' 'cross-aarch64-gcc8-icecream-backend' 'cross-aarch64-gcc9' 'cross-aarch64-gcc9-icecream-backend' 'cross-arm-binutils' 'cross-arm-gcc7' 'cross-arm-gcc8' 'cross-arm-gcc9' 'cross-arm-none-gcc7' 'cross-arm-none-gcc7-bootstrap' 'cross-arm-none-gcc8' 'cross-arm-none-gcc8-bootstrap' 'cross-arm-none-gcc9' 'cross-arm-none-gcc9-bootstrap' 'cross-arm-none-newlib-devel' 'cross-avr-binutils' 'cross-avr-gcc7' 'cross-avr-gcc7-bootstrap' 'cross-avr-gcc8' 'cross-avr-gcc8-bootstrap' 'cross-avr-gcc9' 'cross-avr-gcc9-bootstrap' 'cross-epiphany-binutils' 'cross-epiphany-gcc7' 'cross-epiphany-gcc7-bootstrap' 'cross-epiphany-gcc8' 'cross-epiphany-gcc8-bootstrap' 'cross-epiphany-gcc9' 'cross-epiphany-gcc9-bootstrap' 'cross-epiphany-newlib-devel' 'cross-hppa-binutils' 'cross-hppa-gcc7' 'cross-hppa-gcc7-icecream-backend' 'cross-hppa-gcc8' 'cross-hppa-gcc8-icecream-backend' 'cross-hppa-gcc9' 'cross-hppa-gcc9-icecream-backend' 'cross-hppa64-binutils' 'cross-i386-binutils' 'cross-i386-gcc7' 'cross-i386-gcc7-icecream-backend' 'cross-i386-gcc8' 'cross-i386-gcc8-icecream-backend' 'cross-i386-gcc9' 'cross-i386-gcc9-icecream-backend' 'cross-ia64-binutils' 'cross-m68k-binutils' 'cross-m68k-gcc7' 'cross-m68k-gcc7-icecream-backend' 'cross-m68k-gcc8' 'cross-m68k-gcc8-icecream-backend' 'cross-m68k-gcc9' 'cross-m68k-gcc9-icecream-backend' 'cross-mips-binutils' 'cross-mips-gcc7' 'cross-mips-gcc7-icecream-backend' 'cross-mips-gcc8' 'cross-mips-gcc8-icecream-backend' 'cross-mips-gcc9' 'cross-mips-gcc9-icecream-backend' 'cross-nvptx-gcc7' 'cross-nvptx-gcc8' 'cross-nvptx-gcc9' 'cross-nvptx-newlib7-devel' 'cross-nvptx-newlib8-devel' 'cross-nvptx-newlib9-devel' 'cross-ppc-binutils' 'cross-ppc64-binutils' 'cross-ppc64-gcc7' 'cross-ppc64-gcc7-icecream-backend' 'cross-ppc64-gcc8' 'cross-ppc64-gcc8-icecream-backend' 'cross-ppc64-gcc9' 'cross-ppc64-gcc9-icecream-backend' 'cross-ppc64le-binutils' 'cross-ppc64le-gcc7' 'cross-ppc64le-gcc7-icecream-backend' 'cross-ppc64le-gcc8' 'cross-ppc64le-gcc8-icecream-backend' 'cross-ppc64le-gcc9' 'cross-ppc64le-gcc9-icecream-backend' 'cross-riscv64-binutils' 'cross-riscv64-elf-gcc8' 'cross-riscv64-elf-gcc8-bootstrap' 'cross-riscv64-elf-gcc9' 'cross-riscv64-elf-gcc9-bootstrap' 'cross-riscv64-gcc8' 'cross-riscv64-gcc8-icecream-backend' 'cross-riscv64-gcc9' 'cross-riscv64-gcc9-icecream-backend' 'cross-riscv64-newlib-devel' 'cross-rx-binutils' 'cross-rx-gcc7' 'cross-rx-gcc7-bootstrap' 'cross-rx-gcc8' 'cross-rx-gcc8-bootstrap' 'cross-rx-gcc9' 'cross-rx-gcc9-bootstrap' 'cross-rx-newlib-devel' 'cross-s390-binutils' 'cross-s390x-binutils' 'cross-s390x-gcc7' 'cross-s390x-gcc7-icecream-backend' 'cross-s390x-gcc8' 'cross-s390x-gcc8-icecream-backend' 'cross-s390x-gcc9' 'cross-s390x-gcc9-icecream-backend' 'cross-sparc-binutils' 'cross-sparc-gcc7' 'cross-sparc-gcc8' 'cross-sparc-gcc9' 'cross-sparc64-binutils' 'cross-sparc64-gcc7' 'cross-sparc64-gcc7-icecream-backend' 'cross-sparc64-gcc8' 'cross-sparc64-gcc8-icecream-backend' 'cross-sparc64-gcc9' 'cross-sparc64-gcc9-icecream-backend' 'cross-sparcv9-gcc7-icecream-backend' 'cross-sparcv9-gcc8-icecream-backend' 'cross-sparcv9-gcc9-icecream-backend' 'cross-spu-binutils' 'cross-x86_64-binutils' 'crossc-devel' 'crossguid-devel' 'crosstool-ng' 'crudini' 'cryfs' 'cryptctl' 'cryptsetup' 'crystalhd-firmware' 'cscope' 'csindex' 'csmash' 'csmith' 'csound' 'csound-devel' 'csound-java-bindings' 'csound-lang' 'csound-plugins' 'cspctl' 'csvprintf' 'csync' 'csync2' 'ctags' 'ctdb' 'ctdb-pcp-pmda' 'ctdb-tests' 'ctris' 'cttop' 'cudd-devel' 'cuetools' 'cuetools' 'cuetools-debuginfo' 'cuetools-debugsource' 'cuishark' 'culmus-ancient-semitic-fonts' 'culmus-fonts' 'cuneiform' 'cunit-devel' 'cunit-doc' 'cups' 'cups-airprint' 'cups-backends' 'cups-client' 'cups-config' 'cups-ddk' 'cups-devel' 'cups-devel-32bit' 'cups-filters' 'cups-filters-devel' 'cups-pdf' 'cups-pk-helper' 'cups-pk-helper-lang' 'cura' 'cura-engine' 'cura-engine-lulzbot' 'cura-fdm-materials' 'cura-lulzbot' 'curl' 'curlew' 'curlew' 'curlew-lang' 'curlftpfs' 'cutecom' 'cutmp3' 'cutmp3-doc' 'cutterff' 'cutterff-lang' 'cvs' 'cvs-doc' 'cvs2svn' 'cvsps' 'cxref' 'cxsc' 'cxsc-devel' 'cxxtools-devel' 'cyradm' 'cyreal-alice-fonts' 'cyreal-junge-fonts' 'cyreal-lobster-cyrillic-fonts' 'cyreal-lora-fonts' 'cyreal-marko-horobchyk-fonts' 'cyreal-marmelad-fonts' 'cyreal-wire-fonts' 'cyrus-imapd' 'cyrus-imapd-devel' 'cyrus-imapd-snmp' 'cyrus-imapd-snmp-mibs' 'cyrus-imapd-utils' 'cyrus-sasl' 'cyrus-sasl-32bit' 'cyrus-sasl-crammd5' 'cyrus-sasl-crammd5-32bit' 'cyrus-sasl-devel' 'cyrus-sasl-devel-32bit' 'cyrus-sasl-digestmd5' 'cyrus-sasl-digestmd5-32bit' 'cyrus-sasl-gs2' 'cyrus-sasl-gssapi' 'cyrus-sasl-gssapi-32bit' 'cyrus-sasl-ldap-auxprop' 'cyrus-sasl-ldap-auxprop-32bit' 'cyrus-sasl-ntlm' 'cyrus-sasl-otp' 'cyrus-sasl-otp-32bit' 'cyrus-sasl-plain' 'cyrus-sasl-plain-32bit' 'cyrus-sasl-saslauthd' 'cyrus-sasl-scram' 'cyrus-sasl-sqlauxprop' 'cyrus-sasl-sqlauxprop-32bit' 'czmq' 'czmq-devel' 'd-feet' 'd-feet-lang' 'd0_blind_id' 'd0_blind_id-devel' 'dSFMT-devel' 'dai-banna-fonts' 'dante' 'dante-devel' 'dante-devel-32bit' 'dante-server' 'dapl' 'dapl-debug' 'dapl-debug-devel' 'dapl-debug-libs' 'dapl-debug-utils' 'dapl-devel' 'dapl-devel-32bit' 'dapl-utils' 'daps' 'dar' 'dar-lang' 'darkice' 'darkice' 'darkice-debuginfo' 'darkice-debugsource' 'darktable' 'darktable-doc' 'darktable-tools-basecurve' 'darktable-tools-noise' 'darts' 'dash' 'dasher' 'dasher-data-extras' 'dasher-data-recommended' 'dasher-lang' 'data-partition-service' 'datamash' 'dataquay-devel' 'datefudge' 'dateutils' 'dateutils-octave' 'datovka' 'dav1d' 'dav1d-devel' 'davfs2' 'davix' 'davix-devel' 'db48-doc' 'db48-utils' 'dbench' 'dbench4' 'dbh-devel' 'dblatex' 'dblatex-doc' 'dbsplit-tools' 'dbus-1' 'dbus-1-devel' 'dbus-1-devel-32bit' 'dbus-1-devel-doc' 'dbus-1-glib' 'dbus-1-glib-32bit' 'dbus-1-glib-devel' 'dbus-1-glib-devel-32bit' 'dbus-1-glib-doc' 'dbus-1-glib-tool' 'dbus-1-mono' 'dbus-1-presage' 'dbus-1-x11' 'dbus-broker' 'dbus-sharp' 'dbus-sharp-devel' 'dbus-sharp-glib' 'dbus-sharp-glib-devel' 'dbus-sharp-glib2' 'dbus-sharp-glib2-devel' 'dbus-sharp2' 'dbus-sharp2-devel' 'dbview' 'dc3dd' 'dc3dd-lang' 'dcadec' 'dcadec' 'dcadec-debuginfo' 'dcadec-debugsource' 'dcaenc' 'dcaenc' 'dcaenc-debuginfo' 'dcaenc-debugsource' 'dcatools' 'dcatools' 'dcatools-debuginfo' 'dcatools-debugsource' 'dcmtk' 'dcmtk-devel' 'dconf' 'dconf-devel' 'dconf-editor' 'dconf-editor-lang' 'dcraw' 'dcraw-lang' 'dd-opentracing-cpp-devel' 'dd_rescue' 'dd_rescue-crypt' 'dd_rescue-lzo' 'dd_rhelp' 'ddccontrol' 'ddccontrol-db' 'ddccontrol-db-lang' 'ddccontrol-devel' 'ddccontrol-doc' 'ddccontrol-gtk' 'ddccontrol-lang' 'ddclient' 'ddcutil' 'ddd' 'ddd-doc' 'ddgr' 'dds2tar' 'ddskk' 'deadbeef' 'deadbeef-devel' 'deadbeef-lang' 'deadbeef-plugin-mpris2' 'deadbeef-plugin-mpris2' 'deadbeef-plugin-mpris2-debuginfo' 'deadbeef-plugin-mpris2-debugsource' 'deadbeef-plugin-statusnotifier' 'deadbeef-plugin-statusnotifier' 'deadbeef-plugin-statusnotifier-debuginfo' 'deadbeef-plugin-statusnotifier-debugsource' 'debhelper' 'debootstrap' 'decentxml' 'decentxml-javadoc' 'dee-devel' 'deepin-calendar' 'deepin-calendar-lang' 'deepin-editor' 'deepin-editor-lang' 'deepin-gettext-tools' 'deepin-media-player' 'deepin-media-player' 'deepin-media-player-lang' 'deepin-menu' 'deepin-movie' 'deepin-movie-devel' 'deepin-movie-lang' 'deepin-music-libnetease-meta-search' 'deepin-music-player' 'deepin-screenshot' 'deepin-screenshot-lang' 'deepin-system-monitor' 'deepin-system-monitor-lang' 'deepin-terminal' 'deepin-terminal-lang' 'deepin-turbo' 'deepin-turbo-devel' 'dehydrated' 'dehydrated-apache2' 'dehydrated-lighttpd' 'dehydrated-nginx' 'deja-dup' 'deja-dup-lang' 'dejagnu' 'dejavu-fonts' 'delaguardo-inconsolata_lgc-fonts' 'delayacct-utils' 'delta' 'deltafs' 'deltarpm' 'deluge' 'deluge-lang' 'desktop-data-openSUSE' 'desktop-data-openSUSE-extra' 'desktop-file-utils' 'desktop-translations' 'desktopfolder' 'desktopfolder-lang' 'deutex' 'dev86' 'devede' 'devede' 'devede-lang' 'devedeng' 'devedeng' 'devedeng-lang' 'devel_C_C++' 'devel_basis' 'devel_gnome' 'devel_java' 'devel_kde_frameworks' 'devel_kernel' 'devel_mono' 'devel_osc_build' 'devel_perl' 'devel_python3' 'devel_qt5' 'devel_rpm_build' 'devel_ruby' 'devel_tcl' 'devel_web' 'devel_yast' 'devhelp' 'devhelp-devel' 'devhelp-lang' 'device-mapper' 'device-mapper-devel' 'device-mapper-devel-32bit' 'devidify' 'devidify' 'devilspie2' 'devilspie2-lang' 'devmem2' 'devscripts' 'dex' 'dex-oidc' 'dfc' 'dfc-lang' 'dfu-programmer' 'dfu-tool' 'dh-autoreconf' 'dh-make' 'dhcp' 'dhcp-client' 'dhcp-devel' 'dhcp-doc' 'dhcp-relay' 'dhcp-server' 'dhcp-tools' 'dhcp_dns_server' 'dhcpdetector' 'dhcpdetector' 'dhewm3' 'dhex' 'dhtest' 'di' 'di' 'di-debuginfo' 'di-debugsource' 'dia' 'dia-lang' 'dialog' 'dialog-devel' 'dialog-examples' 'dialog-lang' 'dianara' 'dico' 'dico-devel' 'dico-lang' 'dico-modules' 'dictd' 'dictd-devel' 'dicts' 'diff-pdf' 'diffmk' 'diffoscope' 'diffstat' 'diffutils' 'diffutils-lang' 'digikam' 'digikam-devel' 'digikam-lang' 'digikam-plugins' 'dina-bitmap-fonts' 'ding' 'ding-dict-de_en' 'dippi' 'dippi-lang' 'dirac' 'dirac-devel' 'dirac-devel-32bit' 'directory_server' 'direnv' 'direvent' 'dirvish' 'discord' 'discount' 'discover' 'discover-backend-flatpak' 'discover-backend-fwupd' 'discover-backend-packagekit' 'discover-lang' 'discover-plasmoid' 'diskimage-builder' 'diskscan' 'disorderfs' 'distcc' 'distcc-gui' 'distcc-server' 'distribution-gpg-keys' 'distribution-logos-openSUSE' 'distribution-logos-openSUSE-Kubic' 'distribution-logos-openSUSE-Leap' 'distribution-logos-openSUSE-MicroOS' 'distribution-logos-openSUSE-Tumbleweed' 'dita' 'djv' 'djv' 'djv-debuginfo' 'djv-debugsource' 'djv-devel' 'djv-doc' 'djv-plugins' 'djv-plugins-debuginfo' 'djvu2pdf' 'djvulibre' 'djvulibre-djview4' 'djvulibre-doc' 'djvusmooth' 'djvusmooth-lang' 'dkgpg' 'dkimproxy' 'dkms' 'dleyna-connector-dbus' 'dleyna-core-devel' 'dleyna-server' 'dleyna-server-devel' 'dm-zoned-tools' 'dmd' 'dmenu' 'dmidecode' 'dmraid' 'dmraid-devel' 'dmz-icon-theme-cursors' 'dnf' 'dnf-automatic' 'dnf-conf' 'dnf-lang' 'dnf-plugins-core' 'dnf-plugins-core-lang' 'dnf-utils' 'dnf-yum' 'dns24-update' 'dnscrypt-proxy' 'dnscrypt-proxy-devel' 'dnsdiag' 'dnsmasq' 'dnsmasq-utils' 'dnstracer' 'docbook-css-stylesheets' 'docbook-dsssl-stylesheets' 'docbook-simple' 'docbook-tdg' 'docbook-toys' 'docbook-utils' 'docbook-utils-minimal' 'docbook-xml-slides' 'docbook-xml-website' 'docbook-xsl-pdf2index' 'docbook-xsl-stylesheets' 'docbook2x' 'docbook2x-doc' 'docbook5-xsl-stylesheets' 'docbook_3' 'docbook_4' 'docbook_5' 'docbook_5-doc' 'docker' 'docker-bash-completion' 'docker-bench-security' 'docker-distribution-registry' 'docker-kubic' 'docker-kubic-bash-completion' 'docker-kubic-kubeadm-criconfig' 'docker-kubic-test' 'docker-kubic-zsh-completion' 'docker-libnetwork' 'docker-libnetwork-kubic' 'docker-machine-driver-kvm2' 'docker-runc' 'docker-runc-kubic' 'docker-test' 'docker-zsh-completion' 'docky' 'docky-devel' 'docky-lang' 'documentation' 'dogtail' 'dolphin' 'dolphin-devel' 'dolphin-part' 'dolphin-part-lang' 'dolphin-plugins' 'dolphin-plugins-lang' 'dom2-core-tests' 'dom4j' 'dom4j-demo' 'dom4j-javadoc' 'dom4j-manual' 'domination' 'domination-data' 'doomsday' 'dos2unix' 'dosbox' 'dosemu' 'dosfstools' 'dotconf-devel' 'double-conversion-devel' 'double-cross' 'dovecot' 'dovecot23' 'dovecot23-backend-mysql' 'dovecot23-backend-pgsql' 'dovecot23-backend-sqlite' 'dovecot23-devel' 'dovecot23-fts' 'dovecot23-fts-lucene' 'dovecot23-fts-solr' 'dovecot23-fts-squat' 'doxygen' 'doxywizard' 'dpdk' 'dpdk-devel' 'dpdk-doc' 'dpdk-examples' 'dpdk-kmp-default' 'dpdk-tools' 'dpic' 'dpic-doc' 'dpkg' 'dpkg-devel' 'dpkg-lang' 'dracut' 'dracut-fips' 'dracut-ima' 'dracut-kiwi-lib' 'dracut-kiwi-live' 'dracut-kiwi-oem-dump' 'dracut-kiwi-oem-repart' 'dracut-kiwi-overlay' 'dracut-tools' 'dragonplayer' 'dragonplayer-lang' 'drbd' 'drbd-formula' 'drbd-kmp-default' 'drbd-utils' 'drbdmanage' 'drc' 'drc-doc' 'dreampie' 'driconf' 'driverctl' 'drkonqi5' 'drkonqi5-lang' 'dropbox-cli' 'drops' 'drumstick' 'drush' 'dsmidiwifi' 'dsmidiwifi' 'dsmidiwifi-debuginfo' 'dssi' 'dssi-devel' 'dssi-linuxsampler' 'dssi-linuxsampler-debuginfo' 'dssim' 'dstat' 'dt' 'dtach' 'dtc' 'dtdinst' 'dtkcore' 'dtkcore-devel' 'dtkwidget' 'dtkwidget-devel' 'dtkwm-devel' 'dtv-scan-tables' 'dtv-scan-tables-v5' 'dub' 'duc' 'duktape-devel' 'dump' 'dump-rmt' 'dump1090' 'dumpvdl2' 'dunelegacy' 'dunst' 'duperemove' 'duplicity' 'duplicity-lang' 'duply' 'dustrac' 'dv2sub' 'dv2sub' 'dv2sub-debuginfo' 'dv2sub-debugsource' 'dvb-utils' 'dvbcut' 'dvbsnoop' 'dvbstream' 'dvd+rw-tools' 'dvd-slideshow' 'dvd-slideshow' 'dvdauthor' 'dvdbackup' 'dvdbackup' 'dvdbackup-debuginfo' 'dvdbackup-debugsource' 'dvdinfo' 'dvdinfo' 'dvdinfo-debuginfo' 'dvdisaster' 'dvdisaster-docs' 'dvdrip' 'dvdrip' 'dvdrip-debuginfo' 'dvdshrink' 'dvdshrink' 'dvdwizard' 'dvdwizard' 'dvgrab' 'dvgrab' 'dvgrab-debuginfo' 'dvgrab-debugsource' 'dvgt' 'dwarves' 'dwz' 'dwz-testsuite' 'dxflib-devel' 'dxirc' 'dxirc' 'dxirc-debuginfo' 'dxirc-debugsource' 'dynamic-wallpapers-11x' 'dynamips' 'dzen2' 'e16' 'e2fsprogs' 'e2fsprogs-devel' 'e2fsprogs-scrub' 'e3' 'eaglemode' 'easy-rsa' 'easymock' 'easymock-javadoc' 'easytag' 'easytag-lang' 'eatmydata' 'eb' 'eb-devel' 'eb-garamond-fonts' 'eb-lang' 'ebiso' 'ebizzy' 'eblook' 'ebook-tools' 'ebtables' 'ecasound' 'ecasound' 'ecasound-debuginfo' 'ecasound-debugsource' 'ecasound-doc' 'echomixer' 'eciadsl-usermode' 'ecj' 'eclipse-swt' 'econnman' 'ecryptfs-utils' 'ecryptfs-utils-32bit' 'ecryptfs-utils-devel' 'ecryptfs-utils-devel-32bit' 'ecwolf' 'ed' 'edgar' 'edgar-data' 'edgar-lang' 'edict' 'edict2' 'editorconfig' 'editres' 'edje' 'eekboard' 'eekboard-devel' 'eeyek-fonts' 'efibootmgr' 'efivar' 'efivar-devel' 'efl' 'efl-devel' 'efl-lang' 'efl-testsuite' 'efont-serif-fonts' 'efont-unicode-bitmap-fonts' 'eiciel' 'eiciel-lang' 'eigen3-devel' 'eigen3-doc' 'ekiga' 'ekiga-lang' 'ekiga-plugins-evolution' 'elektra' 'elektra-qt-gui' 'elementary' 'elementary-cmake-modules' 'elementary-icon-theme' 'elementary-icon-theme-gimp-palette' 'elementary-icon-theme-inkscape-palette' 'elementary-wallpapers' 'elementary-xfce-icon-theme' 'elemines' 'elftoaout' 'elfutils' 'elfutils-lang' 'elib' 'elilo' 'elinks' 'elisa' 'elisa-lang' 'elixir' 'elixir-doc' 'elixir-ex_doc' 'elixir-hex' 'ell-devel' 'elua' 'emacs' 'emacs-apel' 'emacs-auctex' 'emacs-color-theme' 'emacs-completion-golang' 'emacs-el' 'emacs-flim' 'emacs-info' 'emacs-nox' 'emacs-plugin-devhelp' 'emacs-scheme48' 'emacs-semi' 'emacs-w3m' 'emacs-x11' 'embryo' 'emf2svg-conv' 'emil' 'emojione-color-font' 'emount' 'emount' 'emount-debuginfo' 'emount-debugsource' 'empathy' 'empathy-lang' 'enblend-enfuse' 'enblend-enfuse-doc' 'enca' 'enca-devel' 'encfs' 'encfs-lang' 'enchant-1-backend-voikko' 'enchant-1-backend-voikko-32bit' 'enchant-1-backend-zemberek' 'enchant-1-backend-zemberek-32bit' 'enchant-1-backends' 'enchant-1-data' 'enchant-1-devel' 'enchant-1-tools' 'enchant-2-backend-aspell' 'enchant-2-backend-hunspell' 'enchant-2-backend-voikko' 'enchant-2-backend-voikko-32bit' 'enchant-data' 'enchant-devel' 'enchant-tools' 'endless-sky' 'enet-devel' 'engauge-digitizer' 'engauge-digitizer-devel-doc' 'engauge-digitizer-doc' 'engdic' 'engrampa' 'engrampa-lang' 'enhanced_base' 'enigmail' 'enlightenment' 'enlightenment' 'enlightenment-branding-openSUSE' 'enlightenment-branding-upstream' 'enlightenment-devel' 'enlightenment-doc-html' 'enlightenment-profiles-openSUSE' 'enlightenment-theme-cerium2' 'enlightenment-theme-dark' 'enlightenment-theme-openSUSE' 'enlightenment-theme-openSUSE-ice' 'enlightenment-theme-openSUSE-oliveleaf' 'enlightenment-theme-upstream' 'enlightenment-x-dark-icon-theme' 'enscript' 'entangle' 'entangle-doc' 'entangle-lang' 'entangle-plugin-eclipse' 'entangle-plugin-photobox' 'entangle-plugin-shooter' 'entr' 'envoy' 'envoy-proxy' 'envy24control' 'eog' 'eog-devel' 'eog-lang' 'eog-plugin-exif-display' 'eog-plugin-export-to-folder' 'eog-plugin-fit-to-width' 'eog-plugin-fullscreenbg' 'eog-plugin-hide-titlebar' 'eog-plugin-light-theme' 'eog-plugin-map' 'eog-plugin-maximize-windows' 'eog-plugin-postasa' 'eog-plugin-pythonconsole' 'eog-plugin-send-by-mail' 'eog-plugin-slideshowshuffle' 'eog-plugins' 'eog-plugins-data' 'eog-plugins-lang' 'eolie' 'eolie-lang' 'eom' 'eom-devel' 'eom-lang' 'eperiodique' 'ephoto' 'ephoto-lang' 'epic' 'epiphany' 'epiphany-branding-openSUSE' 'epiphany-branding-upstream' 'epiphany-lang' 'epour' 'epour-lang' 'epplet-base' 'epson-inkjet-printer-escpr' 'epymc' 'epymc-lang' 'equalx' 'erfa-devel' 'erfa-devel-static' 'eric' 'eric-api' 'erlang' 'erlang-debugger' 'erlang-debugger-src' 'erlang-dialyzer' 'erlang-dialyzer-src' 'erlang-diameter' 'erlang-diameter-src' 'erlang-doc' 'erlang-epmd' 'erlang-et' 'erlang-et-src' 'erlang-jinterface' 'erlang-jinterface-src' 'erlang-observer' 'erlang-observer-src' 'erlang-rabbitmq-client' 'erlang-rebar' 'erlang-rebar-src' 'erlang-reltool' 'erlang-reltool-src' 'erlang-retest' 'erlang-retest-src' 'erlang-sd_notify' 'erlang-src' 'erlang-wx' 'erlang-wx-src' 'erofs-utils' 'espeak' 'espeak-devel' 'espeak-ng' 'espeak-ng-compat' 'espeak-ng-compat-devel' 'espeak-ng-devel' 'espeakedit' 'etags' 'etc-update' 'etcd' 'etcd-for-k8s-image' 'etcdctl' 'etckeeper' 'etckeeper-bash-completion' 'etckeeper-zypp-plugin' 'etherape' 'etherape-lang' 'ethtool' 'etrophy' 'etrophy-data' 'etrophy-devel' 'evas-generic-loaders' 'evemu' 'evemu-devel' 'eventstat' 'eventviews' 'eventviews-devel' 'eventviews-lang' 'evieproto-devel' 'evince' 'evince-devel' 'evince-lang' 'evince-plugin-comicsdocument' 'evince-plugin-djvudocument' 'evince-plugin-dvidocument' 'evince-plugin-pdfdocument' 'evince-plugin-psdocument' 'evince-plugin-tiffdocument' 'evince-plugin-xpsdocument' 'evmctl' 'evolution' 'evolution-data-server' 'evolution-data-server-32bit' 'evolution-data-server-devel' 'evolution-data-server-doc' 'evolution-data-server-lang' 'evolution-devel' 'evolution-ews' 'evolution-ews-lang' 'evolution-lang' 'evolution-plugin-bogofilter' 'evolution-plugin-pst-import' 'evolution-plugin-rss' 'evolution-plugin-rss-lang' 'evolution-plugin-spamassassin' 'evolution-plugin-text-highlight' 'evtest' 'exa' 'exaile' 'exaile-lang' 'exec-maven-plugin' 'exec-maven-plugin-javadoc' 'execstack' 'exempi-tools' 'exercism' 'exfat-utils' 'exif' 'exiftool' 'exiftran' 'exim' 'eximon' 'eximstats-html' 'exiv2' 'exiv2-lang' 'exmh' 'exo-branding-openSUSE' 'exo-branding-upstream' 'exo-data' 'exo-devel' 'exo-helpers' 'exo-lang' 'exo-tools' 'exodusii-devel' 'expat' 'expect' 'expect-devel' 'explain' 'ext3grep' 'ext4magic' 'extra-cmake-modules' 'extra-cmake-modules-doc' 'extract-appdata-icons' 'extreme-tuxracer' 'extreme-tuxracer-data' 'extundelete' 'ez-ipupdate' 'ezstream' 'f2c' 'f2c-devel' 'f2fs-tools' 'f2fs-tools-compat' 'f2fs-tools-devel' 'f3' 'fIcy' 'faac' 'faac' 'faac-debuginfo' 'faac-debugsource' 'faad2' 'faad2' 'faad2-debuginfo' 'faad2-debugsource' 'faba-icon-theme' 'fabtests' 'facedetect' 'faenza-icon-theme' 'faenza-icon-theme-ambiance' 'faenza-icon-theme-dark' 'faenza-icon-theme-darker' 'faenza-icon-theme-darkest' 'faenza-icon-theme-mint' 'faenza-icon-theme-radiance' 'fail2ban' 'fairymax' 'fakechroot' 'fakeroot' 'fakeroot-32bit' 'falkon' 'falkon-gnome-keyring' 'falkon-kde' 'falkon-lang' 'farsi-fonts' 'farstream-data' 'farstream-devel' 'fasd' 'fasterxml-oss-parent' 'fastjar' 'fastjet-devel' 'fastjet-plugin-siscone' 'fastjet-plugin-siscone-devel' 'fastlzlib' 'fastlzlib-devel' 'fatrace' 'fatsort' 'fbdesk' 'fbdesk' 'fbdesk-debuginfo' 'fbdesk-debugsource' 'fbi' 'fbiterm' 'fbpdf' 'fbreader' 'fbterm' 'fcdproplus-udev' 'fcgiwrap' 'fcgiwrap-nginx' 'fcitx' 'fcitx-anthy' 'fcitx-branding-openSUSE' 'fcitx-chewing' 'fcitx-cloudpinyin' 'fcitx-config-gtk3' 'fcitx-devel' 'fcitx-fbterm' 'fcitx-googlepinyin' 'fcitx-gtk2' 'fcitx-gtk2-32bit' 'fcitx-gtk3' 'fcitx-gtk3-32bit' 'fcitx-hangul' 'fcitx-kkc' 'fcitx-libpinyin' 'fcitx-m17n' 'fcitx-mozc' 'fcitx-pinyin' 'fcitx-pinyin-tools' 'fcitx-pylogger' 'fcitx-qt5' 'fcitx-qt5-32bit' 'fcitx-qt5-devel' 'fcitx-quwei' 'fcitx-rime' 'fcitx-sayura' 'fcitx-skin-classic' 'fcitx-skin-dark' 'fcitx-skin-new-air' 'fcitx-skk' 'fcitx-sunpinyin' 'fcitx-table' 'fcitx-table-amharic' 'fcitx-table-arabic' 'fcitx-table-cn-bingchan' 'fcitx-table-cn-cangjie' 'fcitx-table-cn-cantonese' 'fcitx-table-cn-cns11643' 'fcitx-table-cn-dianbao' 'fcitx-table-cn-erbi' 'fcitx-table-cn-wanfeng' 'fcitx-table-cn-wu' 'fcitx-table-cn-wubi' 'fcitx-table-cn-wubi-large' 'fcitx-table-cn-wubi-pinyin' 'fcitx-table-cn-zhengma' 'fcitx-table-cn-zhengma-large' 'fcitx-table-cn-ziran' 'fcitx-table-emoji' 'fcitx-table-extra-lang' 'fcitx-table-hk-cantonese' 'fcitx-table-hk-jyutping' 'fcitx-table-hk-stroke5' 'fcitx-table-ipa-x-sampa' 'fcitx-table-latex' 'fcitx-table-malayalam-compose' 'fcitx-table-malayalam-phonetic' 'fcitx-table-other' 'fcitx-table-ru-rustrad' 'fcitx-table-ru-translit' 'fcitx-table-ru-yawerty' 'fcitx-table-t9' 'fcitx-table-tamil-remington' 'fcitx-table-thai' 'fcitx-table-tools' 'fcitx-table-tw-array30' 'fcitx-table-tw-array30-large' 'fcitx-table-tw-boshiamy' 'fcitx-table-tw-cangjie-large' 'fcitx-table-tw-cangjie3' 'fcitx-table-tw-cangjie5' 'fcitx-table-tw-easy-large' 'fcitx-table-tw-quick-classic' 'fcitx-table-tw-quick3' 'fcitx-table-tw-quick5' 'fcitx-table-tw-smart-cangjie6' 'fcitx-table-ua-translit' 'fcitx-table-vi-qr' 'fcitx-ui-light' 'fcitx-unikey' 'fcitx-zhuyin' 'fcoe-utils' 'fcwnn' 'fcwnn-devel' 'fcwnncom' 'fd' 'fd-bash-completion' 'fd-fish-completion' 'fd-zsh-completion' 'fd0ssh' 'fdk-aac' 'fdk-aac-debugsource' 'fdk-aac-devel' 'fdkaac' 'fdkaac' 'fdkaac-debuginfo' 'fdkaac-debugsource' 'fdupes' 'featherpad' 'featherpad-lang' 'fec-devel' 'fedfs-utils-admin' 'fedfs-utils-client' 'fedfs-utils-common' 'fedfs-utils-devel' 'fedfs-utils-nsdbparams' 'fedfs-utils-server' 'feh' 'felix-gogo-command' 'felix-gogo-command-javadoc' 'felix-gogo-parent' 'felix-gogo-runtime' 'felix-gogo-runtime-javadoc' 'felix-gogo-shell' 'felix-gogo-shell-javadoc' 'felix-osgi-compendium' 'felix-osgi-compendium-javadoc' 'felix-osgi-core' 'felix-osgi-core-javadoc' 'felix-osgi-foundation' 'felix-osgi-foundation-javadoc' 'felix-parent' 'felix-scr' 'felix-scr-javadoc' 'felix-shell' 'felix-shell-javadoc' 'felix-utils' 'felix-utils-javadoc' 'fence-agents' 'fence-agents-amt_ws' 'fence-agents-devel' 'fence-sanlock' 'festival' 'festival-devel' 'fetchmail' 'fetchmailconf' 'fetchmsttfonts' 'ffado' 'ffado-mixer' 'ffcall' 'ffhevc' 'ffhevc' 'fflas-ffpack-devel' 'fflas-ffpack-doc' 'ffmpeg-2' 'ffmpeg-2-debugsource' 'ffmpeg-2-libavcodec-devel' 'ffmpeg-2-libavdevice-devel' 'ffmpeg-2-libavfilter-devel' 'ffmpeg-2-libavformat-devel' 'ffmpeg-2-libavresample-devel' 'ffmpeg-2-libavutil-devel' 'ffmpeg-2-libpostproc-devel' 'ffmpeg-2-libswresample-devel' 'ffmpeg-2-libswscale-devel' 'ffmpeg-3' 'ffmpeg-3-debugsource' 'ffmpeg-3-libavcodec-devel' 'ffmpeg-3-libavdevice-devel' 'ffmpeg-3-libavfilter-devel' 'ffmpeg-3-libavformat-devel' 'ffmpeg-3-libavresample-devel' 'ffmpeg-3-libavutil-devel' 'ffmpeg-3-libpostproc-devel' 'ffmpeg-3-libswresample-devel' 'ffmpeg-3-libswscale-devel' 'ffmpeg-3-private-devel' 'ffmpeg-4' 'ffmpeg-4' 'ffmpeg-4-debuginfo' 'ffmpeg-4-debugsource' 'ffmpeg-4-libavcodec-devel' 'ffmpeg-4-libavdevice-devel' 'ffmpeg-4-libavfilter-devel' 'ffmpeg-4-libavformat-devel' 'ffmpeg-4-libavresample-devel' 'ffmpeg-4-libavutil-devel' 'ffmpeg-4-libpostproc-devel' 'ffmpeg-4-libswresample-devel' 'ffmpeg-4-libswscale-devel' 'ffmpeg-4-private-devel' 'ffmpeg2theora' 'ffmpeg2theora' 'ffmpeg2theora-debuginfo' 'ffmpeg2theora-debugsource' 'ffmpegthumbnailer' 'ffmpegthumbs' 'ffmpegthumbs-lang' 'ffmpegyag' 'ffmpegyag' 'ffmpegyag-debuginfo' 'ffmpegyag-debugsource' 'ffmsindex' 'ffnvcodec-devel' 'ffsb' 'fftw3-devel' 'fftw3-gnu-hpc-devel' 'fftw3-gnu-mpich-hpc-devel' 'fftw3-gnu-mvapich2-hpc-devel' 'fftw3-gnu-openmpi1-hpc-devel' 'fftw3-gnu-openmpi2-hpc-devel' 'fftw3-gnu-openmpi3-hpc-devel' 'fftw3-mpi-devel' 'fftw3-openmp-devel' 'fftw3-threads-devel' 'fftw3_3_3_8-gnu-hpc-devel' 'fftw3_3_3_8-gnu-hpc-devel-static' 'fftw3_3_3_8-gnu-mpich-hpc-devel' 'fftw3_3_3_8-gnu-mpich-hpc-devel-static' 'fftw3_3_3_8-gnu-mvapich2-hpc-devel' 'fftw3_3_3_8-gnu-mvapich2-hpc-devel-static' 'fftw3_3_3_8-gnu-openmpi1-hpc-devel' 'fftw3_3_3_8-gnu-openmpi1-hpc-devel-static' 'fftw3_3_3_8-gnu-openmpi2-hpc-devel' 'fftw3_3_3_8-gnu-openmpi2-hpc-devel-static' 'fftw3_3_3_8-gnu-openmpi3-hpc-devel' 'fftw3_3_3_8-gnu-openmpi3-hpc-devel-static' 'ffx264' 'ffx264' 'ffxvid' 'ffxvid' 'fhourstones' 'fhs' 'fife-devel' 'fifechan-devel' 'fifth-leg-font' 'figlet' 'file' 'file-devel' 'file-devel-32bit' 'file-magic' 'file-roller' 'file-roller-lang' 'file-unpack' 'file_server' 'filebench' 'filelight' 'filelight-lang' 'filemanager-actions' 'filemanager-actions-devel' 'filemanager-actions-lang' 'filesystem' 'filesystem-media' 'filezilla' 'filezilla-lang' 'fillets-ng' 'fillets-ng-data' 'fillup' 'filter_audio-devel' 'finalhe' 'finalhe' 'finalhe-debuginfo' 'finalhe-debugsource' 'finch' 'finch-devel' 'findbugs' 'findbugs-bcel' 'findbugs-bcel-javadoc' 'findbugs-javadoc' 'findbugs-tools' 'findutils' 'findutils-lang' 'finger' 'finger-server' 'fio' 'fiona-fio' 'fips' 'fipscheck' 'fipscheck-devel' 'firebird' 'firebird-doc' 'firebird-examples' 'firebird-server' 'firebird-utils' 'firefox-uget-integrator' 'firehol' 'firehol-doc' 'firejail' 'firescope' 'firewall-applet' 'firewall-config' 'firewall-macros' 'firewalld' 'firewalld-lang' 'firewalld-rpcbind-helper' 'fish' 'fish-devel' 'fityk' 'fityk-devel' 'five-or-more' 'five-or-more-doc' 'five-or-more-lang' 'fkwnn' 'fkwnn-devel' 'flac' 'flac-devel' 'flac-devel-32bit' 'flacon' 'flacon' 'flacon-debuginfo' 'flacon-debugsource' 'flacon-lang' 'flamerobin' 'flameshot' 'flameshot-bash-completion' 'flann-devel' 'flannel' 'flannel-k8s-yaml' 'flare' 'flare-game' 'flarq' 'flash-player' 'flash-player' 'flash-player-gnome' 'flash-player-ppapi' 'flashfocus' 'flashrom' 'flatbuffers-devel' 'flatpak' 'flatpak-builder' 'flatpak-devel' 'flatpak-zsh-completion' 'fldigi' 'fldigi-lang' 'flex' 'flexdock' 'flickcurl' 'flickcurl-doc' 'flickrnet' 'flickrnet-devel' 'flint-devel' 'florence' 'florence-devel' 'florence-lang' 'flowblade' 'flowblade' 'flowblade-lang' 'flowgrind' 'fltk-devel' 'fltk-devel-32bit' 'fltk-devel-static' 'fluid-soundfont-gm' 'fluid-soundfont-gs' 'fluidsynth' 'fluidsynth-devel' 'fluidsynth-dssi' 'flute' 'flute-javadoc' 'fluxbox' 'fluxbox-styles-upstream' 'flxmlrpc-devel' 'fly' 'fmt-devel' 'fnotifystat' 'focuswriter' 'focuswriter-lang' 'folder-color-common' 'folder-color-common-lang' 'folks-devel' 'folks-lang' 'folks-tools' 'foma' 'foma-devel' 'fondu' 'fonehome' 'fonehome-server' 'font-specimen' 'font-specimen-devel' 'font-util' 'fontawesome-fonts' 'fontawesome-fonts-web' 'fontcacheproto-devel' 'fontconfig' 'fontconfig-32bit' 'fontconfig-devel' 'fontconfig-devel-32bit' 'fontconfig-devel-doc' 'fontconfig-doc' 'fontconfig-lang' 'fontforge' 'fontforge-devel' 'fontforge-doc' 'fontpackages-devel' 'fonts' 'fonts-KanjiStrokeOrders' 'fonts-config' 'fonttosfnt' 'fontweak' 'forge-parent' 'forkbomb' 'forkstat' 'form' 'fortune' 'fossil' 'fotowall' 'four-in-a-row' 'four-in-a-row-lang' 'fox16-devel' 'fox16-devel-static' 'fox16-doc' 'fox16-example-apps' 'fparser-devel' 'fpc' 'fpc-doc' 'fpc-src' 'fping' 'fplll' 'fplll-devel' 'fpm2' 'fpm2' 'fpm2-debuginfo' 'fpm2-debugsource' 'fpm2-lang' 'fprintd' 'fprintd-devel' 'fprintd-lang' 'fprintd-pam' 'fprintd-pam-32bit' 'fractal' 'fractal-lang' 'frame' 'frame-devel' 'frameworkintegration-devel' 'frameworkintegration-devel-32bit' 'frameworkintegration-plugin' 'frameworkintegration-plugin-32bit' 'free-ttf-fonts' 'freealut-devel' 'freecell-solver' 'freecell-solver-devel' 'freecell-solver-presets' 'freeciv' 'freeciv-gtk3' 'freeciv-lang' 'freeciv-qt' 'freedoom' 'freedoom-freedm' 'freedup' 'freeglut-demo' 'freeglut-devel' 'freeglut-devel-32bit' 'freeimage-devel' 'freeipmi' 'freeipmi-bmc-watchdog' 'freeipmi-devel' 'freeipmi-ipmidetectd' 'freeipmi-ipmiseld' 'freeorion' 'freeorion-data' 'freepops' 'freepops' 'freepops-debuginfo' 'freepops-debugsource' 'freeradius-client' 'freeradius-client-devel' 'freeradius-client-libs' 'freeradius-server' 'freeradius-server-devel' 'freeradius-server-doc' 'freeradius-server-krb5' 'freeradius-server-ldap' 'freeradius-server-libs' 'freeradius-server-mysql' 'freeradius-server-perl' 'freeradius-server-postgresql' 'freeradius-server-python' 'freeradius-server-sqlite' 'freeradius-server-utils' 'freerdp' 'freerdp-devel' 'freerdp-server' 'freerdp-wayland' 'freesrp-devel' 'freesrp-udev' 'freetds-config' 'freetds-devel' 'freetds-doc' 'freetds-tools' 'freetuxtv' 'freetuxtv' 'freetuxtv-debuginfo' 'freetuxtv-debugsource' 'freetuxtv-devel' 'freetuxtv-lang' 'freetype' 'freetype-devel' 'freetype-tools' 'freetype2-devel' 'freetype2-devel-32bit' 'freetype2-profile-tti35' 'freexl-devel' 'frei0r-plugins' 'frei0r-plugins-devel' 'frei0r-plugins-opencv' 'frescobaldi' 'freshplayerplugin' 'fribidi' 'fribidi-devel' 'frink' 'fritzing' 'fritzing-parts' 'frogatto' 'frogatto-data' 'frogatto-lang' 'frogr' 'frogr-lang' 'froxlor' 'frozen-bubble' 'frozen-bubble-lang' 'frozen-bubble-server' 'fruit21' 'fruit21' 'fruit21-debuginfo' 'fs-check' 'fs-uae' 'fs-uae-arcade' 'fs-uae-launcher' 'fs_mark' 'fsarchiver' 'fslint' 'fslsfonts' 'fstobdf' 'fstrcmp' 'fstrcmp-devel' 'fstrm' 'fstrm-devel' 'fsvs' 'fswebcam' 'ft2demos' 'ftbench' 'ftdiff' 'ftdump' 'ftgamma' 'ftgl-demo' 'ftgl-devel' 'ftgrid' 'ftinspect' 'ftlint' 'ftmulti' 'ftop' 'ftp' 'ftsteutates-sensors' 'ftstring' 'ftvalid' 'ftview' 'ftwnn' 'funkload' 'funny-manpages' 'funny-manpages' 'fuse' 'fuse-devel' 'fuse-devel-static' 'fuse-doc' 'fuse-exfat' 'fuse-oscfs' 'fuse-overlayfs' 'fuse3' 'fuse3-devel' 'fuse3-doc' 'fuseiso' 'fusepod' 'fusesmb' 'fusesource-pom' 'fusion-icon' 'fvwm-themes' 'fvwm2' 'fwbuilder' 'fwknop' 'fwknop-gui' 'fwknopd' 'fwnn' 'fwnn-devel' 'fwnncom' 'fwts' 'fwupd' 'fwupd-devel' 'fwupd-lang' 'fxload' 'fzf' 'fzf-bash-completion' 'fzf-tmux' 'fzf-zsh-completion' 'fzy' 'g3utils' 'g810-led' 'gCue2tracks' 'gCue2tracks' 'gaa' 'gajim' 'gajim-lang' 'gajim-plugin-omemo' 'galaxis' 'galculator' 'galculator-lang' 'gama' 'gamemoded' 'games' 'gamin-devel' 'gamin-server' 'gammaray' 'gammaray-devel' 'gammu' 'gammu-bash-completion' 'gammu-devel' 'gammu-doc' 'gammu-smsd' 'ganglia-devel' 'ganglia-gmetad' 'ganglia-gmetad-skip-bcheck' 'ganglia-gmond' 'ganglia-gmond-modules-python' 'ganglia-web' 'garglk' 'garglk' 'garglk-debuginfo' 'garglk-debugsource' 'garlic' 'garlic-doc' 'gasnet' 'gasnet-devel' 'gasnet-doc' 'gateway_server' 'gaupol' 'gavl' 'gawk' 'gbdfed' 'gbrainy' 'gbrainy-lang' 'gc-devel' 'gcab' 'gcab-devel' 'gcab-lang' 'gcad3d' 'gcal' 'gcal-lang' 'gcc' 'gcc-32bit' 'gcc-PIE' 'gcc-ada' 'gcc-ada-32bit' 'gcc-c++' 'gcc-c++-32bit' 'gcc-d' 'gcc-d-32bit' 'gcc-devel' 'gcc-fortran' 'gcc-fortran-32bit' 'gcc-go' 'gcc-go-32bit' 'gcc-info' 'gcc-locale' 'gcc-obj-c++' 'gcc-objc' 'gcc-objc-32bit' 'gcc6-gij' 'gcc6-gij-debuginfo' 'gcc6-java' 'gcc6-java-debuginfo' 'gcc7' 'gcc7-32bit' 'gcc7-ada' 'gcc7-ada-32bit' 'gcc7-c++' 'gcc7-c++-32bit' 'gcc7-devel' 'gcc7-fortran' 'gcc7-fortran-32bit' 'gcc7-go' 'gcc7-go-32bit' 'gcc7-info' 'gcc7-locale' 'gcc7-obj-c++' 'gcc7-obj-c++-32bit' 'gcc7-objc' 'gcc7-objc-32bit' 'gcc7-testresults' 'gcc8' 'gcc8-32bit' 'gcc8-ada' 'gcc8-ada-32bit' 'gcc8-c++' 'gcc8-c++-32bit' 'gcc8-devel' 'gcc8-fortran' 'gcc8-fortran-32bit' 'gcc8-go' 'gcc8-go-32bit' 'gcc8-info' 'gcc8-locale' 'gcc8-obj-c++' 'gcc8-obj-c++-32bit' 'gcc8-objc' 'gcc8-objc-32bit' 'gcc8-testresults' 'gcc9' 'gcc9-32bit' 'gcc9-ada' 'gcc9-ada-32bit' 'gcc9-c++' 'gcc9-c++-32bit' 'gcc9-d' 'gcc9-d-32bit' 'gcc9-devel' 'gcc9-fortran' 'gcc9-fortran-32bit' 'gcc9-go' 'gcc9-go-32bit' 'gcc9-info' 'gcc9-locale' 'gcc9-obj-c++' 'gcc9-obj-c++-32bit' 'gcc9-objc' 'gcc9-objc-32bit' 'gcc9-testresults' 'gccmakedep' 'gcdemu' 'gcdemu-lang' 'gcin' 'gcin-anthy' 'gcin-anthy-32bit' 'gcin-branding-openSUSE' 'gcin-branding-upstream' 'gcin-gtk2' 'gcin-gtk2-32bit' 'gcin-gtk3' 'gcin-gtk3-32bit' 'gcin-qt5' 'gcin-qt5-32bit' 'gcolor2' 'gcolor3' 'gcompris' 'gcompris-devel' 'gcompris-qt' 'gcompris-qt-activities' 'gcompris-qt-lang' 'gcompris-qt-voices' 'gcompris-voices-ar' 'gcompris-voices-br' 'gcompris-voices-cs' 'gcompris-voices-da' 'gcompris-voices-de' 'gcompris-voices-el' 'gcompris-voices-en' 'gcompris-voices-es' 'gcompris-voices-eu' 'gcompris-voices-fi' 'gcompris-voices-fr' 'gcompris-voices-hi' 'gcompris-voices-hu' 'gcompris-voices-id' 'gcompris-voices-it' 'gcompris-voices-mr' 'gcompris-voices-nb' 'gcompris-voices-nl' 'gcompris-voices-pt' 'gcompris-voices-pt-br' 'gcompris-voices-ru' 'gcompris-voices-so' 'gcompris-voices-sr' 'gcompris-voices-sv' 'gcompris-voices-tr' 'gconf-polkit' 'gconf-sharp-peditors2' 'gconf-sharp2' 'gconf2' 'gconf2-32bit' 'gconf2-devel' 'gconf2-lang' 'gcovr' 'gcovr-doc' 'gcr-data' 'gcr-lang' 'gcr-prompter' 'gcr-ssh-askpass' 'gcr-viewer' 'gcstar' 'gd' 'gd-devel' 'gd-devel-32bit' 'gdal' 'gdal-devel' 'gdata-sharp' 'gdata-sharp-devel' 'gdb' 'gdb-testresults' 'gdbm-devel' 'gdbm-devel-32bit' 'gdbm-lang' 'gdbserver' 'gdk-pixbuf-devel' 'gdk-pixbuf-devel-32bit' 'gdk-pixbuf-lang' 'gdk-pixbuf-loader-libopenraw' 'gdk-pixbuf-loader-libopenraw-32bit' 'gdk-pixbuf-loader-rsvg' 'gdk-pixbuf-loader-rsvg-32bit' 'gdk-pixbuf-query-loaders' 'gdk-pixbuf-query-loaders-32bit' 'gdk-pixbuf-thumbnailer' 'gdl-devel' 'gdl-lang' 'gdlmm-devel' 'gdm' 'gdm-branding-openSUSE' 'gdm-branding-upstream' 'gdm-devel' 'gdm-lang' 'gdm-systemd' 'gdmflexiserver' 'gdouros-abydos-fonts' 'gdouros-abydos-fonts-doc' 'gdouros-aegean-fonts' 'gdouros-aegyptus-fonts' 'gdouros-akkadian-fonts' 'gdouros-alfios-fonts' 'gdouros-analecta-fonts' 'gdouros-anatolian-fonts' 'gdouros-atavyros-fonts' 'gdouros-maya-fonts' 'gdouros-musica-fonts' 'gdouros-symbola-fonts' 'gdouros-text-fonts' 'gdouros-unidings-fonts' 'geany' 'geany-devel' 'geany-doc' 'geany-lang' 'geany-plugins' 'geany-plugins-lang' 'geary' 'geary-lang' 'gebaar-libinput' 'geda-base' 'geda-doc' 'geda-examples' 'geda-gaf' 'geda-gattrib' 'geda-gnetlist' 'geda-gschem' 'geda-gsymcheck' 'geda-symbols' 'geda-utils' 'geda-xgsch2pcb' 'gedit' 'gedit-devel' 'gedit-lang' 'gedit-latex-lang' 'gedit-plugin-bookmarks' 'gedit-plugin-bracketcompletion' 'gedit-plugin-charmap' 'gedit-plugin-codecomment' 'gedit-plugin-colorpicker' 'gedit-plugin-colorschemer' 'gedit-plugin-commander' 'gedit-plugin-devhelp' 'gedit-plugin-drawspaces' 'gedit-plugin-findinfiles' 'gedit-plugin-git' 'gedit-plugin-joinlines' 'gedit-plugin-latex' 'gedit-plugin-multiedit' 'gedit-plugin-smartspaces' 'gedit-plugin-synctex' 'gedit-plugin-terminal' 'gedit-plugin-textsize' 'gedit-plugin-translate' 'gedit-plugin-wordcompletion' 'gedit-plugin-zeitgeist' 'gedit-plugins' 'gedit-plugins-data' 'gedit-plugins-lang' 'gedit-theme-adapta' 'gedit-theme-plata' 'geekodoc' 'geeqie' 'geeqie-lang' 'gegl' 'gegl-0_4' 'gegl-0_4-lang' 'gegl-devel' 'gegl-doc' 'geis-devel' 'geis-tools' 'gemrb' 'genders' 'genders-base' 'genders-devel' 'genders-perl-compat' 'geners-devel' 'gengetopt' 'genius' 'genius-devel' 'genius-lang' 'genromfs' 'gentoo' 'gentoo' 'gentoo-debuginfo' 'gentoo-debugsource' 'geoclue2' 'geoclue2-devel' 'geocode-glib' 'geocode-glib-devel' 'geoipupdate' 'geos-devel' 'geotiff' 'geotiff-devel' 'gerbv' 'gerbv-devel' 'geronimo-annotation-1_0-api' 'geronimo-commonj-1_1-apis' 'geronimo-corba-1_0-apis' 'geronimo-corba-2_3-apis' 'geronimo-ejb-2_1-api' 'geronimo-ejb-3_0-api' 'geronimo-el-1_0-api' 'geronimo-interceptor-3_0-api' 'geronimo-j2ee-1_4-apis' 'geronimo-j2ee-connector-1_5-api' 'geronimo-j2ee-deployment-1_1-api' 'geronimo-j2ee-management-1_0-api' 'geronimo-j2ee-management-1_1-api' 'geronimo-jacc-1_0-api' 'geronimo-jacc-1_1-api' 'geronimo-jaf-1_0_2-api' 'geronimo-jaf-1_1-api' 'geronimo-javaee-deployment-1_1-api' 'geronimo-javamail-1_3_1-api' 'geronimo-javamail-1_4-api' 'geronimo-jaxr-1_0-api' 'geronimo-jaxrpc-1_1-api' 'geronimo-jms-1_1-api' 'geronimo-jpa-3_0-api' 'geronimo-jsp-2_0-api' 'geronimo-jsp-2_1-api' 'geronimo-jta-1_0_1B-api' 'geronimo-jta-1_1-api' 'geronimo-qname-1_1-api' 'geronimo-saaj-1_1-api' 'geronimo-servlet-2_4-api' 'geronimo-servlet-2_5-api' 'geronimo-specs-pom' 'geronimo-stax-1_0-api' 'geronimo-ws-metadata-2_0-api' 'get_iplayer' 'get_iplayer' 'get_iplayer-pvr' 'getdata' 'getdata-devel' 'getdata-doc' 'getdp' 'getdp-devel' 'getdp-doc' 'getmail' 'getmail-doc' 'gettext-csharp' 'gettext-its-gtk3' 'gettext-its-gtk4' 'gettext-java' 'gettext-runtime' 'gettext-runtime-32bit' 'gettext-runtime-mini-tools-doc' 'gettext-runtime-tools-doc' 'gettext-tools' 'gexif' 'gexif-lang' 'gf2x-devel' 'gfan' 'gfbgraph-devel' 'gfio' 'gflags' 'gflags-devel' 'gflags-devel-static' 'gfs2-utils' 'gfxboot' 'gfxboot-branding-KDE' 'gfxboot-branding-openSUSE' 'gfxboot-branding-upstream' 'gfxboot-devel' 'ghc' 'ghc-Cabal' 'ghc-Cabal-devel' 'ghc-Diff' 'ghc-Diff-devel' 'ghc-Glob' 'ghc-Glob-devel' 'ghc-HTTP' 'ghc-HTTP-devel' 'ghc-HUnit' 'ghc-HUnit-devel' 'ghc-HsYAML' 'ghc-HsYAML-devel' 'ghc-JuicyPixels' 'ghc-JuicyPixels-devel' 'ghc-QuickCheck' 'ghc-QuickCheck-devel' 'ghc-SDL' 'ghc-SDL-devel' 'ghc-SDL-image' 'ghc-SDL-image-devel' 'ghc-SDL-mixer' 'ghc-SDL-mixer-devel' 'ghc-SHA' 'ghc-SHA-devel' 'ghc-ShellCheck' 'ghc-ShellCheck-devel' 'ghc-StateVar' 'ghc-StateVar-devel' 'ghc-X11' 'ghc-X11-devel' 'ghc-X11-xft' 'ghc-X11-xft-devel' 'ghc-adjunctions' 'ghc-adjunctions-devel' 'ghc-aeson' 'ghc-aeson-compat' 'ghc-aeson-compat-devel' 'ghc-aeson-devel' 'ghc-aeson-pretty' 'ghc-aeson-pretty-devel' 'ghc-annotated-wl-pprint' 'ghc-annotated-wl-pprint-devel' 'ghc-ansi-terminal' 'ghc-ansi-terminal-devel' 'ghc-ansi-wl-pprint' 'ghc-ansi-wl-pprint-devel' 'ghc-array' 'ghc-array-devel' 'ghc-asn1-encoding' 'ghc-asn1-encoding-devel' 'ghc-asn1-parse' 'ghc-asn1-parse-devel' 'ghc-asn1-types' 'ghc-asn1-types-devel' 'ghc-async' 'ghc-async-devel' 'ghc-attoparsec' 'ghc-attoparsec-devel' 'ghc-attoparsec-iso8601' 'ghc-attoparsec-iso8601-devel' 'ghc-auto-update' 'ghc-auto-update-devel' 'ghc-base' 'ghc-base-compat' 'ghc-base-compat-devel' 'ghc-base-devel' 'ghc-base-orphans' 'ghc-base-orphans-devel' 'ghc-base-prelude' 'ghc-base-prelude-devel' 'ghc-base16-bytestring' 'ghc-base16-bytestring-devel' 'ghc-base64-bytestring' 'ghc-base64-bytestring-devel' 'ghc-basement' 'ghc-basement-devel' 'ghc-bifunctors' 'ghc-bifunctors-devel' 'ghc-binary' 'ghc-binary-devel' 'ghc-bindings-uname' 'ghc-bindings-uname-devel' 'ghc-bitarray' 'ghc-bitarray-devel' 'ghc-blaze-builder' 'ghc-blaze-builder-devel' 'ghc-blaze-html' 'ghc-blaze-html-devel' 'ghc-blaze-markup' 'ghc-blaze-markup-devel' 'ghc-byteable' 'ghc-byteable-devel' 'ghc-bytestring' 'ghc-bytestring-devel' 'ghc-cabal-doctest' 'ghc-cabal-doctest-devel' 'ghc-cabal2spec' 'ghc-cabal2spec-devel' 'ghc-call-stack' 'ghc-call-stack-devel' 'ghc-case-insensitive' 'ghc-case-insensitive-devel' 'ghc-cereal' 'ghc-cereal-devel' 'ghc-clock' 'ghc-clock-devel' 'ghc-cmark-gfm' 'ghc-cmark-gfm-devel' 'ghc-cmdargs' 'ghc-cmdargs-devel' 'ghc-colour' 'ghc-colour-devel' 'ghc-comonad' 'ghc-comonad-devel' 'ghc-compiler' 'ghc-conduit' 'ghc-conduit-combinators' 'ghc-conduit-combinators-devel' 'ghc-conduit-devel' 'ghc-conduit-extra' 'ghc-conduit-extra-devel' 'ghc-connection' 'ghc-connection-devel' 'ghc-constraints' 'ghc-constraints-devel' 'ghc-containers' 'ghc-containers-devel' 'ghc-contravariant' 'ghc-contravariant-devel' 'ghc-cookie' 'ghc-cookie-devel' 'ghc-cryptohash' 'ghc-cryptohash-devel' 'ghc-cryptohash-sha256' 'ghc-cryptohash-sha256-devel' 'ghc-cryptonite' 'ghc-cryptonite-conduit' 'ghc-cryptonite-conduit-devel' 'ghc-cryptonite-devel' 'ghc-data-default' 'ghc-data-default-class' 'ghc-data-default-class-devel' 'ghc-data-default-devel' 'ghc-data-default-instances-containers' 'ghc-data-default-instances-containers-devel' 'ghc-data-default-instances-dlist' 'ghc-data-default-instances-dlist-devel' 'ghc-data-default-instances-old-locale' 'ghc-data-default-instances-old-locale-devel' 'ghc-dbus' 'ghc-dbus-devel' 'ghc-deepseq' 'ghc-deepseq-devel' 'ghc-digest' 'ghc-digest-devel' 'ghc-directory' 'ghc-directory-devel' 'ghc-distribution-opensuse' 'ghc-distribution-opensuse-devel' 'ghc-distributive' 'ghc-distributive-devel' 'ghc-dlist' 'ghc-dlist-devel' 'ghc-doctemplates' 'ghc-doctemplates-devel' 'ghc-easy-file' 'ghc-easy-file-devel' 'ghc-echo' 'ghc-echo-devel' 'ghc-ed25519' 'ghc-ed25519-devel' 'ghc-edit-distance' 'ghc-edit-distance-devel' 'ghc-either' 'ghc-either-devel' 'ghc-enclosed-exceptions' 'ghc-enclosed-exceptions-devel' 'ghc-erf' 'ghc-erf-devel' 'ghc-exceptions' 'ghc-exceptions-devel' 'ghc-extensible-exceptions' 'ghc-extensible-exceptions-devel' 'ghc-extra' 'ghc-extra-devel' 'ghc-fail' 'ghc-fail-devel' 'ghc-fast-logger' 'ghc-fast-logger-devel' 'ghc-file-embed' 'ghc-file-embed-devel' 'ghc-filelock' 'ghc-filelock-devel' 'ghc-filepath' 'ghc-filepath-devel' 'ghc-foldl' 'ghc-foldl-devel' 'ghc-free' 'ghc-free-devel' 'ghc-fsnotify' 'ghc-fsnotify-devel' 'ghc-generic-deriving' 'ghc-generic-deriving-devel' 'ghc-ghc' 'ghc-ghc-boot' 'ghc-ghc-boot-devel' 'ghc-ghc-boot-th' 'ghc-ghc-boot-th-devel' 'ghc-ghc-compact' 'ghc-ghc-compact-devel' 'ghc-ghc-devel' 'ghc-ghc-heap' 'ghc-ghc-heap-devel' 'ghc-ghci' 'ghc-ghci-devel' 'ghc-gitrev' 'ghc-gitrev-devel' 'ghc-hackage-security' 'ghc-hackage-security-devel' 'ghc-haddock-library' 'ghc-haddock-library-devel' 'ghc-hashable' 'ghc-hashable-devel' 'ghc-haskeline' 'ghc-haskeline-devel' 'ghc-haskell-src-exts' 'ghc-haskell-src-exts-devel' 'ghc-hi-file-parser' 'ghc-hi-file-parser-devel' 'ghc-hinotify' 'ghc-hinotify-devel' 'ghc-hostname' 'ghc-hostname-devel' 'ghc-hourglass' 'ghc-hourglass-devel' 'ghc-hpack' 'ghc-hpack-devel' 'ghc-hpc' 'ghc-hpc-devel' 'ghc-hs-bibutils' 'ghc-hs-bibutils-devel' 'ghc-hsemail' 'ghc-hsemail-devel' 'ghc-hslua' 'ghc-hslua-devel' 'ghc-hslua-module-system' 'ghc-hslua-module-system-devel' 'ghc-hslua-module-text' 'ghc-hslua-module-text-devel' 'ghc-hspec' 'ghc-hspec-core' 'ghc-hspec-core-devel' 'ghc-hspec-devel' 'ghc-hspec-discover' 'ghc-hspec-discover-devel' 'ghc-hspec-expectations' 'ghc-hspec-expectations-devel' 'ghc-hspec-smallcheck' 'ghc-hspec-smallcheck-devel' 'ghc-http-api-data' 'ghc-http-api-data-devel' 'ghc-http-client' 'ghc-http-client-devel' 'ghc-http-client-tls' 'ghc-http-client-tls-devel' 'ghc-http-conduit' 'ghc-http-conduit-devel' 'ghc-http-download' 'ghc-http-download-devel' 'ghc-http-types' 'ghc-http-types-devel' 'ghc-hxt' 'ghc-hxt-charproperties' 'ghc-hxt-charproperties-devel' 'ghc-hxt-devel' 'ghc-hxt-regex-xmlschema' 'ghc-hxt-regex-xmlschema-devel' 'ghc-hxt-unicode' 'ghc-hxt-unicode-devel' 'ghc-infer-license' 'ghc-infer-license-devel' 'ghc-integer-logarithms' 'ghc-integer-logarithms-devel' 'ghc-invariant' 'ghc-invariant-devel' 'ghc-ipynb' 'ghc-ipynb-devel' 'ghc-iso8601-time' 'ghc-iso8601-time-devel' 'ghc-iwlib' 'ghc-iwlib-devel' 'ghc-json' 'ghc-json-devel' 'ghc-kan-extensions' 'ghc-kan-extensions-devel' 'ghc-lens' 'ghc-lens-devel' 'ghc-libiserv' 'ghc-libiserv-devel' 'ghc-libraries' 'ghc-libxml-sax' 'ghc-libxml-sax-devel' 'ghc-libyaml' 'ghc-libyaml-devel' 'ghc-lifted-async' 'ghc-lifted-async-devel' 'ghc-lifted-base' 'ghc-lifted-base-devel' 'ghc-logict' 'ghc-logict-devel' 'ghc-managed' 'ghc-managed-devel' 'ghc-math-functions' 'ghc-math-functions-devel' 'ghc-megaparsec' 'ghc-megaparsec-devel' 'ghc-memory' 'ghc-memory-devel' 'ghc-microlens' 'ghc-microlens-devel' 'ghc-microlens-th' 'ghc-microlens-th-devel' 'ghc-mime-types' 'ghc-mime-types-devel' 'ghc-mintty' 'ghc-mintty-devel' 'ghc-monad-control' 'ghc-monad-control-devel' 'ghc-monad-logger' 'ghc-monad-logger-devel' 'ghc-monad-loops' 'ghc-monad-loops-devel' 'ghc-mono-traversable' 'ghc-mono-traversable-devel' 'ghc-mtl' 'ghc-mtl-devel' 'ghc-mustache' 'ghc-mustache-devel' 'ghc-mwc-random' 'ghc-mwc-random-devel' 'ghc-neat-interpolation' 'ghc-neat-interpolation-devel' 'ghc-network' 'ghc-network-devel' 'ghc-network-uri' 'ghc-network-uri-devel' 'ghc-old-locale' 'ghc-old-locale-devel' 'ghc-old-time' 'ghc-old-time-devel' 'ghc-open-browser' 'ghc-open-browser-devel' 'ghc-optional-args' 'ghc-optional-args-devel' 'ghc-optparse-applicative' 'ghc-optparse-applicative-devel' 'ghc-optparse-simple' 'ghc-optparse-simple-devel' 'ghc-pandoc' 'ghc-pandoc-citeproc' 'ghc-pandoc-citeproc-devel' 'ghc-pandoc-devel' 'ghc-pandoc-types' 'ghc-pandoc-types-devel' 'ghc-pantry' 'ghc-pantry-devel' 'ghc-parallel' 'ghc-parallel-devel' 'ghc-parsec' 'ghc-parsec-class' 'ghc-parsec-class-devel' 'ghc-parsec-devel' 'ghc-parsec-numbers' 'ghc-parsec-numbers-devel' 'ghc-parser-combinators' 'ghc-parser-combinators-devel' 'ghc-path' 'ghc-path-devel' 'ghc-path-io' 'ghc-path-io-devel' 'ghc-path-pieces' 'ghc-path-pieces-devel' 'ghc-pem' 'ghc-pem-devel' 'ghc-persistent' 'ghc-persistent-devel' 'ghc-persistent-sqlite' 'ghc-persistent-sqlite-devel' 'ghc-persistent-template' 'ghc-persistent-template-devel' 'ghc-pretty' 'ghc-pretty-devel' 'ghc-primitive' 'ghc-primitive-devel' 'ghc-process' 'ghc-process-devel' 'ghc-profunctors' 'ghc-profunctors-devel' 'ghc-project-template' 'ghc-project-template-devel' 'ghc-quickcheck-io' 'ghc-quickcheck-io-devel' 'ghc-random' 'ghc-random-devel' 'ghc-reflection' 'ghc-reflection-devel' 'ghc-regex-applicative' 'ghc-regex-applicative-devel' 'ghc-regex-applicative-text' 'ghc-regex-applicative-text-devel' 'ghc-regex-base' 'ghc-regex-base-devel' 'ghc-regex-compat' 'ghc-regex-compat-devel' 'ghc-regex-pcre-builtin' 'ghc-regex-pcre-builtin-devel' 'ghc-regex-posix' 'ghc-regex-posix-devel' 'ghc-regex-tdfa' 'ghc-regex-tdfa-devel' 'ghc-resolv' 'ghc-resolv-devel' 'ghc-resource-pool' 'ghc-resource-pool-devel' 'ghc-resourcet' 'ghc-resourcet-devel' 'ghc-retry' 'ghc-retry-devel' 'ghc-rfc5051' 'ghc-rfc5051-devel' 'ghc-rio' 'ghc-rio-devel' 'ghc-rio-orphans' 'ghc-rio-orphans-devel' 'ghc-rio-prettyprint' 'ghc-rio-prettyprint-devel' 'ghc-rpm-macros' 'ghc-rpm-macros-extra' 'ghc-safe' 'ghc-safe-devel' 'ghc-safe-exceptions' 'ghc-safe-exceptions-devel' 'ghc-scientific' 'ghc-scientific-devel' 'ghc-semigroupoids' 'ghc-semigroupoids-devel' 'ghc-semigroups' 'ghc-semigroups-devel' 'ghc-setenv' 'ghc-setenv-devel' 'ghc-setlocale' 'ghc-setlocale-devel' 'ghc-shelly' 'ghc-shelly-devel' 'ghc-silently' 'ghc-silently-devel' 'ghc-skylighting' 'ghc-skylighting-core' 'ghc-skylighting-core-devel' 'ghc-skylighting-devel' 'ghc-smallcheck' 'ghc-smallcheck-devel' 'ghc-socks' 'ghc-socks-devel' 'ghc-split' 'ghc-split-devel' 'ghc-splitmix' 'ghc-splitmix-devel' 'ghc-stack' 'ghc-stack-devel' 'ghc-stm' 'ghc-stm-chans' 'ghc-stm-chans-devel' 'ghc-stm-devel' 'ghc-store' 'ghc-store-core' 'ghc-store-core-devel' 'ghc-store-devel' 'ghc-streaming-commons' 'ghc-streaming-commons-devel' 'ghc-syb' 'ghc-syb-devel' 'ghc-system-fileio' 'ghc-system-fileio-devel' 'ghc-system-filepath' 'ghc-system-filepath-devel' 'ghc-tagged' 'ghc-tagged-devel' 'ghc-tagsoup' 'ghc-tagsoup-devel' 'ghc-tar' 'ghc-tar-conduit' 'ghc-tar-conduit-devel' 'ghc-tar-devel' 'ghc-template-haskell' 'ghc-template-haskell-devel' 'ghc-temporary' 'ghc-temporary-devel' 'ghc-terminal-size' 'ghc-terminal-size-devel' 'ghc-terminfo' 'ghc-terminfo-devel' 'ghc-texmath' 'ghc-texmath-devel' 'ghc-text' 'ghc-text-devel' 'ghc-text-metrics' 'ghc-text-metrics-devel' 'ghc-tf-random' 'ghc-tf-random-devel' 'ghc-th-abstraction' 'ghc-th-abstraction-devel' 'ghc-th-expand-syns' 'ghc-th-expand-syns-devel' 'ghc-th-lift' 'ghc-th-lift-devel' 'ghc-th-lift-instances' 'ghc-th-lift-instances-devel' 'ghc-th-orphans' 'ghc-th-orphans-devel' 'ghc-th-reify-many' 'ghc-th-reify-many-devel' 'ghc-th-utilities' 'ghc-th-utilities-devel' 'ghc-time' 'ghc-time-compat' 'ghc-time-compat-devel' 'ghc-time-devel' 'ghc-time-locale-compat' 'ghc-time-locale-compat-devel' 'ghc-timezone-olson' 'ghc-timezone-olson-devel' 'ghc-timezone-series' 'ghc-timezone-series-devel' 'ghc-tls' 'ghc-tls-devel' 'ghc-transformers' 'ghc-transformers-base' 'ghc-transformers-base-devel' 'ghc-transformers-compat' 'ghc-transformers-compat-devel' 'ghc-transformers-devel' 'ghc-turtle' 'ghc-turtle-devel' 'ghc-typed-process' 'ghc-typed-process-devel' 'ghc-unicode-transforms' 'ghc-unicode-transforms-devel' 'ghc-unix' 'ghc-unix-compat' 'ghc-unix-compat-devel' 'ghc-unix-devel' 'ghc-unix-time' 'ghc-unix-time-devel' 'ghc-unliftio' 'ghc-unliftio-core' 'ghc-unliftio-core-devel' 'ghc-unliftio-devel' 'ghc-unordered-containers' 'ghc-unordered-containers-devel' 'ghc-uri-bytestring' 'ghc-uri-bytestring-devel' 'ghc-utf8-string' 'ghc-utf8-string-devel' 'ghc-uuid-types' 'ghc-uuid-types-devel' 'ghc-vector' 'ghc-vector-algorithms' 'ghc-vector-algorithms-devel' 'ghc-vector-builder' 'ghc-vector-builder-devel' 'ghc-vector-devel' 'ghc-vector-th-unbox' 'ghc-vector-th-unbox-devel' 'ghc-void' 'ghc-void-devel' 'ghc-x509' 'ghc-x509-devel' 'ghc-x509-store' 'ghc-x509-store-devel' 'ghc-x509-system' 'ghc-x509-system-devel' 'ghc-x509-validation' 'ghc-x509-validation-devel' 'ghc-xhtml' 'ghc-xhtml-devel' 'ghc-xml' 'ghc-xml-conduit' 'ghc-xml-conduit-devel' 'ghc-xml-devel' 'ghc-xml-types' 'ghc-xml-types-devel' 'ghc-xmobar' 'ghc-xmobar-devel' 'ghc-xmonad' 'ghc-xmonad-contrib' 'ghc-xmonad-contrib-devel' 'ghc-xmonad-devel' 'ghc-yaml' 'ghc-yaml-devel' 'ghc-zip-archive' 'ghc-zip-archive-devel' 'ghc-zlib' 'ghc-zlib-devel' 'ghex' 'ghex-devel' 'ghex-lang' 'ghostscript' 'ghostscript-devel' 'ghostscript-fonts' 'ghostscript-fonts-grops' 'ghostscript-fonts-other' 'ghostscript-fonts-std' 'ghostscript-x11' 'ghostview' 'ghostwriter' 'ghostwriter-lang' 'giada' 'giblib-devel' 'giflib-devel' 'giflib-devel-32bit' 'giflib-progs' 'gifsicle' 'gigedit' 'gigedit' 'gigedit-debuginfo' 'gigedit-debugsource' 'giggle' 'giggle-devel' 'giggle-lang' 'gigolo' 'gigolo-lang' 'gimmix' 'gimmix' 'gimmix-debuginfo' 'gimmix-debugsource' 'gimp' 'gimp-devel' 'gimp-gap' 'gimp-gap-lang' 'gimp-help' 'gimp-help-ca' 'gimp-help-da' 'gimp-help-de' 'gimp-help-el' 'gimp-help-en_GB' 'gimp-help-es' 'gimp-help-fi' 'gimp-help-fr' 'gimp-help-hr' 'gimp-help-it' 'gimp-help-ja' 'gimp-help-ko' 'gimp-help-lt' 'gimp-help-nl' 'gimp-help-nn' 'gimp-help-pl' 'gimp-help-pt_BR' 'gimp-help-ru' 'gimp-help-sl' 'gimp-help-sv' 'gimp-help-zh' 'gimp-lang' 'gimp-plugin-aa' 'gimp-plugin-dds' 'gimp-plugin-dds-doc' 'gimp-plugin-lqr' 'gimp-plugin-lqr-lang' 'gimp-plugins-python' 'gimp-save-for-web' 'gimp-save-for-web-lang' 'gimp-ufraw' 'ginac' 'gio-branding-openSUSE' 'gio-branding-upstream' 'gio-sharp' 'gio-sharp-devel' 'gio-sharp3' 'gio-sharp3-devel' 'girara-devel' 'girepository-1_0' 'git' 'git-arch' 'git-bz' 'git-cola' 'git-core' 'git-credential-gnome-keyring' 'git-credential-libsecret' 'git-crypt' 'git-cvs' 'git-daemon' 'git-doc' 'git-email' 'git-gui' 'git-merge-changelog' 'git-p4' 'git-remote-gcrypt' 'git-review' 'git-svn' 'git-sync' 'git-test' 'git-web' 'gitg' 'gitg-lang' 'gitk' 'gitolite' 'gitslave' 'gitslave-doc' 'givaro-devel' 'givaro-doc' 'gjiten' 'gjs' 'gkeyfile-sharp' 'gkeyfile-sharp-devel' 'gkrellm' 'gkrellm-cpupower' 'gkrellm-devel' 'gkrellm-lang' 'gkrellmd' 'gl2ps-devel' 'glabels' 'glabels-devel' 'glabels-lang' 'glade' 'glade-catalog-anjuta' 'glade-catalog-evolution' 'glade-catalog-gitg' 'glade-catalog-gtkhtml' 'glade-catalog-gtksourceview' 'glade-catalog-gtksourceview4' 'glade-catalog-libhandy' 'glade-catalog-libpeas' 'glade-lang' 'glade-sharp2' 'glassfish-annotation-api' 'glassfish-annotation-api-javadoc' 'glassfish-dtd-parser' 'glassfish-el' 'glassfish-el-api' 'glassfish-el-javadoc' 'glassfish-jsp-api' 'glassfish-jsp-api-javadoc' 'glassfish-master-pom' 'glassfish-servlet-api' 'glassfish-servlet-api-javadoc' 'glaurung121' 'glaurung121' 'glaurung121-debuginfo' 'glaurung121-debugsource' 'glaurung22' 'glaurung22' 'glaurung22-debuginfo' 'glaurung22-debugsource' 'glava' 'glew' 'glew-devel' 'glfw2-devel' 'gli' 'gli-devel' 'gli-doc' 'glib-networking' 'glib-networking-32bit' 'glib-networking-lang' 'glib-sharp2' 'glib-sharp3' 'glib2-devel' 'glib2-devel-32bit' 'glib2-devel-static' 'glib2-lang' 'glib2-tests' 'glib2-tools' 'glib2-tools-32bit' 'glibc' 'glibc-32bit' 'glibc-devel' 'glibc-devel-32bit' 'glibc-devel-static' 'glibc-devel-static-32bit' 'glibc-extra' 'glibc-html' 'glibc-i18ndata' 'glibc-info' 'glibc-locale' 'glibc-locale-base' 'glibc-locale-base-32bit' 'glibc-profile' 'glibc-profile-32bit' 'glibc-utils' 'glibc-utils-32bit' 'glibmm2-devel' 'glibmm2_4-devel' 'glm-devel' 'glm-doc' 'glmark2' 'global' 'glog-devel' 'glom' 'glom-lang' 'gloox-devel' 'glpk' 'glpk-devel' 'glpk-doc' 'glslang-devel' 'glu-devel' 'glu-devel-32bit' 'glucat-devel' 'glucat-doc' 'gluegen2' 'gluegen2-devel' 'glusterfs' 'glusterfs-devel' 'glyr-devel' 'glyrc' 'gmenudbusmenuproxy' 'gmerlin' 'gmerlin' 'gmerlin-alsamixer' 'gmerlin-alsamixer-debuginfo' 'gmerlin-avdecoder' 'gmerlin-avdecoder' 'gmerlin-avdecoder-debuginfo' 'gmerlin-avdecoder-debugsource' 'gmerlin-avdecoder-lang' 'gmerlin-avdecoder-plugins' 'gmerlin-avdecoder-plugins-debuginfo' 'gmerlin-debuginfo' 'gmerlin-doc' 'gmerlin-effectv' 'gmerlin-effectv' 'gmerlin-effectv-debuginfo' 'gmerlin-effectv-debugsource' 'gmerlin-encoders' 'gmerlin-encoders' 'gmerlin-encoders-debuginfo' 'gmerlin-encoders-debugsource' 'gmerlin-encoders-lang' 'gmerlin-gavf-tools' 'gmerlin-gavf-tools-debuginfo' 'gmerlin-jack' 'gmerlin-jack-debuginfo' 'gmerlin-kbd' 'gmerlin-kbd-debuginfo' 'gmerlin-lang' 'gmerlin-player' 'gmerlin-player-debuginfo' 'gmerlin-plugincfg' 'gmerlin-plugincfg-debuginfo' 'gmerlin-recorder' 'gmerlin-recorder-debuginfo' 'gmerlin-transcoder' 'gmerlin-transcoder-debuginfo' 'gmerlin-utils' 'gmerlin-utils-debuginfo' 'gmerlin-visualizer' 'gmerlin-visualizer-debuginfo' 'gmime-devel' 'gmime2_6-devel' 'gmime2_6-sharp' 'gmock' 'gmp-devel' 'gmp-devel-32bit' 'gmp-ecm' 'gmp-ecm-devel' 'gmp3info' 'gmp3info-debuginfo' 'gmpc' 'gmpc' 'gmpc-alarm' 'gmpc-alarm' 'gmpc-alarm-debuginfo' 'gmpc-alarm-debugsource' 'gmpc-avahi' 'gmpc-avahi' 'gmpc-avahi-debuginfo' 'gmpc-avahi-debugsource' 'gmpc-awn' 'gmpc-awn' 'gmpc-awn-debuginfo' 'gmpc-awn-debugsource' 'gmpc-debuginfo' 'gmpc-debugsource' 'gmpc-devel' 'gmpc-discogs' 'gmpc-discogs' 'gmpc-discogs-debuginfo' 'gmpc-discogs-debugsource' 'gmpc-doc' 'gmpc-extraplaylist' 'gmpc-extraplaylist' 'gmpc-extraplaylist-debuginfo' 'gmpc-extraplaylist-debugsource' 'gmpc-last-fm' 'gmpc-last-fm' 'gmpc-last-fm-debuginfo' 'gmpc-last-fm-debugsource' 'gmpc-libnotify' 'gmpc-libnotify' 'gmpc-libnotify-debuginfo' 'gmpc-libnotify-debugsource' 'gmpc-lirc' 'gmpc-lirc' 'gmpc-lirc-debuginfo' 'gmpc-lirc-debugsource' 'gmpc-lyrics' 'gmpc-lyrics' 'gmpc-lyrics-debuginfo' 'gmpc-lyrics-debugsource' 'gmpc-lyricsplugin' 'gmpc-lyricsplugin' 'gmpc-lyricsplugin-debuginfo' 'gmpc-lyricsplugin-debugsource' 'gmpc-lyricwiki' 'gmpc-lyricwiki' 'gmpc-lyricwiki-debuginfo' 'gmpc-lyricwiki-debugsource' 'gmpc-mdcover' 'gmpc-mdcover' 'gmpc-mdcover-debuginfo' 'gmpc-mdcover-debugsource' 'gmpc-mmkeys' 'gmpc-mmkeys' 'gmpc-mmkeys-debuginfo' 'gmpc-mmkeys-debugsource' 'gmpc-mserver' 'gmpc-mserver' 'gmpc-mserver-debuginfo' 'gmpc-mserver-debugsource' 'gmpc-notify-osd' 'gmpc-notify-osd' 'gmpc-notify-osd-debuginfo' 'gmpc-notify-osd-debugsource' 'gmpc-playlistsort' 'gmpc-playlistsort' 'gmpc-playlistsort-debuginfo' 'gmpc-playlistsort-debugsource' 'gmpc-shout' 'gmpc-shout' 'gmpc-shout-debuginfo' 'gmpc-shout-debugsource' 'gmplayer' 'gmusicbrowser' 'gmusicbrowser-lang' 'gn' 'gnaural' 'gnaural' 'gnaural-debuginfo' 'gnaural-debugsource' 'gnokii' 'gnokii-devel' 'gnokii-lang' 'gnokii-smsd' 'gnome' 'gnome-2048' 'gnome-2048-lang' 'gnome-autoar-devel' 'gnome-backgrounds' 'gnome-backgrounds-lang' 'gnome-bluetooth' 'gnome-bluetooth-devel' 'gnome-bluetooth-lang' 'gnome-books' 'gnome-books-lang' 'gnome-boxes' 'gnome-boxes-lang' 'gnome-break-timer' 'gnome-break-timer-lang' 'gnome-btdownload' 'gnome-btdownload' 'gnome-builder' 'gnome-builder-doc' 'gnome-builder-lang' 'gnome-builder-plugin-jedi' 'gnome-builder-plugin-jhbuild' 'gnome-builder-plugin-vala-pack' 'gnome-calculator' 'gnome-calculator-lang' 'gnome-calendar' 'gnome-calendar-lang' 'gnome-characters' 'gnome-characters-lang' 'gnome-chess' 'gnome-chess-lang' 'gnome-clocks' 'gnome-clocks-lang' 'gnome-color-manager' 'gnome-color-manager-lang' 'gnome-colors-icon-theme' 'gnome-commander' 'gnome-commander-doc' 'gnome-commander-lang' 'gnome-common' 'gnome-contacts' 'gnome-contacts-lang' 'gnome-control-center' 'gnome-control-center-color' 'gnome-control-center-devel' 'gnome-control-center-goa' 'gnome-control-center-lang' 'gnome-control-center-user-faces' 'gnome-desktop-lang' 'gnome-desktop-sharp2' 'gnome-desktop-sharp2-devel' 'gnome-desktop2' 'gnome-desktop2-lang' 'gnome-devel-docs' 'gnome-devel-docs-lang' 'gnome-dictionary' 'gnome-dictionary-lang' 'gnome-directory-thumbnailer' 'gnome-directory-thumbnailer-lang' 'gnome-disk-utility' 'gnome-disk-utility-lang' 'gnome-do' 'gnome-do-lang' 'gnome-do-plugins' 'gnome-do-plugins-lang' 'gnome-doc-utils' 'gnome-doc-utils-devel' 'gnome-doc-utils-lang' 'gnome-documents' 'gnome-documents-lang' 'gnome-dvb-daemon' 'gnome-dvb-daemon-lang' 'gnome-epub-thumbnailer' 'gnome-font-viewer' 'gnome-font-viewer-lang' 'gnome-games' 'gnome-games-lang' 'gnome-games-scripts' 'gnome-genius' 'gnome-getting-started-docs' 'gnome-getting-started-docs-lang' 'gnome-gmail-notifier' 'gnome-gmail-notifier-lang' 'gnome-icon-theme' 'gnome-icon-theme-extras' 'gnome-icon-theme-symbolic' 'gnome-initial-setup' 'gnome-initial-setup-lang' 'gnome-internet-radio-locator' 'gnome-internet-radio-locator-lang' 'gnome-keyring' 'gnome-keyring-32bit' 'gnome-keyring-lang' 'gnome-keyring-pam' 'gnome-keyring-pam-32bit' 'gnome-keyring-sharp' 'gnome-keyring-sharp-devel' 'gnome-keysign' 'gnome-klotski' 'gnome-klotski-lang' 'gnome-latex' 'gnome-logs' 'gnome-logs-lang' 'gnome-mahjongg' 'gnome-mahjongg-lang' 'gnome-maps' 'gnome-maps-lang' 'gnome-menus' 'gnome-menus-branding-openSUSE' 'gnome-menus-branding-upstream' 'gnome-menus-devel' 'gnome-menus-lang' 'gnome-mines' 'gnome-mines-lang' 'gnome-multi-writer' 'gnome-multi-writer-lang' 'gnome-music' 'gnome-music-lang' 'gnome-nettool' 'gnome-nettool-lang' 'gnome-news' 'gnome-news-lang' 'gnome-nibbles' 'gnome-nibbles-lang' 'gnome-online-accounts' 'gnome-online-accounts-devel' 'gnome-online-accounts-lang' 'gnome-online-miners' 'gnome-packagekit' 'gnome-packagekit-extras' 'gnome-packagekit-lang' 'gnome-passwordsafe' 'gnome-passwordsafe-lang' 'gnome-patch-translation' 'gnome-photos' 'gnome-photos-lang' 'gnome-pie' 'gnome-pomodoro' 'gnome-pomodoro-lang' 'gnome-power-manager' 'gnome-power-manager-lang' 'gnome-recipes' 'gnome-recipes-lang' 'gnome-robots' 'gnome-robots-lang' 'gnome-screenshot' 'gnome-screenshot-lang' 'gnome-search-tool' 'gnome-search-tool-lang' 'gnome-session' 'gnome-session-core' 'gnome-session-default-session' 'gnome-session-lang' 'gnome-session-wayland' 'gnome-settings-daemon' 'gnome-settings-daemon-devel' 'gnome-settings-daemon-lang' 'gnome-sharp2' 'gnome-sharp2-complete' 'gnome-shell' 'gnome-shell-calendar' 'gnome-shell-classic' 'gnome-shell-classic-session' 'gnome-shell-devel' 'gnome-shell-extension-gpaste' 'gnome-shell-extension-hamster' 'gnome-shell-extension-onboard' 'gnome-shell-extension-terminus' 'gnome-shell-extensions-common' 'gnome-shell-extensions-common-lang' 'gnome-shell-lang' 'gnome-shell-search-provider-bijiben' 'gnome-shell-search-provider-boxes' 'gnome-shell-search-provider-contacts' 'gnome-shell-search-provider-documents' 'gnome-shell-search-provider-eolie' 'gnome-shell-search-provider-epiphany' 'gnome-shell-search-provider-gnome-calculator' 'gnome-shell-search-provider-gnome-calendar' 'gnome-shell-search-provider-gnome-characters' 'gnome-shell-search-provider-gnome-clocks' 'gnome-shell-search-provider-gnome-photos' 'gnome-shell-search-provider-gnome-recipes' 'gnome-shell-search-provider-gnome-terminal' 'gnome-shell-search-provider-gnome-weather' 'gnome-shell-search-provider-gnote' 'gnome-shell-search-provider-lollypop' 'gnome-shell-search-provider-nautilus' 'gnome-shell-search-provider-seahorse' 'gnome-shell-theme-adapta' 'gnome-shell-theme-plata' 'gnome-software' 'gnome-software-devel' 'gnome-software-lang' 'gnome-sound-recorder' 'gnome-sound-recorder-lang' 'gnome-subtitles' 'gnome-subtitles-lang' 'gnome-sudoku' 'gnome-sudoku-lang' 'gnome-system-monitor' 'gnome-system-monitor-lang' 'gnome-taquin' 'gnome-taquin-lang' 'gnome-terminal' 'gnome-terminal-lang' 'gnome-tetravex' 'gnome-tetravex-lang' 'gnome-themes' 'gnome-themes-accessibility' 'gnome-themes-accessibility-gtk2' 'gnome-themes-extras' 'gnome-themes-lang' 'gnome-todo' 'gnome-todo-devel' 'gnome-todo-lang' 'gnome-tweaks' 'gnome-tweaks-lang' 'gnome-usage' 'gnome-usage-lang' 'gnome-user-docs' 'gnome-user-docs-lang' 'gnome-user-share' 'gnome-user-share-lang' 'gnome-version' 'gnome-vfs-sharp2' 'gnome-vfs2' 'gnome-vfs2-32bit' 'gnome-vfs2-devel' 'gnome-vfs2-doc' 'gnome-vfs2-lang' 'gnome-video-effects' 'gnome-video-effects-devel' 'gnome-weather' 'gnome-weather-lang' 'gnome_basic' 'gnome_x11' 'gnomekbd-tools' 'gnonograms' 'gnonograms-lang' 'gnote' 'gnote-lang' 'gns3' 'gns3-net-converter' 'gns3-server' 'gnu-cobol' 'gnu-compilers-hpc' 'gnu-compilers-hpc-devel' 'gnu-compilers-hpc-macros-devel' 'gnu-crypto' 'gnu-efi' 'gnu-free-fonts' 'gnu-getopt' 'gnu-getopt-javadoc' 'gnu-inetlib' 'gnu-jaf' 'gnu-netcat' 'gnu-regexp' 'gnu-regexp-demo' 'gnu-regexp-javadoc' 'gnu-unifont-bitmap-fonts' 'gnu-unifont-legacy-bitmap-fonts' 'gnu_ddrescue' 'gnu_parallel' 'gnu_parallel-doc' 'gnuastro' 'gnuastro-devel' 'gnuastro-doc' 'gnubg' 'gnubg-databases' 'gnubg-doc' 'gnubg-lang' 'gnubg-sounds' 'gnucap' 'gnucash' 'gnucash-devel' 'gnucash-docs' 'gnucash-lang' 'gnuchess' 'gnugo' 'gnuhealth' 'gnuhealth-client' 'gnuhealth-thalamus' 'gnumeric' 'gnumeric-devel' 'gnumeric-doc' 'gnumeric-lang' 'gnump3d' 'gnuplot' 'gnuplot-doc' 'gnuradio' 'gnuradio-devel' 'gnuradio-doc' 'gnuradio-examples' 'gnuradio-examples-wxgui' 'gnuradio-wxgui' 'gnuserv' 'gnusocialshell' 'gnustep-base' 'gnustep-base-devel' 'gnustep-make' 'gnutls' 'gnutls-guile' 'go' 'go-doc' 'go-for-it' 'go-for-it-lang' 'go-md2man' 'go-race' 'go-tools' 'go1.10' 'go1.10-doc' 'go1.10-race' 'go1.11' 'go1.11-doc' 'go1.11-race' 'go1.12' 'go1.12-doc' 'go1.12-race' 'go1.4' 'go1.4-doc' 'go1.4-race' 'go1.9' 'go1.9-doc' 'go1.9-race' 'goaccess' 'goatattack' 'goatattack-data' 'gob2' 'gobby' 'gobby-lang' 'gobject-introspection' 'gobject-introspection-devel' 'gocode' 'gocr' 'gocr-gui' 'godot' 'godot-headless' 'godot-rpm-macros' 'godot-runner' 'godot-server' 'goffice-devel' 'goffice-lang' 'gogglesmm' 'gogglesmm' 'gogglesmm-lang' 'golang-github-boynux-squid_exporter' 'golang-github-cpuguy83-go-md2man' 'golang-github-docker-libnetwork' 'golang-github-docker-libnetwork-kubic' 'golang-github-exercism-cli' 'golang-github-golang-glog' 'golang-github-jteeuwen-go-bindata' 'golang-github-kr-pretty' 'golang-github-kr-pty' 'golang-github-kr-text' 'golang-github-lusitaniae-apache_exporter' 'golang-github-naoina-go-stringutil' 'golang-github-nsf-gocode' 'golang-github-prometheus-alertmanager' 'golang-github-prometheus-node_exporter' 'golang-github-prometheus-prometheus' 'golang-github-prometheus-promu' 'golang-github-rogpeppe-godef' 'golang-github-russross-blackfriday' 'golang-github-shurcool-sanitized_anchor_name' 'golang-github-wrouesnel-postgres_exporter' 'golang-gopkgin-check' 'golang-org-x-crypto' 'golang-org-x-net-context' 'golang-org-x-net-html' 'golang-org-x-net-websocket' 'golang-org-x-sys' 'golang-org-x-tools' 'golang-packaging' 'goldendict' 'goldendict-lang' 'gom-devel' 'gonvert' 'goobox' 'goobox-lang' 'goocanvas-devel' 'goocanvas-lang' 'google-alegreya-fonts' 'google-allerta-fonts' 'google-anonymouspro-fonts' 'google-arimo-fonts' 'google-authenticator-libpam' 'google-authenticator-libpam-32bit' 'google-cabin-fonts' 'google-caladea-fonts' 'google-cardo-fonts' 'google-carlito-fonts' 'google-compute-engine-init' 'google-compute-engine-oslogin' 'google-compute-engine-oslogin-32bit' 'google-cousine-fonts' 'google-croscore-fonts' 'google-droid-fonts' 'google-exo-fonts' 'google-guice' 'google-guice-javadoc' 'google-inconsolata-fonts' 'google-lekton-fonts' 'google-merriweather-fonts' 'google-nobile-fonts' 'google-noto-fonts-doc' 'google-opensans-fonts' 'google-roboto-fonts' 'google-roboto-mono-fonts' 'google-tinos-fonts' 'googleapis-source' 'googler' 'gops' 'gos-wallpapers' 'gostcrypt' 'gostcrypt' 'gource' 'govpn' 'govpn-server' 'gp2c' 'gpa' 'gpa-lang' 'gpac' 'gpac' 'gpac-debuginfo' 'gpac-debugsource' 'gpart' 'gparted' 'gparted-lang' 'gpaste' 'gpaste-devel' 'gpaste-lang' 'gperf' 'gperftools' 'gperftools-devel' 'gperftools-devel-static' 'gperiodic' 'gperiodic-lang' 'gpg2' 'gpg2-lang' 'gpgme' 'gpgmepp5' 'gpgmepp5-32bit' 'gpgmepp5-devel' 'gpgmepp5-devel-32bit' 'gphoto' 'gphotofs' 'gpick' 'gpick-lang' 'gpicview' 'gpicview-lang' 'gpm' 'gpm-devel' 'gpodder' 'gpodder' 'gpodder3' 'gpodder3' 'gpomme' 'gpp' 'gpredict' 'gpredict-lang' 'gprename' 'gprename-lang' 'gprompter' 'gpsbabel' 'gpsd' 'gpsd-clients' 'gpsd-devel' 'gptfdisk' 'gptfdisk-fixparts' 'gputils' 'gputils-doc' 'gpxsee' 'gq' 'gr-fcdproplus' 'gr-fcdproplus-devel-doc' 'gr-osmosdr' 'gr-osmosdr-devel' 'gr-osmosdr-devel-doc' 'grabpng' 'gradio' 'gradio-lang' 'gradle-open-api' 'grafana' 'grail' 'grail-devel' 'gramofile' 'gramps' 'gramps-lang' 'granatier' 'granatier-lang' 'granite-common' 'granite-demo' 'granite-devel' 'granite-lang' 'grantlee-editor' 'grantlee-editor-lang' 'grantlee5' 'grantlee5-32bit' 'grantlee5-devel' 'grantlee5-devel-32bit' 'grantleetheme' 'grantleetheme-devel' 'grantleetheme-lang' 'graphite2' 'graphite2-devel' 'graphviz' 'graphviz-devel' 'graphviz-doc' 'graphviz-gd' 'graphviz-gnome' 'graphviz-guile' 'graphviz-gvedit' 'graphviz-java' 'graphviz-lua' 'graphviz-perl' 'graphviz-php' 'graphviz-plugins-core' 'graphviz-python' 'graphviz-ruby' 'graphviz-smyrna' 'graphviz-tcl' 'graphviz-x11' 'grc' 'grep' 'grep-lang' 'grepmail' 'grfcodec' 'gri' 'grilo-devel' 'grilo-lang' 'grilo-plugin-dleyna' 'grilo-plugin-tracker' 'grilo-plugin-youtube' 'grilo-plugins' 'grilo-plugins-devel' 'grilo-plugins-lang' 'grilo-tools' 'grim' 'grip' 'grip' 'grip-debuginfo' 'grip-debugsource' 'grip-lang' 'grisbi' 'grisbi-lang' 'groff' 'groff-doc' 'groff-full' 'gromacs' 'gromacs-bash' 'gromacs-devel' 'gromacs-doc' 'gromacs-openmpi' 'gromit' 'groovebasin' 'groovebasin' 'groovy18' 'groovy18-javadoc' 'groovy18-lib' 'growpart' 'growpart-rootgrow' 'grpc-devel' 'grpc-httpjson-transcoding-devel' 'grpc-httpjson-transcoding-source' 'grpc-source' 'grsync' 'grsync-lang' 'grub' 'grub2' 'grub2-branding-openSUSE' 'grub2-branding-upstream' 'grub2-i386-efi' 'grub2-i386-pc' 'grub2-i386-xen' 'grub2-snapper-plugin' 'grub2-systemd-sleep-plugin' 'grub2-theme-breeze' 'grub2-x86_64-efi' 'grub2-x86_64-xen' 'grubby' 'gsequencer' 'gsequencer-devel' 'gsequencer-devel-doc' 'gsettings-backend-dconf' 'gsettings-backend-dconf-32bit' 'gsettings-desktop-schemas' 'gsettings-desktop-schemas-devel' 'gsettings-desktop-schemas-lang' 'gsettings-qt' 'gsettings-qt-devel' 'gsf-office-thumbnailer' 'gsl' 'gsl-devel' 'gsl-doc' 'gsl-examples' 'gsl-gnu-hpc' 'gsl-gnu-hpc-devel' 'gsl-gnu-hpc-doc' 'gsl_2_6-gnu-hpc' 'gsl_2_6-gnu-hpc-devel' 'gsl_2_6-gnu-hpc-doc' 'gsl_2_6-gnu-hpc-examples' 'gsl_2_6-gnu-hpc-module' 'gsmartcontrol' 'gsoap-devel' 'gsoap-doc' 'gsound' 'gsound-devel' 'gspell' 'gspell-devel' 'gspell-lang' 'gssdp-utils' 'gssproxy' 'gst123' 'gstreamer' 'gstreamer-1_0-plugins-buzztrax' 'gstreamer-32bit' 'gstreamer-devel' 'gstreamer-doc' 'gstreamer-editing-services' 'gstreamer-editing-services-devel' 'gstreamer-lang' 'gstreamer-libnice' 'gstreamer-plugin-cluttergst3' 'gstreamer-plugin-pipewire' 'gstreamer-plugin-python' 'gstreamer-plugins-bad' 'gstreamer-plugins-bad' 'gstreamer-plugins-bad-32bit' 'gstreamer-plugins-bad-32bit-debuginfo' 'gstreamer-plugins-bad-chromaprint' 'gstreamer-plugins-bad-chromaprint-32bit' 'gstreamer-plugins-bad-chromaprint-32bit-debuginfo' 'gstreamer-plugins-bad-chromaprint-debuginfo' 'gstreamer-plugins-bad-debuginfo' 'gstreamer-plugins-bad-debugsource' 'gstreamer-plugins-bad-devel' 'gstreamer-plugins-bad-doc' 'gstreamer-plugins-bad-fluidsynth' 'gstreamer-plugins-bad-fluidsynth-32bit' 'gstreamer-plugins-bad-fluidsynth-32bit-debuginfo' 'gstreamer-plugins-bad-fluidsynth-debuginfo' 'gstreamer-plugins-bad-lang' 'gstreamer-plugins-bad-orig-addon' 'gstreamer-plugins-bad-orig-addon-32bit' 'gstreamer-plugins-bad-orig-addon-32bit-debuginfo' 'gstreamer-plugins-bad-orig-addon-debuginfo' 'gstreamer-plugins-base' 'gstreamer-plugins-base-32bit' 'gstreamer-plugins-base-devel' 'gstreamer-plugins-base-devel-32bit' 'gstreamer-plugins-base-doc' 'gstreamer-plugins-base-lang' 'gstreamer-plugins-farstream' 'gstreamer-plugins-farstream-32bit' 'gstreamer-plugins-good' 'gstreamer-plugins-good-32bit' 'gstreamer-plugins-good-doc' 'gstreamer-plugins-good-extra' 'gstreamer-plugins-good-extra-32bit' 'gstreamer-plugins-good-gtk' 'gstreamer-plugins-good-jack' 'gstreamer-plugins-good-jack-32bit' 'gstreamer-plugins-good-lang' 'gstreamer-plugins-good-qtqml' 'gstreamer-plugins-libav' 'gstreamer-plugins-libav' 'gstreamer-plugins-libav-32bit' 'gstreamer-plugins-libav-32bit-debuginfo' 'gstreamer-plugins-libav-debuginfo' 'gstreamer-plugins-libav-debugsource' 'gstreamer-plugins-libav-doc' 'gstreamer-plugins-ugly' 'gstreamer-plugins-ugly' 'gstreamer-plugins-ugly-32bit' 'gstreamer-plugins-ugly-32bit-debuginfo' 'gstreamer-plugins-ugly-debuginfo' 'gstreamer-plugins-ugly-debugsource' 'gstreamer-plugins-ugly-doc' 'gstreamer-plugins-ugly-lang' 'gstreamer-plugins-ugly-orig-addon' 'gstreamer-plugins-ugly-orig-addon-32bit' 'gstreamer-plugins-ugly-orig-addon-32bit-debuginfo' 'gstreamer-plugins-ugly-orig-addon-debuginfo' 'gstreamer-plugins-vaapi' 'gstreamer-plugins-vaapi-doc' 'gstreamer-rtsp-server-devel' 'gstreamer-transcoder' 'gstreamer-transcoder-devel' 'gstreamer-utils' 'gstreamer-validate' 'gstreamer-validate-devel' 'gstreamermm-devel' 'gstreamermm-doc' 'gswrap' 'gtest' 'gthumb' 'gthumb-devel' 'gthumb-lang' 'gti' 'gtick' 'gtick-lang' 'gtk-chtheme' 'gtk-chtheme' 'gtk-chtheme-debuginfo' 'gtk-chtheme-debugsource' 'gtk-doc' 'gtk-doc-lang' 'gtk-frdp-devel' 'gtk-gnutella' 'gtk-gnutella' 'gtk-gnutella-debuginfo' 'gtk-gnutella-debugsource' 'gtk-key-theme-ctrluftw' 'gtk-recordMyDesktop' 'gtk-recordMyDesktop-lang' 'gtk-sharp-beans' 'gtk-sharp-beans-devel' 'gtk-sharp2' 'gtk-sharp2-complete' 'gtk-sharp2-doc' 'gtk-sharp2-gapi' 'gtk-sharp3' 'gtk-sharp3-complete' 'gtk-sharp3-devel' 'gtk-sharp3-doc' 'gtk-sharp3-gapi' 'gtk-sharp3-gapi-devel' 'gtk-vector-screenshot' 'gtk-vector-screenshot' 'gtk-vector-screenshot-debuginfo' 'gtk-vector-screenshot-debugsource' 'gtk-vnc-devel' 'gtk-vnc-lang' 'gtk-vnc-tools' 'gtk-xfce-engine' 'gtk-xfce-engine-32bit' 'gtk2-branding-openSUSE' 'gtk2-branding-upstream' 'gtk2-data' 'gtk2-devel' 'gtk2-devel-32bit' 'gtk2-engine-aurora' 'gtk2-engine-cleanice' 'gtk2-engine-cleanice-32bit' 'gtk2-engine-clearlooks' 'gtk2-engine-clearlooks-32bit' 'gtk2-engine-crux' 'gtk2-engine-crux-32bit' 'gtk2-engine-equinox' 'gtk2-engine-glide' 'gtk2-engine-glide-32bit' 'gtk2-engine-hcengine' 'gtk2-engine-industrial' 'gtk2-engine-industrial-32bit' 'gtk2-engine-mist' 'gtk2-engine-mist-32bit' 'gtk2-engine-murrine' 'gtk2-engine-murrine-32bit' 'gtk2-engine-nimbus' 'gtk2-engine-nimbus-32bit' 'gtk2-engine-oxygen' 'gtk2-engine-oxygen-32bit' 'gtk2-engine-redmond95' 'gtk2-engine-redmond95-32bit' 'gtk2-engine-thinice' 'gtk2-engine-thinice-32bit' 'gtk2-engines' 'gtk2-engines-devel' 'gtk2-immodule-amharic' 'gtk2-immodule-amharic-32bit' 'gtk2-immodule-inuktitut' 'gtk2-immodule-inuktitut-32bit' 'gtk2-immodule-multipress' 'gtk2-immodule-multipress-32bit' 'gtk2-immodule-thai' 'gtk2-immodule-thai-32bit' 'gtk2-immodule-tigrigna' 'gtk2-immodule-tigrigna-32bit' 'gtk2-immodule-vietnamese' 'gtk2-immodule-vietnamese-32bit' 'gtk2-immodule-xim' 'gtk2-immodule-xim-32bit' 'gtk2-lang' 'gtk2-metatheme-adapta' 'gtk2-metatheme-adwaita' 'gtk2-metatheme-ambiance' 'gtk2-metatheme-ambiant-mate' 'gtk2-metatheme-arc' 'gtk2-metatheme-bluebird' 'gtk2-metatheme-breeze' 'gtk2-metatheme-e17gtk' 'gtk2-metatheme-elementary' 'gtk2-metatheme-equinox' 'gtk2-metatheme-gilouche' 'gtk2-metatheme-greybird' 'gtk2-metatheme-greybird-geeko' 'gtk2-metatheme-industrial' 'gtk2-metatheme-mint' 'gtk2-metatheme-nimbus' 'gtk2-metatheme-numix' 'gtk2-metatheme-paper' 'gtk2-metatheme-plata' 'gtk2-metatheme-radiance' 'gtk2-metatheme-radiant-mate' 'gtk2-metatheme-sonar' 'gtk2-metatheme-vertex' 'gtk2-metatheme-yaru' 'gtk2-metatheme-yuyo' 'gtk2-theme-clearlooks' 'gtk2-theme-crux' 'gtk2-theme-industrial' 'gtk2-theme-mist' 'gtk2-theme-oxygen' 'gtk2-theme-redmond95' 'gtk2-theme-thinice' 'gtk2-theming-engine-adwaita' 'gtk2-theming-engine-adwaita-32bit' 'gtk2-tools' 'gtk2-tools-32bit' 'gtk3-branding-openSUSE' 'gtk3-branding-upstream' 'gtk3-data' 'gtk3-devel' 'gtk3-devel-32bit' 'gtk3-immodule-amharic' 'gtk3-immodule-amharic-32bit' 'gtk3-immodule-broadway' 'gtk3-immodule-inuktitut' 'gtk3-immodule-inuktitut-32bit' 'gtk3-immodule-multipress' 'gtk3-immodule-multipress-32bit' 'gtk3-immodule-thai' 'gtk3-immodule-thai-32bit' 'gtk3-immodule-tigrigna' 'gtk3-immodule-tigrigna-32bit' 'gtk3-immodule-vietnamese' 'gtk3-immodule-vietnamese-32bit' 'gtk3-immodule-wayland' 'gtk3-immodule-wayland-32bit' 'gtk3-immodule-xim' 'gtk3-immodule-xim-32bit' 'gtk3-lang' 'gtk3-metatheme-adapta' 'gtk3-metatheme-adwaita' 'gtk3-metatheme-ambiance' 'gtk3-metatheme-ambiant-mate' 'gtk3-metatheme-arc' 'gtk3-metatheme-bluebird' 'gtk3-metatheme-breeze' 'gtk3-metatheme-e17gtk' 'gtk3-metatheme-elementary' 'gtk3-metatheme-greybird' 'gtk3-metatheme-greybird-geeko' 'gtk3-metatheme-mint' 'gtk3-metatheme-numix' 'gtk3-metatheme-paper' 'gtk3-metatheme-plata' 'gtk3-metatheme-radiance' 'gtk3-metatheme-radiant-mate' 'gtk3-metatheme-vertex' 'gtk3-metatheme-yaru' 'gtk3-metatheme-yuyo' 'gtk3-schema' 'gtk3-tools' 'gtk3-tools-32bit' 'gtk4-branding-upstream' 'gtk4-devel' 'gtk4-devel-32bit' 'gtk4-lang' 'gtk4-metatheme-adapta' 'gtk4-metatheme-plata' 'gtk4-schema' 'gtk4-tools' 'gtkam' 'gtkam-doc' 'gtkam-lang' 'gtkd-devel' 'gtkglext-devel' 'gtkglext-doc' 'gtkhtml-4_0-lang' 'gtkhtml-devel' 'gtkimageview-devel' 'gtkiterm' 'gtkmm2-devel' 'gtkmm2-tutorial' 'gtkmm2-tutorial-lang' 'gtkmm3-devel' 'gtkmm3-doc' 'gtkmm3-tutorial' 'gtkmm3-tutorial-lang' 'gtkpod' 'gtkpod-devel' 'gtkpod-lang' 'gtksourceview-devel' 'gtksourceview-lang' 'gtksourceview2-devel' 'gtksourceview2-lang' 'gtksourceview2-sharp' 'gtksourceview4-devel' 'gtksourceview4-lang' 'gtksourceviewmm-devel' 'gtkspell-devel' 'gtkspell-doc' 'gtkspell-lang' 'gtkspell3-devel' 'gtkspell3-lang' 'gtkwave' 'gtkwave-doc' 'gtkwave-examples' 'gtranslator' 'gtranslator-lang' 'gts' 'gts-devel' 'gtypist' 'gtypist-lang' 'guake' 'guava' 'guava-javadoc' 'guava-testlib' 'guava20' 'guava20-javadoc' 'guava20-testlib' 'guayadeque' 'guayadeque' 'guayadeque-debuginfo' 'guayadeque-debugsource' 'gucharmap' 'gucharmap-devel' 'gucharmap-lang' 'gudev-sharp' 'gudev-sharp-devel' 'guestfs-data' 'guestfs-tools' 'guestfsd' 'guice-assistedinject' 'guice-bom' 'guice-extensions' 'guice-grapher' 'guice-jmx' 'guice-jndi' 'guice-multibindings' 'guice-parent' 'guice-servlet' 'guice-testlib' 'guice-throwingproviders' 'guile' 'guile-bytestructures' 'guile-cairo' 'guile-cairo-devel' 'guile-charting' 'guile-devel' 'guile-gcrypt' 'guile-git' 'guile-json' 'guile-modules-2_2' 'guile-newt' 'guile-parted' 'guile-sqlite3' 'guile-ssh-devel' 'guile1' 'guilt' 'guitarix' 'guix' 'gup' 'gupnp-av' 'gupnp-dlna-tools' 'gupnp-tools' 'gupnp-tools-lang' 'gutenprint' 'gutenprint-devel' 'gutenprint-gimpplugin' 'guvcview' 'guvcview-devel' 'guvcview-lang' 'guvcview-qt5' 'guvcview-qt5-lang' 'gv' 'gvfs' 'gvfs-32bit' 'gvfs-backend-afc' 'gvfs-backend-samba' 'gvfs-backends' 'gvfs-devel' 'gvfs-fuse' 'gvfs-lang' 'gvim' 'gweather-data' 'gwenhywfar' 'gwenhywfar-devel' 'gwenhywfar-lang' 'gwenhywfar-tools' 'gwenview5' 'gwenview5-lang' 'gxditview' 'gxine' 'gxine' 'gxine-browser-plugin' 'gxine-browser-plugin-debuginfo' 'gxine-debuginfo' 'gxine-debugsource' 'gxine-lang' 'gyp' 'gypsy' 'gzdoom' 'gzip' 'gzrt' 'h264enc' 'h264enc' 'h5utils' 'ha-cluster-bootstrap' 'haas-proxy' 'habootstrap-formula' 'hack-fonts' 'hackbench' 'hackrf' 'hackrf-devel' 'hackrf-firmware' 'hackrf-udev' 'hactool' 'haguichi' 'haguichi-lang' 'hamcrest' 'hamcrest-core' 'hamcrest-demo' 'hamcrest-javadoc' 'hamlib' 'hamlib-devel' 'hamster-time-tracker' 'hamster-time-tracker-lang' 'hanadb_exporter' 'handbrake' 'handbrake-cli' 'handbrake-cli-debuginfo' 'handbrake-debuginfo' 'handbrake-debugsource' 'handbrake-gtk' 'handbrake-gtk-debuginfo' 'handbrake-gtk-lang' 'handedict' 'happy' 'haproxy' 'hardening-check' 'hardinfo' 'hardlink' 'harfbuzz-devel' 'harfbuzz-tools' 'harminv' 'harminv-devel' 'hartke-aurulentsans-fonts' 'haserl' 'hashalot' 'hashcat' 'hashdeep' 'haveged' 'haveged-devel' 'hawk-apiserver' 'hawk2' 'hawkey-man' 'hawknl-devel' 'hawknl-libs' 'hawtjni' 'hawtjni-javadoc' 'hawtjni-runtime' 'haxe' 'hbci4java' 'hbci4java-javadoc' 'hcode' 'hda-verb' 'hdajackretask' 'hdajacksensetest' 'hddtemp' 'hdf' 'hdf-devel' 'hdf-devel-data' 'hdf-devel-static' 'hdf-openmpi' 'hdf-openmpi-devel' 'hdf-openmpi-devel-static' 'hdf5' 'hdf5-devel' 'hdf5-devel-32bit' 'hdf5-devel-data' 'hdf5-devel-static' 'hdf5-examples' 'hdf5-gnu-hpc' 'hdf5-gnu-hpc-devel' 'hdf5-gnu-mpich-hpc' 'hdf5-gnu-mpich-hpc-devel' 'hdf5-gnu-mvapich2-hpc' 'hdf5-gnu-mvapich2-hpc-devel' 'hdf5-gnu-openmpi1-hpc' 'hdf5-gnu-openmpi1-hpc-devel' 'hdf5-gnu-openmpi2-hpc' 'hdf5-gnu-openmpi2-hpc-devel' 'hdf5-gnu-openmpi3-hpc' 'hdf5-gnu-openmpi3-hpc-devel' 'hdf5-hpc-examples' 'hdf5-mvapich2' 'hdf5-mvapich2-devel' 'hdf5-mvapich2-devel-32bit' 'hdf5-mvapich2-devel-static' 'hdf5-openmpi' 'hdf5-openmpi-devel' 'hdf5-openmpi-devel-32bit' 'hdf5-openmpi-devel-static' 'hdf5-openmpi2' 'hdf5-openmpi2-devel' 'hdf5-openmpi2-devel-32bit' 'hdf5-openmpi2-devel-static' 'hdf5-openmpi3' 'hdf5-openmpi3-devel' 'hdf5-openmpi3-devel-32bit' 'hdf5-openmpi3-devel-static' 'hdf5_1_10_4-gnu-hpc' 'hdf5_1_10_4-gnu-hpc-devel' 'hdf5_1_10_4-gnu-hpc-devel-static' 'hdf5_1_10_4-gnu-hpc-module' 'hdf5_1_10_4-gnu-mpich-hpc' 'hdf5_1_10_4-gnu-mpich-hpc-devel' 'hdf5_1_10_4-gnu-mpich-hpc-devel-static' 'hdf5_1_10_4-gnu-mpich-hpc-module' 'hdf5_1_10_4-gnu-mvapich2-hpc' 'hdf5_1_10_4-gnu-mvapich2-hpc-devel' 'hdf5_1_10_4-gnu-mvapich2-hpc-devel-static' 'hdf5_1_10_4-gnu-mvapich2-hpc-module' 'hdf5_1_10_4-gnu-openmpi1-hpc' 'hdf5_1_10_4-gnu-openmpi1-hpc-devel' 'hdf5_1_10_4-gnu-openmpi1-hpc-devel-static' 'hdf5_1_10_4-gnu-openmpi1-hpc-module' 'hdf5_1_10_4-gnu-openmpi2-hpc' 'hdf5_1_10_4-gnu-openmpi2-hpc-devel' 'hdf5_1_10_4-gnu-openmpi2-hpc-devel-static' 'hdf5_1_10_4-gnu-openmpi2-hpc-module' 'hdf5_1_10_4-gnu-openmpi3-hpc' 'hdf5_1_10_4-gnu-openmpi3-hpc-devel' 'hdf5_1_10_4-gnu-openmpi3-hpc-devel-static' 'hdf5_1_10_4-gnu-openmpi3-hpc-module' 'hdf5_1_10_4-hpc-examples' 'hdhomerun-config' 'hdhomerun-config-debuginfo' 'hdhomerun_config' 'hdhomerun_config_gui' 'hdjmod-kmp-default' 'hdjmod-kmp-pae' 'hdparm' 'hdspconf' 'hdsploader' 'hdspmixer' 'headmore' 'health-check' 'health-checker' 'health-checker-plugins-MicroOS' 'health-checker-plugins-caasp' 'health-checker-plugins-kubic' 'health-checker-testing' 'heapster' 'heaptrack' 'heaptrack-devel' 'heaptrack-gui' 'heaptrack-lang' 'hedgewars' 'hedgewars-data' 'heimdall' 'heimdall-frontend' 'heldenviewer' 'heldenviewer' 'heldenviewer-debuginfo' 'hello' 'hello-kubic' 'hello-kubic-k8s-yaml' 'hello-lang' 'helm' 'helm-mirror' 'help2man' 'help2man-lang' 'herbstluftwm' 'herbstluftwm-bash-completion' 'herbstluftwm-examples' 'herbstluftwm-fish-completion' 'herbstluftwm-zsh-completion' 'hercules' 'heroes-tron' 'hevea' 'hex' 'hex2bin' 'hexchat' 'hexchat-devel' 'hexchat-lang' 'hexchat-plugins-lua' 'hexchat-plugins-perl' 'hexchat-plugins-python3' 'hexd' 'hexen2' 'hexen2' 'hexen2-debuginfo' 'hexen2-debugsource' 'hexenworld' 'hexenworld-debuginfo' 'hexter' 'hfst' 'hfst-devel' 'hfst-ospell' 'hfst-ospell-devel' 'hfsutils' 'hg-fast-export' 'hg-git' 'hiawatha' 'hiawatha-letsencrypt' 'hibiscus' 'hicolor-icon-theme' 'hicolor-icon-theme-branding-openSUSE' 'highlight' 'highlight-gui' 'highlight-gui-lang' 'himeno' 'hiredis' 'hiredis-devel' 'hitori' 'hitori-lang' 'hivex' 'hivex-devel' 'hivex-lang' 'hmaccalc' 'hmcfgusb' 'hmconv' 'hollywood' 'hollywood-data' 'holodev' 'homebank' 'homebank-lang' 'homerhevc' 'homerhevc' 'homerhevc-debuginfo' 'homeshick' 'honggfuzz' 'horst' 'hostap-utils' 'hostapd' 'hostinfo' 'hostname' 'hotspot' 'hourglass' 'hourglass-lang' 'howl' 'hp-drive-guard' 'hp2xx' 'hpack' 'hpc_compute_node' 'hpc_development_node' 'hpc_libraries' 'hpc_workload_server' 'hping' 'hping-doc' 'hplip' 'hplip-devel' 'hplip-hpijs' 'hplip-sane' 'hpx' 'hpx-devel' 'hpx-devel-static' 'hspec-discover' 'hsqldb' 'hsqldb-demo' 'hsqldb-javadoc' 'hsqldb-manual' 'ht' 'htdig' 'htdig-devel' 'htdig-doc' 'hte' 'html-dtd' 'html-xml-utils' 'html2ps' 'html2text' 'htmldoc' 'htop' 'http-parser-devel' 'httpcomponents-client' 'httpcomponents-client-cache' 'httpcomponents-client-javadoc' 'httpcomponents-core' 'httpcomponents-core-javadoc' 'httpcomponents-project' 'httperf' 'httrack' 'httrack-devel' 'hub' 'hugin' 'humanity-icon-theme' 'hunspell' 'hunspell-devel' 'hunspell-devel-32bit' 'hunspell-tools' 'hwdata' 'hwinfo' 'hwinfo-devel' 'hwloc' 'hwloc-data' 'hwloc-devel' 'hwloc-doc' 'hwmixvolume' 'hwsd' 'hwsd' 'hwsd-debuginfo' 'hwsd-debugsource' 'hwsd-devel' 'hwsd-doc' 'hxtools' 'hxtools-data' 'hxtools-man' 'hxtools-profile' 'hxtools-scripts' 'hydrogen' 'hyena' 'hylafax+' 'hylafax+-client' 'hyper-v' 'hyperscan-devel' 'hyphen' 'hyphen-devel' 'hypre-devel' 'hypre-doc' 'hypre-examples' 'hypre-gnu-mpich-hpc-devel' 'hypre-gnu-mvapich2-hpc-devel' 'hypre-gnu-openmpi1-hpc-devel' 'hypre-gnu-openmpi2-hpc-devel' 'hypre-gnu-openmpi3-hpc-devel' 'hypre-mpich-devel' 'hypre-mvapich2-devel' 'hypre-openmpi-devel' 'hypre-openmpi2-devel' 'hypre_2_15_1-gnu-mpich-hpc-devel' 'hypre_2_15_1-gnu-mvapich2-hpc-devel' 'hypre_2_15_1-gnu-openmpi1-hpc-devel' 'hypre_2_15_1-gnu-openmpi2-hpc-devel' 'hypre_2_15_1-gnu-openmpi3-hpc-devel' 'i18nspector' 'i2c-tools' 'i2pd' 'i3' 'i3-devel' 'i3-gaps' 'i3-gaps-devel' 'i3blocks' 'i3lock' 'i3lock-xlock-compat' 'i3status' 'i4l-base' 'i4l-isdnlog' 'i4l-vbox' 'i4lfirm' 'iMule' 'iMule' 'iMule-debuginfo' 'iMule-debugsource' 'iagno' 'iagno-lang' 'ibacm' 'ibm-data-db2' 'ibmswtpm2' 'ibmtss' 'ibmtss-base' 'ibmtss-devel' 'ibsim' 'ibus' 'ibus-anthy' 'ibus-anthy-devel' 'ibus-cangjie' 'ibus-chewing' 'ibus-devel' 'ibus-gtk' 'ibus-gtk-32bit' 'ibus-gtk3' 'ibus-gtk3-32bit' 'ibus-hangul' 'ibus-input-pad' 'ibus-kkc' 'ibus-lang' 'ibus-libpinyin' 'ibus-libzhuyin' 'ibus-m17n' 'ibus-mozc' 'ibus-mozc-candidate-window' 'ibus-pinyin' 'ibus-rime' 'ibus-skk' 'ibus-table' 'ibus-table-chinese-array' 'ibus-table-chinese-cangjie' 'ibus-table-chinese-cantonese' 'ibus-table-chinese-easy' 'ibus-table-chinese-erbi' 'ibus-table-chinese-jyutping' 'ibus-table-chinese-quick' 'ibus-table-chinese-scj' 'ibus-table-chinese-stroke5' 'ibus-table-chinese-wu' 'ibus-table-chinese-wubi-haifeng' 'ibus-table-chinese-wubi-jidian' 'ibus-table-chinese-yong' 'ibus-table-cns11643' 'ibus-table-compose' 'ibus-table-devel' 'ibus-table-emoji' 'ibus-table-extraphrase' 'ibus-table-extraphrase-devel' 'ibus-table-hu-old-hungarian-rovas' 'ibus-table-ipa-x-sampa' 'ibus-table-latex' 'ibus-table-mathwriter' 'ibus-table-others' 'ibus-table-rusle' 'ibus-table-rustrad' 'ibus-table-thai' 'ibus-table-translit' 'ibus-table-translit-ua' 'ibus-table-viqr' 'ibus-table-yawerty' 'ibus-typing-booster' 'ibus-unikey' 'ibutils' 'ibutils-devel' 'ibutils-ui' 'icc-examin' 'icc-examin-lang' 'icc-mime-types' 'icc-profiles' 'icc-profiles-all' 'icc-profiles-basiccolor-lstarrgb' 'icc-profiles-basiccolor-printing2009-coat2' 'icc-profiles-basiccolor-printing2009-doc' 'icc-profiles-basiccolor-printing2009-extra' 'icc-profiles-lcms-lab' 'icc-profiles-mini' 'icc-profiles-openicc-rgb' 'icc-profiles-oyranos-extra' 'icc-targets-fogra' 'icc-targets-npes' 'iceWMCP' 'iceWMCP-addons' 'iceauth' 'icecast' 'icecast-doc' 'icecream' 'icecream-clang-wrappers' 'icecream-monitor' 'icedtea-web' 'icedtea-web-javadoc' 'ices' 'icewm' 'icewm-config-upstream' 'icewm-default' 'icewm-lang' 'icewm-lite' 'icewm-theme-branding' 'icewm-theme-yast-installation' 'icewm-themes' 'icinga2' 'icinga2-bin' 'icinga2-common' 'icinga2-doc' 'icinga2-ido-mysql' 'icinga2-ido-pgsql' 'icingacli' 'icingaweb2' 'icingaweb2-common' 'icingaweb2-module-director' 'icingaweb2-vendor-HTMLPurifier' 'icingaweb2-vendor-JShrink' 'icingaweb2-vendor-Parsedown' 'icingaweb2-vendor-dompdf' 'icingaweb2-vendor-lessphp' 'icingaweb2-vendor-zf1' 'icmake' 'icmpinfo' 'icmptunnel' 'icns-utils' 'ico' 'icon-naming-utils' 'icoutils' 'icu' 'icu4j' 'icu4j-charset' 'icu4j-javadoc' 'icu4j-localespi' 'id3lib' 'id3lib-32bit' 'id3lib-devel' 'id3lib-examples' 'id3v2' 'idep' 'ido-devel' 'idutils' 'idutils-lang' 'idzebra' 'idzebra-devel' 'idzebra-doc' 'ifplugd' 'iftop' 'ifuse' 'igerman98-doc' 'ignition' 'ignition-config-transpiler' 'ignition-dracut' 'ignuit' 'iio-sensor-proxy' 'iio-sensor-proxy-doc' 'ikiwiki' 'ikiwiki-w3m' 'ikona' 'ikvm' 'ilbc-devel' 'ilmbase-devel' 'ima-evm-utils-devel' 'ima-inspect' 'imageburner' 'imageburner-lang' 'imagej' 'imagewriter' 'imagination' 'imagination' 'imagination-debuginfo' 'imagination-debugsource' 'imagination-doc' 'imagination-lang' 'imaging' 'imake' 'imap' 'imap-devel' 'imapfilter' 'imb-gnu-mpich-hpc' 'imb-gnu-mvapich2-hpc' 'imb-gnu-openmpi1-hpc' 'imb-gnu-openmpi2-hpc' 'imb-gnu-openmpi3-hpc' 'imb-mpich' 'imb-mvapich2' 'imb-openmpi' 'imb-openmpi2' 'imb-openmpi3' 'imb_2019_3-gnu-mpich-hpc' 'imb_2019_3-gnu-mvapich2-hpc' 'imb_2019_3-gnu-openmpi1-hpc' 'imb_2019_3-gnu-openmpi2-hpc' 'imb_2019_3-gnu-openmpi3-hpc' 'imgen' 'imgp' 'imgp-bash-completion' 'imgp-fish-completion' 'imgp-zsh-completion' 'imgvtopgm' 'imhangul' 'imhangul-32bit' 'iml-devel' 'imlib2' 'imlib2-devel' 'imlib2-filters' 'imlib2-loaders' 'imobiledevice-tools' 'impressive' 'imv' 'imwheel' 'imx-usb-loader' 'incidenceeditor' 'incidenceeditor-devel' 'incidenceeditor-lang' 'include-what-you-use' 'include-what-you-use-tools' 'indent' 'indic-fonts' 'ineffassign' 'infiniband-diags' 'infiniband-diags-devel' 'infiniband-diags-devel-32bit' 'infinipath-psm-devel' 'infinoted' 'influxdb' 'influxdb-devel' 'info' 'info2html' 'info4' 'infos-creator-rpm' 'ini4j' 'ini4j-javadoc' 'initviocons' 'injeqt-devel' 'inkscape' 'inkscape-extensions-dia' 'inkscape-extensions-extra' 'inkscape-extensions-fig' 'inkscape-extensions-gimp' 'inkscape-extensions-skencil' 'inkscape-lang' 'inn' 'inn-devel' 'innoextract' 'innotop' 'inotify-tools' 'inotify-tools-devel' 'inotify-tools-doc' 'input-pad' 'input-pad-devel' 'input-pad-eek' 'input-pad-xtest' 'inspectrum' 'insserv-compat' 'inst-source-utils' 'install-initrd-Kubic' 'install-initrd-MicroOS' 'install-initrd-openSUSE' 'installation-images-Kubic' 'installation-images-MicroOS' 'installation-images-debuginfodeps-MicroOS' 'installation-images-debuginfodeps-openSUSE' 'instsource-susedata' 'int10h-oldschoolpc-fonts' 'intel-SINIT' 'intel-cmt-cat' 'intel-hybrid-driver' 'intel-media-driver' 'intel-vaapi-driver' 'intel-vaapi-driver-32bit' 'intelhex' 'interbench' 'intlfonts' 'intlfonts-arabic-bitmap-fonts' 'intlfonts-asian-bitmap-fonts' 'intlfonts-bdf-fonts' 'intlfonts-chinese-big-bitmap-fonts' 'intlfonts-chinese-bitmap-fonts' 'intlfonts-ethiopic-bitmap-fonts' 'intlfonts-euro-bitmap-fonts' 'intlfonts-japanese-big-bitmap-fonts' 'intlfonts-japanese-bitmap-fonts' 'intlfonts-phonetic-bitmap-fonts' 'intlfonts-ttf-fonts' 'intlfonts-type1-fonts' 'intltool' 'inwee' 'inxi' 'iodbc' 'iodbc-admin' 'iodine' 'iometer' 'ioping' 'iops' 'ior' 'iotop' 'iouyap' 'iozone' 'iozone-doc' 'ipa-ex-gothic-fonts' 'ipa-ex-mincho-fonts' 'ipa-gothic-bold-fonts' 'ipa-gothic-bolditalic-fonts' 'ipa-gothic-fonts' 'ipa-gothic-italic-fonts' 'ipa-mincho-fonts' 'ipa-pgothic-bold-fonts' 'ipa-pgothic-bolditalic-fonts' 'ipa-pgothic-fonts' 'ipa-pgothic-italic-fonts' 'ipa-pmincho-fonts' 'ipa-uigothic-fonts' 'ipadic' 'ipcalc' 'iperf' 'iperf-devel' 'ipmctl' 'ipmctl-devel' 'ipmctl-monitor' 'ipmitool' 'ipmitool-bmc-snmp-proxy' 'ipmiutil' 'ipmiutil-devel' 'ipmiutil-static' 'iprange' 'iproute2' 'iproute2-bash-completion' 'iproxy' 'ipsec-tools' 'ipset' 'ipset-devel' 'iptables' 'iptables-backend-nft' 'iptraf-ng' 'iputils' 'ipv6gen' 'ipv6toolkit' 'ipvsadm' 'ipw-firmware' 'ipxe-bootimgs' 'ipxrip' 'irda' 'irman-common' 'irman-utils' 'irqbalance' 'irrlicht-data' 'irrlicht-devel' 'irssi' 'irssi-devel' 'irssi-otr' 'isapnp' 'isapnp-devel' 'isatapd' 'iscsiuio' 'isight-firmware-tools' 'isl-devel' 'isl-devel-32bit' 'iso-codes' 'iso-codes-devel' 'iso-codes-lang' 'iso-country-flags-png' 'iso_ent' 'isomaster' 'isomaster' 'isomaster-debuginfo' 'isomaster-lang' 'isorelax' 'ispell' 'ispell-american' 'ispell-brazilian' 'ispell-british' 'ispell-bulgarian' 'ispell-catalan' 'ispell-czech' 'ispell-danish' 'ispell-dutch' 'ispell-esperanto' 'ispell-estonian' 'ispell-finnish' 'ispell-french' 'ispell-german' 'ispell-greek' 'ispell-hungarian' 'ispell-italian' 'ispell-naustrian' 'ispell-ngerman' 'ispell-norsk' 'ispell-nswiss' 'ispell-polish' 'ispell-portuguese' 'ispell-russian' 'ispell-slovak' 'ispell-slovene' 'ispell-spanish' 'ispell-swedish' 'issue-generator' 'istgt' 'istio-proxy' 'isync' 'itk' 'itpp-devel' 'itpp-doc' 'itstool' 'iucode-tool' 'iverilog' 'iverilog-devel' 'ivtv' 'ivtv-firmware' 'ivy-local' 'ivykis-devel' 'iw' 'iwatch' 'iwd' 'iwidgets' 'iwpmd' 'iwscanner' 'jack' 'jack-32bit' 'jack-rack' 'jackEQ' 'jack_capture' 'jack_mixer' 'jack_mixer' 'jack_mixer-debuginfo' 'jack_mixer-debugsource' 'jackmixdesk' 'jackmixdesk' 'jackmixdesk-debuginfo' 'jackmixdesk-debugsource' 'jackson-annotations' 'jackson-annotations-javadoc' 'jackson-bom' 'jackson-parent' 'jacktrip' 'jaero' 'jakarta-commons-discovery' 'jakarta-commons-discovery-javadoc' 'jakarta-commons-launcher' 'jakarta-commons-launcher-javadoc' 'jakarta-commons-modeler' 'jakarta-commons-modeler-javadoc' 'jakarta-commons-transaction' 'jakarta-commons-vfs' 'jakarta-commons-vfs-javadoc' 'jakarta-commons-vfs-manual' 'jakarta-poi' 'jakarta-poi-javadoc' 'jakarta-poi-manual' 'jakarta-slide-webdavclient' 'jakarta-slide-webdavclient-javadoc' 'jakarta-slide-webdavclient-repolib' 'jakarta-taglibs-standard' 'jakarta-taglibs-standard-javadoc' 'jameica' 'jameica-devel' 'jameica-javadoc' 'jamin' 'jansi' 'jansi-javadoc' 'jansi-native' 'jansi-native-javadoc' 'jarjar' 'jarjar-javadoc' 'jasper' 'java-11-openjdk' 'java-11-openjdk-accessibility' 'java-11-openjdk-demo' 'java-11-openjdk-devel' 'java-11-openjdk-headless' 'java-11-openjdk-javadoc' 'java-11-openjdk-jmods' 'java-11-openjdk-src' 'java-12-openjdk' 'java-12-openjdk-accessibility' 'java-12-openjdk-demo' 'java-12-openjdk-devel' 'java-12-openjdk-headless' 'java-12-openjdk-javadoc' 'java-12-openjdk-jmods' 'java-12-openjdk-src' 'java-1_8_0-openjdk' 'java-1_8_0-openjdk-accessibility' 'java-1_8_0-openjdk-demo' 'java-1_8_0-openjdk-devel' 'java-1_8_0-openjdk-headless' 'java-1_8_0-openjdk-javadoc' 'java-1_8_0-openjdk-src' 'java-atk-wrapper' 'java-binfmt-misc' 'java-cup' 'java-cup-manual' 'java-libkolabxml1' 'java-mraa' 'javacc' 'javacc-bootstrap' 'javacc-demo' 'javacc-javadoc' 'javacc-manual' 'javacc-maven-plugin' 'javacc-maven-plugin-javadoc' 'javadoc' 'javahelp2' 'javahelp2-javadoc' 'javahelp2-manual' 'javamail' 'javamail-javadoc' 'javapackages-filesystem' 'javapackages-gradle' 'javapackages-ivy' 'javapackages-local' 'javapackages-tools' 'javapoet' 'javapoet-javadoc' 'javassist' 'javassist-demo' 'javassist-javadoc' 'javassist-manual' 'javazic' 'jaxen' 'jaxodraw' 'jaxodraw-javadoc' 'jaxodraw-latex' 'jbig2dec' 'jbig2dec-devel' 'jbig2dec-devel-32bit' 'jbigkit' 'jboss-interceptors-1.2-api' 'jboss-interceptors-1.2-api-javadoc' 'jcifs' 'jcifs-demo' 'jcifs-javadoc' 'jcip-annotations' 'jcip-annotations-javadoc' 'jcl-over-slf4j' 'jcodings' 'jcommon' 'jcommon-javadoc' 'jcommon-test' 'jconvolver' 'jconvolver-examples' 'jcuber' 'jcuber-doc' 'jdepend' 'jdepend-demo' 'jdependency' 'jdependency-javadoc' 'jdo2-api' 'jdo2-api-javadoc' 'jdom' 'jdom2' 'jdom2-javadoc' 'jedit' 'jedit-javadoc' 'jemalloc' 'jemalloc-devel' 'jemmy' 'jemmy-javadoc' 'jeos-firstboot' 'jeos-firstboot-rpiwifi' 'jettison' 'jettison-javadoc' 'jeuclid' 'jeuclid-cli' 'jeuclid-fop' 'jeuclid-mathviewer' 'jfbterm' 'jffi' 'jffi-javadoc' 'jffi-native' 'jflex' 'jflex-bootstrap' 'jflex-doc' 'jformatstring' 'jformatstring-javadoc' 'jfsutils' 'jgmenu' 'jgoodies-forms' 'jgoodies-forms-demo' 'jgoodies-forms-javadoc' 'jgoodies-forms-manual' 'jgoodies-looks' 'jgoodies-looks-demo' 'jgoodies-looks-javadoc' 'jgoodies-looks-manual' 'jgraphx' 'jgroups' 'jgroups-javadoc' 'jgroups-manual' 'jgroups-repolib' 'jhbuild' 'jhbuild-lang' 'jhbuild-recommended-deps' 'jhead' 'jhighlight' 'jhighlight-javadoc' 'jigdo' 'jigit' 'jikes' 'jimtcl' 'jimtcl-devel' 'jing' 'jing-javadoc' 'jisp2' 'jisp2-demo' 'jisp2-javadoc' 'jlatexmath' 'jlatexmath-fop' 'jlatexmath-javadoc' 'jlex' 'jlfgr' 'jline' 'jline-javadoc' 'jline1' 'jline1-javadoc' 'jmdict' 'jmess' 'jmess' 'jmess-debuginfo' 'jmess-debugsource' 'jmock' 'jmock-demo' 'jmock-javadoc' 'jmol' 'jna' 'jna-javadoc' 'jo' 'joda-convert' 'joda-convert-javadoc' 'joda-time' 'joda-time-javadoc' 'joe' 'jogl2' 'john' 'john-wordlists' 'jomolhari-fonts' 'jondo' 'jondofox' 'jp' 'jp2a' 'jpegoptim' 'jpnevulator' 'jq' 'jrosetta' 'jrtplib-devel' 'js' 'js' 'js-debuginfo' 'js-debugsource' 'js-devel' 'jsch' 'jsch-agent-proxy-connector-factory' 'jsch-agent-proxy-core' 'jsch-agent-proxy-javadoc' 'jsch-agent-proxy-jsch' 'jsch-agent-proxy-pageant' 'jsch-agent-proxy-sshagent' 'jsch-agent-proxy-svnkit-trilead-ssh2' 'jsch-agent-proxy-usocket-jna' 'jsch-agent-proxy-usocket-nc' 'jsch-demo' 'jsch-javadoc' 'jshon' 'jsmn-devel' 'json-glib-devel' 'json-glib-lang' 'json-table' 'jsoncpp-devel' 'jsonrpc-glib-devel' 'jsoup' 'jsoup-javadoc' 'jsr-305' 'jsr-305-javadoc' 'jsr-311' 'jsr-311-javadoc' 'jthread-devel' 'jtidy' 'jtidy-javadoc' 'jtidy-scripts' 'judy-devel' 'judy-doc' 'juk' 'juk-lang' 'jul-to-slf4j' 'julia' 'julia-compat' 'julia-compat-debug' 'julia-compat-devel' 'julia-debug' 'julia-devel' 'julia-doc' 'jumpnbump' 'junit' 'junit-javadoc' 'junit-manual' 'junit5' 'junit5-guide' 'junit5-javadoc' 'junitperf' 'junitperf-demo' 'junitperf-javadoc' 'jupyter' 'jupyter-bqplot' 'jupyter-calysto' 'jupyter-doc' 'jupyter-hide_code' 'jupyter-imatlab' 'jupyter-ipydatawidgets' 'jupyter-ipydatawidgets-jupyterlab' 'jupyter-ipykernel' 'jupyter-ipyleaflet' 'jupyter-ipympl' 'jupyter-ipympl-jupyterlab' 'jupyter-ipyparallel' 'jupyter-ipyparallel-doc' 'jupyter-ipyscales' 'jupyter-ipysheet' 'jupyter-ipyvolume' 'jupyter-ipywebrtc' 'jupyter-jupyter-contrib-nbextensions' 'jupyter-jupyter-full-width' 'jupyter-jupyter-require' 'jupyter-jupyter-server' 'jupyter-jupyter-themer' 'jupyter-jupyter-wysiwyg' 'jupyter-jupyter_client' 'jupyter-jupyter_client-doc' 'jupyter-jupyter_cms' 'jupyter-jupyter_console' 'jupyter-jupyter_console-doc' 'jupyter-jupyter_contrib_core' 'jupyter-jupyter_core' 'jupyter-jupyter_core-doc' 'jupyter-jupyter_core-filesystem' 'jupyter-jupyter_dashboards' 'jupyter-jupyter_highlight_selected_word' 'jupyter-jupyter_latex_envs' 'jupyter-jupyter_nbextensions_configurator' 'jupyter-jupyterbgnotify' 'jupyter-jupyterlab' 'jupyter-jupyterlab-filesystem' 'jupyter-jupyterlab-ipyscales' 'jupyter-jupyterlab-latex' 'jupyter-jupyterlab-server' 'jupyter-jupyterlab_github' 'jupyter-jupyterlab_templates' 'jupyter-jupytext' 'jupyter-jupytext-jupyterlab' 'jupyter-lineup-widget' 'jupyter-matlab-kernel' 'jupyter-nbconvert' 'jupyter-nbconvert-doc' 'jupyter-nbconvert-latex' 'jupyter-nbdime' 'jupyter-nbdime-git' 'jupyter-nbdime-hg' 'jupyter-nbdime-jupyterlab' 'jupyter-nbformat' 'jupyter-nbformat-doc' 'jupyter-nbinteract' 'jupyter-nbpresent' 'jupyter-notebook' 'jupyter-notebook-doc' 'jupyter-notebook-filesystem' 'jupyter-notebook-lang' 'jupyter-notebook-latex' 'jupyter-octave-kernel' 'jupyter-plotly' 'jupyter-pythreejs' 'jupyter-pythreejs-jupyterlab' 'jupyter-qgrid' 'jupyter-qtconsole' 'jupyter-qtconsole-doc' 'jupyter-rise' 'jupyter-sidecar-jupyterlab' 'jupyter-vega' 'jupyter-vispy' 'jupyter-voila' 'jupyter-widgetsnbextension' 'jvnet-parent' 'jvyamlb' 'jwt_verify_lib-devel' 'jxrlib' 'jxrlib-devel' 'jython' 'jython-demo' 'jython-javadoc' 'jython-manual' 'jzlib' 'jzlib-demo' 'k3b' 'k3b-devel' 'k3b-lang' 'k3s' 'k3s-hyperkube' 'k4dirstat' 'k4dirstat-lang' 'k9copy' 'k9copy' 'k9copy-debuginfo' 'k9copy-debugsource' 'k9copy-lang' 'kaccounts-integration' 'kaccounts-integration-32bit' 'kaccounts-integration-devel' 'kaccounts-integration-devel-32bit' 'kaccounts-integration-lang' 'kaccounts-providers' 'kaccounts-providers-lang' 'kactivities-stats-devel' 'kactivities-stats-devel-32bit' 'kactivities5-devel' 'kactivities5-devel-32bit' 'kactivities5-imports' 'kactivities5-tools' 'kactivitymanagerd' 'kactivitymanagerd-lang' 'kaddressbook' 'kaddressbook-lang' 'kadu' 'kadu-devel' 'kadu-sound-bns' 'kadu-sound-drums' 'kadu-sound-florkus' 'kadu-sound-michalsrodek' 'kadu-sound-percussion' 'kadu-sound-ultr' 'kaffeine' 'kaffeine-lang' 'kail' 'kajaani-kombat' 'kajaani-kombat-server' 'kajongg' 'kajongg-lang' 'kakasi' 'kakasi-devel' 'kakasi-dict' 'kakoune' 'kalarm' 'kalarm-lang' 'kalarmcal' 'kalarmcal-devel' 'kalarmcal-lang' 'kalgebra' 'kalgebra-lang' 'kalgebra-mobile' 'kalzium' 'kalzium-devel' 'kalzium-lang' 'kamera-lang' 'kamerka' 'kamerka-lang' 'kamoso' 'kamoso-lang' 'kanagram' 'kanagram-lang' 'kanjipad' 'kapidox' 'kapman' 'kapman-lang' 'kapptemplate' 'kapptemplate-lang' 'karchive-devel' 'karchive-devel-32bit' 'kasumi' 'katacontainers' 'katacontainers-image-initrd' 'kate' 'kate-lang' 'kate-plugins' 'kate4-parts' 'katomic' 'katomic-lang' 'kauth-devel' 'kauth-devel-32bit' 'kawaii-player' 'kbackup' 'kbackup-lang' 'kbd' 'kbd-legacy' 'kbdsniffd' 'kbfs' 'kbfs-git' 'kbfs-tool' 'kbibtex' 'kbibtex-devel' 'kbibtex-lang' 'kblackbox' 'kblackbox-lang' 'kblocks' 'kblocks-lang' 'kblog-devel' 'kblog-lang' 'kbookmarks-devel' 'kbookmarks-devel-32bit' 'kbounce' 'kbounce-lang' 'kbreakout' 'kbreakout-lang' 'kbruch' 'kbruch-lang' 'kbuild' 'kcachegrind' 'kcachegrind-lang' 'kcalc' 'kcalc-lang' 'kcalcore-devel' 'kcalutils' 'kcalutils-devel' 'kcalutils-lang' 'kcharselect' 'kcharselect-lang' 'kchmviewer' 'kcm_sddm' 'kcm_sddm-lang' 'kcm_tablet' 'kcm_tablet-lang' 'kcmutils-devel' 'kcmutils-devel-32bit' 'kcodecs-devel' 'kcodecs-devel-32bit' 'kcolorchooser' 'kcolorchooser-lang' 'kcompletion-devel' 'kcompletion-devel-32bit' 'kconf_update5' 'kconfig-devel' 'kconfig-devel-32bit' 'kconfigwidgets-devel' 'kconfigwidgets-devel-32bit' 'kcontacts-devel' 'kcontacts-devel-32bit' 'kcontacts-lang' 'kcoreaddons' 'kcoreaddons-devel' 'kcoreaddons-devel-32bit' 'kcoreaddons-lang' 'kcov' 'kcrash-devel' 'kcrash-devel-32bit' 'kcron' 'kcron-lang' 'kdav' 'kdav-devel' 'kdav-lang' 'kdb-devel' 'kdb-lang' 'kdb-mysql-driver' 'kdb-postgresql-driver' 'kdb-sqlite3-driver' 'kdbg' 'kdbg-lang' 'kdbusaddons-devel' 'kdbusaddons-devel-32bit' 'kdbusaddons-tools' 'kde' 'kde-cli-tools5' 'kde-cli-tools5-lang' 'kde-gtk-config5' 'kde-gtk-config5-gtk2' 'kde-gtk-config5-gtk3' 'kde-gtk-config5-lang' 'kde-l10n-devel' 'kde-oxygen-fonts' 'kde-print-manager' 'kde-print-manager-lang' 'kde-user-manager' 'kde-user-manager-lang' 'kde4-filesystem' 'kde4-kgreeter-plugins' 'kde_pim' 'kde_plasma' 'kdebase4-runtime' 'kdebase4-runtime-devel' 'kdebase4-workspace' 'kdebase4-workspace-addons' 'kdebase4-workspace-devel' 'kdebase4-workspace-liboxygenstyle' 'kdebase4-workspace-liboxygenstyle-32bit' 'kdebase4-workspace-libs' 'kdebase4-workspace-libs-32bit' 'kdebugsettings' 'kdebugsettings-lang' 'kdeclarative-components' 'kdeclarative-components-32bit' 'kdeclarative-devel' 'kdeclarative-devel-32bit' 'kdeclarative-tools' 'kdeconnect-kde' 'kdeconnect-kde-lang' 'kded' 'kded-devel' 'kded-lang' 'kdeedu-data' 'kdegames-carddecks-default' 'kdegames-carddecks-other' 'kdegraphics-thumbnailers' 'kdelibs4' 'kdelibs4-branding-upstream' 'kdelibs4-core' 'kdelibs4-doc' 'kdelibs4support' 'kdelibs4support-32bit' 'kdelibs4support-devel' 'kdelibs4support-devel-32bit' 'kdelibs4support-lang' 'kdenetwork-filesharing' 'kdenetwork-filesharing-lang' 'kdenlive' 'kdenlive-lang' 'kdepim-addons' 'kdepim-addons-lang' 'kdepim-apps-libs' 'kdepim-apps-libs-devel' 'kdepim-apps-libs-lang' 'kdepim-runtime' 'kdepim-runtime-lang' 'kdesdk-scripts' 'kdesdk-scripts-kf5-porting' 'kdesdk-scripts-lang' 'kdesdk-thumbnailers' 'kdesdk-thumbnailers-lang' 'kdesignerplugin' 'kdesignerplugin-devel' 'kdesignerplugin-lang' 'kdesu-devel' 'kdesu-devel-32bit' 'kdesvn' 'kdevelop5' 'kdevelop5-lang' 'kdevelop5-pg-qt' 'kdevelop5-plugin-php' 'kdevelop5-plugin-php-devel' 'kdevelop5-plugin-php-lang' 'kdevelop5-plugin-python3' 'kdevelop5-plugin-python3-lang' 'kdevplatform' 'kdevplatform-devel' 'kdevplatform-lang' 'kdewebkit-devel' 'kdewebkit-devel-32bit' 'kdf' 'kdf-lang' 'kdgantt2' 'kdgantt2-devel' 'kdiagram-devel' 'kdialog' 'kdialog-lang' 'kdiamond' 'kdiamond-lang' 'kdiff3' 'kdiff3-lang' 'kdm' 'kdm-branding-upstream' 'kdnssd' 'kdnssd-framework-devel' 'kdnssd-framework-devel-32bit' 'kdnssd-lang' 'kdoctools' 'kdoctools-devel' 'kdoctools-devel-32bit' 'kdoctools-lang' 'kdstatemachineeditor-devel' 'kdump' 'kdumpid' 'kdvdcreator' 'kdvdcreator' 'kdvdcreator-debuginfo' 'kdvdcreator-debugsource' 'keditbookmarks' 'keditbookmarks-lang' 'keepalived' 'keepass' 'keepassx' 'keepassxc' 'keepassxc-lang' 'kelbt' 'kemoticons-devel' 'kemoticons-devel-32bit' 'kernel-coverage' 'kernel-debug' 'kernel-debug-devel' 'kernel-default' 'kernel-default-base' 'kernel-default-base-rebuild' 'kernel-default-devel' 'kernel-devel' 'kernel-docs' 'kernel-docs-html' 'kernel-firmware' 'kernel-firmware-all' 'kernel-firmware-amdgpu' 'kernel-firmware-ath10k' 'kernel-firmware-atheros' 'kernel-firmware-bluetooth' 'kernel-firmware-bnx2' 'kernel-firmware-brcm' 'kernel-firmware-chelsio' 'kernel-firmware-dpaa2' 'kernel-firmware-i915' 'kernel-firmware-intel' 'kernel-firmware-iwlwifi' 'kernel-firmware-liquidio' 'kernel-firmware-marvell' 'kernel-firmware-media' 'kernel-firmware-mediatek' 'kernel-firmware-mellanox' 'kernel-firmware-mwifiex' 'kernel-firmware-network' 'kernel-firmware-nfp' 'kernel-firmware-nvidia' 'kernel-firmware-platform' 'kernel-firmware-qlogic' 'kernel-firmware-radeon' 'kernel-firmware-realtek' 'kernel-firmware-serial' 'kernel-firmware-sound' 'kernel-firmware-ti' 'kernel-firmware-ueagle' 'kernel-firmware-usb-network' 'kernel-kvmsmall' 'kernel-kvmsmall-devel' 'kernel-macros' 'kernel-obs-build' 'kernel-obs-qa' 'kernel-pae' 'kernel-pae-devel' 'kernel-source' 'kernel-source-vanilla' 'kernel-syms' 'kernel-vanilla' 'kernel-vanilla-devel' 'ketchup' 'kexec-tools' 'kexi' 'kexi-lang' 'kexis' 'kexis' 'kexis-debuginfo' 'kexis-debugsource' 'keybase-client' 'keybinder-3.0-devel' 'keybinder-devel' 'keybinder-lua' 'keychain' 'keyutils' 'keyutils-devel' 'keyutils-devel-32bit' 'kf5-filesystem' 'kf5-kcm-fcitx' 'kf5-kcm-fcitx-icons' 'kf5-mediainfo' 'kf5-pacpl-plugins' 'kfilemetadata5' 'kfilemetadata5-32bit' 'kfilemetadata5-devel' 'kfilemetadata5-lang' 'kfind' 'kfind-lang' 'kfloppy' 'kfloppy-lang' 'kfourinline' 'kfourinline-lang' 'kgamma5' 'kgamma5-lang' 'kgeography' 'kgeography-lang' 'kget' 'kget-lang' 'kglobalaccel-devel' 'kglobalaccel-devel-32bit' 'kglobalaccel5' 'kgoldrunner' 'kgoldrunner-lang' 'kgpg' 'kgpg-lang' 'kguiaddons-devel' 'kguiaddons-devel-32bit' 'khangman' 'khangman-lang' 'khelpcenter5' 'khelpcenter5-lang' 'khmeros-fonts' 'kholidays' 'kholidays-devel' 'khotkeys5' 'khotkeys5-devel' 'khotkeys5-lang' 'khtml-devel' 'khtml-devel-32bit' 'khunphan' 'ki18n-devel' 'ki18n-devel-32bit' 'kicad' 'kicad-doc' 'kicad-doc-ca' 'kicad-doc-de' 'kicad-doc-en' 'kicad-doc-es' 'kicad-doc-fr' 'kicad-doc-id' 'kicad-doc-it' 'kicad-doc-ja' 'kicad-doc-pdf-ca' 'kicad-doc-pdf-de' 'kicad-doc-pdf-en' 'kicad-doc-pdf-es' 'kicad-doc-pdf-fr' 'kicad-doc-pdf-id' 'kicad-doc-pdf-it' 'kicad-doc-pdf-ja' 'kicad-doc-pdf-ru' 'kicad-doc-pdf-zh' 'kicad-doc-pl' 'kicad-doc-ru' 'kicad-doc-zh' 'kicad-footprints' 'kicad-lang-bg' 'kicad-lang-ca' 'kicad-lang-cs' 'kicad-lang-de' 'kicad-lang-el' 'kicad-lang-en' 'kicad-lang-es' 'kicad-lang-fi' 'kicad-lang-fr' 'kicad-lang-hu' 'kicad-lang-it' 'kicad-lang-ja' 'kicad-lang-ko' 'kicad-lang-lt' 'kicad-lang-nl' 'kicad-lang-pl' 'kicad-lang-pt' 'kicad-lang-ru' 'kicad-lang-sk' 'kicad-lang-sl' 'kicad-lang-sv' 'kicad-lang-zh_CN' 'kicad-lang-zh_TW' 'kicad-packages3D' 'kicad-symbols' 'kicad-templates' 'kiconthemes-devel' 'kiconthemes-devel-32bit' 'kid3' 'kid3-cli' 'kid3-core' 'kid3-core-lang' 'kid3-doc' 'kid3-qt' 'kid3-qt-doc' 'kidentitymanagement-devel' 'kidentitymanagement-lang' 'kidletime-devel' 'kidletime-devel-32bit' 'kig' 'kig-lang' 'kigo' 'kigo-lang' 'kile' 'kile-lang' 'killbots' 'killbots-lang' 'killerd' 'killswitch-applet' 'kim' 'kim' 'kim-api' 'kim-api-devel' 'kim-api-examples' 'kimageformats' 'kimageformats-32bit' 'kimageformats-eps' 'kimagemapeditor' 'kimagemapeditor-lang' 'kimap-devel' 'kimap-lang' 'kinfocenter5' 'kinfocenter5-lang' 'kinit' 'kinit-32bit' 'kinit-devel' 'kinit-lang' 'kinput2' 'kio' 'kio-32bit' 'kio-core' 'kio-core-32bit' 'kio-devel' 'kio-devel-32bit' 'kio-extras5' 'kio-extras5-lang' 'kio-gdrive' 'kio-gdrive-lang' 'kio-lang' 'kio-stash' 'kio-stash-lang' 'kio_audiocd' 'kio_audiocd-devel' 'kio_audiocd-lang' 'kio_iso' 'kio_kamera' 'kio_perldoc' 'kio_perldoc-lang' 'kipi-plugins' 'kipi-plugins-lang' 'kirigami' 'kirigami-devel' 'kirigami-gallery' 'kirigami-gallery-lang' 'kirigami-lang' 'kirigami2' 'kirigami2-devel' 'kirigami2-lang' 'kiriki' 'kiriki-lang' 'kismet' 'kitemmodels-devel' 'kitemmodels-devel-32bit' 'kitemviews-devel' 'kitemviews-devel-32bit' 'kiten' 'kiten-devel' 'kiten-lang' 'kitinerary' 'kitinerary-devel' 'kitty' 'kiwi-boot-descriptions' 'kiwi-boot-requires' 'kiwi-filesystem-requires' 'kiwi-image-docker-requires' 'kiwi-image-iso-requires' 'kiwi-image-oem-requires' 'kiwi-image-pxe-requires' 'kiwi-image-tbz-requires' 'kiwi-image-vmx-requires' 'kiwi-man-pages' 'kiwi-pxeboot' 'kiwi-tools' 'kjobwidgets-devel' 'kjobwidgets-devel-32bit' 'kjots' 'kjots-lang' 'kjs-devel' 'kjs-devel-32bit' 'kjs-devel-lang' 'kjsembed-devel' 'kjsembed-devel-32bit' 'kjumpingcube' 'kjumpingcube-lang' 'kkc-data' 'klatexformula' 'klatexformula-apidoc' 'klavaro' 'kldap' 'kldap-devel' 'kldap-lang' 'klee' 'klee-uclibc-devel-static' 'kleopatra' 'kleopatra-lang' 'klettres' 'klettres-lang' 'klfbackend-devel' 'klftools-devel' 'klick' 'klick' 'klick-debuginfo' 'klick-debugsource' 'klickety' 'klickety-lang' 'klines' 'klines-lang' 'klogd' 'kmag' 'kmag-lang' 'kmahjongg' 'kmahjongg-lang' 'kmail' 'kmail-account-wizard' 'kmail-account-wizard-lang' 'kmail-application-icons' 'kmail-lang' 'kmailtransport' 'kmailtransport-devel' 'kmailtransport-lang' 'kmarkdownwebview' 'kmarkdownwebview-lang' 'kmbox-devel' 'kmediaplayer-devel' 'kmediaplayer-devel-32bit' 'kmenuedit5' 'kmenuedit5-lang' 'kmime-devel' 'kmime-lang' 'kmines' 'kmines-lang' 'kmix' 'kmix-lang' 'kmod' 'kmod-bash-completion' 'kmod-compat' 'kmousetool' 'kmousetool-lang' 'kmouth' 'kmouth-lang' 'kmozillahelper' 'kmplot' 'kmplot-lang' 'kmscon' 'kmscube' 'kmymoney' 'kmymoney-devel' 'kmymoney-lang' 'knavalbattle' 'knavalbattle-lang' 'knemo' 'knemo-lang' 'knetwalk' 'knetwalk-lang' 'knewstuff' 'knewstuff-core-devel' 'knewstuff-devel' 'knewstuff-devel-32bit' 'knewstuff-imports' 'knewstuff-quick-devel' 'knights' 'knights-lang' 'knock' 'knockd' 'knot' 'knotes' 'knotes-lang' 'knotifications-devel' 'knotifications-devel-32bit' 'knotifyconfig-devel' 'knotifyconfig-devel-32bit' 'kochmorse' 'kodi' 'kodi' 'kodi-debuginfo' 'kodi-debugsource' 'kodi-devel' 'kodi.binary-addons' 'kodi.binary-addons' 'kodi.binary-addons-audiodecoder.2sf' 'kodi.binary-addons-audiodecoder.2sf-debuginfo' 'kodi.binary-addons-audiodecoder.asap' 'kodi.binary-addons-audiodecoder.asap-debuginfo' 'kodi.binary-addons-audiodecoder.fluidsynth' 'kodi.binary-addons-audiodecoder.fluidsynth-debuginfo' 'kodi.binary-addons-audiodecoder.gme' 'kodi.binary-addons-audiodecoder.gme-debuginfo' 'kodi.binary-addons-audiodecoder.gsf' 'kodi.binary-addons-audiodecoder.gsf-debuginfo' 'kodi.binary-addons-audiodecoder.modplug' 'kodi.binary-addons-audiodecoder.modplug-debuginfo' 'kodi.binary-addons-audiodecoder.nosefart' 'kodi.binary-addons-audiodecoder.nosefart-debuginfo' 'kodi.binary-addons-audiodecoder.organya' 'kodi.binary-addons-audiodecoder.organya-debuginfo' 'kodi.binary-addons-audiodecoder.qsf' 'kodi.binary-addons-audiodecoder.qsf-debuginfo' 'kodi.binary-addons-audiodecoder.snesapu' 'kodi.binary-addons-audiodecoder.snesapu-debuginfo' 'kodi.binary-addons-audiodecoder.ssf' 'kodi.binary-addons-audiodecoder.ssf-debuginfo' 'kodi.binary-addons-audiodecoder.stsound' 'kodi.binary-addons-audiodecoder.stsound-debuginfo' 'kodi.binary-addons-audiodecoder.timidity' 'kodi.binary-addons-audiodecoder.timidity-debuginfo' 'kodi.binary-addons-audiodecoder.upse' 'kodi.binary-addons-audiodecoder.upse-debuginfo' 'kodi.binary-addons-audiodecoder.usf' 'kodi.binary-addons-audiodecoder.usf-debuginfo' 'kodi.binary-addons-audiodecoder.vgmstream' 'kodi.binary-addons-audiodecoder.vgmstream-debuginfo' 'kodi.binary-addons-audiodecoder.wsr' 'kodi.binary-addons-audiodecoder.wsr-debuginfo' 'kodi.binary-addons-audioencoder.flac' 'kodi.binary-addons-audioencoder.flac-debuginfo' 'kodi.binary-addons-audioencoder.lame' 'kodi.binary-addons-audioencoder.lame-debuginfo' 'kodi.binary-addons-audioencoder.vorbis' 'kodi.binary-addons-audioencoder.vorbis-debuginfo' 'kodi.binary-addons-audioencoder.wav' 'kodi.binary-addons-audioencoder.wav-debuginfo' 'kodi.binary-addons-debuginfo' 'kodi.binary-addons-debugsource' 'kodi.binary-addons-imagedecoder.mpo' 'kodi.binary-addons-imagedecoder.mpo-debuginfo' 'kodi.binary-addons-imagedecoder.raw' 'kodi.binary-addons-imagedecoder.raw-debuginfo' 'kodi.binary-addons-inputstream.adaptive' 'kodi.binary-addons-inputstream.adaptive-debuginfo' 'kodi.binary-addons-inputstream.rtmp' 'kodi.binary-addons-inputstream.rtmp-debuginfo' 'kodi.binary-addons-peripheral.xarcade' 'kodi.binary-addons-peripheral.xarcade-debuginfo' 'kodi.binary-addons-pvr.argustv' 'kodi.binary-addons-pvr.argustv-debuginfo' 'kodi.binary-addons-pvr.demo' 'kodi.binary-addons-pvr.demo-debuginfo' 'kodi.binary-addons-pvr.dvblink' 'kodi.binary-addons-pvr.dvblink-debuginfo' 'kodi.binary-addons-pvr.dvbviewer' 'kodi.binary-addons-pvr.dvbviewer-debuginfo' 'kodi.binary-addons-pvr.filmon' 'kodi.binary-addons-pvr.filmon-debuginfo' 'kodi.binary-addons-pvr.hdhomerun' 'kodi.binary-addons-pvr.hdhomerun-debuginfo' 'kodi.binary-addons-pvr.hts' 'kodi.binary-addons-pvr.hts-debuginfo' 'kodi.binary-addons-pvr.iptvsimple' 'kodi.binary-addons-pvr.iptvsimple-debuginfo' 'kodi.binary-addons-pvr.mediaportal.tvserver' 'kodi.binary-addons-pvr.mediaportal.tvserver-debuginfo' 'kodi.binary-addons-pvr.mythtv' 'kodi.binary-addons-pvr.mythtv-debuginfo' 'kodi.binary-addons-pvr.nextpvr' 'kodi.binary-addons-pvr.nextpvr-debuginfo' 'kodi.binary-addons-pvr.njoy' 'kodi.binary-addons-pvr.njoy-debuginfo' 'kodi.binary-addons-pvr.octonet' 'kodi.binary-addons-pvr.octonet-debuginfo' 'kodi.binary-addons-pvr.pctv' 'kodi.binary-addons-pvr.pctv-debuginfo' 'kodi.binary-addons-pvr.sledovanitv.cz' 'kodi.binary-addons-pvr.sledovanitv.cz-debuginfo' 'kodi.binary-addons-pvr.stalker' 'kodi.binary-addons-pvr.stalker-debuginfo' 'kodi.binary-addons-pvr.teleboy' 'kodi.binary-addons-pvr.teleboy-debuginfo' 'kodi.binary-addons-pvr.vbox' 'kodi.binary-addons-pvr.vbox-debuginfo' 'kodi.binary-addons-pvr.vdr.vnsi' 'kodi.binary-addons-pvr.vdr.vnsi-debuginfo' 'kodi.binary-addons-pvr.vuplus' 'kodi.binary-addons-pvr.vuplus-debuginfo' 'kodi.binary-addons-pvr.wmc' 'kodi.binary-addons-pvr.wmc-debuginfo' 'kodi.binary-addons-pvr.zattoo' 'kodi.binary-addons-pvr.zattoo-debuginfo' 'kodi.binary-addons-screensaver.asteroids' 'kodi.binary-addons-screensaver.asteroids-debuginfo' 'kodi.binary-addons-screensaver.asterwave' 'kodi.binary-addons-screensaver.asterwave-debuginfo' 'kodi.binary-addons-screensaver.biogenesis' 'kodi.binary-addons-screensaver.biogenesis-debuginfo' 'kodi.binary-addons-screensaver.cpblobs' 'kodi.binary-addons-screensaver.cpblobs-debuginfo' 'kodi.binary-addons-screensaver.greynetic' 'kodi.binary-addons-screensaver.greynetic-debuginfo' 'kodi.binary-addons-screensaver.matrixtrails' 'kodi.binary-addons-screensaver.matrixtrails-debuginfo' 'kodi.binary-addons-screensaver.pingpong' 'kodi.binary-addons-screensaver.pingpong-debuginfo' 'kodi.binary-addons-screensaver.pyro' 'kodi.binary-addons-screensaver.pyro-debuginfo' 'kodi.binary-addons-screensaver.stars' 'kodi.binary-addons-screensaver.stars-debuginfo' 'kodi.binary-addons-vfs.libarchive' 'kodi.binary-addons-vfs.libarchive-debuginfo' 'kodi.binary-addons-vfs.nfs' 'kodi.binary-addons-vfs.nfs-debuginfo' 'kodi.binary-addons-vfs.rar' 'kodi.binary-addons-vfs.rar-debuginfo' 'kodi.binary-addons-vfs.sacd' 'kodi.binary-addons-vfs.sacd-debuginfo' 'kodi.binary-addons-vfs.sftp' 'kodi.binary-addons-vfs.sftp-debuginfo' 'kodi.binary-addons-visualization.fishbmc' 'kodi.binary-addons-visualization.fishbmc-debuginfo' 'kodi.binary-addons-visualization.goom' 'kodi.binary-addons-visualization.goom-debuginfo' 'kodi.binary-addons-visualization.shadertoy' 'kodi.binary-addons-visualization.shadertoy-debuginfo' 'kodi.binary-addons-visualization.spectrum' 'kodi.binary-addons-visualization.spectrum-debuginfo' 'kodi.binary-addons-visualization.waveform' 'kodi.binary-addons-visualization.waveform-debuginfo' 'kohsuke-pom' 'kolf' 'kolf-lang' 'kollision' 'kollision-lang' 'kolor-manager' 'kolourpaint' 'kolourpaint-lang' 'kompare' 'kompare-devel' 'kompare-lang' 'konkretcmpi-devel' 'konkretcmpi-python' 'konqueror' 'konqueror-devel' 'konqueror-lang' 'konqueror-plugins' 'konquest' 'konquest-lang' 'konsole' 'konsole-part' 'konsole-part-lang' 'konsole4-part' 'kontact' 'kontact-lang' 'kontactinterface-devel' 'kontactinterface-lang' 'konversation' 'konversation-lang' 'kopano-archiver' 'kopano-backup' 'kopano-bash-completion' 'kopano-client' 'kopano-common' 'kopano-contacts' 'kopano-dagent' 'kopano-devel' 'kopano-gateway' 'kopano-ical' 'kopano-lang' 'kopano-migration-imap' 'kopano-migration-pst' 'kopano-monitor' 'kopano-presence' 'kopano-python-utils' 'kopano-search' 'kopano-server' 'kopano-server-packages' 'kopano-spamd' 'kopano-spooler' 'kopano-statsd' 'kopano-utils' 'kopano-webapp' 'kopano-webapp-contactfax' 'kopano-webapp-folderwidgets' 'kopano-webapp-gmaps' 'kopano-webapp-lang' 'kopano-webapp-pimfolder' 'kopano-webapp-quickitems' 'kopano-webapp-titlecounter' 'kopano-webapp-webappmanual' 'kopano-webapp-zdeveloper' 'kopete' 'kopete-devel' 'kopete-lang' 'korganizer' 'korganizer-lang' 'kpackage' 'kpackage-32bit' 'kpackage-devel' 'kpackage-devel-32bit' 'kpackage-lang' 'kpartloader' 'kpartloader-lang' 'kparts-devel' 'kparts-devel-32bit' 'kpartsplugin' 'kpartsplugin' 'kpartsplugin-debuginfo' 'kpartsplugin-debugsource' 'kpartx' 'kpat' 'kpat-lang' 'kpeople5' 'kpeople5-32bit' 'kpeople5-devel' 'kpeople5-devel-32bit' 'kpeople5-lang' 'kphotoalbum' 'kphotoalbum-lang' 'kpimtextedit' 'kpimtextedit-devel' 'kpimtextedit-lang' 'kpkpass' 'kpkpass-devel' 'kplayer' 'kplayer' 'kplayer-debuginfo' 'kplayer-debugsource' 'kplayer-doc' 'kplayer-lang' 'kplotting-devel' 'kplotting-devel-32bit' 'kpmcore' 'kpmcore-devel' 'kpmcore-lang' 'kproperty' 'kproperty-devel' 'kproperty-lang' 'kpty-devel' 'kpty-devel-32bit' 'kqtquickcharts' 'kraft' 'krandr' 'krb5' 'krb5-32bit' 'krb5-auth-dialog' 'krb5-auth-dialog-lang' 'krb5-client' 'krb5-devel' 'krb5-devel-32bit' 'krb5-plugin-kdb-ldap' 'krb5-plugin-preauth-otp' 'krb5-plugin-preauth-pkinit' 'krb5-plugin-preauth-spake' 'krb5-server' 'krdc' 'krdc-devel' 'krdc-lang' 'krename' 'kreport' 'kreport-devel' 'kreport-lang' 'kreversi' 'kreversi-lang' 'krfb' 'krfb-lang' 'krita' 'krita-devel' 'krita-lang' 'kronometer' 'kross' 'kross-32bit' 'kross-devel' 'kross-devel-32bit' 'kross-lang' 'kross-python' 'kruler' 'kruler-lang' 'krunner-devel' 'krunner-devel-32bit' 'krusader' 'krusader-doc' 'kscd' 'kscreen5' 'kscreen5-lang' 'kscreen5-plasmoid' 'kscreenlocker' 'kscreenlocker-devel' 'kscreenlocker-lang' 'kservice' 'kservice-32bit' 'kservice-devel' 'kservice-devel-32bit' 'kservice-lang' 'ksh' 'ksh-devel' 'kshisen' 'kshisen-lang' 'kshutdown' 'ksirk' 'ksirk-lang' 'ksmtp' 'ksmtp-devel' 'ksmtp-lang' 'ksnakeduel' 'ksnakeduel-lang' 'kspaceduel' 'kspaceduel-lang' 'ksquares' 'ksquares-lang' 'ksshaskpass5' 'ksshaskpass5-lang' 'kssl' 'kst' 'kst-devel' 'kstars' 'kstars-lang' 'ksudoku' 'ksudoku-lang' 'ksysguard5' 'ksysguard5-lang' 'ksystemlog' 'ksystemlog-lang' 'kteatime' 'kteatime-lang' 'ktexteditor' 'ktexteditor-32bit' 'ktexteditor-devel' 'ktexteditor-devel-32bit' 'ktexteditor-lang' 'ktextwidgets-devel' 'ktextwidgets-devel-32bit' 'ktimer' 'ktimer-lang' 'ktnef' 'ktnef-devel' 'ktnef-lang' 'ktoblzcheck' 'ktoblzcheck-devel' 'ktorrent' 'ktorrent-lang' 'ktouch' 'ktouch-lang' 'ktp-accounts-kcm' 'ktp-accounts-kcm-lang' 'ktp-approver' 'ktp-approver-lang' 'ktp-auth-handler' 'ktp-auth-handler-lang' 'ktp-common-internals' 'ktp-common-internals-devel' 'ktp-common-internals-lang' 'ktp-contact-list' 'ktp-contact-list-lang' 'ktp-contact-runner' 'ktp-contact-runner-lang' 'ktp-desktop-applets' 'ktp-desktop-applets-lang' 'ktp-filetransfer-handler' 'ktp-filetransfer-handler-lang' 'ktp-icons' 'ktp-kded-module' 'ktp-kded-module-lang' 'ktp-send-file' 'ktp-send-file-lang' 'ktp-text-ui' 'ktp-text-ui-lang' 'ktuberling' 'ktuberling-lang' 'kturtle' 'kturtle-lang' 'kubeadm' 'kubectl' 'kubectl-who-can' 'kubernetes-apiserver' 'kubernetes-client' 'kubernetes-controller-manager' 'kubernetes-dashboard' 'kubernetes-dns' 'kubernetes-extra' 'kubernetes-kubeadm' 'kubernetes-kubelet' 'kubernetes-master' 'kubernetes-node' 'kubernetes-node-image-pause' 'kubernetes-pause' 'kubernetes-proxy' 'kubernetes-salt' 'kubernetes-scheduler' 'kubernetes_utilities' 'kubic-dex-branding' 'kubic-locale-archive' 'kubic-pause' 'kubic_admin' 'kubic_loadbalancer' 'kubic_worker' 'kubicctl' 'kubicd' 'kubrick' 'kubrick-lang' 'kuiviewer' 'kuiviewer-lang' 'kunitconversion-devel' 'kunitconversion-devel-32bit' 'kup-client' 'kup-server' 'kupfer' 'kured' 'kured-k8s-yaml' 'kurso-de-esperanto' 'kvazaar' 'kvazaar' 'kvazaar-debuginfo' 'kvazaar-debugsource' 'kvirc' 'kvm_server' 'kvm_stat' 'kvm_tools' 'kwallet-devel' 'kwallet-devel-32bit' 'kwallet-tools' 'kwallet-tools-lang' 'kwalletd5' 'kwalletd5-lang' 'kwalletmanager5' 'kwalletmanager5-lang' 'kwave' 'kwave-lang' 'kwayland' 'kwayland-32bit' 'kwayland-devel' 'kwayland-devel-32bit' 'kwayland-integration' 'kwebkitpart' 'kwebkitpart-lang' 'kwidgetsaddons-devel' 'kwidgetsaddons-devel-32bit' 'kwikdisk' 'kwin' 'kwin-lowlatency' 'kwin-lowlatency' 'kwin-lowlatency-devel' 'kwin5' 'kwin5-devel' 'kwin5-lang' 'kwindowsystem-devel' 'kwindowsystem-devel-32bit' 'kwordquiz' 'kwordquiz-lang' 'kwrite' 'kwrited5' 'kxml' 'kxml-javadoc' 'kxmlgui-devel' 'kxmlgui-devel-32bit' 'kxmlrpcclient5-devel' 'kxmlrpcclient5-devel-32bit' 'kye' 'kye-data' 'kyotocabinet' 'l-smash' 'l-smash' 'l-smash-debuginfo' 'l-smash-debugsource' 'l-smash-devel' 'labplot-kf5' 'labplot-kf5-lang' 'ladspa' 'ladspa-32bit' 'ladspa-AMB' 'ladspa-FIL' 'ladspa-LEET-plugin' 'ladspa-LEET-plugin' 'ladspa-LEET-plugin-debuginfo' 'ladspa-MCP' 'ladspa-REV' 'ladspa-VCO' 'ladspa-WAH' 'ladspa-WAH' 'ladspa-WAH-debuginfo' 'ladspa-WAH-debugsource' 'ladspa-alienwah' 'ladspa-aweight' 'ladspa-aweight' 'ladspa-aweight-debuginfo' 'ladspa-aweight-debugsource' 'ladspa-blepvco' 'ladspa-blop' 'ladspa-bs2b' 'ladspa-bs2b' 'ladspa-bs2b-debuginfo' 'ladspa-bs2b-debugsource' 'ladspa-caps' 'ladspa-clipper' 'ladspa-clipper' 'ladspa-cmt' 'ladspa-devel' 'ladspa-foo-plugins' 'ladspa-foo-plugins' 'ladspa-foo-plugins-debuginfo' 'ladspa-foo-plugins-debugsource' 'ladspa-guitarix' 'ladspa-invada-studio-plugins' 'ladspa-invada-studio-plugins' 'ladspa-lemux' 'ladspa-lemux' 'ladspa-lemux-debuginfo' 'ladspa-lemux-debugsource' 'ladspa-lgv-plugins' 'ladspa-lgv-plugins' 'ladspa-lgv-plugins-debuginfo' 'ladspa-lgv-plugins-debugsource' 'ladspa-matched' 'ladspa-njl' 'ladspa-njl' 'ladspa-njl-debuginfo' 'ladspa-njl-debugsource' 'ladspa-omins' 'ladspa-omins' 'ladspa-omins-debuginfo' 'ladspa-omins-debugsource' 'ladspa-preamp' 'ladspa-pvoc' 'ladspa-sooperlooper' 'ladspa-super-60' 'ladspa-swh-plugins' 'ladspa-tap-plugins' 'ladspa-trigger' 'ladspa-trigger' 'ladspa-vcf' 'ladspa-vlevel' 'ladspa-vocoder' 'ladspa-wasp' 'ladspa-wasp' 'ladspa-wasp-debuginfo' 'ladspa-wasp-debugsource' 'ladspa-wubflip' 'ladspa-wubflip' 'laf-plugin' 'laf-plugin-javadoc' 'lame' 'lame-doc' 'lame-mp3rtp' 'lammps' 'lammps-data' 'lammps-devel' 'lamp_server' 'lapack-devel' 'lapack-devel-32bit' 'lapack-devel-static' 'lapack-man' 'lapacke-devel' 'lapacke-devel-32bit' 'lapacke-devel-static' 'lapdog' 'laptop' 'laptop-mode-tools' 'laptop-mode-tools-gui' 'lasem' 'lasem-devel' 'lash' 'lash' 'lash-debuginfo' 'lash-debugsource' 'lash-devel' 'lastpass-cli' 'laszip-devel' 'latencytop' 'latex2html' 'latex2html-doc' 'latex2html-pngicons' 'latex2rtf' 'lato-fonts' 'latrace' 'latte-dock' 'latte-dock-lang' 'lazarus' 'lbdb' 'lbzip2' 'lcab' 'lcdf-typetools' 'lcms2' 'lcov' 'lcurse' 'ld10k1' 'ld10k1-devel' 'ldacBT-devel' 'ldapfuse' 'ldapvi' 'ldb-tools' 'ldc' 'ldc-bash-completion' 'ldc-phobos-devel' 'ldc-runtime-devel' 'ldirectord' 'ldmtool' 'ldns' 'ldns-devel' 'ldtp' 'ldvd' 'ldvd' 'leafnode' 'leafpad' 'lector' 'ledger' 'ledmon' 'leechcraft' 'leechcraft-advancednotifications' 'leechcraft-aggregator' 'leechcraft-aggregator-bodyfetch' 'leechcraft-aggregator-webaccess' 'leechcraft-anhero' 'leechcraft-auscrie' 'leechcraft-azoth' 'leechcraft-azoth-abbrev' 'leechcraft-azoth-acetamide' 'leechcraft-azoth-adiumstyles' 'leechcraft-azoth-autoidler' 'leechcraft-azoth-autopaste' 'leechcraft-azoth-birthdaynotifier' 'leechcraft-azoth-chathistory' 'leechcraft-azoth-depester' 'leechcraft-azoth-doc' 'leechcraft-azoth-embedmedia' 'leechcraft-azoth-herbicide' 'leechcraft-azoth-hili' 'leechcraft-azoth-isterique' 'leechcraft-azoth-juick' 'leechcraft-azoth-keeso' 'leechcraft-azoth-lastseen' 'leechcraft-azoth-metacontacts' 'leechcraft-azoth-modnok' 'leechcraft-azoth-mucommands' 'leechcraft-azoth-murm' 'leechcraft-azoth-nativeemoticons' 'leechcraft-azoth-otroid' 'leechcraft-azoth-rosenthal' 'leechcraft-azoth-shx' 'leechcraft-azoth-standardstyles' 'leechcraft-azoth-vader' 'leechcraft-azoth-velvetbird' 'leechcraft-azoth-xoox' 'leechcraft-azoth-xtazy' 'leechcraft-bittorrent' 'leechcraft-blasq' 'leechcraft-blasq-deathnote' 'leechcraft-blasq-rappor' 'leechcraft-blasq-vangog' 'leechcraft-blogique' 'leechcraft-blogique-hestia' 'leechcraft-blogique-metida' 'leechcraft-certmgr' 'leechcraft-cpuload' 'leechcraft-cstp' 'leechcraft-dbusmanager' 'leechcraft-deadlyrics' 'leechcraft-devel' 'leechcraft-devmon' 'leechcraft-doc' 'leechcraft-dolozhee' 'leechcraft-dumbeep' 'leechcraft-eleeminator' 'leechcraft-fenet' 'leechcraft-fenet-awesome' 'leechcraft-fenet-kwin' 'leechcraft-fenet-openbox' 'leechcraft-gacts' 'leechcraft-glance' 'leechcraft-gmailnotifier' 'leechcraft-historyholder' 'leechcraft-hotstreams' 'leechcraft-htthare' 'leechcraft-imgaste' 'leechcraft-intermutko' 'leechcraft-kbswitch' 'leechcraft-kinotify' 'leechcraft-knowhow' 'leechcraft-krigstask' 'leechcraft-lackman' 'leechcraft-lastfmscrobble' 'leechcraft-laughty' 'leechcraft-launchy' 'leechcraft-lemon' 'leechcraft-lhtr' 'leechcraft-liznoo' 'leechcraft-lmp' 'leechcraft-lmp-brainslugz' 'leechcraft-lmp-dumbsync' 'leechcraft-lmp-fradj' 'leechcraft-lmp-graffiti' 'leechcraft-lmp-httstream' 'leechcraft-lmp-mp3tunes' 'leechcraft-lmp-mtpsync' 'leechcraft-lmp-potorchu' 'leechcraft-lmp-ppl' 'leechcraft-mellonetray' 'leechcraft-monocle' 'leechcraft-monocle-dik' 'leechcraft-monocle-doc' 'leechcraft-monocle-fxb' 'leechcraft-monocle-pdf' 'leechcraft-monocle-postrus' 'leechcraft-monocle-seen' 'leechcraft-musiczombie' 'leechcraft-namauth' 'leechcraft-netstoremanager' 'leechcraft-netstoremanager-googledrive' 'leechcraft-networkmonitor' 'leechcraft-newlife' 'leechcraft-ooronee' 'leechcraft-otlozhu' 'leechcraft-pintab' 'leechcraft-pogooglue' 'leechcraft-poshuku' 'leechcraft-poshuku-autosearch' 'leechcraft-poshuku-cleanweb' 'leechcraft-poshuku-dcac' 'leechcraft-poshuku-fatape' 'leechcraft-poshuku-filescheme' 'leechcraft-poshuku-foc' 'leechcraft-poshuku-fua' 'leechcraft-poshuku-keywords' 'leechcraft-poshuku-onlinebookmarks' 'leechcraft-poshuku-onlinebookmarks-delicious' 'leechcraft-poshuku-onlinebookmarks-readitlater' 'leechcraft-poshuku-qrd' 'leechcraft-poshuku-speeddial' 'leechcraft-poshuku-webkitview' 'leechcraft-rosenthal' 'leechcraft-sb2' 'leechcraft-scroblibre' 'leechcraft-secman' 'leechcraft-secman-simplestorage' 'leechcraft-seekthru' 'leechcraft-summary' 'leechcraft-sysnotify' 'leechcraft-tabsessionmanager' 'leechcraft-tabslist' 'leechcraft-textogroose' 'leechcraft-touchstreams' 'leechcraft-tpi' 'leechcraft-vrooby' 'leechcraft-xproxy' 'leechcraft-xtazy' 'leechcraft-zalil' 'legion-devel' 'lekha' 'lemonbar' 'lensfun-data' 'lensfun-devel' 'lensfun-doc' 'lensfun-tools' 'leptonica-devel' 'leptonica-tools' 'less' 'leveldb' 'leveldb-devel' 'leveldb-devel-static' 'lftp' 'lhasa' 'lhasa-devel' 'lib3270-5_1' 'lib3270-devel' 'lib389' 'lib3ds-1-3' 'lib3ds-devel' 'lib4store-devel' 'lib4store0' 'lib4ti2-0' 'libADLMIDI1' 'libAPFEL0' 'libAnalitza5' 'libAppStreamQt-devel' 'libAppStreamQt2' 'libArcus-devel' 'libArcus3' 'libBasicUsageEnvironment1' 'libBox2D-devel' 'libBox2D-devel-32bit' 'libBox2D2_3_1' 'libBox2D2_3_1-32bit' 'libBulletFileLoader2_88' 'libBulletInverseDynamicsUtils2_88' 'libBulletWorldImporter2_88' 'libBulletXmlWorldImporter2_88' 'libCGAL13' 'libCGAL_Core13' 'libCGAL_ImageIO14' 'libCGAL_Qt5-14' 'libCSXCAD0' 'libCharLS2' 'libCoin60' 'libColPack0' 'libColPack0-32bit' 'libColorFull0' 'libConvexDecomposition2_88' 'libEMF-devel' 'libEMF-utils' 'libEMF1' 'libEspresso4' 'libFAudio0' 'libFAudio0-32bit' 'libFLAC++6' 'libFLAC++6-32bit' 'libFLAC8' 'libFLAC8-32bit' 'libFOX-1_6-0' 'libFS-devel' 'libFS-devel-32bit' 'libFS6' 'libFS6-32bit' 'libField3D1_7' 'libField3D1_7-debuginfo' 'libGIMPACTUtils2_88' 'libGLC-devel' 'libGLC0' 'libGLEW2_1' 'libGLEW2_1-32bit' 'libGLU1' 'libGLU1-32bit' 'libGLw-devel' 'libGLw1' 'libGLw1-32bit' 'libGLwM1' 'libGLwM1-32bit' 'libGammu8' 'libGeneratedSaxParser0_3' 'libGeoIP-devel' 'libGeoIP-devel-32bit' 'libGeoIP1' 'libGeoIP1-32bit' 'libGetDP2_11' 'libGraphicsMagick++-Q16-12' 'libGraphicsMagick++-devel' 'libGraphicsMagick-Q16-3' 'libGraphicsMagick3-config' 'libGraphicsMagickWand-Q16-2' 'libHACD2_88' 'libHX-devel' 'libHX-devel-32bit' 'libHX28' 'libHX28-32bit' 'libHYPRE-gnu-mpich-hpc' 'libHYPRE-gnu-mvapich2-hpc' 'libHYPRE-gnu-openmpi1-hpc' 'libHYPRE-gnu-openmpi2-hpc' 'libHYPRE-gnu-openmpi3-hpc' 'libHYPRE0' 'libHYPRE0-32bit' 'libHYPRE0-mpich' 'libHYPRE0-mpich-32bit' 'libHYPRE0-mvapich2' 'libHYPRE0-mvapich2-32bit' 'libHYPRE0-openmpi' 'libHYPRE0-openmpi-32bit' 'libHYPRE0-openmpi2' 'libHYPRE0-openmpi2-32bit' 'libHYPRE_2_15_1-gnu-mpich-hpc' 'libHYPRE_2_15_1-gnu-mvapich2-hpc' 'libHYPRE_2_15_1-gnu-openmpi1-hpc' 'libHYPRE_2_15_1-gnu-openmpi2-hpc' 'libHYPRE_2_15_1-gnu-openmpi3-hpc' 'libHalf24' 'libHalf24-32bit' 'libHepMC3-1' 'libHepMC4' 'libICE-devel' 'libICE-devel-32bit' 'libICE6' 'libICE6-32bit' 'libIDL-2-0' 'libIDL-2-0-32bit' 'libIL1' 'libIccXML-devel' 'libIccXML2' 'libIex-2_3-24' 'libIex-2_3-24-32bit' 'libIexMath-2_3-24' 'libIexMath-2_3-24-32bit' 'libIlmImf-2_3-24' 'libIlmImf-2_3-24-32bit' 'libIlmImfUtil-2_3-24' 'libIlmImfUtil-2_3-24-32bit' 'libIlmThread-2_3-24' 'libIlmThread-2_3-24-32bit' 'libImath-2_3-24' 'libImath-2_3-24-32bit' 'libImlib2-1' 'libIrrlicht1_8' 'libJudy1' 'libKChart2' 'libKDb3-4' 'libKEduVocDocument5' 'libKF5Activities5' 'libKF5Activities5-32bit' 'libKF5ActivitiesStats1' 'libKF5ActivitiesStats1-32bit' 'libKF5AkonadiAgentBase5' 'libKF5AkonadiCalendar5' 'libKF5AkonadiContact5' 'libKF5AkonadiCore5' 'libKF5AkonadiMime5' 'libKF5AkonadiNotes5' 'libKF5AkonadiPrivate5' 'libKF5AkonadiSearch' 'libKF5AkonadiWidgets5' 'libKF5AkonadiXml5' 'libKF5AlarmCalendar5' 'libKF5Archive5' 'libKF5Archive5-32bit' 'libKF5Attica5' 'libKF5Attica5-32bit' 'libKF5Auth5' 'libKF5Auth5-32bit' 'libKF5Auth5-lang' 'libKF5AuthCore5' 'libKF5AuthCore5-32bit' 'libKF5Baloo5' 'libKF5Baloo5-32bit' 'libKF5BalooEngine5' 'libKF5BalooEngine5-32bit' 'libKF5BalooEngine5-lang' 'libKF5Blog5' 'libKF5BluezQt6' 'libKF5Bookmarks5' 'libKF5Bookmarks5-32bit' 'libKF5Bookmarks5-lang' 'libKF5CalendarCore5' 'libKF5CalendarEvents5' 'libKF5CalendarEvents5-32bit' 'libKF5CalendarSupport5' 'libKF5CalendarUtils5' 'libKF5Cddb5' 'libKF5CddbWidgets5' 'libKF5Codecs5' 'libKF5Codecs5-32bit' 'libKF5Codecs5-lang' 'libKF5CompactDisc5' 'libKF5Completion5' 'libKF5Completion5-32bit' 'libKF5Completion5-lang' 'libKF5ConfigCore5' 'libKF5ConfigCore5-32bit' 'libKF5ConfigCore5-lang' 'libKF5ConfigGui5' 'libKF5ConfigGui5-32bit' 'libKF5ConfigWidgets5' 'libKF5ConfigWidgets5-32bit' 'libKF5ConfigWidgets5-lang' 'libKF5ContactEditor5' 'libKF5Contacts5' 'libKF5Contacts5-32bit' 'libKF5CoreAddons5' 'libKF5CoreAddons5-32bit' 'libKF5Crash5' 'libKF5Crash5-32bit' 'libKF5DBusAddons5' 'libKF5DBusAddons5-32bit' 'libKF5DBusAddons5-lang' 'libKF5DNSSD5' 'libKF5DNSSD5-32bit' 'libKF5DNSSD5-lang' 'libKF5Declarative5' 'libKF5Declarative5-32bit' 'libKF5Declarative5-lang' 'libKF5DocTools5' 'libKF5DocTools5-32bit' 'libKF5Emoticons5' 'libKF5Emoticons5-32bit' 'libKF5EventViews5' 'libKF5GlobalAccel5' 'libKF5GlobalAccel5-32bit' 'libKF5GlobalAccel5-lang' 'libKF5GlobalAccelPrivate5' 'libKF5GrantleeTheme5' 'libKF5Gravatar5' 'libKF5GuiAddons5' 'libKF5GuiAddons5-32bit' 'libKF5Holidays5' 'libKF5Holidays5-lang' 'libKF5I18n5' 'libKF5I18n5-32bit' 'libKF5I18n5-lang' 'libKF5IMAP5' 'libKF5IconThemes5' 'libKF5IconThemes5-32bit' 'libKF5IconThemes5-lang' 'libKF5IdentityManagement5' 'libKF5IdleTime5' 'libKF5IdleTime5-32bit' 'libKF5IncidenceEditor5' 'libKF5ItemModels5' 'libKF5ItemModels5-32bit' 'libKF5ItemViews5' 'libKF5ItemViews5-32bit' 'libKF5ItemViews5-lang' 'libKF5JS5' 'libKF5JS5-32bit' 'libKF5JSApi5' 'libKF5JSApi5-32bit' 'libKF5JobWidgets5' 'libKF5JobWidgets5-32bit' 'libKF5JobWidgets5-lang' 'libKF5JsEmbed5' 'libKF5JsEmbed5-32bit' 'libKF5JsEmbed5-lang' 'libKF5KCMUtils5' 'libKF5KCMUtils5-32bit' 'libKF5KCMUtils5-lang' 'libKF5KDELibs4Support5' 'libKF5KDELibs4Support5-32bit' 'libKF5KDGantt2-5' 'libKF5KDcraw5' 'libKF5KExiv2-15_0_0' 'libKF5KGeoMap10_0_0' 'libKF5KHtml5' 'libKF5KHtml5-32bit' 'libKF5KHtml5-lang' 'libKF5KMahjongglib5' 'libKF5Kipi32_0_0' 'libKF5Kirigami2-5' 'libKF5KontactInterface5' 'libKF5Ldap5' 'libKF5Libkdepim5' 'libKF5LibkdepimAkonadi5' 'libKF5Libkleo5' 'libKF5MailCommon5' 'libKF5MailImporter5' 'libKF5MailImporterAkonadi5' 'libKF5MailTransport5' 'libKF5MailTransportAkonadi5' 'libKF5Mbox5' 'libKF5MediaPlayer5' 'libKF5MediaPlayer5-32bit' 'libKF5MediaWiki5' 'libKF5Mime5' 'libKF5ModemManagerQt-devel' 'libKF5ModemManagerQt6' 'libKF5NetworkManagerQt-devel' 'libKF5NetworkManagerQt-devel-32bit' 'libKF5NetworkManagerQt6' 'libKF5NetworkManagerQt6-32bit' 'libKF5NewStuff5' 'libKF5NewStuff5-32bit' 'libKF5NewStuff5-lang' 'libKF5NewStuffCore5' 'libKF5NewStuffCore5-32bit' 'libKF5Notifications5' 'libKF5Notifications5-32bit' 'libKF5Notifications5-lang' 'libKF5NotifyConfig5' 'libKF5NotifyConfig5-32bit' 'libKF5NotifyConfig5-lang' 'libKF5Parts5' 'libKF5Parts5-32bit' 'libKF5Parts5-lang' 'libKF5PimCommon5' 'libKF5PimCommonAkonadi5' 'libKF5PimTextEdit5' 'libKF5Plasma5' 'libKF5Plasma5-32bit' 'libKF5Plotting5' 'libKF5Plotting5-32bit' 'libKF5Prison5' 'libKF5Prison5-32bit' 'libKF5Pty5' 'libKF5Pty5-32bit' 'libKF5Pty5-lang' 'libKF5PulseAudioQt2' 'libKF5Purpose5' 'libKF5Purpose5-32bit' 'libKF5PurposeWidgets5' 'libKF5PurposeWidgets5-32bit' 'libKF5QGpgme5' 'libKF5QGpgme5-32bit' 'libKF5QuickAddons5' 'libKF5QuickAddons5-32bit' 'libKF5Runner5' 'libKF5Runner5-32bit' 'libKF5Sane5' 'libKF5Screen7' 'libKF5Screen7-32bit' 'libKF5Solid5' 'libKF5Solid5-32bit' 'libKF5Solid5-lang' 'libKF5SonnetCore5' 'libKF5SonnetCore5-32bit' 'libKF5SonnetCore5-lang' 'libKF5SonnetUi5' 'libKF5SonnetUi5-32bit' 'libKF5Style5' 'libKF5Style5-32bit' 'libKF5Su5' 'libKF5Su5-32bit' 'libKF5Su5-lang' 'libKF5Syndication5' 'libKF5SyntaxHighlighting5' 'libKF5SyntaxHighlighting5-32bit' 'libKF5SyntaxHighlighting5-lang' 'libKF5TextWidgets5' 'libKF5TextWidgets5-32bit' 'libKF5TextWidgets5-lang' 'libKF5ThreadWeaver5' 'libKF5ThreadWeaver5-32bit' 'libKF5Tnef5' 'libKF5Torrent6' 'libKF5UnitConversion5' 'libKF5UnitConversion5-32bit' 'libKF5UnitConversion5-lang' 'libKF5Vkontakte2' 'libKF5Wallet5' 'libKF5Wallet5-32bit' 'libKF5WebKit5' 'libKF5WebKit5-32bit' 'libKF5WidgetsAddons5' 'libKF5WidgetsAddons5-32bit' 'libKF5WidgetsAddons5-lang' 'libKF5WindowSystem5' 'libKF5WindowSystem5-32bit' 'libKF5WindowSystem5-lang' 'libKF5XmlGui5' 'libKF5XmlGui5-32bit' 'libKF5XmlGui5-lang' 'libKF5XmlRpcClient5' 'libKF5XmlRpcClient5-32bit' 'libKF5XmlRpcClient5-lang' 'libKGantt2' 'libKPimGAPIBlogger5' 'libKPimGAPICalendar5' 'libKPimGAPIContacts5' 'libKPimGAPICore5' 'libKPimGAPIDrive5' 'libKPimGAPILatitude5' 'libKPimGAPIMaps5' 'libKPimGAPITasks5' 'libKPimImportWizard5' 'libKPimItinerary5' 'libKPimItinerary5-lang' 'libKPimKDAV5' 'libKPimPkPass5' 'libKPimSMTP5' 'libKPropertyCore3-4' 'libKPropertyWidgets3-4' 'libKReport3-4' 'libKScreenLocker5' 'libKasten4' 'libLASi-devel' 'libLASi2' 'libLHAPDF-6_2_3' 'libLLVM6' 'libLLVM6-32bit' 'libLLVM7' 'libLLVM7-32bit' 'libLLVM8' 'libLLVM8-32bit' 'libLTO6' 'libLTO6-32bit' 'libLTO7' 'libLTO7-32bit' 'libLTO8' 'libLTO8-32bit' 'libLimeSuite19_04-1' 'libLunchbox3' 'libLunchbox3-debuginfo' 'libMagick++-7_Q16HDRI4' 'libMagick++-7_Q16HDRI4-32bit' 'libMagick++-devel' 'libMagick++-devel-32bit' 'libMagickCore-7_Q16HDRI6' 'libMagickCore-7_Q16HDRI6-32bit' 'libMagickWand-7_Q16HDRI6' 'libMagickWand-7_Q16HDRI6-32bit' 'libMathMLSolver0_3' 'libMrm4' 'libMrm4-32bit' 'libMyGUIEngine3' 'libOIS-1_3_0' 'libOIS-devel' 'libOSC-devel' 'libOSC0' 'libOSC0-debuginfo' 'libOSMesa-devel' 'libOSMesa-devel-32bit' 'libOSMesa8' 'libOSMesa8-32bit' 'libOgreMain-devel' 'libOgreMain1_9_0' 'libOgreMain1_9_0-plugins' 'libOgreOverlay-devel' 'libOgreOverlay1_9_0' 'libOgrePaging-devel' 'libOgrePaging1_9_0' 'libOgreProperty-devel' 'libOgreProperty1_9_0' 'libOgreRTShaderSystem-devel' 'libOgreRTShaderSystem1_9_0' 'libOgreTerrain-devel' 'libOgreTerrain1_9_0' 'libOgreVolume-devel' 'libOgreVolume1_9_0' 'libOkteta3' 'libOpenCL1' 'libOpenCOLLADABaseUtils0_3' 'libOpenCOLLADAFramework0_3' 'libOpenCOLLADASaxFrameworkLoader0_3' 'libOpenCOLLADAStreamWriter0_3' 'libOpenColorIO1' 'libOpenIPMI0' 'libOpenImageIO1_8' 'libOpenImageIO_Util1_8' 'libOpenSceneGraph-devel' 'libOpenSceneGraph131' 'libOpenSceneGraph131-devel' 'libOpenSceneGraph158' 'libOpenThreads-devel' 'libOpenThreads20' 'libOpenThreads20-devel' 'libOpenThreads21' 'libOyranosSynnefo-devel' 'libOyranosSynnefo-devel-static' 'libOyranosSynnefo1' 'libPythonQt-Qt5-Python3-3' 'libPythonQt_QtAll-Qt5-Python3-3' 'libQCSXCAD0' 'libQMatrixClient0_5_1' 'libQTweetLib1_0' 'libQTweetLib1_0-debuginfo' 'libQgpsmm24' 'libQt4Pas5' 'libQt53DAnimation-devel' 'libQt53DAnimation5' 'libQt53DAnimation5-32bit' 'libQt53DCore-devel' 'libQt53DCore5' 'libQt53DCore5-32bit' 'libQt53DExtras-devel' 'libQt53DExtras5' 'libQt53DExtras5-32bit' 'libQt53DInput-devel' 'libQt53DInput5' 'libQt53DInput5-32bit' 'libQt53DLogic-devel' 'libQt53DLogic5' 'libQt53DLogic5-32bit' 'libQt53DQuick-devel' 'libQt53DQuick5' 'libQt53DQuick5-32bit' 'libQt53DQuickAnimation-devel' 'libQt53DQuickAnimation5' 'libQt53DQuickAnimation5-32bit' 'libQt53DQuickExtras-devel' 'libQt53DQuickExtras5' 'libQt53DQuickExtras5-32bit' 'libQt53DQuickInput-devel' 'libQt53DQuickInput5' 'libQt53DQuickInput5-32bit' 'libQt53DQuickRender-devel' 'libQt53DQuickRender5' 'libQt53DQuickRender5-32bit' 'libQt53DQuickScene2D-devel' 'libQt53DQuickScene2D5' 'libQt53DQuickScene2D5-32bit' 'libQt53DRender-devel' 'libQt53DRender5' 'libQt53DRender5-32bit' 'libQt5Bluetooth5' 'libQt5Bluetooth5-32bit' 'libQt5Bluetooth5-imports' 'libQt5Bodymovin-devel' 'libQt5Bodymovin-private-headers-devel' 'libQt5Bodymovin5' 'libQt5Bootstrap-devel-static' 'libQt5Bootstrap-devel-static-32bit' 'libQt5Charts5' 'libQt5Charts5-designer' 'libQt5Charts5-devel' 'libQt5Concurrent-devel' 'libQt5Concurrent-devel-32bit' 'libQt5Concurrent5' 'libQt5Concurrent5-32bit' 'libQt5Core-devel' 'libQt5Core-devel-32bit' 'libQt5Core-private-headers-devel' 'libQt5Core5' 'libQt5Core5-32bit' 'libQt5DBus-devel' 'libQt5DBus-devel-32bit' 'libQt5DBus-private-headers-devel' 'libQt5DBus5' 'libQt5DBus5-32bit' 'libQt5DataVisualization5' 'libQt5DataVisualization5-devel' 'libQt5Designer5' 'libQt5Designer5-32bit' 'libQt5DesignerComponents5' 'libQt5DesignerComponents5-32bit' 'libQt5Gamepad5' 'libQt5Gamepad5-32bit' 'libQt5Gui-devel' 'libQt5Gui-devel-32bit' 'libQt5Gui-private-headers-devel' 'libQt5Gui5' 'libQt5Gui5-32bit' 'libQt5Help5' 'libQt5Help5-32bit' 'libQt5HunspellInputMethod-private-headers-devel' 'libQt5HunspellInputMethod5' 'libQt5KmsSupport-devel-static' 'libQt5KmsSupport-private-headers-devel' 'libQt5Location5' 'libQt5Location5-32bit' 'libQt5Multimedia5' 'libQt5Multimedia5-32bit' 'libQt5Network-devel' 'libQt5Network-devel-32bit' 'libQt5Network-private-headers-devel' 'libQt5Network5' 'libQt5Network5-32bit' 'libQt5NetworkAuth5' 'libQt5NetworkAuth5-32bit' 'libQt5Nfc5' 'libQt5Nfc5-32bit' 'libQt5Nfc5-imports' 'libQt5OpenGL-devel' 'libQt5OpenGL-devel-32bit' 'libQt5OpenGL-private-headers-devel' 'libQt5OpenGL5' 'libQt5OpenGL5-32bit' 'libQt5OpenGLExtensions-devel-static' 'libQt5OpenGLExtensions-devel-static-32bit' 'libQt5Pas-devel' 'libQt5Pas1' 'libQt5PlatformHeaders-devel' 'libQt5PlatformSupport-devel-static' 'libQt5PlatformSupport-devel-static-32bit' 'libQt5PlatformSupport-private-headers-devel' 'libQt5Positioning5' 'libQt5Positioning5-32bit' 'libQt5PositioningQuick5' 'libQt5PositioningQuick5-32bit' 'libQt5PrintSupport-devel' 'libQt5PrintSupport-devel-32bit' 'libQt5PrintSupport-private-headers-devel' 'libQt5PrintSupport5' 'libQt5PrintSupport5-32bit' 'libQt5QuickControls2-5' 'libQt5QuickControls2-devel' 'libQt5QuickTemplates2-5' 'libQt5QuickTemplates2-devel' 'libQt5RemoteObjects5' 'libQt5RemoteObjects5-32bit' 'libQt5Script5' 'libQt5Script5-32bit' 'libQt5Scxml5' 'libQt5Scxml5-32bit' 'libQt5Scxml5-imports' 'libQt5Sensors5' 'libQt5Sensors5-32bit' 'libQt5Sensors5-imports' 'libQt5SerialBus5' 'libQt5SerialBus5-32bit' 'libQt5SerialPort5' 'libQt5SerialPort5-32bit' 'libQt5Sql-devel' 'libQt5Sql-devel-32bit' 'libQt5Sql-private-headers-devel' 'libQt5Sql5' 'libQt5Sql5-32bit' 'libQt5Sql5-mysql' 'libQt5Sql5-mysql-32bit' 'libQt5Sql5-postgresql' 'libQt5Sql5-postgresql-32bit' 'libQt5Sql5-sqlite' 'libQt5Sql5-sqlite-32bit' 'libQt5Sql5-unixODBC' 'libQt5Sql5-unixODBC-32bit' 'libQt5Svg5' 'libQt5Svg5-32bit' 'libQt5Test-devel' 'libQt5Test-devel-32bit' 'libQt5Test-private-headers-devel' 'libQt5Test5' 'libQt5Test5-32bit' 'libQt5TextToSpeech5' 'libQt5TextToSpeech5-32bit' 'libQt5VirtualKeyboard5' 'libQt5WaylandClient5' 'libQt5WaylandClient5-32bit' 'libQt5WaylandCompositor5' 'libQt5WaylandCompositor5-32bit' 'libQt5WebChannel5' 'libQt5WebChannel5-32bit' 'libQt5WebChannel5-imports' 'libQt5WebKit-private-headers-devel' 'libQt5WebKit5' 'libQt5WebKit5-32bit' 'libQt5WebKit5-devel' 'libQt5WebKit5-devel-32bit' 'libQt5WebKit5-imports' 'libQt5WebKitWidgets-devel' 'libQt5WebKitWidgets-devel-32bit' 'libQt5WebKitWidgets-private-headers-devel' 'libQt5WebKitWidgets5' 'libQt5WebKitWidgets5-32bit' 'libQt5WebSockets5' 'libQt5WebSockets5-32bit' 'libQt5WebSockets5-imports' 'libQt5WebView5' 'libQt5WebView5-imports' 'libQt5Widgets-devel' 'libQt5Widgets-devel-32bit' 'libQt5Widgets-private-headers-devel' 'libQt5Widgets5' 'libQt5Widgets5-32bit' 'libQt5X11Extras5' 'libQt5X11Extras5-32bit' 'libQt5Xdg3' 'libQt5XdgIconLoader-devel' 'libQt5XdgIconLoader3' 'libQt5Xml-devel' 'libQt5Xml-devel-32bit' 'libQt5Xml5' 'libQt5Xml5-32bit' 'libQt5XmlPatterns5' 'libQt5XmlPatterns5-32bit' 'libQtAV1' 'libQtAV1-32bit' 'libQtAVWidgets1' 'libQtAVWidgets1-32bit' 'libQtAssistantClient4' 'libQtAssistantClient4-32bit' 'libQtQuick5' 'libQtQuick5-32bit' 'libQtWebKit-devel' 'libQtWebKit4' 'libQtWebKit4' 'libQtWebKit4-32bit' 'libQtWebKit4-32bit-debuginfo' 'libQtWebKit4-debuginfo' 'libQtWebKit4-debugsource' 'libRaTools0' 'libRivet-2_7_2' 'libSDL-1_2-0' 'libSDL-1_2-0-32bit' 'libSDL-devel' 'libSDL-devel-32bit' 'libSDL2-2_0-0' 'libSDL2-2_0-0-32bit' 'libSDL2-devel' 'libSDL2-devel-32bit' 'libSDL2_gfx-1_0-0' 'libSDL2_gfx-1_0-0-32bit' 'libSDL2_gfx-devel' 'libSDL2_gfx-devel-32bit' 'libSDL2_image-2_0-0' 'libSDL2_image-2_0-0-32bit' 'libSDL2_image-devel' 'libSDL2_image-devel-32bit' 'libSDL2_mixer-2_0-0' 'libSDL2_mixer-2_0-0-32bit' 'libSDL2_mixer-devel' 'libSDL2_mixer-devel-32bit' 'libSDL2_net-2_0-0' 'libSDL2_net-2_0-0-32bit' 'libSDL2_net-devel' 'libSDL2_net-devel-32bit' 'libSDL2_ttf-2_0-0' 'libSDL2_ttf-2_0-0-32bit' 'libSDL2_ttf-devel' 'libSDL2_ttf-devel-32bit' 'libSDL_Pango-devel' 'libSDL_Pango-devel-32bit' 'libSDL_Pango1' 'libSDL_Pango1-32bit' 'libSDL_bgi-devel' 'libSDL_bgi2' 'libSDL_gfx-devel' 'libSDL_gfx-devel-32bit' 'libSDL_gfx15' 'libSDL_gfx15-32bit' 'libSDL_image-1_2-0' 'libSDL_image-1_2-0-32bit' 'libSDL_image-devel' 'libSDL_image-devel-32bit' 'libSDL_mixer-1_2-0' 'libSDL_mixer-1_2-0-32bit' 'libSDL_mixer-devel' 'libSDL_mixer-devel-32bit' 'libSDL_net-1_2-0' 'libSDL_net-1_2-0-32bit' 'libSDL_net-devel' 'libSDL_net-devel-32bit' 'libSDL_sound-1_0-1' 'libSDL_sound-1_0-1-32bit' 'libSDL_sound-devel' 'libSDL_sound-devel-32bit' 'libSDL_ttf-2_0-0' 'libSDL_ttf-2_0-0-32bit' 'libSDL_ttf-devel' 'libSDL_ttf-devel-32bit' 'libSDLmm-0_1-8' 'libSDLmm-0_1-8-32bit' 'libSDLmm-devel' 'libSDLmm-devel-32bit' 'libSHERPA-MC0' 'libSHERPA-MC0-config' 'libSM-devel' 'libSM-devel-32bit' 'libSM6' 'libSM6-32bit' 'libSOIL' 'libSOIL-debugsource' 'libSOIL-devel' 'libSOIL1' 'libSOIL1-debuginfo' 'libSPIRV-Tools-suse13' 'libSPIRV-Tools-suse13-32bit' 'libSampleICC-devel' 'libSampleICC1' 'libSavitar-devel' 'libSavitar0' 'libSimGearCore-2018_3_4' 'libSoQt20' 'libSoapyOsmoSDR0' 'libSoapySDR0_7' 'libSoundTouch1' 'libSoundTouch1-32bit' 'libStatTimer2' 'libSwiften4' 'libTMCG-devel' 'libTMCG18' 'libUTF0_3' 'libUil4' 'libUil4-32bit' 'libUnitTest++-2_0_0' 'libUsageEnvironment3' 'libVFlib3-5' 'libWN3' 'libX11-6' 'libX11-6-32bit' 'libX11-data' 'libX11-devel' 'libX11-devel-32bit' 'libX11-xcb1' 'libX11-xcb1-32bit' 'libXNVCtrl' 'libXNVCtrl' 'libXRes1' 'libXRes1-32bit' 'libXau-devel' 'libXau-devel-32bit' 'libXau6' 'libXau6-32bit' 'libXaw-devel' 'libXaw-devel-32bit' 'libXaw3d-devel' 'libXaw3d-devel-32bit' 'libXaw3d6' 'libXaw3d6-32bit' 'libXaw3d7' 'libXaw3d7-32bit' 'libXaw3d8' 'libXaw3d8-32bit' 'libXaw3dXft' 'libXaw3dXft-debugsource' 'libXaw3dxft-devel' 'libXaw3dxft8' 'libXaw3dxft8-32bit' 'libXaw3dxft8-32bit-debuginfo' 'libXaw3dxft8-debuginfo' 'libXaw6' 'libXaw6-32bit' 'libXaw7' 'libXaw7-32bit' 'libXaw8' 'libXaw8-32bit' 'libXbgi-devel' 'libXbgi1' 'libXcm-devel' 'libXcm0' 'libXcmDDC0' 'libXcmEDID0' 'libXcmX11-0' 'libXcomposite-devel' 'libXcomposite-devel-32bit' 'libXcomposite1' 'libXcomposite1-32bit' 'libXcursor-devel' 'libXcursor-devel-32bit' 'libXcursor1' 'libXcursor1-32bit' 'libXdamage-devel' 'libXdamage-devel-32bit' 'libXdamage1' 'libXdamage1-32bit' 'libXdmcp-devel' 'libXdmcp-devel-32bit' 'libXdmcp6' 'libXdmcp6-32bit' 'libXevie-devel' 'libXevie-devel-32bit' 'libXevie1' 'libXevie1-32bit' 'libXext-devel' 'libXext-devel-32bit' 'libXext6' 'libXext6-32bit' 'libXfixes-devel' 'libXfixes-devel-32bit' 'libXfixes3' 'libXfixes3-32bit' 'libXfont-devel' 'libXfont-devel-32bit' 'libXfont1' 'libXfont1-32bit' 'libXfont2-2' 'libXfont2-2-32bit' 'libXfont2-devel' 'libXfont2-devel-32bit' 'libXfontcache-devel' 'libXfontcache-devel-32bit' 'libXfontcache1' 'libXfontcache1-32bit' 'libXft-devel' 'libXft-devel-32bit' 'libXft2' 'libXft2-32bit' 'libXi-devel' 'libXi-devel-32bit' 'libXi6' 'libXi6-32bit' 'libXinerama-devel' 'libXinerama-devel-32bit' 'libXinerama1' 'libXinerama1-32bit' 'libXiterm-devel' 'libXiterm1' 'libXm4' 'libXm4-32bit' 'libXmu-devel' 'libXmu-devel-32bit' 'libXmu6' 'libXmu6-32bit' 'libXmuu1' 'libXmuu1-32bit' 'libXp-devel' 'libXp-devel-32bit' 'libXp6' 'libXp6-32bit' 'libXpm-devel' 'libXpm-devel-32bit' 'libXpm-tools' 'libXpm4' 'libXpm4-32bit' 'libXpresent-devel' 'libXpresent1' 'libXprintAppUtil-devel' 'libXprintAppUtil-devel-32bit' 'libXprintAppUtil1' 'libXprintAppUtil1-32bit' 'libXprintUtil-devel' 'libXprintUtil-devel-32bit' 'libXprintUtil1' 'libXprintUtil1-32bit' 'libXrandr-devel' 'libXrandr-devel-32bit' 'libXrandr2' 'libXrandr2-32bit' 'libXrender-devel' 'libXrender-devel-32bit' 'libXrender1' 'libXrender1-32bit' 'libXres-devel' 'libXres-devel-32bit' 'libXss-devel' 'libXss-devel-32bit' 'libXss1' 'libXss1-32bit' 'libXt-devel' 'libXt-devel-32bit' 'libXt6' 'libXt6-32bit' 'libXtst-devel' 'libXtst-devel-32bit' 'libXtst6' 'libXtst6-32bit' 'libXv-devel' 'libXv-devel-32bit' 'libXv1' 'libXv1-32bit' 'libXvMC-devel' 'libXvMC-devel-32bit' 'libXvMC1' 'libXvMC1-32bit' 'libXvMC_nouveau' 'libXvMC_nouveau-32bit' 'libXvMC_r600' 'libXvMC_r600-32bit' 'libXvnc-devel' 'libXvnc1' 'libXxf86dga-devel' 'libXxf86dga-devel-32bit' 'libXxf86dga1' 'libXxf86dga1-32bit' 'libXxf86vm-devel' 'libXxf86vm-devel-32bit' 'libXxf86vm1' 'libXxf86vm1-32bit' 'libYODA-1_7_7' 'libZXingCore1' 'liba2ps1' 'liba52-0' 'liba52-0-32bit' 'liba52-devel' 'libaa1' 'libaa1-32bit' 'libaacs' 'libaacs-debugsource' 'libaacs-devel' 'libaacs0' 'libaacs0-debuginfo' 'libaal-1_0-7' 'libaal-devel' 'libaal-minimal0' 'libabigail-devel' 'libabigail-tools' 'libabigail0' 'libabiword-3_0' 'libabiword-3_0-devel' 'libabseil0' 'libabw-0_1-1' 'libabw-devel' 'libabw-devel-doc' 'libabw-tools' 'libacars-devel' 'libacars1' 'libaccounts-glib-devel' 'libaccounts-glib-docs' 'libaccounts-glib-tools' 'libaccounts-glib0' 'libaccounts-glib0-32bit' 'libaccounts-qt5-1' 'libaccounts-qt5-1-32bit' 'libaccounts-qt5-devel' 'libaccounts-qt5-doc' 'libaccountsservice0' 'libacl-devel' 'libacl-devel-32bit' 'libacl1' 'libacl1-32bit' 'libacr38ucontrol0' 'libada7' 'libada7-32bit' 'libada8' 'libada8-32bit' 'libada9' 'libada9-32bit' 'libaddrxlat-devel' 'libaddrxlat0' 'libadlmidi-devel' 'libadms0' 'libadns-devel' 'libadns-devel-32bit' 'libadns1' 'libadns1-32bit' 'libadolc2' 'libadolc2-32bit' 'libaec-devel' 'libaec0' 'libaec0-32bit' 'libaften-devel' 'libaften0' 'libaften0-debuginfo' 'libags2' 'libaio-devel' 'libaio-devel-32bit' 'libaio1' 'libaio1-32bit' 'libairspy0' 'libairspyhf0' 'libakai0' 'libalac0' 'libalkimia5-7' 'libalkimia5-devel' 'liballegro-doc' 'liballegro5_2' 'liballegro5_2-devel' 'liballegro_acodec5_2' 'liballegro_acodec5_2-devel' 'liballegro_audio5_2' 'liballegro_audio5_2-devel' 'liballegro_color5_2' 'liballegro_color5_2-devel' 'liballegro_dialog5_2' 'liballegro_dialog5_2-devel' 'liballegro_font5_2' 'liballegro_font5_2-devel' 'liballegro_image5_2' 'liballegro_image5_2-devel' 'liballegro_main5_2' 'liballegro_main5_2-devel' 'liballegro_memfile5_2' 'liballegro_memfile5_2-devel' 'liballegro_physfs5_2' 'liballegro_physfs5_2-devel' 'liballegro_primitives5_2' 'liballegro_primitives5_2-devel' 'liballegro_ttf5_2' 'liballegro_ttf5_2-devel' 'liballegro_video5_2' 'liballegro_video5_2-devel' 'libalut0' 'libalut0-32bit' 'libamd-doc' 'libamd2' 'libamrnb-devel' 'libamrnb3' 'libamrnb3-32bit' 'libamrnb3-32bit-debuginfo' 'libamrnb3-debuginfo' 'libamrwb-devel' 'libamrwb3' 'libamrwb3-32bit' 'libamrwb3-32bit-debuginfo' 'libamrwb3-debuginfo' 'libamtk-5-0' 'libangelscript2_33_0' 'libanjuta-3-0' 'libanthy0' 'libanthy0-32bit' 'libantlr3c3' 'libantlr3c3-32bit' 'libantlr4-runtime-devel' 'libantlr4-runtime4_7_2' 'libao-devel' 'libao-plugins4' 'libao-plugins4-32bit' 'libao4' 'libao4-32bit' 'libaom-devel' 'libaom-devel-doc' 'libaom0' 'libaom0-32bit' 'libap4-1_5_1r628' 'libap4-1_5_1r628-debuginfo' 'libapparmor-devel' 'libapparmor1' 'libapparmor1-32bit' 'libappindicator-devel' 'libappindicator1' 'libappindicator3-1' 'libappindicator3-devel' 'libappmenu-gtk-parser-devel' 'libappmenu-gtk2-parser-devel' 'libappmenu-gtk2-parser0' 'libappmenu-gtk3-parser-devel' 'libappmenu-gtk3-parser0' 'libappstream-glib8' 'libappstream4' 'libapr-util1' 'libapr-util1-dbd-mysql' 'libapr-util1-dbd-pgsql' 'libapr-util1-dbd-sqlite3' 'libapr1' 'libaqebics0' 'libaqofxconnect7' 'libarchive-devel' 'libarchive13' 'libarchive13-32bit' 'libargon2-1' 'libargon2-1-32bit' 'libargtable2-0' 'libargtable2-devel' 'libaria2-0' 'libarmadillo9' 'libarmadillo9-32bit' 'libarpack2' 'libarpack2-32bit' 'libarprec0' 'libart_lgpl-devel' 'libart_lgpl-devel-32bit' 'libart_lgpl_2-2' 'libart_lgpl_2-2-32bit' 'libasan4' 'libasan4-32bit' 'libasan5' 'libasan5-32bit' 'libasan5-gcc8' 'libasan5-gcc8-32bit' 'libaslcommon0' 'libasm-devel' 'libasm1' 'libasm1-32bit' 'libasn1c-devel' 'libasn1c1' 'libasound2' 'libasound2-32bit' 'libaspell15' 'libaspell15-32bit' 'libass-devel' 'libass9' 'libass9-32bit' 'libassimp3' 'libassuan-devel' 'libassuan0' 'libassuan0-32bit' 'libastro1' 'libastylej3' 'libasync' 'libasync-devel' 'libasyncns-devel' 'libasyncns0' 'libatasmart-devel' 'libatasmart-utils' 'libatasmart4' 'libathemecore1' 'libatk-1_0-0' 'libatk-1_0-0-32bit' 'libatk-bridge-2_0-0' 'libatk-bridge-2_0-0-32bit' 'libatkmm-1_6-1' 'libatkmm-1_6-1-32bit' 'libatkmm-2_30-1' 'libatkmm-2_30-1-32bit' 'libatlascpp-0_6-1' 'libatm1' 'libatomic1' 'libatomic1-32bit' 'libatomic1-gcc7' 'libatomic1-gcc7-32bit' 'libatomic1-gcc8' 'libatomic1-gcc8-32bit' 'libatomic_ops-devel' 'libatomicparsley0' 'libatrildocument3' 'libatrilview3' 'libatspi0' 'libatspi0-32bit' 'libattica-devel' 'libattica-devel-32bit' 'libattica0_4' 'libattica0_4-32bit' 'libattr-devel' 'libattr-devel-32bit' 'libattr-devel-static' 'libattr1' 'libattr1-32bit' 'libaubio-devel' 'libaubio5' 'libaubio5-32bit' 'libaudaspace-c1_3' 'libaudaspace-py1_3' 'libaudaspace1_3' 'libaudclient-devel' 'libaudclient2' 'libaudclient2' 'libaudclient2-debuginfo' 'libaudclient2-debugsource' 'libaudcore5' 'libaudgui5' 'libaudiofile1' 'libaudiofile1-32bit' 'libaudit1' 'libaudit1-32bit' 'libaudqt2' 'libaudtag3' 'libaugeas0' 'libaugeas0-32bit' 'libauparse0' 'libauparse0-32bit' 'libautotrace3' 'libav-tools' 'libavahi-client3' 'libavahi-client3-32bit' 'libavahi-common3' 'libavahi-common3-32bit' 'libavahi-core7' 'libavahi-devel' 'libavahi-glib-devel' 'libavahi-glib1' 'libavahi-glib1-32bit' 'libavahi-gobject-devel' 'libavahi-gobject0' 'libavahi-ui-gtk3-0' 'libavahi-ui0' 'libavc1394-0' 'libavc1394-0-32bit' 'libavc1394-devel' 'libavc1394-devel-32bit' 'libavc1394-tools' 'libavcodec56' 'libavcodec56-32bit' 'libavcodec56-32bit-debuginfo' 'libavcodec56-debuginfo' 'libavcodec57' 'libavcodec57-32bit' 'libavcodec57-32bit-debuginfo' 'libavcodec57-debuginfo' 'libavcodec58' 'libavcodec58-32bit' 'libavcodec58-32bit-debuginfo' 'libavcodec58-debuginfo' 'libavdevice56' 'libavdevice56-32bit' 'libavdevice56-32bit-debuginfo' 'libavdevice56-debuginfo' 'libavdevice57' 'libavdevice57-32bit' 'libavdevice57-32bit-debuginfo' 'libavdevice57-debuginfo' 'libavdevice58' 'libavdevice58-32bit' 'libavdevice58-32bit-debuginfo' 'libavdevice58-debuginfo' 'libavfilter5' 'libavfilter5-32bit' 'libavfilter5-32bit-debuginfo' 'libavfilter5-debuginfo' 'libavfilter6' 'libavfilter6-32bit' 'libavfilter6-32bit-debuginfo' 'libavfilter6-debuginfo' 'libavfilter7' 'libavfilter7-32bit' 'libavfilter7-32bit-debuginfo' 'libavfilter7-debuginfo' 'libavformat56' 'libavformat56-32bit' 'libavformat56-32bit-debuginfo' 'libavformat56-debuginfo' 'libavformat57' 'libavformat57-32bit' 'libavformat57-32bit-debuginfo' 'libavformat57-debuginfo' 'libavformat58' 'libavformat58-32bit' 'libavformat58-32bit-debuginfo' 'libavformat58-debuginfo' 'libavfs0' 'libavifile-devel' 'libaviplay-0_7-0' 'libaviplay-0_7-0-debuginfo' 'libavogadrolibs-suse0' 'libavrdude1' 'libavresample2' 'libavresample2-32bit' 'libavresample2-32bit-debuginfo' 'libavresample2-debuginfo' 'libavresample3' 'libavresample3-32bit' 'libavresample3-32bit-debuginfo' 'libavresample3-debuginfo' 'libavresample4' 'libavresample4-32bit' 'libavresample4-32bit-debuginfo' 'libavresample4-debuginfo' 'libavtp-devel' 'libavtp0' 'libavutil54' 'libavutil54-32bit' 'libavutil54-32bit-debuginfo' 'libavutil54-debuginfo' 'libavutil55' 'libavutil55-32bit' 'libavutil55-32bit-debuginfo' 'libavutil55-debuginfo' 'libavutil56' 'libavutil56-32bit' 'libavutil56-32bit-debuginfo' 'libavutil56-debuginfo' 'libavxsynth0' 'libavxsynth0-debuginfo' 'libax25-0' 'libax25-common' 'libax25-devel' 'libax25io0' 'libayatana-appindicator-devel' 'libayatana-appindicator1' 'libayatana-appindicator3-1' 'libayatana-appindicator3-devel' 'libayatana-ido3-0_4-0' 'libayatana-ido3-0_4-0-32bit' 'libayatana-indicator-devel' 'libayatana-indicator3-7' 'libayatana-indicator3-devel' 'libayatana-indicator7' 'libb2-1' 'libb2-devel' 'libb64' 'libb64-0' 'libb64-devel' 'libbabl-0_1-0' 'libbabl-0_1-0-32bit' 'libbamf3-2' 'libbase' 'libbase-javadoc' 'libbasicobjects-devel' 'libbasicobjects-devel-32bit' 'libbasicobjects0' 'libbasicobjects0-32bit' 'libbcc0' 'libbcg729-0' 'libbcg729-0-32bit' 'libbcmatroska2-0' 'libbcmatroska2-0-32bit' 'libbctoolbox-tester1' 'libbctoolbox-tester1-32bit' 'libbctoolbox1' 'libbctoolbox1-32bit' 'libbcunit1' 'libbcunit1-32bit' 'libbd_btrfs-devel' 'libbd_btrfs2' 'libbd_crypto-devel' 'libbd_crypto2' 'libbd_dm-devel' 'libbd_dm2' 'libbd_fs-devel' 'libbd_fs2' 'libbd_kbd-devel' 'libbd_kbd2' 'libbd_loop-devel' 'libbd_loop2' 'libbd_lvm-dbus-devel' 'libbd_lvm-dbus2' 'libbd_lvm-devel' 'libbd_lvm2' 'libbd_mdraid-devel' 'libbd_mdraid2' 'libbd_mpath-devel' 'libbd_mpath2' 'libbd_part-devel' 'libbd_part2' 'libbd_swap-devel' 'libbd_swap2' 'libbd_utils-devel' 'libbd_utils2' 'libbd_vdo-devel' 'libbd_vdo2' 'libbde-devel' 'libbde-tools' 'libbde1' 'libbdplus' 'libbdplus-debugsource' 'libbdplus-devel' 'libbdplus0' 'libbdplus0-debuginfo' 'libbeecrypt-devel' 'libbeecrypt6' 'libbelcard1' 'libbelcard1-32bit' 'libbellesip0' 'libbellesip0-32bit' 'libbelr1' 'libbelr1-32bit' 'libbemenu0' 'libbenchmark0' 'libbfio-devel' 'libbfio1' 'libbiblesync2_0' 'libbind9-160' 'libbind9-160-32bit' 'libbitcoinconsensus-devel' 'libbitcoinconsensus0' 'libbitmask-devel' 'libbitmask1' 'libblacs2-gnu-mpich-hpc' 'libblacs2-gnu-mpich-hpc-devel' 'libblacs2-gnu-mvapich2-hpc' 'libblacs2-gnu-mvapich2-hpc-devel' 'libblacs2-gnu-openmpi1-hpc' 'libblacs2-gnu-openmpi1-hpc-devel' 'libblacs2-gnu-openmpi2-hpc' 'libblacs2-gnu-openmpi2-hpc-devel' 'libblacs2-gnu-openmpi3-hpc' 'libblacs2-gnu-openmpi3-hpc-devel' 'libblacs2-mvapich2' 'libblacs2-mvapich2-devel' 'libblacs2-mvapich2-devel-static' 'libblacs2-openmpi' 'libblacs2-openmpi-devel' 'libblacs2-openmpi-devel-static' 'libblacs2-openmpi2' 'libblacs2-openmpi2-devel' 'libblacs2-openmpi2-devel-static' 'libblacs2-openmpi3' 'libblacs2-openmpi3-devel' 'libblacs2-openmpi3-devel-static' 'libblacs2_2_0_2-gnu-mpich-hpc' 'libblacs2_2_0_2-gnu-mpich-hpc-devel' 'libblacs2_2_0_2-gnu-mpich-hpc-devel-static' 'libblacs2_2_0_2-gnu-mvapich2-hpc' 'libblacs2_2_0_2-gnu-mvapich2-hpc-devel' 'libblacs2_2_0_2-gnu-mvapich2-hpc-devel-static' 'libblacs2_2_0_2-gnu-openmpi1-hpc' 'libblacs2_2_0_2-gnu-openmpi1-hpc-devel' 'libblacs2_2_0_2-gnu-openmpi1-hpc-devel-static' 'libblacs2_2_0_2-gnu-openmpi2-hpc' 'libblacs2_2_0_2-gnu-openmpi2-hpc-devel' 'libblacs2_2_0_2-gnu-openmpi2-hpc-devel-static' 'libblacs2_2_0_2-gnu-openmpi3-hpc' 'libblacs2_2_0_2-gnu-openmpi3-hpc-devel' 'libblacs2_2_0_2-gnu-openmpi3-hpc-devel-static' 'libbladeRF2' 'libbladeRF2-doc' 'libblas3' 'libblas3-32bit' 'libbliss-0_73' 'libblkid-devel' 'libblkid-devel-32bit' 'libblkid-devel-static' 'libblkid1' 'libblkid1-32bit' 'libblockdev' 'libblockdev-devel' 'libblockdev2' 'libblogger2' 'libblosc1' 'libbluetooth3' 'libbluetooth3-32bit' 'libbluray-bdj' 'libbluray-devel' 'libbluray-tools' 'libbluray2' 'libbluray2-32bit' 'libbml-devel' 'libbml1' 'libboinc-devel' 'libboinc7' 'libbonobo' 'libbonobo-32bit' 'libbonobo-devel' 'libbonobo-doc' 'libbonobo-lang' 'libbonoboui' 'libbonoboui-32bit' 'libbonoboui-devel' 'libbonoboui-doc' 'libbonoboui-lang' 'libbonoboui-tools' 'libboost_atomic-devel' 'libboost_atomic1_69_0' 'libboost_atomic1_69_0-32bit' 'libboost_atomic1_69_0-devel' 'libboost_chrono-devel' 'libboost_chrono1_69_0' 'libboost_chrono1_69_0-devel' 'libboost_container-devel' 'libboost_container1_69_0' 'libboost_container1_69_0-32bit' 'libboost_container1_69_0-devel' 'libboost_context-devel' 'libboost_context1_69_0' 'libboost_context1_69_0-32bit' 'libboost_context1_69_0-devel' 'libboost_contract-devel' 'libboost_contract1_69_0' 'libboost_contract1_69_0-devel' 'libboost_coroutine-devel' 'libboost_coroutine1_69_0' 'libboost_coroutine1_69_0-32bit' 'libboost_coroutine1_69_0-devel' 'libboost_date_time-devel' 'libboost_date_time1_69_0' 'libboost_date_time1_69_0-32bit' 'libboost_date_time1_69_0-devel' 'libboost_fiber-devel' 'libboost_fiber1_69_0' 'libboost_fiber1_69_0-32bit' 'libboost_fiber1_69_0-devel' 'libboost_filesystem-devel' 'libboost_filesystem1_69_0' 'libboost_filesystem1_69_0-32bit' 'libboost_filesystem1_69_0-devel' 'libboost_graph-devel' 'libboost_graph1_69_0' 'libboost_graph1_69_0-32bit' 'libboost_graph1_69_0-devel' 'libboost_graph_parallel-devel' 'libboost_graph_parallel1_69_0' 'libboost_graph_parallel1_69_0-32bit' 'libboost_graph_parallel1_69_0-devel' 'libboost_headers-devel' 'libboost_headers1_69_0-devel' 'libboost_iostreams-devel' 'libboost_iostreams1_69_0' 'libboost_iostreams1_69_0-32bit' 'libboost_iostreams1_69_0-devel' 'libboost_locale-devel' 'libboost_locale1_69_0' 'libboost_locale1_69_0-32bit' 'libboost_locale1_69_0-devel' 'libboost_log-devel' 'libboost_log1_69_0' 'libboost_log1_69_0-devel' 'libboost_math-devel' 'libboost_math1_69_0' 'libboost_math1_69_0-32bit' 'libboost_math1_69_0-devel' 'libboost_mpi-devel' 'libboost_mpi1_69_0' 'libboost_mpi1_69_0-32bit' 'libboost_mpi1_69_0-devel' 'libboost_mpi_python-devel' 'libboost_mpi_python-py2_7-1_69_0' 'libboost_mpi_python-py2_7-1_69_0-devel' 'libboost_mpi_python-py3-1_69_0' 'libboost_mpi_python-py3-1_69_0-devel' 'libboost_mpi_python3-devel' 'libboost_numpy-devel' 'libboost_numpy-py2_7-1_69_0' 'libboost_numpy-py2_7-1_69_0-devel' 'libboost_numpy-py3-1_69_0' 'libboost_numpy-py3-1_69_0-devel' 'libboost_numpy3-devel' 'libboost_program_options-devel' 'libboost_program_options1_69_0' 'libboost_program_options1_69_0-32bit' 'libboost_program_options1_69_0-devel' 'libboost_python-devel' 'libboost_python-py2_7-1_69_0' 'libboost_python-py2_7-1_69_0-32bit' 'libboost_python-py2_7-1_69_0-devel' 'libboost_python-py3-1_69_0' 'libboost_python-py3-1_69_0-32bit' 'libboost_python-py3-1_69_0-devel' 'libboost_python3-devel' 'libboost_random-devel' 'libboost_random1_69_0' 'libboost_random1_69_0-32bit' 'libboost_random1_69_0-devel' 'libboost_regex-devel' 'libboost_regex1_69_0' 'libboost_regex1_69_0-32bit' 'libboost_regex1_69_0-devel' 'libboost_serialization-devel' 'libboost_serialization1_69_0' 'libboost_serialization1_69_0-32bit' 'libboost_serialization1_69_0-devel' 'libboost_stacktrace-devel' 'libboost_stacktrace1_69_0' 'libboost_stacktrace1_69_0-32bit' 'libboost_stacktrace1_69_0-devel' 'libboost_system-devel' 'libboost_system1_69_0' 'libboost_system1_69_0-32bit' 'libboost_system1_69_0-devel' 'libboost_test-devel' 'libboost_test1_69_0' 'libboost_test1_69_0-32bit' 'libboost_test1_69_0-devel' 'libboost_thread-devel' 'libboost_thread1_69_0' 'libboost_thread1_69_0-32bit' 'libboost_thread1_69_0-devel' 'libboost_timer-devel' 'libboost_timer1_69_0' 'libboost_timer1_69_0-devel' 'libboost_type_erasure-devel' 'libboost_type_erasure1_69_0' 'libboost_type_erasure1_69_0-32bit' 'libboost_type_erasure1_69_0-devel' 'libboost_wave-devel' 'libboost_wave1_69_0' 'libboost_wave1_69_0-32bit' 'libboost_wave1_69_0-devel' 'libboringssl0' 'libbotan-2-10' 'libbotan-2-10-32bit' 'libbotan-devel' 'libbotan-devel-32bit' 'libbraille' 'libbraille-devel' 'libbraille-fake' 'libbrasero-burn3-1' 'libbrasero-media3-1' 'libbrasero-utils3-1' 'libbreezecommon4-5' 'libbreezecommon5-5' 'libbrlapi0_7' 'libbrotli-devel' 'libbrotlicommon1' 'libbrotlicommon1-32bit' 'libbrotlidec1' 'libbrotlidec1-32bit' 'libbrotlienc1' 'libbrotlienc1-32bit' 'libbs2b-devel' 'libbs2b0' 'libbs2b0-32bit' 'libbsd-ctor-static' 'libbsd-devel' 'libbsd0' 'libbssl_wrapper_lib0' 'libbtf1' 'libbtrfs-devel' 'libbtrfs0' 'libbtrfsutil-devel' 'libbtrfsutil1' 'libbuffer0_3' 'libbullet-devel' 'libbullet2_88' 'libburn-devel' 'libburn4' 'libbuzztrax-core-devel' 'libbuzztrax-core1' 'libbuzztrax-core1-32bit' 'libbuzztrax-gst-devel' 'libbuzztrax-gst1' 'libbuzztrax-gst1-32bit' 'libbuzztrax-ic-devel' 'libbuzztrax-ic1' 'libbuzztrax-ic1-32bit' 'libbytesize-devel' 'libbytesize-lang' 'libbytesize1' 'libbz2-1' 'libbz2-1-32bit' 'libbz2-devel' 'libbz2-devel-32bit' 'libbzrtp0' 'libbzrtp0-32bit' 'libc++-devel' 'libc++1' 'libc++abi-devel' 'libc++abi1' 'libc-client2007f_suse' 'libcaca-devel' 'libcaca-ruby' 'libcaca0' 'libcaca0-32bit' 'libcaca0-plugins' 'libcaca0-plugins-32bit' 'libcacard' 'libcacard-devel' 'libcacard0' 'libcaes-devel' 'libcaes1' 'libcaffe-gnu-hpc' 'libcaffe1_0_0' 'libcaffe_1_0-gnu-hpc' 'libcairo-gobject2' 'libcairo-gobject2-32bit' 'libcairo-script-interpreter2' 'libcairo-script-interpreter2-32bit' 'libcairo2' 'libcairo2-32bit' 'libcairomm-1_0-1' 'libcairomm-1_0-1-32bit' 'libcairomm-1_16-1' 'libcairomm-1_16-1-32bit' 'libcaja-extension1' 'libcal3d12' 'libcalc2' 'libcamd-doc' 'libcamd2' 'libcamel-1_2-62' 'libcamel-1_2-62-32bit' 'libcamera-devel' 'libcamera-suse1' 'libcamera-tools' 'libcanberra-devel' 'libcanberra-gtk-devel' 'libcanberra-gtk-module-common' 'libcanberra-gtk0' 'libcanberra-gtk0-32bit' 'libcanberra-gtk2-module' 'libcanberra-gtk2-module-32bit' 'libcanberra-gtk3-0' 'libcanberra-gtk3-0-32bit' 'libcanberra-gtk3-devel' 'libcanberra-gtk3-module' 'libcanberra-gtk3-module-32bit' 'libcanberra0' 'libcanberra0-32bit' 'libcangjie-data' 'libcangjie-devel' 'libcangjie-tools' 'libcangjie2' 'libcantorlibs23' 'libcap-devel' 'libcap-ng-devel' 'libcap-ng-utils' 'libcap-ng0' 'libcap-ng0-32bit' 'libcap-progs' 'libcap1' 'libcap1-32bit' 'libcap2' 'libcap2-32bit' 'libcapi20-2' 'libcapi20-2-32bit' 'libcapi20-3' 'libcapi20-3-32bit' 'libcapifax-devel' 'libcapifax0' 'libcapifax0-debuginfo' 'libcapnp-0_7' 'libcapnp-devel' 'libcares2' 'libcares2-32bit' 'libcaribou0' 'libcblas3' 'libcblas3-32bit' 'libcbor-devel' 'libcbor0' 'libccolamd2' 'libccrtp3' 'libcdata-devel' 'libcdata1' 'libcdatetime-devel' 'libcdatetime1' 'libcdaudio-devel' 'libcdaudio1' 'libcdaudio1-32bit' 'libcdd0' 'libcdda_interface0' 'libcdda_interface0-32bit' 'libcdda_paranoia0' 'libcdda_paranoia0-32bit' 'libcddb-devel' 'libcddb-utils' 'libcddb2' 'libcddb2-32bit' 'libcdio++0' 'libcdio++0-32bit' 'libcdio-devel' 'libcdio-paranoia-devel' 'libcdio19' 'libcdio19-32bit' 'libcdio_cdda2' 'libcdio_cdda2-32bit' 'libcdio_paranoia2' 'libcdio_paranoia2-32bit' 'libcdirectory-devel' 'libcdirectory1' 'libcdk5' 'libcdr-0_1-1' 'libcdr-devel' 'libcdr-devel-doc' 'libcdr-tools' 'libcdrdeflt1_0' 'libcec-devel' 'libcec4' 'libcelt-devel' 'libcelt-devel-32bit' 'libcelt0-2' 'libcelt0-2-32bit' 'libcelt051-0' 'libcephfs-devel' 'libcephfs2' 'libceres-devel' 'libceres1' 'libcerf-devel' 'libcerf1' 'libcerror-devel' 'libcerror1' 'libcetcd0' 'libcfg6' 'libcfg6-32bit' 'libcfile-devel' 'libcfile1' 'libcfitsio7' 'libchafa0' 'libchamplain-0_12-0' 'libchamplain-devel' 'libchardet-devel' 'libchardet1' 'libchardet1-32bit' 'libchck0' 'libcheck0' 'libcheck0-32bit' 'libcheese-common' 'libcheese-gtk25' 'libcheese8' 'libchewing-devel' 'libchewing3' 'libchewing3-32bit' 'libchipcard' 'libchipcard-devel' 'libchipcard6' 'libchm0' 'libchm0-32bit' 'libcholmod3' 'libchromaprint-devel' 'libchromaprint1' 'libchromaprint1-32bit' 'libcilium1' 'libcilkrts5' 'libcilkrts5-32bit' 'libcimcClientXML0' 'libcimcclient0' 'libcinnamon-control-center1' 'libcinnamon-desktop-data' 'libcinnamon-desktop-data-branding-openSUSE' 'libcinnamon-desktop-data-branding-upstream' 'libcinnamon-desktop-devel' 'libcinnamon-desktop-lang' 'libcinnamon-desktop4' 'libcinnamon-desktop4-32bit' 'libcinnamon-menu-3-0' 'libcinnamon-menu-3-0-32bit' 'libcinnamon-menu-3-devel' 'libcircle-devel' 'libcircle2' 'libcircllhist-devel' 'libcircllhist0_0_1' 'libcjose-devel' 'libcjose0' 'libcjs0' 'libck0' 'libclFFT2' 'libclamav9' 'libclang6' 'libclang6-32bit' 'libclang7' 'libclang7-32bit' 'libclang8' 'libclang8-32bit' 'libclastfm-devel' 'libclastfm0' 'libclaw-devel' 'libclaw-doc' 'libclaw1' 'libclc' 'libcld2-0' 'libcli-devel' 'libcli1_9' 'libclocale-devel' 'libclocale1' 'libcloudproviders-devel' 'libcloudproviders0' 'libclucene-contribs-lib1' 'libclucene-core1' 'libclucene-core1-32bit' 'libclucene-shared1' 'libclucene-shared1-32bit' 'libclutter-1_0-0' 'libclutter-1_0-0-32bit' 'libclutter-gst-3_0-0' 'libclutter-gst-3_0-0-32bit' 'libclutter-gtk-1_0-0' 'libclutter-gtk-1_0-0-32bit' 'libclzma-suse0' 'libcmap4' 'libcmap4-32bit' 'libcmark0_29_0' 'libcmis-0_5-5' 'libcmis-c-0_5-5' 'libcmis-c-devel' 'libcmis-devel' 'libcmocka-devel' 'libcmocka-devel-32bit' 'libcmocka-devel-static' 'libcmocka0' 'libcmocka0-32bit' 'libcmpiCppImpl0' 'libcmpisfcc1' 'libcmpiutil' 'libcmpiutil-devel' 'libcmrt1' 'libcmuclmtk-devel' 'libcmuclmtk0' 'libcnotify-devel' 'libcnotify1' 'libcob-devel' 'libcob4' 'libcodec2-0_8' 'libcodec2-0_8-32bit' 'libcogl-gles2-20' 'libcogl-pango20' 'libcogl-pango20-32bit' 'libcogl20' 'libcogl20-32bit' 'libcolamd2' 'libcollectdclient-devel' 'libcollectdclient1' 'libcollection-devel' 'libcollection-devel-32bit' 'libcollection4' 'libcollection4-32bit' 'libcolm-0_13_0_7' 'libcolord-devel' 'libcolord-gtk-devel' 'libcolord-gtk1' 'libcolord-gtk1-32bit' 'libcolord2' 'libcolord2-32bit' 'libcolorhug2' 'libcom_err-devel' 'libcom_err-devel-32bit' 'libcom_err-devel-static' 'libcom_err2' 'libcom_err2-32bit' 'libcompel1' 'libcompizconfig' 'libcompizconfig-devel' 'libcomps-devel' 'libcomps-doc' 'libcomps0_1_11' 'libconfig++-devel' 'libconfig++11' 'libconfig++11-32bit' 'libconfig-devel' 'libconfig11' 'libconfig11-32bit' 'libconfuse-devel' 'libconfuse-lang' 'libconfuse2' 'libcontainers-common' 'libcorosync-devel' 'libcorosync_common4' 'libcorosync_common4-32bit' 'libcorrect-devel' 'libcorrect0_0_0' 'libcourier-unicode4' 'libcpath-devel' 'libcpath1' 'libcpg4' 'libcpg4-32bit' 'libcpluff-devel' 'libcpluff0' 'libcpluffxx-devel' 'libcpluffxx0' 'libcpprest2_10' 'libcppunit-1_14-0' 'libcppunit-1_14-0-32bit' 'libcppunit_subunit0' 'libcppunit_subunit0-devel' 'libcpuid-devel' 'libcpuid-tools' 'libcpuid14' 'libcpupower0' 'libcpuset-devel' 'libcpuset1' 'libcrack2' 'libcrack2-32bit' 'libcreaterepo_c-devel' 'libcreaterepo_c0' 'libcriu2' 'libcroco' 'libcroco-0_6-3' 'libcroco-0_6-3-32bit' 'libcroco-devel' 'libcrossc1' 'libcrossc1-32bit' 'libcrossguid0' 'libcrypt1' 'libcrypt1-32bit' 'libcryptmount-devel' 'libcryptmount0' 'libcryptmount0-32bit' 'libcrypto45' 'libcrypto45-32bit' 'libcryptopp-devel' 'libcryptopp8_2_0' 'libcryptopp8_2_0-32bit' 'libcryptsetup-devel' 'libcryptsetup12' 'libcryptsetup12-32bit' 'libcryptsetup12-hmac' 'libcryptsetup12-hmac-32bit' 'libcryptui-data' 'libcryptui-devel' 'libcryptui-lang' 'libcryptui0' 'libcrystalhd-devel' 'libcrystalhd-devel-32bit' 'libcrystalhd3' 'libcrystalhd3-32bit' 'libcsirocsa0' 'libcsironn0' 'libcsnd6-6_0' 'libcsound64-6_0' 'libcsparse3' 'libcsplit-devel' 'libcsplit1' 'libcss-devel' 'libcss0' 'libcstring-devel' 'libcstring1' 'libcsv-devel' 'libcsv3' 'libcsync-devel' 'libcsync-devel-doc' 'libcsync-doc' 'libcsync-plugin-owncloud' 'libcsync-plugin-sftp' 'libcsync-plugin-smb' 'libcsync0' 'libcsync0-32bit' 'libcsystem-devel' 'libcsystem1' 'libct4' 'libctemplate-devel' 'libctemplate3' 'libcthreads-devel' 'libcthreads1' 'libctl-devel' 'libctl-doc' 'libctl5' 'libcudd-3_0_0-0' 'libcue-devel' 'libcue2' 'libcuefile-devel' 'libcuefile0' 'libcuneiform-devel' 'libcuneiform1' 'libcunit1' 'libcups2' 'libcups2-32bit' 'libcupsimage2' 'libcupsimage2-32bit' 'libcurl-devel' 'libcurl-devel-32bit' 'libcurl4' 'libcurl4-32bit' 'libcvc-devel' 'libcvc0' 'libcwiid-devel' 'libcwiid-devel-32bit' 'libcwiid1' 'libcwiid1-32bit' 'libcwnn0' 'libcxsc2' 'libcxsparse3' 'libcxx-gtk-utils-3-2_2-0' 'libcxx-gtk-utils-3-devel' 'libcxxtools-bin9' 'libcxxtools-http9' 'libcxxtools-json9' 'libcxxtools-unit9' 'libcxxtools-xmlrpc9' 'libcxxtools9' 'libczmq4' 'libd0_blind_id0' 'libd0_rijndael0' 'libdSFMT2_2' 'libdaemon-devel' 'libdaemon0' 'libdar-devel' 'libdar5000' 'libdat2-2' 'libdat2-2-32bit' 'libdataquay0' 'libdatrie-devel' 'libdatrie1' 'libdatrie1-32bit' 'libdav1d2' 'libdav1d2-32bit' 'libdavix0' 'libdazzle' 'libdazzle-1_0-0' 'libdazzle-devel' 'libdb-4_8' 'libdb-4_8-32bit' 'libdb-4_8-devel' 'libdb-4_8-devel-32bit' 'libdb_java-4_8' 'libdb_java-4_8-devel' 'libdbevolution0' 'libdbevolution0-debuginfo' 'libdbh2' 'libdbi-devel' 'libdbi-devel-32bit' 'libdbi-drivers-dbd-freetds' 'libdbi-drivers-dbd-mysql' 'libdbi-drivers-dbd-pgsql' 'libdbi-drivers-dbd-sqlite3' 'libdbi3' 'libdbi3-32bit' 'libdbus-1-3' 'libdbus-1-3-32bit' 'libdbus-c++-1-1' 'libdbus-c++-1-1-32bit' 'libdbus-c++-devel' 'libdbus-c++-glib-1-1' 'libdbus-c++-glib-1-1-32bit' 'libdbusextended-qt5-1' 'libdbusextended-qt5-devel' 'libdbusmenu-glib-devel' 'libdbusmenu-glib-doc' 'libdbusmenu-glib4' 'libdbusmenu-gtk-devel' 'libdbusmenu-gtk-doc' 'libdbusmenu-gtk3-4' 'libdbusmenu-gtk3-devel' 'libdbusmenu-gtk4' 'libdbusmenu-jsonloader-devel' 'libdbusmenu-jsonloader4' 'libdbusmenu-qt-devel' 'libdbusmenu-qt2' 'libdbusmenu-qt2-32bit' 'libdbusmenu-qt5-2' 'libdbusmenu-qt5-2-32bit' 'libdbusmenu-qt5-devel' 'libdbusmenu-qt5-devel-32bit' 'libdbusmenu-tools' 'libdc1394-25' 'libdc1394-25-32bit' 'libdc1394-devel' 'libdc1394-tools' 'libdca-devel' 'libdca0' 'libdca0-32bit' 'libdca0-32bit-debuginfo' 'libdca0-debuginfo' 'libdcadec-devel' 'libdcadec0' 'libdcadec0-32bit' 'libdcadec0-32bit-debuginfo' 'libdcadec0-debuginfo' 'libdcaenc-devel' 'libdcaenc0' 'libdcaenc0-debuginfo' 'libdccore0' 'libdccore0-debuginfo' 'libdcerpc-binding0' 'libdcerpc-binding0-32bit' 'libdcerpc-devel' 'libdcerpc-samr-devel' 'libdcerpc-samr0' 'libdcerpc-samr0-32bit' 'libdcerpc0' 'libdcerpc0-32bit' 'libdcmtk3_6' 'libdconf1' 'libdconf1-32bit' 'libdcwebservice0' 'libdcwebservice0-debuginfo' 'libdd_opentracing0' 'libddccontrol0' 'libddcutil-devel' 'libddcutil0' 'libde265' 'libde265-0' 'libde265-0-32bit' 'libde265-0-32bit-debuginfo' 'libde265-0-debuginfo' 'libde265-debugsource' 'libde265-devel' 'libdecoration0' 'libdecoration0-32bit' 'libdee-1_0-4' 'libdeflt1_0' 'libdevil-tools' 'libdevmapper-event1_03' 'libdevmapper-event1_03-32bit' 'libdevmapper1_03' 'libdevmapper1_03-32bit' 'libdframeworkdbus-devel' 'libdframeworkdbus2' 'libdhash-devel' 'libdhash-devel-32bit' 'libdhash1' 'libdhash1-32bit' 'libdialog15' 'libdico2' 'libdigikamcore6' 'libdirac_decoder0' 'libdirac_decoder0-32bit' 'libdirac_encoder0' 'libdirac_encoder0-32bit' 'libdiscid-devel' 'libdiscid0' 'libdiscid0-32bit' 'libdjconsole' 'libdjconsole-debugsource' 'libdjconsole-devel' 'libdjconsole0' 'libdjconsole0-debuginfo' 'libdjvCore0' 'libdjvCore0-debuginfo' 'libdjvulibre-devel' 'libdjvulibre21' 'libdleyna-core-1_0-5' 'libdlm' 'libdlm-devel' 'libdlm3' 'libdmapsharing-3_0-2' 'libdmapsharing-3_0-2-32bit' 'libdmapsharing-devel' 'libdmmp-devel' 'libdmmp0_2_0' 'libdmr0_1' 'libdmtx-devel' 'libdmtx0' 'libdmtx0-32bit' 'libdmusic1' 'libdmx-devel' 'libdmx-devel-32bit' 'libdmx1' 'libdmx1-32bit' 'libdnet-devel' 'libdnet-python' 'libdnet1' 'libdnf-devel' 'libdnf2' 'libdns169' 'libdns169-32bit' 'libdns_sd' 'libdns_sd-32bit' 'libdolphinvcs5' 'libdotconf0' 'libdouble-conversion3' 'libdouble-conversion3-32bit' 'libdpdk-18_11' 'libdriveio0' 'libdrm-devel' 'libdrm-devel-32bit' 'libdrm-tools' 'libdrm2' 'libdrm2-32bit' 'libdrm_amdgpu1' 'libdrm_amdgpu1-32bit' 'libdrm_intel1' 'libdrm_intel1-32bit' 'libdrm_nouveau2' 'libdrm_nouveau2-32bit' 'libdrm_radeon1' 'libdrm_radeon1-32bit' 'libdrumstick-alsa1' 'libdrumstick-devel' 'libdrumstick-doc' 'libdrumstick-file1' 'libdrumstick-rt-plugins' 'libdrumstick-rt1' 'libdruntime-ldc86' 'libdtkcore2' 'libdtkwidget2' 'libdtkwm2' 'libduktape201' 'libdv' 'libdv-devel' 'libdv4' 'libdv4-32bit' 'libdvbpsi-0-devel' 'libdvbpsi-devel' 'libdvbpsi10' 'libdvbpsi10-32bit' 'libdvbpsi7' 'libdvbpsi7-32bit' 'libdvbv5-0' 'libdvbv5-0-32bit' 'libdvbv5-0-lang' 'libdvbv5-devel' 'libdvd-audio' 'libdvd-audio-debuginfo' 'libdvd-audio-debugsource' 'libdvd-audio-devel' 'libdvd-audio-doc' 'libdvd-audio-utils' 'libdvd-audio-utils-debuginfo' 'libdvd-audio1' 'libdvd-audio1-debuginfo' 'libdvdcss' 'libdvdcss-debugsource' 'libdvdcss-devel' 'libdvdcss2' 'libdvdcss2-debuginfo' 'libdvdnav-devel' 'libdvdnav4' 'libdvdnav4-32bit' 'libdvdplay-devel' 'libdvdplay0' 'libdvdplay0' 'libdvdplay0-debuginfo' 'libdvdplay0-debugsource' 'libdvdread-devel' 'libdvdread3' 'libdvdread3' 'libdvdread3-debuginfo' 'libdvdread3-debugsource' 'libdvdread3-devel' 'libdvdread4' 'libdvdread4-32bit' 'libdw-devel' 'libdw1' 'libdw1-32bit' 'libdwarf-devel' 'libdwarf-devel-static' 'libdwarf-doc' 'libdwarf-tools' 'libdwarf1' 'libdwarves-devel' 'libdwarves-devel-32bit' 'libdwarves1' 'libdwarves1-32bit' 'libdxflib-3_17_0-1' 'libdxfrw-devel' 'libdxfrw-tools' 'libdxfrw0' 'libe-book-0_1-1' 'libe-book-devel' 'libe-book-devel-doc' 'libe-book-tools' 'libeXosip2' 'libeXosip2-12' 'libeXosip2-devel' 'libeb16' 'libebackend-1_2-10' 'libebackend-1_2-10-32bit' 'libebl-devel' 'libebl-plugins' 'libebl-plugins-32bit' 'libebml-devel' 'libebml4' 'libebml4-32bit' 'libebook-1_2-19' 'libebook-1_2-19-32bit' 'libebook-contacts-1_2-2' 'libebook-contacts-1_2-2-32bit' 'libebur128-1' 'libebur128-devel' 'libecal-1_2-19' 'libecal-1_2-19-32bit' 'libecasound-devel' 'libecholib1_3' 'libecholib1_3-devel' 'libechonest-qt5-devel' 'libechonest5-2_3' 'libechonest5-2_3-32bit' 'libecm1' 'libecore1' 'libecpg6' 'libecpg6-32bit' 'libecryptfs1' 'libecryptfs1-32bit' 'libector1' 'libedata-book-1_2-25' 'libedata-book-1_2-25-32bit' 'libedata-cal-1_2-29' 'libedata-cal-1_2-29-32bit' 'libedataserver-1_2-24' 'libedataserver-1_2-24-32bit' 'libedataserverui-1_2-2' 'libedataserverui-1_2-2-32bit' 'libedc_ecc1_0' 'libedc_ecc_dec1_0' 'libedit-devel' 'libedit0' 'libedit0-32bit' 'libeditorconfig-devel' 'libeditorconfig-devel-32bit' 'libeditorconfig0' 'libeditorconfig0-32bit' 'libedje1' 'libeet1' 'libeeze1' 'libefivar1' 'libefl1' 'libefreet1' 'libefreet_mime1' 'libefreet_trash1' 'libegbb3' 'libegbb3' 'libegbb3-debuginfo' 'libegbb3-debugsource' 'libegbb3-devel' 'libeina1' 'libeio1' 'libeldbus1' 'libelektra-augeas' 'libelektra-devel' 'libelektra-devel-doc' 'libelektra4' 'libelementary1' 'libelf-devel' 'libelf-devel-32bit' 'libelf1' 'libelf1-32bit' 'libell0' 'libelocation1' 'libelput1' 'libelua1' 'libembryo1' 'libemf2svg-devel' 'libemf2svg1' 'libemile1' 'libemotion1' 'libenca0' 'libenca0-32bit' 'libenchant-2-2' 'libenchant-2-2-32bit' 'libenchant1' 'libenchant1-32bit' 'libenet7' 'libeo1' 'libeolian1' 'libeot-devel' 'libeot-tools' 'libeot0' 'libepc-1_0-2' 'libepc-devel' 'libepc-lang' 'libephysics1' 'libepoxy-devel' 'libepoxy0' 'libepoxy0-32bit' 'libeppic-devel' 'libepub-devel' 'libepub0' 'libepub0-32bit' 'libepubgen-0_1-1' 'libepubgen-devel' 'libepubgen-devel-doc' 'liberasurecode-devel' 'liberasurecode1' 'liberation-fonts' 'liberfa1' 'libertinus-fonts' 'libesedb-devel' 'libesedb-tools' 'libesedb1' 'libesmtp-devel' 'libesmtp6' 'libespeak-ng1' 'libestr-devel' 'libestr0' 'libethumb1' 'libethumb_client1' 'libetonyek-0_1-1' 'libetonyek-devel' 'libetonyek-devel-doc' 'libetonyek-tools' 'libetpan-devel' 'libetpan20' 'libetrophy0' 'libev-devel' 'libev4' 'libev4-32bit' 'libevas1' 'libevdev-devel' 'libevdev-tools' 'libevdev2' 'libevdev2-32bit' 'libevdocument3-4' 'libevemu3' 'libevent-2_1-6' 'libevent-2_1-6-32bit' 'libevent-devel' 'libevent-devel-static' 'libevt-devel' 'libevt-tools' 'libevt1' 'libevtlog-3_19-0' 'libevtlog-devel' 'libevtlog0' 'libevtx-devel' 'libevtx-tools' 'libevtx1' 'libevview3-3' 'libewf-devel' 'libewf-tools' 'libewf2' 'libexe-devel' 'libexe-tools' 'libexe1' 'libexempi-devel' 'libexempi3' 'libexempi3-32bit' 'libexif-devel' 'libexif-devel-32bit' 'libexif-gtk' 'libexif-gtk-devel' 'libexif-gtk5' 'libexif12' 'libexif12-32bit' 'libexiv2-27' 'libexiv2-27-32bit' 'libexiv2-devel' 'libexiv2-doc' 'libexiv2-xmp-static' 'libexo-1-0' 'libexo-2-0' 'libexoIIv2for-5_14_0' 'libexodus-5_14_0' 'libexpat-devel' 'libexpat-devel-32bit' 'libexpat1' 'libexpat1-32bit' 'libexplain-devel' 'libexplain51' 'libext2fs-devel' 'libext2fs-devel-32bit' 'libext2fs-devel-static' 'libext2fs2' 'libext2fs2-32bit' 'libexttextcat' 'libexttextcat-2_0-0' 'libexttextcat-devel' 'libexttextcat-tools' 'libf2c0' 'libf2fs6' 'libf2fs_format5' 'libf95getdata7' 'libfaac-devel' 'libfaac0' 'libfaac0-32bit' 'libfaac0-32bit-debuginfo' 'libfaac0-debuginfo' 'libfaad-devel' 'libfaad2' 'libfaad2-32bit' 'libfaad2-32bit-debuginfo' 'libfaad2-debuginfo' 'libfaad_drm2' 'libfaad_drm2-debuginfo' 'libfabric' 'libfabric-devel' 'libfabric-devel-32bit' 'libfabric1' 'libfabric1-32bit' 'libfakekey-devel' 'libfakekey0' 'libfaketime' 'libfallocate-devel' 'libfallocate-devel-static' 'libfallocate0' 'libfam0-gamin' 'libfam0-gamin-32bit' 'libfame-0_9-1' 'libfame-0_9-1' 'libfame-0_9-1-debuginfo' 'libfame-0_9-1-debugsource' 'libfame-devel' 'libfann-devel' 'libfann2' 'libfarstream-0_2-5' 'libfarstream-0_2-5-32bit' 'libfastjet0' 'libfastjson-devel' 'libfastjson4' 'libfastlz1' 'libfaxutil7_0_0' 'libfbclient-devel' 'libfbclient2' 'libfbclient2-32bit' 'libfcache-devel' 'libfcache1' 'libfcgi0' 'libfcitx-4_2_9' 'libfcitx-4_2_9-32bit' 'libfdata-devel' 'libfdata1' 'libfdatetime-devel' 'libfdatetime1' 'libfdisk-devel' 'libfdisk-devel-static' 'libfdisk1' 'libfdk-aac1' 'libfdk-aac1-32bit' 'libfdk-aac1-32bit-debuginfo' 'libfdk-aac1-debuginfo' 'libfdt-devel' 'libfdt-devel-32bit' 'libfdt1' 'libfdt1-32bit' 'libfec3' 'libffado-devel' 'libffado2' 'libffado2-32bit' 'libffcall0' 'libffi-devel' 'libffi7' 'libffi7-32bit' 'libffmpegthumbnailer-devel' 'libffmpegthumbnailer4' 'libffms2-4' 'libffms2-4-32bit' 'libffms2-devel' 'libfftw3-3' 'libfftw3-3-32bit' 'libfftw3-gnu-hpc' 'libfftw3-gnu-mpich-hpc' 'libfftw3-gnu-mvapich2-hpc' 'libfftw3-gnu-openmpi1-hpc' 'libfftw3-gnu-openmpi2-hpc' 'libfftw3-gnu-openmpi3-hpc' 'libfftw3_3_3_8-gnu-hpc' 'libfftw3_3_3_8-gnu-mpich-hpc' 'libfftw3_3_3_8-gnu-mvapich2-hpc' 'libfftw3_3_3_8-gnu-openmpi1-hpc' 'libfftw3_3_3_8-gnu-openmpi2-hpc' 'libfftw3_3_3_8-gnu-openmpi3-hpc' 'libfftw3_mpi3' 'libfftw3_mpi3-32bit' 'libfftw3_omp3' 'libfftw3_omp3-32bit' 'libfftw3_threads3' 'libfftw3_threads3-32bit' 'libfgetdata6' 'libfguid-devel' 'libfguid1' 'libfido2-1' 'libfido2-devel' 'libfido2-utils' 'libfife0_4_2' 'libfifechan0_1_5' 'libfifechan_opengl0_1_5' 'libfifechan_sdl0_1_5' 'libfile1_0' 'libfilezilla-devel' 'libfilezilla0' 'libfilteraudio0' 'libfinal-devel' 'libfinal-examples' 'libfinal0' 'libfind3_0' 'libfipscheck1' 'libfipscheck1-32bit' 'libfishsound-devel' 'libfishsound1' 'libfityk4' 'libfko-devel' 'libfko3' 'libfl-devel' 'libfl-devel-32bit' 'libfl2' 'libfl2-32bit' 'libflann1_9' 'libflatbuffers1' 'libflatpak0' 'libflickcurl-devel' 'libflickcurl0' 'libflickcurl0-32bit' 'libflint0' 'libflorence-1_0-1' 'libfltk1' 'libfltk1-32bit' 'libfluidsynth2' 'libfluidsynth2-32bit' 'libflxmlrpc1' 'libfm' 'libfm-devel' 'libfm-doc' 'libfm-extra-devel' 'libfm-extra4' 'libfm-gtk-devel' 'libfm-gtk4' 'libfm-lang' 'libfm-qt-devel' 'libfm-qt-lang' 'libfm-qt6' 'libfm4' 'libfmapi-devel' 'libfmapi1' 'libfmt5' 'libfmt5-32bit' 'libfole-devel' 'libfole1' 'libfolks-data' 'libfolks-eds25' 'libfolks-telepathy25' 'libfolks-tracker25' 'libfolks25' 'libfoma-hfst0' 'libfoma0' 'libfont-specimen0' 'libfontconfig1' 'libfontconfig1-32bit' 'libfontenc-devel' 'libfontenc-devel-32bit' 'libfontenc1' 'libfontenc1-32bit' 'libfonts' 'libfonts-javadoc' 'libformula' 'libformula-javadoc' 'libfparser-4_5_2' 'libfplll5' 'libfpm_pb0' 'libfprint-devel' 'libfprint0' 'libfprint0-32bit' 'libframe6' 'libframe6-32bit' 'libfreebl3' 'libfreebl3-32bit' 'libfreecell-solver0' 'libfreefare-devel' 'libfreefare-tools' 'libfreefare0' 'libfreehand-0_1-1' 'libfreehand-devel' 'libfreehand-devel-doc' 'libfreehand-tools' 'libfreeimage3' 'libfreeimageplus3' 'libfreeipmi17' 'libfreerdp2' 'libfreesrp0' 'libfreetype6' 'libfreetype6-32bit' 'libfreexl1' 'libfribidi0' 'libfribidi0-32bit' 'libfsm0' 'libfsntfs-devel' 'libfsntfs-tools' 'libfsntfs1' 'libfst-hfst0' 'libfstrcmp0' 'libfstrm0' 'libftdi0-binding-python' 'libftdi0-devel' 'libftdi1' 'libftdi1-2' 'libftdi1-devel' 'libftgl2' 'libftgl2-32bit' 'libftoa0_3' 'libfunambol-9_0_1' 'libfunambol-devel' 'libfuse2' 'libfuse2-32bit' 'libfuse3-3' 'libfuse3-3-32bit' 'libfuzzy-devel' 'libfuzzy2' 'libfvalue-devel' 'libfvalue1' 'libfvde-devel' 'libfvde-tools' 'libfvde1' 'libfwevt-devel' 'libfwevt1' 'libfwnt-devel' 'libfwnt1' 'libfwsi-devel' 'libfwsi1' 'libfwupd2' 'libgadu-devel' 'libgadu3' 'libgamemode-devel' 'libgamemode0' 'libgamemode0-32bit' 'libgamemodeauto0' 'libgamemodeauto0-32bit' 'libgamin-1-0' 'libgamin-1-0-32bit' 'libgaminggear' 'libgaminggear-devel' 'libgaminggear-lang' 'libgaminggear0' 'libgaminggearfx0' 'libgaminggearwidget0' 'libganesha_nfsd-devel' 'libganesha_nfsd2_8' 'libganglia0' 'libgarcon-1-0' 'libgarcon-branding-openSUSE' 'libgarcon-branding-upstream' 'libgarcon-data' 'libgarcon-devel' 'libgarcon-doc' 'libgarcon-lang' 'libgasnet-1_30_0' 'libgavl-devel' 'libgavl1' 'libgbm-devel' 'libgbm-devel-32bit' 'libgbm1' 'libgbm1-32bit' 'libgc1' 'libgcab-1_0-0' 'libgcc_s1' 'libgcc_s1-32bit' 'libgcc_s1-gcc7' 'libgcc_s1-gcc7-32bit' 'libgcc_s1-gcc8' 'libgcc_s1-gcc8-32bit' 'libgcin-im-client1' 'libgcin-im-client1-32bit' 'libgcj-devel-gcc6' 'libgcj-devel-gcc6-debuginfo' 'libgcj-gcc6' 'libgcj-gcc6' 'libgcj-gcc6-debuginfo' 'libgcj-gcc6-debugsource' 'libgcj-jar-gcc6' 'libgcj_bc1' 'libgck-1-0' 'libgck-1-0-32bit' 'libgck-devel' 'libgck-devel-32bit' 'libgck-modules-gnome-keyring' 'libgcr-3-1' 'libgcr-3-1-32bit' 'libgcr-devel' 'libgcr-devel-32bit' 'libgcrypt-cavs' 'libgcrypt-devel' 'libgcrypt-devel-32bit' 'libgcrypt20' 'libgcrypt20-32bit' 'libgcrypt20-hmac' 'libgcrypt20-hmac-32bit' 'libgd3' 'libgd3-32bit' 'libgda-5_0-4' 'libgda-5_0-4-lang' 'libgda-5_0-bdb' 'libgda-5_0-devel' 'libgda-5_0-doc' 'libgda-5_0-firebird' 'libgda-5_0-jdbc' 'libgda-5_0-ldap' 'libgda-5_0-mdb' 'libgda-5_0-mysql' 'libgda-5_0-postgres' 'libgda-5_0-sqlcipher' 'libgda-5_0-sqlite' 'libgda-5_0-tools' 'libgda-5_0-web' 'libgda-report-5_0-4' 'libgda-tools' 'libgda-ui-5_0-4' 'libgda-ui-5_0-plugins' 'libgda-ui-5_0-tools' 'libgda-xslt-5_0-4' 'libgdal26' 'libgdamm-5_0-13' 'libgdamm-devel' 'libgdata-devel' 'libgdata-lang' 'libgdata22' 'libgdata22-32bit' 'libgdbm6' 'libgdbm6-32bit' 'libgdbm_compat4' 'libgdbm_compat4-32bit' 'libgdiplus-devel' 'libgdiplus0' 'libgdk_pixbuf-2_0-0' 'libgdk_pixbuf-2_0-0-32bit' 'libgdl-3-5' 'libgdlmm-3_0-2' 'libgdm1' 'libgdruntime76' 'libgdruntime76-32bit' 'libgeany0' 'libgeda-data' 'libgeda-devel' 'libgeda45' 'libgedacairo-devel' 'libgedacairo1' 'libgee-0_8-2' 'libgee-0_8-2-32bit' 'libgee-devel' 'libgee06-devel' 'libgee2' 'libgegl-0_4-0' 'libgegl-0_4-0-32bit' 'libgeis1' 'libgeis1-32bit' 'libgenders0' 'libgendersplusplus2' 'libgeners0' 'libgeocode-glib0' 'libgeocode-glib0-32bit' 'libgeos-3_7_2' 'libgeos_c1' 'libgeotiff5' 'libgepub-0_6-0' 'libgepub-devel' 'libgerbv1' 'libges-1_0-0' 'libgetdata++7' 'libgetdata8' 'libgexiv2-2' 'libgexiv2-2-32bit' 'libgexiv2-devel' 'libgf2x-1_2' 'libgfapi0' 'libgfbgraph-0_2-0' 'libgfchangelog0' 'libgfdb0' 'libgflags2' 'libgfortran4' 'libgfortran4-32bit' 'libgfortran5' 'libgfortran5-32bit' 'libgfortran5-gcc8' 'libgfortran5-gcc8-32bit' 'libgfrpc0' 'libgfxdr0' 'libggz2' 'libggz2-devel' 'libgiblib1' 'libgif7' 'libgif7-32bit' 'libgig-devel' 'libgig-tools' 'libgig8' 'libgimp-2_0-0' 'libgimp-2_0-0-32bit' 'libgimpui-2_0-0' 'libgimpui-2_0-0-32bit' 'libginac-devel' 'libginac6' 'libgio-2_0-0' 'libgio-2_0-0-32bit' 'libgio-fam' 'libgio-fam-32bit' 'libgiomm-2_4-1' 'libgiomm-2_4-1-32bit' 'libgiomm-2_60-1' 'libgiomm-2_60-1-32bit' 'libgirara-gtk3-3' 'libgirepository-1_0-1' 'libgirepository-1_0-1-32bit' 'libgit2-28' 'libgit2-28-32bit' 'libgit2-devel' 'libgit2-glib-1_0-0' 'libgit2-glib-devel' 'libgitg-1_0-0' 'libgitg-devel' 'libgitg-ext-1_0-0' 'libgivaro9' 'libgjs-devel' 'libgjs0' 'libgl2ps1' 'libglade-2_0-0' 'libglade-2_0-0-32bit' 'libglade2-devel' 'libglade2-doc' 'libgladeui-2-6' 'libgladeui-2-devel' 'libgle-devel' 'libgle3' 'libglfw-devel' 'libglfw2' 'libglfw3' 'libglib-2_0-0' 'libglib-2_0-0-32bit' 'libglibmm-2_4-1' 'libglibmm-2_4-1-32bit' 'libglibmm-2_60-1' 'libglibmm-2_60-1-32bit' 'libglog0' 'libglom-1_32-0' 'libglom-devel' 'libgloox17' 'libgloox17-32bit' 'libglpk40' 'libglslang-suse6' 'libgltf-0_1-1' 'libgltf-devel' 'libglue-devel' 'libglue-devel-32bit' 'libglue2' 'libglue2-32bit' 'libglusterfs0' 'libglut3' 'libglut3-32bit' 'libglvnd' 'libglvnd-32bit' 'libglvnd-devel' 'libglvnd-devel-32bit' 'libglyr1' 'libglyr1-32bit' 'libgme-devel' 'libgme0' 'libgme0-32bit' 'libgmerlin-devel' 'libgmerlin0' 'libgmerlin0-debuginfo' 'libgmerlin_avdec-devel' 'libgmerlin_avdec1' 'libgmerlin_avdec1-debuginfo' 'libgmerlin_gtk-devel' 'libgmerlin_gtk0' 'libgmerlin_gtk0-debuginfo' 'libgmime-2_6-0' 'libgmime-2_6-0-32bit' 'libgmime-3_0-0' 'libgmime-3_0-0-32bit' 'libgmodule-2_0-0' 'libgmodule-2_0-0-32bit' 'libgmp10' 'libgmp10-32bit' 'libgmpxx4' 'libgmpxx4-32bit' 'libgnome' 'libgnome-32bit' 'libgnome-autoar-0-0' 'libgnome-autoar-gtk-0-0' 'libgnome-bluetooth13' 'libgnome-desktop-2-17' 'libgnome-desktop-2-17-32bit' 'libgnome-desktop-2-devel' 'libgnome-desktop-3-17' 'libgnome-desktop-3-17-32bit' 'libgnome-desktop-3-devel' 'libgnome-desktop-3_0-common' 'libgnome-devel' 'libgnome-games-support-1-3' 'libgnome-games-support-devel' 'libgnome-games-support-lang' 'libgnome-keyring-devel' 'libgnome-keyring-lang' 'libgnome-keyring0' 'libgnome-keyring0-32bit' 'libgnome-lang' 'libgnome-menu-3-0' 'libgnome-menu-3-0-32bit' 'libgnomecanvas-2-0' 'libgnomecanvas-2-0-32bit' 'libgnomecanvas-devel' 'libgnomecanvas-lang' 'libgnomekbd-devel' 'libgnomekbd-lang' 'libgnomekbd8' 'libgnomesu' 'libgnomesu-devel' 'libgnomesu-lang' 'libgnomesu0' 'libgnomeui' 'libgnomeui-32bit' 'libgnomeui-devel' 'libgnomeui-doc' 'libgnomeui-lang' 'libgnuastro6' 'libgnuradio-3_7_12-0_0_0' 'libgnuradio-fcdproplus-3_7_2_0-0_0_0' 'libgnuradio-fcdproplus-devel' 'libgnuradio-iqbalance' 'libgnuradio-iqbalance-devel' 'libgnuradio-osmosdr-0_1_5git0_0_0' 'libgnustep-base1_26' 'libgnutls-dane-devel' 'libgnutls-dane0' 'libgnutls-devel' 'libgnutls-devel-32bit' 'libgnutls30' 'libgnutls30-32bit' 'libgnutlsxx-devel' 'libgnutlsxx28' 'libgo11' 'libgo11-32bit' 'libgo13' 'libgo13-32bit' 'libgo14' 'libgo14-32bit' 'libgoa-1_0-0' 'libgoa-1_0-0-32bit' 'libgoa-backend-1_0-1' 'libgoa-backend-1_0-1-32bit' 'libgobject-2_0-0' 'libgobject-2_0-0-32bit' 'libgoffice-0_10-10' 'libgom-1_0-0' 'libgomp1' 'libgomp1-32bit' 'libgomp1-gcc7' 'libgomp1-gcc7-32bit' 'libgomp1-gcc8' 'libgomp1-gcc8-32bit' 'libgoocanvas-2_0-9' 'libgoocanvas3' 'libgoocanvas3-devel' 'libgoocanvas3-lang' 'libgoocanvasmm-2_0-6' 'libgoocanvasmm-devel' 'libgooglepinyin-devel' 'libgooglepinyin0' 'libgovf-0_1' 'libgovirt-devel' 'libgovirt-lang' 'libgovirt2' 'libgpac-devel' 'libgpac8' 'libgpaste11' 'libgpg-error-devel' 'libgpg-error-devel-32bit' 'libgpg-error0' 'libgpg-error0-32bit' 'libgpgme-devel' 'libgpgme11' 'libgpgme11-32bit' 'libgpgmepp-devel' 'libgpgmepp6' 'libgpgmepp6-32bit' 'libgphobos76' 'libgphobos76-32bit' 'libgphoto2-6' 'libgphoto2-6-32bit' 'libgphoto2-6-lang' 'libgphoto2-devel' 'libgphoto2-devel-32bit' 'libgphoto2-devel-doc' 'libgphoto2-doc' 'libgpiod' 'libgpiod-devel' 'libgpiod2' 'libgpiodcxx1' 'libgpiomockup0' 'libgpm2' 'libgpm2-32bit' 'libgpod-devel' 'libgpod-doc' 'libgpod-lang' 'libgpod-tools' 'libgpod4' 'libgpod4-32bit' 'libgps24' 'libgrail6' 'libgrail6-32bit' 'libgranite5' 'libgraphblas2' 'libgraphene-1_0-0' 'libgraphene-1_0-0-32bit' 'libgraphene-devel' 'libgraphite2-3' 'libgraphite2-3-32bit' 'libgraphviz6' 'libgravatar' 'libgravatar-devel' 'libgravatar-lang' 'libgrilo-0_3-0' 'libgrlnet-0_3-0' 'libgrlpls-0_3-0' 'libgromacs4' 'libgroove-devel' 'libgroove4' 'libgroovefingerprinter-devel' 'libgroovefingerprinter4' 'libgrooveloudness-devel' 'libgrooveloudness4' 'libgrooveplayer-devel' 'libgrooveplayer4' 'libgroupsock8' 'libgrpc-httpjson-transcoding0' 'libgrpc6' 'libgrss-devel' 'libgrss0' 'libgsasl-devel' 'libgsasl-lang' 'libgsasl7' 'libgsequencer0' 'libgsettings-qt1' 'libgsf-1-114' 'libgsf-1-114-32bit' 'libgsf-devel' 'libgsf-lang' 'libgsf-tools' 'libgsl-gnu-hpc' 'libgsl23' 'libgsl25' 'libgsl_2_6-gnu-hpc' 'libgslcblas-gnu-hpc' 'libgslcblas0' 'libgslcblas_2_6-gnu-hpc' 'libgsm-devel' 'libgsm-devel-32bit' 'libgsm-utils' 'libgsm1' 'libgsm1-32bit' 'libgsmsd8' 'libgsoap-2_8_91' 'libgsound0' 'libgspell-1-2' 'libgssdp-1_2-0' 'libgssdp-1_2-0-32bit' 'libgssdp-devel' 'libgssglue-devel' 'libgssglue1' 'libgssglue1-32bit' 'libgstadaptivedemux-1_0-0' 'libgstadaptivedemux-1_0-0-32bit' 'libgstadaptivedemux-1_0-0-32bit-debuginfo' 'libgstadaptivedemux-1_0-0-debuginfo' 'libgstallocators-1_0-0' 'libgstallocators-1_0-0-32bit' 'libgstapp-1_0-0' 'libgstapp-1_0-0-32bit' 'libgstaudio-1_0-0' 'libgstaudio-1_0-0-32bit' 'libgstbadaudio-1_0-0' 'libgstbadaudio-1_0-0-32bit' 'libgstbadaudio-1_0-0-32bit-debuginfo' 'libgstbadaudio-1_0-0-debuginfo' 'libgstbasecamerabinsrc-1_0-0' 'libgstbasecamerabinsrc-1_0-0-32bit' 'libgstbasecamerabinsrc-1_0-0-32bit-debuginfo' 'libgstbasecamerabinsrc-1_0-0-debuginfo' 'libgstcodecparsers-1_0-0' 'libgstcodecparsers-1_0-0-32bit' 'libgstcodecparsers-1_0-0-32bit-debuginfo' 'libgstcodecparsers-1_0-0-debuginfo' 'libgstfft-1_0-0' 'libgstfft-1_0-0-32bit' 'libgstgl-1_0-0' 'libgstgl-1_0-0-32bit' 'libgstinsertbin-1_0-0' 'libgstinsertbin-1_0-0-32bit' 'libgstinsertbin-1_0-0-32bit-debuginfo' 'libgstinsertbin-1_0-0-debuginfo' 'libgstisoff-1_0-0' 'libgstisoff-1_0-0-32bit' 'libgstisoff-1_0-0-32bit-debuginfo' 'libgstisoff-1_0-0-debuginfo' 'libgstmpegts-1_0-0' 'libgstmpegts-1_0-0-32bit' 'libgstmpegts-1_0-0-32bit-debuginfo' 'libgstmpegts-1_0-0-debuginfo' 'libgstpbutils-1_0-0' 'libgstpbutils-1_0-0-32bit' 'libgstphotography-1_0-0' 'libgstphotography-1_0-0-32bit' 'libgstphotography-1_0-0-32bit-debuginfo' 'libgstphotography-1_0-0-debuginfo' 'libgstplayer-1_0-0' 'libgstplayer-1_0-0-32bit' 'libgstplayer-1_0-0-32bit-debuginfo' 'libgstplayer-1_0-0-debuginfo' 'libgstreamer-1_0-0' 'libgstreamer-1_0-0-32bit' 'libgstreamerd-3-0' 'libgstreamermm-1_0-1' 'libgstriff-1_0-0' 'libgstriff-1_0-0-32bit' 'libgstrtp-1_0-0' 'libgstrtp-1_0-0-32bit' 'libgstrtsp-1_0-0' 'libgstrtsp-1_0-0-32bit' 'libgstrtspserver-1_0-0' 'libgstsctp-1_0-0' 'libgstsctp-1_0-0-32bit' 'libgstsctp-1_0-0-32bit-debuginfo' 'libgstsctp-1_0-0-debuginfo' 'libgstsdp-1_0-0' 'libgstsdp-1_0-0-32bit' 'libgsttag-1_0-0' 'libgsttag-1_0-0-32bit' 'libgsttranscoder-1_0-0' 'libgsturidownloader-1_0-0' 'libgsturidownloader-1_0-0-32bit' 'libgsturidownloader-1_0-0-32bit-debuginfo' 'libgsturidownloader-1_0-0-debuginfo' 'libgstvalidate-1_0-0' 'libgstvideo-1_0-0' 'libgstvideo-1_0-0-32bit' 'libgstwayland-1_0-0' 'libgstwayland-1_0-0-32bit' 'libgstwayland-1_0-0-32bit-debuginfo' 'libgstwayland-1_0-0-debuginfo' 'libgstwebrtc-1_0-0' 'libgstwebrtc-1_0-0-32bit' 'libgstwebrtc-1_0-0-32bit-debuginfo' 'libgstwebrtc-1_0-0-debuginfo' 'libgthread-2_0-0' 'libgthread-2_0-0-32bit' 'libgtk-2_0-0' 'libgtk-2_0-0-32bit' 'libgtk-3-0' 'libgtk-3-0-32bit' 'libgtk-4-0' 'libgtk-4-0-32bit' 'libgtk-frdp-0_1' 'libgtk-vnc-2_0-0' 'libgtkd-3-0' 'libgtkdatabox-0_9_3-0' 'libgtkdatabox-devel' 'libgtkdgl-3-0' 'libgtkdsv-3-0' 'libgtkglext-x11-1_0-0' 'libgtkglext-x11-1_0-0-32bit' 'libgtkhex-3-0' 'libgtkhotkey-devel' 'libgtkhotkey1' 'libgtkhtml-4_0-0' 'libgtkhtml-4_0-0-32bit' 'libgtkhtml-editor-4_0-0' 'libgtkhtml-editor-4_0-0-32bit' 'libgtkimageview0' 'libgtkmm-2_4-1' 'libgtkmm-2_4-1-32bit' 'libgtkmm-3_0-1' 'libgtkmm-3_0-1-32bit' 'libgtkpod1' 'libgtksourceview-2_0-0' 'libgtksourceview-3_0-1' 'libgtksourceview-4-0' 'libgtksourceviewmm-3_0-0' 'libgtkspell0' 'libgtkspell3-3-0' 'libgtop' 'libgtop-2_0-11' 'libgtop-2_0-11-32bit' 'libgtop-devel' 'libgtop-doc' 'libgtop-lang' 'libgtp-devel' 'libgtp5' 'libgtpnl-devel' 'libgtpnl0' 'libgts-0_7-5' 'libgucharmap_2_90-7' 'libgudev-1_0-0' 'libgudev-1_0-0-32bit' 'libgudev-1_0-devel' 'libguess-devel' 'libguess1' 'libguess1-32bit' 'libguestfs-devel' 'libguestfs-test' 'libguestfs0' 'libguile-2_2-1' 'libguile-cairo0' 'libguile-srfi-srfi-1-v-3-3' 'libguile-srfi-srfi-13-14-v-3-3' 'libguile-srfi-srfi-4-v-3-3' 'libguile-srfi-srfi-60-v-2-2' 'libguile-ssh11' 'libguile1-devel' 'libguile17' 'libguilereadline-v-17-17' 'libgupnp-1_2-0' 'libgupnp-1_2-0-32bit' 'libgupnp-av-1_0-2' 'libgupnp-av-devel' 'libgupnp-devel' 'libgupnp-dlna-2_0-3' 'libgupnp-dlna-backend-gstreamer' 'libgupnp-dlna-devel' 'libgupnp-igd-1_0-4' 'libgupnp-igd-1_0-4-32bit' 'libgupnp-igd-devel' 'libgusb-devel' 'libgusb2' 'libgviewaudio-2_0-2' 'libgviewencoder-2_0-2' 'libgviewrender-2_0-2' 'libgviewv4l2core-2_0-2' 'libgviewv4l2core-lang' 'libgvnc-1_0-0' 'libgvncpulse-1_0-0' 'libgweather-3-15' 'libgweather-3-15-32bit' 'libgweather-devel' 'libgweather-lang' 'libgwengui-cpp0' 'libgwengui-fox16-0' 'libgwengui-gtk2-0' 'libgwengui-gtk3-0' 'libgwengui-qt4-0' 'libgwengui-qt5-0' 'libgwenhywfar60' 'libgwenhywfar60-plugins' 'libgxps-devel' 'libgxps-tools' 'libgxps2' 'libgxw0' 'libgxwmm0' 'libgypsy-devel' 'libgypsy0' 'libgypsy0-32bit' 'libhackrf0' 'libhal1' 'libhamlib++2' 'libhamlib2' 'libhandle1' 'libhandy-0_0-0' 'libhandy-devel' 'libhangul-devel' 'libhangul1' 'libhangul1-32bit' 'libharfbuzz-gobject0' 'libharfbuzz-gobject0-32bit' 'libharfbuzz-icu0' 'libharfbuzz-icu0-32bit' 'libharfbuzz-subset0' 'libharfbuzz-subset0-32bit' 'libharfbuzz0' 'libharfbuzz0-32bit' 'libharminv3' 'libharu-devel' 'libhavege1' 'libhavoc0' 'libhavoc0-debuginfo' 'libhdf4' 'libhdf4-32bit' 'libhdf4-openmpi' 'libhdf4-openmpi-32bit' 'libhdf5-103' 'libhdf5-103-32bit' 'libhdf5-103-mvapich2' 'libhdf5-103-mvapich2-32bit' 'libhdf5-103-openmpi' 'libhdf5-103-openmpi-32bit' 'libhdf5-103-openmpi2' 'libhdf5-103-openmpi2-32bit' 'libhdf5-103-openmpi3' 'libhdf5-103-openmpi3-32bit' 'libhdf5-gnu-hpc' 'libhdf5-gnu-mpich-hpc' 'libhdf5-gnu-mvapich2-hpc' 'libhdf5-gnu-openmpi1-hpc' 'libhdf5-gnu-openmpi2-hpc' 'libhdf5-gnu-openmpi3-hpc' 'libhdf5_1_10_4-gnu-hpc' 'libhdf5_1_10_4-gnu-mpich-hpc' 'libhdf5_1_10_4-gnu-mvapich2-hpc' 'libhdf5_1_10_4-gnu-openmpi1-hpc' 'libhdf5_1_10_4-gnu-openmpi2-hpc' 'libhdf5_1_10_4-gnu-openmpi3-hpc' 'libhdf5_cpp-gnu-hpc' 'libhdf5_cpp-gnu-mpich-hpc' 'libhdf5_cpp-gnu-mvapich2-hpc' 'libhdf5_cpp-gnu-openmpi1-hpc' 'libhdf5_cpp-gnu-openmpi2-hpc' 'libhdf5_cpp-gnu-openmpi3-hpc' 'libhdf5_cpp103' 'libhdf5_cpp103-32bit' 'libhdf5_cpp103-mvapich2' 'libhdf5_cpp103-mvapich2-32bit' 'libhdf5_cpp103-openmpi' 'libhdf5_cpp103-openmpi-32bit' 'libhdf5_cpp103-openmpi2' 'libhdf5_cpp103-openmpi2-32bit' 'libhdf5_cpp103-openmpi3' 'libhdf5_cpp103-openmpi3-32bit' 'libhdf5_cpp_1_10_4-gnu-hpc' 'libhdf5_cpp_1_10_4-gnu-mpich-hpc' 'libhdf5_cpp_1_10_4-gnu-mvapich2-hpc' 'libhdf5_cpp_1_10_4-gnu-openmpi1-hpc' 'libhdf5_cpp_1_10_4-gnu-openmpi2-hpc' 'libhdf5_cpp_1_10_4-gnu-openmpi3-hpc' 'libhdf5_fortran-gnu-hpc' 'libhdf5_fortran-gnu-mpich-hpc' 'libhdf5_fortran-gnu-mvapich2-hpc' 'libhdf5_fortran-gnu-openmpi1-hpc' 'libhdf5_fortran-gnu-openmpi2-hpc' 'libhdf5_fortran-gnu-openmpi3-hpc' 'libhdf5_fortran100' 'libhdf5_fortran100-32bit' 'libhdf5_fortran100-mvapich2' 'libhdf5_fortran100-mvapich2-32bit' 'libhdf5_fortran100-openmpi' 'libhdf5_fortran100-openmpi-32bit' 'libhdf5_fortran100-openmpi2' 'libhdf5_fortran100-openmpi2-32bit' 'libhdf5_fortran100-openmpi3' 'libhdf5_fortran100-openmpi3-32bit' 'libhdf5_fortran_1_10_4-gnu-hpc' 'libhdf5_fortran_1_10_4-gnu-mpich-hpc' 'libhdf5_fortran_1_10_4-gnu-mvapich2-hpc' 'libhdf5_fortran_1_10_4-gnu-openmpi1-hpc' 'libhdf5_fortran_1_10_4-gnu-openmpi2-hpc' 'libhdf5_fortran_1_10_4-gnu-openmpi3-hpc' 'libhdf5_hl-gnu-hpc' 'libhdf5_hl-gnu-mpich-hpc' 'libhdf5_hl-gnu-mvapich2-hpc' 'libhdf5_hl-gnu-openmpi1-hpc' 'libhdf5_hl-gnu-openmpi2-hpc' 'libhdf5_hl-gnu-openmpi3-hpc' 'libhdf5_hl100' 'libhdf5_hl100-32bit' 'libhdf5_hl100-mvapich2' 'libhdf5_hl100-mvapich2-32bit' 'libhdf5_hl100-openmpi' 'libhdf5_hl100-openmpi-32bit' 'libhdf5_hl100-openmpi2' 'libhdf5_hl100-openmpi2-32bit' 'libhdf5_hl100-openmpi3' 'libhdf5_hl100-openmpi3-32bit' 'libhdf5_hl_1_10_4-gnu-hpc' 'libhdf5_hl_1_10_4-gnu-mpich-hpc' 'libhdf5_hl_1_10_4-gnu-mvapich2-hpc' 'libhdf5_hl_1_10_4-gnu-openmpi1-hpc' 'libhdf5_hl_1_10_4-gnu-openmpi2-hpc' 'libhdf5_hl_1_10_4-gnu-openmpi3-hpc' 'libhdf5_hl_cpp-gnu-hpc' 'libhdf5_hl_cpp-gnu-mpich-hpc' 'libhdf5_hl_cpp-gnu-mvapich2-hpc' 'libhdf5_hl_cpp-gnu-openmpi1-hpc' 'libhdf5_hl_cpp-gnu-openmpi2-hpc' 'libhdf5_hl_cpp-gnu-openmpi3-hpc' 'libhdf5_hl_cpp100' 'libhdf5_hl_cpp100-32bit' 'libhdf5_hl_cpp100-mvapich2' 'libhdf5_hl_cpp100-mvapich2-32bit' 'libhdf5_hl_cpp100-openmpi' 'libhdf5_hl_cpp100-openmpi-32bit' 'libhdf5_hl_cpp100-openmpi2' 'libhdf5_hl_cpp100-openmpi2-32bit' 'libhdf5_hl_cpp100-openmpi3' 'libhdf5_hl_cpp100-openmpi3-32bit' 'libhdf5_hl_cpp_1_10_4-gnu-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-mpich-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-mvapich2-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-openmpi1-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-openmpi2-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-openmpi3-hpc' 'libhdf5_hl_fortran-gnu-hpc' 'libhdf5_hl_fortran-gnu-mpich-hpc' 'libhdf5_hl_fortran-gnu-mvapich2-hpc' 'libhdf5_hl_fortran-gnu-openmpi1-hpc' 'libhdf5_hl_fortran-gnu-openmpi2-hpc' 'libhdf5_hl_fortran-gnu-openmpi3-hpc' 'libhdf5hl_fortran100' 'libhdf5hl_fortran100-32bit' 'libhdf5hl_fortran100-mvapich2' 'libhdf5hl_fortran100-mvapich2-32bit' 'libhdf5hl_fortran100-openmpi' 'libhdf5hl_fortran100-openmpi-32bit' 'libhdf5hl_fortran100-openmpi2' 'libhdf5hl_fortran100-openmpi2-32bit' 'libhdf5hl_fortran100-openmpi3' 'libhdf5hl_fortran100-openmpi3-32bit' 'libhdf5hl_fortran_1_10_4-gnu-hpc' 'libhdf5hl_fortran_1_10_4-gnu-mpich-hpc' 'libhdf5hl_fortran_1_10_4-gnu-mvapich2-hpc' 'libhdf5hl_fortran_1_10_4-gnu-openmpi1-hpc' 'libhdf5hl_fortran_1_10_4-gnu-openmpi2-hpc' 'libhdf5hl_fortran_1_10_4-gnu-openmpi3-hpc' 'libhdhomerun' 'libhdhomerun-debuginfo' 'libhdhomerun-debugsource' 'libhdhomerun-devel' 'libhdhomerun2' 'libhdhomerun20150826' 'libhdhomerun20150826-debuginfo' 'libheimdal' 'libheimdal-devel' 'libhfst52' 'libhfstospell10' 'libhfstospell10-32bit' 'libhidapi-devel' 'libhidapi-hidraw0' 'libhidapi-libusb0' 'libhinawa-devel' 'libhinawa1' 'libhiredis0_13' 'libhivex0' 'libhmac-devel' 'libhmac-tools' 'libhmac1' 'libhogweed4' 'libhogweed4-32bit' 'libhowl0' 'libhpdf2_3_0' 'libhpx1' 'libhs5' 'libhssi-io0' 'libhtp-devel' 'libhtp2' 'libhttp_parser2_7_1' 'libhttp_parser2_7_1-32bit' 'libhttrack2' 'libhubbub-devel' 'libhubbub-doc' 'libhubbub0' 'libhugetlbfs' 'libhugetlbfs-32bit' 'libhugetlbfs-devel' 'libhugetlbfs-tests' 'libhunspell-1_7-0' 'libhunspell-1_7-0-32bit' 'libhwloc5' 'libhwsd2' 'libhwsd2-debuginfo' 'libhydrogen-core-devel' 'libhydrogen-core1' 'libhyphen0' 'libhyphen0-32bit' 'libi2c0' 'libi2c0-devel' 'libib_util' 'libib_util-32bit' 'libib_util-devel' 'libibdm1' 'libibmad5' 'libibmad5-32bit' 'libibmtss0' 'libibnetdisc5' 'libibnetdisc5-32bit' 'libibumad3' 'libibumad3-32bit' 'libibus-1_0-5' 'libibus-1_0-5-32bit' 'libibverbs' 'libibverbs-32bit' 'libibverbs-utils' 'libibverbs1' 'libibverbs1-32bit' 'libical-devel' 'libical-doc' 'libical3' 'libical3-32bit' 'libicecream-devel' 'libicns-devel' 'libicns1' 'libiconv_hook-devel' 'libiconv_hook1' 'libicu-devel' 'libicu-devel-32bit' 'libicu-doc' 'libicu-suse64_2' 'libicu-suse64_2-32bit' 'libicu64_2-bedata' 'libicu64_2-ledata' 'libid3tag-devel' 'libid3tag0' 'libid3tag0-32bit' 'libidl-devel' 'libidn-devel' 'libidn-tools' 'libidn12' 'libidn12-32bit' 'libidn2-0' 'libidn2-0-32bit' 'libidn2-devel' 'libidn2-lang' 'libidn2-tools' 'libido3-0_1-0' 'libido3-0_1-0-32bit' 'libiec61883-0' 'libiec61883-0-32bit' 'libiec61883-devel' 'libiec61883-tools' 'libigdgmm-devel' 'libigdgmm9' 'libigfxcmrt-devel' 'libigfxcmrt7' 'libilbc0' 'libimaevm1' 'libimagequant-devel' 'libimagequant0' 'libiml0' 'libimobiledevice-devel' 'libimobiledevice6' 'libimobiledevice6-32bit' 'libinchi0' 'libinchi0-32bit' 'libindi' 'libindi-devel' 'libindi-plugins' 'libindiAlignmentDriver1' 'libindicator-devel' 'libindicator3-7' 'libindicator3-devel' 'libindicator7' 'libindidriver1' 'libindilx200-1' 'libinfinipath4' 'libinfinipath4-32bit' 'libinfinity-1_0-0' 'libinfinity-devel' 'libinfinity-lang' 'libini_config-devel' 'libini_config-devel-32bit' 'libini_config5' 'libini_config5-32bit' 'libiniparser-devel' 'libiniparser1' 'libiniparser1-32bit' 'libinjeqt1' 'libinotifytools0' 'libinput-devel' 'libinput-tools' 'libinput-udev' 'libinput10' 'libinput10-32bit' 'libinstpatch-1_0-0' 'libinstpatch-devel' 'libiodbc-devel' 'libiodbc3' 'libip4tc2' 'libip6tc2' 'libipa_hbac-devel' 'libipa_hbac0' 'libiperf0' 'libipmiconsole2' 'libipmidetect0' 'libipmimonitoring6' 'libipq-devel' 'libipq0' 'libipset13' 'libiptc-devel' 'libiptcdata' 'libiptcdata-devel' 'libiptcdata-doc' 'libiptcdata-lang' 'libiptcdata0' 'libircclient-devel' 'libircclient-doc' 'libircclient1' 'libirman-devel' 'libirman0' 'libirrecord0' 'libirs-devel' 'libirs160' 'libirs160-32bit' 'libisc166' 'libisc166-32bit' 'libisccc160' 'libisccc160-32bit' 'libisccfg160' 'libisccfg160-32bit' 'libiscsi-devel' 'libiscsi-test' 'libiscsi-utils' 'libiscsi9' 'libisds-devel' 'libisds5' 'libisl19' 'libisl19-32bit' 'libiso9660-11' 'libiso9660-11-32bit' 'libisoburn-devel' 'libisoburn1' 'libisofs-devel' 'libisofs6' 'libite-devel' 'libite5' 'libiterm-devel' 'libiterm1' 'libitm1' 'libitm1-32bit' 'libitm1-gcc7' 'libitm1-gcc7-32bit' 'libitm1-gcc8' 'libitm1-gcc8-32bit' 'libitpp8' 'libivykis0' 'libiw-devel' 'libiw30' 'libixion-0_15-0' 'libixion-devel' 'libixion-tools' 'libixml10' 'libixml10-32bit' 'libjack-devel' 'libjack-devel-32bit' 'libjack0' 'libjack0-32bit' 'libjacknet0' 'libjacknet0-32bit' 'libjackserver0' 'libjackserver0-32bit' 'libjansson-devel' 'libjansson4' 'libjansson4-32bit' 'libjasper-devel' 'libjasper4' 'libjasper4-32bit' 'libjavascriptcoregtk-4_0-18' 'libjavascriptcoregtk-4_0-18-32bit' 'libjaylink' 'libjaylink-devel' 'libjaylink0' 'libjbig-devel' 'libjbig-devel-32bit' 'libjbig2' 'libjbig2-32bit' 'libjbig2dec0' 'libjbig2dec0-32bit' 'libjd0' 'libjemalloc2' 'libjim0_75' 'libjnidispatch' 'libjoschy-devel' 'libjoschy0' 'libjoschy0-debuginfo' 'libjpeg-turbo' 'libjpeg62' 'libjpeg62-32bit' 'libjpeg62-devel' 'libjpeg62-devel-32bit' 'libjpeg8' 'libjpeg8-32bit' 'libjpeg8-devel' 'libjpeg8-devel-32bit' 'libjpegxr0' 'libjq-devel' 'libjq1' 'libjreen-qt5-1' 'libjreen-qt5-devel' 'libjrtp3_11_1' 'libjsmn0' 'libjson-c-devel' 'libjson-c-doc' 'libjson-c4' 'libjson-c4-32bit' 'libjson-glib-1_0-0' 'libjson-glib-1_0-0-32bit' 'libjsoncpp21' 'libjsonrpc-glib-1_0-1' 'libjte-devel' 'libjte1' 'libjthread1_3_3' 'libjwt_verify_lib0' 'libjxrglue0' 'libkaccounts1' 'libkaccounts1-32bit' 'libkactivities-devel' 'libkactivities6' 'libkactivities6-32bit' 'libkasten-lang' 'libkate-devel' 'libkate-tools' 'libkate1' 'libkate1-32bit' 'libkatepartinterfaces4' 'libkcapi-devel' 'libkcapi-tools' 'libkcapi0' 'libkcarchiver0' 'libkcarchivercore0' 'libkcddb' 'libkcddb-devel' 'libkcddb-lang' 'libkcddb4' 'libkcddb4-devel' 'libkcfreebusy0' 'libkchart-lang' 'libkcicalmapi0' 'libkcinetmapi0' 'libkcompactdisc-devel' 'libkcompactdisc-lang' 'libkcompactdisc4' 'libkcompactdisc4-devel' 'libkcpyplug0' 'libkcrosie0' 'libkcserver0' 'libkcsoap0' 'libkcutil0' 'libkdcraw-devel' 'libkde4' 'libkde4-32bit' 'libkde4-devel' 'libkdecoration2-devel' 'libkdecoration2-devel-32bit' 'libkdecorations2-5' 'libkdecorations2-5-32bit' 'libkdecorations2-5-lang' 'libkdecorations2private6' 'libkdecorations2private6-32bit' 'libkdecore4' 'libkdecore4-32bit' 'libkdecore4-devel' 'libkdegames' 'libkdegames-devel' 'libkdegames-lang' 'libkdepim' 'libkdepim-devel' 'libkdepim-lang' 'libkdevplatform54' 'libkdstatemachineeditor_core1_2_5' 'libkdstatemachineeditor_view1_2_5' 'libkdumpfile-devel' 'libkdumpfile7' 'libkea1_4' 'libkeccak-devel' 'libkeccak1' 'libkeduvocdocument-devel' 'libkeduvocdocument-lang' 'libkerfuffle19' 'libkexiv2-devel' 'libkeybinder-3_0-0' 'libkeybinder0' 'libkeyutils1' 'libkeyutils1-32bit' 'libkf5kdegames6' 'libkgantt-lang' 'libkgapi-devel' 'libkgapi-lang' 'libkgeomap' 'libkgeomap-devel' 'libkgeomap-lang' 'libkim-api2' 'libkioarchive-devel' 'libkioarchive5' 'libkipi-data' 'libkipi-devel' 'libkkc-devel' 'libkkc2' 'libkkc2-32bit' 'libkleo' 'libkleo-devel' 'libkleo-lang' 'libklfbackend4' 'libklftools4' 'libklu1' 'libkmahjongg' 'libkmahjongg-devel' 'libkmahjongg-lang' 'libkmod-devel' 'libkmod2' 'libkms-devel' 'libkms-devel-32bit' 'libkms1' 'libkms1-32bit' 'libknet1' 'libknet1-compress-bzip2-plugin' 'libknet1-compress-lz4-plugin' 'libknet1-compress-lzma-plugin' 'libknet1-compress-lzo2-plugin' 'libknet1-compress-plugins-all' 'libknet1-compress-zlib-plugin' 'libknet1-crypto-nss-plugin' 'libknet1-crypto-openssl-plugin' 'libknet1-crypto-plugins-all' 'libknet1-devel' 'libknet1-plugins-all' 'libkolabxml-devel' 'libkolabxml1' 'libkomparediff2-5' 'libkomparediff2-devel' 'libkomparediff2-lang' 'libkonkretcmpi0' 'libkpathsea6' 'libkpmcore7' 'libksane-devel' 'libksane-lang' 'libksba-devel' 'libksba8' 'libkscreen2-devel' 'libkscreen2-devel-32bit' 'libkscreen2-plugin' 'libkscreen2-plugin-32bit' 'libksi-devel' 'libksi1' 'libksieve' 'libksieve-devel' 'libksieve-lang' 'libksuseinstall-devel' 'libksuseinstall1' 'libksuseinstall1-32bit' 'libksysguard5' 'libksysguard5-32bit' 'libksysguard5-devel' 'libksysguard5-devel-32bit' 'libksysguard5-helper' 'libksysguard5-lang' 'libktoblzcheck1' 'libktorrent-devel' 'libktorrent-lang' 'libktpaccountskcminternal9' 'libkvazaar-devel' 'libkvazaar4' 'libkvazaar4-debuginfo' 'libkvkontakte-devel' 'libkvkontakte-lang' 'libkwalletbackend5-5' 'libkwalletbackend5-5-32bit' 'libkwnn0' 'libkyotocabinet-devel' 'libkyotocabinet16' 'libkyotocabinet16-32bit' 'liblammps0' 'liblangtag-devel' 'liblangtag-doc' 'liblangtag1' 'liblapack3' 'liblapack3-32bit' 'liblapacke3' 'liblapacke3-32bit' 'liblasem-0_4-4' 'liblash1' 'liblash1-32bit' 'liblash1-32bit-debuginfo' 'liblash1-debuginfo' 'liblastfm-devel' 'liblastfm-qt5-devel' 'liblastfm1' 'liblastfm5-1' 'liblastfm5-1-32bit' 'liblastfm_fingerprint5-1' 'liblastfm_fingerprint5-1-32bit' 'liblaszip8' 'liblaszip_api8' 'liblavfile-2_0-0' 'liblavjpeg-2_0-0' 'liblavplay-2_0-0' 'liblavrec-2_0-0' 'liblayout' 'liblayout-javadoc' 'liblazy-devel' 'liblazy1' 'liblazy1-32bit' 'liblbxutil-devel' 'liblbxutil-devel-32bit' 'liblbxutil1' 'liblbxutil1-32bit' 'liblcms2-2' 'liblcms2-2-32bit' 'liblcms2-devel' 'liblcms2-devel-32bit' 'liblcms2-doc' 'libldac2' 'libldap-2_4-2' 'libldap-2_4-2-32bit' 'libldap-data' 'libldapcpp-devel' 'libldapcpp1' 'libldb-devel' 'libldb1' 'libldb1-32bit' 'libldl-doc' 'libldl2' 'libldm-1_0-0' 'libldm-1_0-0-devel' 'libldns3' 'libleechcraft-util-db-qt5-0_6_75_1' 'libleechcraft-util-gui-qt5-0_6_75_1' 'libleechcraft-util-models-qt5-0_6_75_1' 'libleechcraft-util-network-qt5-0_6_75_1' 'libleechcraft-util-qml-qt5-0_6_75_2' 'libleechcraft-util-shortcuts-qt5-0_6_75' 'libleechcraft-util-sll-qt5-0_6_75_1' 'libleechcraft-util-svcauth-qt5-0_6_75' 'libleechcraft-util-sys-qt5-0_6_75_1' 'libleechcraft-util-tags-qt5-0_6_75_1' 'libleechcraft-util-threads-qt5-0_6_75' 'libleechcraft-util-x11-qt5-0_6_75' 'libleechcraft-util-xdg-qt5-0_6_75' 'libleechcraft-util-xpc-qt5-0_6_75_2' 'libleechcraft-util-xsd-qt5-0_6_75' 'liblegion1' 'liblensfun1' 'liblept5' 'liblept5-32bit' 'libleveldb1' 'liblhasa0' 'liblightdm-gobject-1-0' 'liblightdm-qt5-3-0' 'liblightgrep-devel' 'liblightgrep0' 'liblightmediascanner0' 'liblightstep_tracer0' 'liblilv-0-0' 'liblilv-0-0-32bit' 'liblilv-0-devel' 'liblinbox0' 'liblinebreak-devel' 'liblinebreak2' 'liblink-grammar5' 'liblinphone++9' 'liblinphone++9-32bit' 'liblinphone-data' 'liblinphone-devel' 'liblinphone-lang' 'liblinphone9' 'liblinphone9-32bit' 'liblinuxsampler-devel' 'liblinuxsampler5' 'liblinuxsampler5-debuginfo' 'libliquid-devel' 'liblirc0' 'liblirc0-32bit' 'liblirc_client0' 'liblirc_client0-32bit' 'liblirc_driver0' 'liblirc_driver0-32bit' 'liblittleb0' 'libliveMedia-devel' 'libliveMedia66' 'liblldb6' 'liblldb7' 'liblldb8' 'liblldp_clif1' 'liblldpctl4' 'liblmdb-0_9_23' 'liblmdb-0_9_23-32bit' 'liblms7002m-devel' 'liblms7compact0' 'liblnk-devel' 'liblnk-tools' 'liblnk1' 'liblo-devel' 'liblo10k1-0' 'liblo7' 'liblo7-32bit' 'libloader' 'libloader-javadoc' 'liblockdev1' 'liblockdev1-32bit' 'liblodepng-r84' 'liblog4c-devel' 'liblog4c-doc' 'liblog4c3' 'liblog4c3-32bit' 'liblog4cplus-1_1-5' 'liblog4cpp5' 'liblog4cxx-devel' 'liblog4cxx10' 'liblog4shib-devel' 'liblog4shib2' 'liblogging-devel' 'liblogging0' 'liblognorm-devel' 'liblognorm5' 'libloki-devel' 'libloki-doc' 'libloki0_1_7' 'libloudmouth-1-0' 'liblouis-data' 'liblouis-devel' 'liblouis-doc' 'liblouis-tools' 'liblouis17' 'liblpsolve55-0' 'liblqr-1-0' 'liblqr-1-0-32bit' 'liblqr-devel' 'liblrdf-devel' 'liblrdf2' 'liblrdf2-32bit' 'liblrs-7_0-0' 'liblsan0' 'liblsan0-gcc7' 'liblsan0-gcc8' 'liblscp-devel' 'liblscp6' 'liblsmash2' 'liblsmash2-debuginfo' 'libltc-devel' 'libltc11' 'libltdl7' 'libltdl7-32bit' 'liblttng-ctl0' 'liblttng-ust-ctl4' 'liblttng-ust-python-agent0' 'liblttng-ust0' 'liblua5_1-5' 'liblua5_1-5-32bit' 'liblua5_3-5' 'liblua5_3-5-32bit' 'libluabind0_9_1' 'libluajit-5_1-2' 'libluajit-5_1-2-32bit' 'liblucene++0' 'liblur3' 'liblvm2app2_2' 'liblvm2cmd2_02' 'liblwres160' 'liblwres160-32bit' 'liblxc-devel' 'liblxc1' 'liblxpanel0' 'liblxqt-devel' 'liblxqt-globalkeys-ui0' 'liblxqt-globalkeys0' 'liblxqt-lang' 'liblxqt0' 'liblz1' 'liblz4-1' 'liblz4-1-32bit' 'liblz4-devel' 'liblzma5' 'liblzma5-32bit' 'liblzo2-2' 'liblzo2-2-32bit' 'libm17n0' 'libm17n0-32bit' 'libm4ri-0_0_20140914' 'libm4ri-devel' 'libm4rie-0_0_20150908' 'libm4rie-devel' 'libmaa-devel' 'libmaa-doc' 'libmaa4' 'libmac' 'libmac-debuginfo' 'libmac-debugsource' 'libmac-devel' 'libmac2' 'libmac2-debuginfo' 'libmad-devel' 'libmad0' 'libmad0-32bit' 'libmagic1' 'libmagic1-32bit' 'libmaia-devel' 'libmaia1' 'libmailutils5' 'libmakemkv1' 'libmanette-0_2-0' 'libmanette-devel' 'libmapi1' 'libmapidb-devel' 'libmapidb1' 'libmarblewidget-qt5-28' 'libmarco-private1' 'libmariadb-devel' 'libmariadb3' 'libmariadb3-32bit' 'libmariadb_plugins' 'libmariadbd-devel' 'libmariadbd19' 'libmariadbprivate' 'libmarisa0' 'libmarisa0-32bit' 'libmarkdown-devel' 'libmarkdown2' 'libmate-desktop-2-17' 'libmate-menu2' 'libmate-menu2-32bit' 'libmate-panel-applet-4-1' 'libmate-panel-applet-4-1-32bit' 'libmate-sensors-applet-plugin0' 'libmate-sensors-applet-plugin0-32bit' 'libmate-slab-devel' 'libmate-slab0' 'libmate-window-settings1' 'libmatedict-devel' 'libmatedict6' 'libmatekbd-devel' 'libmatekbd-lang' 'libmatekbd4' 'libmatekbd4-32bit' 'libmatemixer-devel' 'libmatemixer-lang' 'libmatemixer0' 'libmatemixer0-32bit' 'libmateweather-devel' 'libmateweather-lang' 'libmateweather1' 'libmateweather1-32bit' 'libmatio-devel' 'libmatio4' 'libmatroska-devel' 'libmatroska6' 'libmatroska6-32bit' 'libmaxminddb-devel' 'libmaxminddb0' 'libmbedcrypto3' 'libmbedcrypto3-32bit' 'libmbedtls12' 'libmbedtls12-32bit' 'libmbedx509-0' 'libmbedx509-0-32bit' 'libmbim' 'libmbim-devel' 'libmbim-glib4' 'libmcli' 'libmcli-debuginfo' 'libmcpp0' 'libmcs-devel' 'libmcs1' 'libmcs1' 'libmcs1-debuginfo' 'libmcs1-debugsource' 'libmd-devel' 'libmd0' 'libmdb2' 'libmdbsql2' 'libmeanwhile1' 'libmed-devel' 'libmed-python' 'libmed11' 'libmedC11' 'libmedfwrap11' 'libmediaart-2_0-0' 'libmediaart-devel' 'libmediacheck-devel' 'libmediacheck5' 'libmediainfo-devel' 'libmediainfo0' 'libmediainfo0-32bit' 'libmediastreamer_base10' 'libmediastreamer_base10-32bit' 'libmediastreamer_voip10' 'libmediastreamer_voip10-32bit' 'libmediawiki-devel' 'libmedimport0' 'libmeep14' 'libmemcache-devel' 'libmemcache0' 'libmemcached' 'libmemcached-devel' 'libmemcached11' 'libmemcachedutil2' 'libmemkind0' 'libmemphis-0_2-0' 'libmenu-cache3' 'libmesode-devel' 'libmesode0' 'libmetacity1' 'libmetalink-devel' 'libmetalink3' 'libmetis-gnu-hpc' 'libmetis5' 'libmetis_5_1_0-gnu-hpc' 'libmetrics-devel' 'libmetrics0' 'libmfx' 'libmfx-devel' 'libmfx1' 'libmgl-fltk7_5_0' 'libmgl-glut7_5_0' 'libmgl-mpi7_5_0' 'libmgl-qt5-7_5_0' 'libmgl-wnd7_5_0' 'libmgl-wx7_5_0' 'libmgl7_5_0' 'libmhash2' 'libmicro' 'libmicrohttpd-devel' 'libmicrohttpd12' 'libmidori-core0' 'libmikmod-devel' 'libmikmod3' 'libmikmod3-32bit' 'libmilter-doc' 'libmilter1_0' 'libmimetic-devel' 'libmimetic0' 'libminisat2' 'libminiupnpc-devel' 'libminiupnpc17' 'libminiupnpc17-32bit' 'libminizip1' 'libminizip1-32bit' 'libmirage-3_2' 'libmirage-data' 'libmirage-devel' 'libmirage-lang' 'libmirage11' 'libmirisdr-devel' 'libmirisdr0' 'libmisdn1' 'libmission-control-plugins0' 'libmjpegutils-2_0-0' 'libmjpegutils-2_0-0-32bit' 'libmjpegutils-devel' 'libmlt++-devel' 'libmlt++3' 'libmlt-devel' 'libmlt6' 'libmlt6-data' 'libmlt6-modules' 'libmlx4-1' 'libmlx4-1-32bit' 'libmlx5-1' 'libmlx5-1-32bit' 'libmm-glib0' 'libmmbd0' 'libmms-devel' 'libmms0' 'libmms0-32bit' 'libmng-devel' 'libmng2' 'libmng2-32bit' 'libmnl-devel' 'libmnl0' 'libmnl0-32bit' 'libmodglue1' 'libmodman-devel' 'libmodman1' 'libmodman1-32bit' 'libmodplug-devel' 'libmodplug1' 'libmodplug1-32bit' 'libmodsecurity3' 'libmodulemd-devel' 'libmodulemd1' 'libmodulemd1-devel' 'libmodulemd2' 'libmolsketch-qt5-1' 'libmongoose-doc' 'libmongoose2' 'libmono-2_0-1' 'libmono-2_0-devel' 'libmono-profiler-gui-thread-check0' 'libmono-profiler-gui-thread-check0-devel' 'libmonoboehm-2_0-1' 'libmonoboehm-2_0-devel' 'libmonosgen-2_0-1' 'libmonosgen-2_0-devel' 'libmopac7-1' 'libmopac7-1-devel' 'libmosquitto1' 'libmosquittopp1' 'libmount-devel' 'libmount-devel-32bit' 'libmount-devel-static' 'libmount1' 'libmount1-32bit' 'libmovit8' 'libmowgli' 'libmowgli-2-0' 'libmowgli-debugsource' 'libmowgli-devel' 'libmowgli2' 'libmowgli2-32bit' 'libmowgli2-32bit-debuginfo' 'libmowgli2-debuginfo' 'libmowgli2-devel' 'libmozjs-38' 'libmozjs-38-32bit' 'libmozjs-52' 'libmozjs-60' 'libmozjs185-1_0' 'libmozjs185-1_0-32bit' 'libmozjs185-1_0-32bit-debuginfo' 'libmozjs185-1_0-debuginfo' 'libmp3lame-devel' 'libmp3lame0' 'libmp3lame0-32bit' 'libmp3splt' 'libmp3splt-debuginfo' 'libmp3splt-debugsource' 'libmp3splt-devel' 'libmp3splt0' 'libmp3splt0-debuginfo' 'libmp3splt0-mp3' 'libmp3splt0-mp3-debuginfo' 'libmp3splt0-ogg' 'libmp3splt0-ogg-debuginfo' 'libmpath0' 'libmpc3' 'libmpc3-32bit' 'libmpcdec-devel' 'libmpcdec5' 'libmpcdec5-32bit' 'libmpcdec6' 'libmpcdec6-32bit' 'libmpd-devel' 'libmpd1' 'libmpd1-32bit' 'libmpdclient-devel' 'libmpdclient2' 'libmpeg2-0' 'libmpeg2-0-32bit' 'libmpeg2-devel' 'libmpeg2convert0' 'libmpeg2encpp-2_0-0' 'libmpeg2encpp-2_0-0-32bit' 'libmpeg3-1' 'libmpeg3-1' 'libmpeg3-1-debuginfo' 'libmpeg3-1-debugsource' 'libmpeg3-devel' 'libmpeg3-utils' 'libmpeg3-utils-debuginfo' 'libmpeg4ip-devel' 'libmpeg4ip0' 'libmpeg4ip0-debuginfo' 'libmpfc-devel' 'libmpfc2' 'libmpfc2-debuginfo' 'libmpfi0' 'libmpfr6' 'libmpfr6-32bit' 'libmpg123-0' 'libmpg123-0-32bit' 'libmpir-devel' 'libmpir23' 'libmpirxx8' 'libmplex2-2_0-0' 'libmplex2-2_0-0-32bit' 'libmpris-qt5-1' 'libmpris-qt5-devel' 'libmpv1' 'libmpx2' 'libmpx2-32bit' 'libmpx2-gcc7' 'libmpx2-gcc7-32bit' 'libmpxwrappers2' 'libmpxwrappers2-32bit' 'libmpxwrappers2-gcc7' 'libmpxwrappers2-gcc7-32bit' 'libmraa2' 'libmrss-devel' 'libmrss0' 'libmrss0-32bit' 'libmsgpackc2' 'libmsi0' 'libmsiecf-devel' 'libmsiecf-tools' 'libmsiecf1' 'libmspack-devel' 'libmspack0' 'libmspack0-32bit' 'libmspub-0_1-1' 'libmspub-devel' 'libmspub-devel-doc' 'libmspub-tools' 'libmtdev1' 'libmtdev1-32bit' 'libmtp-devel' 'libmtp-udev' 'libmtp9' 'libmuffin0' 'libmumps-gnu-mpich-hpc' 'libmumps-gnu-mvapich2-hpc' 'libmumps-gnu-openmpi1-hpc' 'libmumps-gnu-openmpi2-hpc' 'libmumps-gnu-openmpi3-hpc' 'libmumps-ptscotch5-openmpi' 'libmumps-ptscotch5-openmpi2' 'libmumps-scotch5' 'libmumps5' 'libmumps5-mvapich2' 'libmumps5-openmpi' 'libmumps5-openmpi2' 'libmumps_5_1_2-gnu-mpich-hpc' 'libmumps_5_1_2-gnu-mvapich2-hpc' 'libmumps_5_1_2-gnu-openmpi1-hpc' 'libmumps_5_1_2-gnu-openmpi2-hpc' 'libmumps_5_1_2-gnu-openmpi3-hpc' 'libmunge2' 'libmunge2-32bit' 'libmuparser2_2_6' 'libmuparser2_2_6-32bit' 'libmuroar0' 'libmuroar0-debuginfo' 'libmuroard3' 'libmuroard3-debuginfo' 'libmusicbrainz-devel' 'libmusicbrainz4' 'libmusicbrainz4-32bit' 'libmusicbrainz5-1' 'libmusicbrainz5-1-32bit' 'libmusicbrainz5-devel' 'libmutter-4-0' 'libmwaw-0_3-3' 'libmwaw-devel' 'libmwaw-devel-doc' 'libmwaw-tools' 'libmxml1' 'libmxml1-32bit' 'libmygpo-qt-devel' 'libmygpo-qt1' 'libmygpo-qt5-1' 'libmygpo-qt5-devel' 'libmypaint-1_3-0' 'libmypaint-devel' 'libmypaint-gegl-devel' 'libmypaint-gegl0' 'libmypaint-lang' 'libmysofa-devel' 'libmysofa0' 'libmysofa0-32bit' 'libmysqlcppconn-devel' 'libmysqlcppconn7' 'libmysqlcppconn8-1' 'libmysqlcppconn8-devel' 'libmyth-29-29' 'libmyth-29-29-debuginfo' 'libmythes-1_2-0' 'libnanomsg5' 'libnautilus-extension1' 'libnautilus-extension1-32bit' 'libnauty-2_7_rc2' 'libncurses5' 'libncurses5-32bit' 'libncurses6' 'libncurses6-32bit' 'libndctl-devel' 'libndctl6' 'libndp' 'libndp-devel' 'libndp0' 'libndpi-devel' 'libndpi2' 'libndr-devel' 'libndr-krb5pac-devel' 'libndr-krb5pac0' 'libndr-krb5pac0-32bit' 'libndr-nbt-devel' 'libndr-nbt0' 'libndr-nbt0-32bit' 'libndr-standard-devel' 'libndr-standard0' 'libndr-standard0-32bit' 'libndr0' 'libndr0-32bit' 'libneko2' 'libnemo-extension1' 'libneon-devel' 'libneon27' 'libneon27-32bit' 'libnet-devel' 'libnet-doc' 'libnet9' 'libnetapi-devel' 'libnetapi0' 'libnetapi0-32bit' 'libnetcdf-cxx4-gnu-hpc' 'libnetcdf-cxx4-gnu-hpc-devel' 'libnetcdf-cxx4_4_3_0-gnu-hpc' 'libnetcdf-cxx4_4_3_0-gnu-hpc-devel' 'libnetcdf-cxx4_4_3_0-gnu-hpc-devel-static' 'libnetcdf-fortran-gnu-mpich-hpc' 'libnetcdf-fortran-gnu-openmpi1-hpc' 'libnetcdf-fortran-gnu-openmpi2-hpc' 'libnetcdf-fortran-gnu-openmpi3-hpc' 'libnetcdf-fortran_4_4_4-gnu-mpich-hpc' 'libnetcdf-fortran_4_4_4-gnu-openmpi1-hpc' 'libnetcdf-fortran_4_4_4-gnu-openmpi2-hpc' 'libnetcdf-fortran_4_4_4-gnu-openmpi3-hpc' 'libnetcdf-gnu-hpc' 'libnetcdf-gnu-mpich-hpc' 'libnetcdf-gnu-mvapich2-hpc' 'libnetcdf-gnu-openmpi1-hpc' 'libnetcdf-gnu-openmpi2-hpc' 'libnetcdf-gnu-openmpi3-hpc' 'libnetcdf13' 'libnetcdf13-32bit' 'libnetcdf13-openmpi' 'libnetcdf13-openmpi-32bit' 'libnetcdf13-openmpi2' 'libnetcdf13-openmpi2-32bit' 'libnetcdf_4_6_1-gnu-hpc' 'libnetcdf_4_6_1-gnu-mpich-hpc' 'libnetcdf_4_6_1-gnu-mvapich2-hpc' 'libnetcdf_4_6_1-gnu-openmpi1-hpc' 'libnetcdf_4_6_1-gnu-openmpi2-hpc' 'libnetcdf_4_6_1-gnu-openmpi3-hpc' 'libnetcdf_c++-devel' 'libnetcdf_c++4' 'libnetcdf_c++4-1' 'libnetcdf_c++4-devel' 'libnetcontrol-devel' 'libnetcontrol0' 'libnetcontrol0-32bit' 'libnetfilter_acct-devel' 'libnetfilter_acct1' 'libnetfilter_acct1-32bit' 'libnetfilter_conntrack-devel' 'libnetfilter_conntrack3' 'libnetfilter_conntrack3-32bit' 'libnetfilter_cthelper-devel' 'libnetfilter_cthelper0' 'libnetfilter_cthelper0-32bit' 'libnetfilter_cttimeout-devel' 'libnetfilter_cttimeout1' 'libnetfilter_cttimeout1-32bit' 'libnetfilter_log-devel' 'libnetfilter_log1' 'libnetfilter_log1-32bit' 'libnetfilter_queue-devel' 'libnetfilter_queue1' 'libnetfilter_queue1-32bit' 'libnetlink-devel' 'libnetpbm-devel' 'libnetpbm11' 'libnetpbm11-32bit' 'libnettle-devel' 'libnettle-devel-32bit' 'libnettle6' 'libnettle6-32bit' 'libnewt0_52' 'libnewt0_52-32bit' 'libnextcloudsync-devel' 'libnextcloudsync0' 'libnf2ff0' 'libnfc-devel' 'libnfc-tools' 'libnfc5' 'libnfnetlink-devel' 'libnfnetlink0' 'libnfnetlink0-32bit' 'libnfs-devel' 'libnfs13' 'libnfsidmap-sss' 'libnfsjunct0' 'libnftables0' 'libnftables1' 'libnftnl-devel' 'libnftnl11' 'libnghttp2-14' 'libnghttp2-14-32bit' 'libnghttp2-devel' 'libnghttp2_asio-devel' 'libnghttp2_asio1' 'libnghttp2_asio1-32bit' 'libngspice-devel' 'libngspice0' 'libnice' 'libnice-devel' 'libnice10' 'libnice10-32bit' 'libnilfs0' 'libnilfscleaner0' 'libnilfsgc0' 'libnjb' 'libnjb-devel' 'libnjb5' 'libnl-config' 'libnl-doc' 'libnl-tools' 'libnl3-200' 'libnl3-200-32bit' 'libnl3-devel' 'libnl3-devel-32bit' 'libnlopt0' 'libnm-glib-vpn1' 'libnm-glib-vpn1-32bit' 'libnm-glib4' 'libnm-glib4-32bit' 'libnm-util2' 'libnm-util2-32bit' 'libnm0' 'libnma-devel' 'libnma0' 'libnordlicht0' 'libnordlicht0-debuginfo' 'libnormaliz3' 'libnoson1' 'libnotify-devel' 'libnotify-devel-32bit' 'libnotify-tools' 'libnotify4' 'libnotify4-32bit' 'libnotmuch5' 'libnova-0_15-0' 'libnova-devel' 'libnpth0' 'libnscd-devel' 'libnscd1' 'libnscd1-32bit' 'libnsl-devel' 'libnsl2' 'libnsl2-32bit' 'libnss_nis2' 'libnss_nis2-32bit' 'libnss_usrfiles2' 'libnss_usrfiles2-32bit' 'libnsssharedhelper0' 'libnsssharedhelper0-32bit' 'libntfs-3g-devel' 'libntfs-3g88' 'libntirpc-devel' 'libntirpc1_7' 'libntk1' 'libntl39' 'libntlm-devel' 'libntlm0' 'libnuma-devel' 'libnuma1' 'libnuma1-32bit' 'libnumbertext-1_0-0' 'libnumbertext-data' 'libnumbertext-devel' 'libnumbertext-tools' 'libnxml-devel' 'libnxml0' 'libnxml0-32bit' 'libo2scl0' 'liboaml_shared1' 'liboath-devel' 'liboath0' 'liboauth-devel' 'liboauth0' 'liboauth0-32bit' 'libobby-0_4-1' 'libobjc2-devel' 'libobjc4' 'libobjc4-32bit' 'libobjc4-gcc7' 'libobjc4-gcc7-32bit' 'libobjc4-gcc8' 'libobjc4-gcc8-32bit' 'libobjc4_6' 'libobrender32' 'libobt2' 'libode8' 'libodfgen-0_1-1' 'libodfgen-devel' 'libodfgen-devel-doc' 'libodraw-devel' 'libodraw-tools' 'libodraw1' 'libofa-devel' 'libofa0' 'libofa0-32bit' 'libofx' 'libofx-devel' 'libofx7' 'libogg-devel' 'libogg0' 'libogg0-32bit' 'liboggkate1' 'liboggkate1-32bit' 'liboggz-devel' 'liboggz-doc' 'liboggz2' 'liboggz2-32bit' 'libogmrip-devel' 'libogmrip1' 'libogmrip1-debuginfo' 'liboil' 'liboil-32bit' 'liboil-devel' 'liboil-doc' 'libokteta-lang' 'liboldX-devel' 'liboldX-devel-32bit' 'liboldX6' 'liboldX6-32bit' 'libolecf-devel' 'libolecf-tools' 'libolecf1' 'libomp6-devel' 'libomp7-devel' 'libomp8-devel' 'libonig4' 'liboop-devel' 'liboop4' 'libopae-c0' 'libopagent1' 'libopagent1-32bit' 'libopal-devel' 'libopal3_10_10' 'libopamgt-devel' 'libopamgt0' 'libopasadb1_0_0' 'libopenCOLLADA-devel' 'libopenCOLLADA-doc' 'libopenCOLLADA-utils' 'libopenEMS0' 'libopenal0' 'libopenal0-32bit' 'libopenal1' 'libopenal1-32bit' 'libopenbabel5' 'libopenbabel5-32bit' 'libopenblas-gnu-hpc' 'libopenblas-gnu-hpc-devel' 'libopenblas-pthreads-gnu-hpc' 'libopenblas-pthreads-gnu-hpc-devel' 'libopenblas-pthreads_0_3_7-gnu-hpc' 'libopenblas-pthreads_0_3_7-gnu-hpc-devel' 'libopenblas_0_3_7-gnu-hpc' 'libopenblas_0_3_7-gnu-hpc-devel' 'libopenblas_openmp-devel' 'libopenblas_openmp0' 'libopenblas_pthreads-devel' 'libopenblas_pthreads0' 'libopenblas_serial-devel' 'libopenblas_serial0' 'libopencascade7' 'libopencc2' 'libopenconnect5' 'libopencore-amr-devel' 'libopencore-amrnb0' 'libopencore-amrnb0-32bit' 'libopencore-amrnb0-32bit-debuginfo' 'libopencore-amrnb0-debuginfo' 'libopencore-amrwb0' 'libopencore-amrwb0-32bit' 'libopencore-amrwb0-32bit-debuginfo' 'libopencore-amrwb0-debuginfo' 'libopencsg1' 'libopencv3_4' 'libopencv4_1' 'libopendkim10' 'libopenh264-5' 'libopenh264-5-debuginfo' 'libopenhpi4' 'libopeniscsiusr0_2_0' 'libopenjp2-7' 'libopenjp2-7-32bit' 'libopenjpeg1' 'libopenjpeg1-32bit' 'libopenlibm2' 'libopenmpi1-gnu-hpc' 'libopenmpi2-gnu-hpc' 'libopenmpi3-gnu-hpc' 'libopenmpi_1_10_7-gnu-hpc' 'libopenmpi_2_1_6-gnu-hpc' 'libopenmpi_3_1_4-gnu-hpc' 'libopenmpt-devel' 'libopenmpt0' 'libopenmpt0-32bit' 'libopenmpt_modplug1' 'libopenmpt_modplug1-32bit' 'libopenobex2' 'libopenraw-devel' 'libopenraw1' 'libopenraw1-32bit' 'libopenscap25' 'libopenscap_sce25' 'libopenshot-audio-devel' 'libopenshot-audio6' 'libopenshot-devel' 'libopenshot17' 'libopenslide-devel' 'libopenslide0' 'libopensm9' 'libopensm9-32bit' 'libopenspecfun1' 'libopenssl-1_0_0-devel' 'libopenssl-1_0_0-devel-32bit' 'libopenssl-1_1-devel' 'libopenssl-1_1-devel-32bit' 'libopenssl-devel' 'libopenssl1_0_0' 'libopenssl1_0_0-32bit' 'libopenssl1_0_0-hmac' 'libopenssl1_0_0-hmac-32bit' 'libopenssl1_0_0-steam' 'libopenssl1_0_0-steam-32bit' 'libopenssl1_1' 'libopenssl1_1-32bit' 'libopenssl_cbs_lib0' 'libopensync' 'libopensync-devel' 'libopensync-tools' 'libopentracing-cpp1' 'libopenvswitch-2_11-0' 'liboping-devel' 'liboping-devel-32bit' 'liboping0' 'liboping0-32bit' 'libopts25' 'libopus-devel' 'libopus0' 'libopus0-32bit' 'libopusenc-devel' 'libopusenc0' 'libopusfile0' 'liborc-0_4-0' 'liborc-0_4-0-32bit' 'liborcania2_0' 'liborcus-0_15-0' 'liborcus-devel' 'liborcus-tools' 'liborigin-devel' 'liborigin-doc' 'liborigin-tools' 'liborigin3' 'libortp13' 'libortp13-32bit' 'libosinfo' 'libosinfo-1_0-0' 'libosinfo-devel' 'libosinfo-lang' 'libosip2' 'libosip2-devel' 'liboslcomp1_9' 'liboslexec1_9' 'liboslnoise1_9' 'liboslquery1_9' 'libosmcomp5' 'libosmcomp5-32bit' 'libosmgpsmap-1_0-1' 'libosmgpsmap-devel' 'libosmo-dsp-devel' 'libosmo-dsp-doc' 'libosmo-fl2k0' 'libosmo-gsup-client-devel' 'libosmo-gsup-client0' 'libosmo-mgcp-client-devel' 'libosmo-mgcp-client5' 'libosmo-mgcp-devel' 'libosmo-mtp-1_1_0' 'libosmo-mtp-devel' 'libosmo-ranap-devel' 'libosmo-ranap2' 'libosmo-sccp-1_1_0' 'libosmo-sccp-devel' 'libosmo-sigtran-devel' 'libosmo-sigtran3' 'libosmo-xua-1_1_0' 'libosmo-xua-devel' 'libosmoabis-devel' 'libosmoabis6' 'libosmocodec-devel' 'libosmocodec0' 'libosmocoding-devel' 'libosmocoding0' 'libosmocore-devel' 'libosmocore-tools' 'libosmocore12' 'libosmoctrl-devel' 'libosmoctrl0' 'libosmodsp0' 'libosmogb-devel' 'libosmogb9' 'libosmogsm-devel' 'libosmogsm13' 'libosmonetif-devel' 'libosmonetif8' 'libosmosdr0' 'libosmosim-devel' 'libosmosim0' 'libosmotrau-devel' 'libosmotrau2' 'libosmovty-devel' 'libosmovty4' 'libosmvendor5' 'libosmvendor5-32bit' 'libospf0' 'libospfapiclient0' 'libossp-uuid++16' 'libossp-uuid16' 'libossp-uuid_dce16' 'libostree' 'libostree-1-1' 'libostree-devel' 'libostree-grub2' 'libotf' 'libotf-devel' 'libotf-devel-32bit' 'libotf0' 'libotf0-32bit' 'libotr-devel' 'libotr-tools' 'libotr5' 'libout123-0' 'libout123-0-32bit' 'libovf-glib-devel' 'libowncloudsync-devel' 'libowncloudsync0' 'liboyranos-alpha-devel' 'liboyranos-devel' 'liboyranos0' 'liboyranos0-cups' 'liboyranos0-lraw' 'liboyranos0-monitor' 'liboyranos0-sane' 'libp11-3' 'libp11-3-32bit' 'libp11-devel' 'libp11-kit0' 'libp11-kit0-32bit' 'libp8-platform2' 'libpacemaker-devel' 'libpacemaker3' 'libpackagekit-glib2-18' 'libpackagekit-glib2-18-32bit' 'libpackagekit-glib2-devel' 'libpackagekit-glib2-devel-32bit' 'libpackagekitqt5-1' 'libpagemaker-0_0-0' 'libpagemaker-devel' 'libpagemaker-devel-doc' 'libpagemaker-tools' 'libpainter0' 'libpamtest-devel' 'libpamtest-devel-doc' 'libpamtest0' 'libpango-1_0-0' 'libpango-1_0-0-32bit' 'libpangomm-1_4-1' 'libpangomm-1_4-1-32bit' 'libpangomm-2_44-1' 'libpangomm-2_44-1-32bit' 'libpangox-1_0-0' 'libpangox-1_0-0-32bit' 'libpano-devel' 'libpano-utils' 'libpano13-3' 'libpaper-devel' 'libpaper-utils' 'libpaper1' 'libpapi' 'libpapi-32bit' 'libpapi_5_7_0-hpc' 'libparanoia1_0' 'libpari-gmp-tls6' 'libparlatype-devel' 'libparlatype1' 'libparpack2-openmpi' 'libparpack2-openmpi-32bit' 'libparserutils-devel' 'libparserutils-doc' 'libparserutils0' 'libparted0' 'libparted0-32bit' 'libpasswdqc0' 'libpasswdqc0-32bit' 'libpath_utils-devel' 'libpath_utils-devel-32bit' 'libpath_utils1' 'libpath_utils1-32bit' 'libpcap-devel' 'libpcap-devel-32bit' 'libpcap-devel-static' 'libpcap1' 'libpcap1-32bit' 'libpcaudio0' 'libpcd-devel' 'libpcd2' 'libpci3' 'libpci3-32bit' 'libpciaccess-devel' 'libpciaccess0' 'libpciaccess0-32bit' 'libpcp-devel' 'libpcp3' 'libpcp_gui2' 'libpcp_import1' 'libpcp_mmv1' 'libpcp_trace2' 'libpcp_web1' 'libpcre1' 'libpcre1-32bit' 'libpcre16-0' 'libpcre16-0-32bit' 'libpcre2-16-0' 'libpcre2-16-0-32bit' 'libpcre2-32-0' 'libpcre2-32-0-32bit' 'libpcre2-8-0' 'libpcre2-8-0-32bit' 'libpcre2-posix2' 'libpcre2-posix2-32bit' 'libpcrecpp0' 'libpcrecpp0-32bit' 'libpcreposix0' 'libpcreposix0-32bit' 'libpcsclite1' 'libpcsclite1-32bit' 'libpcscspy0' 'libpcscspy0-32bit' 'libpeas-1_0-0' 'libpeas-demo' 'libpeas-devel' 'libpeas-gtk-1_0-0' 'libpeas-lang' 'libpeas-loader-python' 'libpeas-loader-python3' 'libpeasd-3-0' 'libpegclient1' 'libpegcommon1' 'libpegexportserver1' 'libpeglistener1' 'libperseus-sdr-devel' 'libperseus-sdr-udev' 'libperseus-sdr0' 'libpetsc-gnu-mpich-hpc' 'libpetsc-gnu-mvapich2-hpc' 'libpetsc-gnu-openmpi1-hpc' 'libpetsc-gnu-openmpi2-hpc' 'libpetsc-gnu-openmpi3-hpc' 'libpetsc3' 'libpetsc3-openmpi' 'libpetsc_3_11_3-gnu-mpich-hpc' 'libpetsc_3_11_3-gnu-mvapich2-hpc' 'libpetsc_3_11_3-gnu-openmpi1-hpc' 'libpetsc_3_11_3-gnu-openmpi2-hpc' 'libpetsc_3_11_3-gnu-openmpi3-hpc' 'libpff-devel' 'libpff-tools' 'libpff1' 'libpfm-devel' 'libpfm-devel-static' 'libpfm4' 'libpfm4-32bit' 'libpfs2' 'libpgeasy-devel' 'libpgeasy3' 'libpgf-devel' 'libpgf7' 'libpgm-5_2-0' 'libpgm-5_2-0-32bit' 'libphobos2-0_87' 'libphobos2-ldc86' 'libphodav-2_0-0' 'libphonenumber-devel' 'libphonenumber8' 'libphonon4' 'libphonon4-32bit' 'libphonon4qt5' 'libphonon4qt5-32bit' 'libphysfs-devel' 'libphysfs1' 'libpinyin-data' 'libpinyin-devel' 'libpinyin-tools' 'libpinyin13' 'libpinyin13-32bit' 'libpipeline-devel' 'libpipeline1' 'libpipewire-0_2-1' 'libpisock-devel' 'libpisock9' 'libpisync-devel' 'libpisync1' 'libpixman-1-0' 'libpixman-1-0-32bit' 'libpixman-1-0-devel' 'libpkcs11-helper1' 'libpkcs11-helper1-32bit' 'libpkgconf-devel' 'libpkgconf3' 'libplacebo-devel' 'libplacebo18' 'libplank1' 'libplayerctl2' 'libplib0' 'libplist++-devel' 'libplist++3' 'libplist++3-32bit' 'libplist-devel' 'libplist3' 'libplist3-32bit' 'libplot2' 'libplotter2' 'libplplot17' 'libplplotada4' 'libplplotcxx15' 'libplplotfortran0' 'libplplotqt2' 'libplplotwxwidgets1' 'libply-boot-client4' 'libply-splash-core4' 'libply-splash-graphics4' 'libply4' 'libpmem-devel' 'libpmem1' 'libpmemblk-devel' 'libpmemblk1' 'libpmemlog-devel' 'libpmemlog1' 'libpmemobj-cpp-devel' 'libpmemobj-cpp-devel-doc' 'libpmemobj-devel' 'libpmemobj1' 'libpmempool-devel' 'libpmempool1' 'libpmi0' 'libpnetcdf1-openmpi' 'libpng12-0' 'libpng12-0-32bit' 'libpng12-compat-devel' 'libpng12-compat-devel-32bit' 'libpng12-devel' 'libpng12-devel-32bit' 'libpng16-16' 'libpng16-16-32bit' 'libpng16-compat-devel' 'libpng16-compat-devel-32bit' 'libpng16-devel' 'libpng16-devel-32bit' 'libpng16-tools' 'libpnglite0' 'libpocketsphinx1' 'libpocl2' 'libpodofo-devel' 'libpodofo0_9_6' 'libpolkit-qt-1-1' 'libpolkit-qt-1-1-32bit' 'libpolkit-qt-1-devel' 'libpolkit-qt5-1-1' 'libpolkit-qt5-1-1-32bit' 'libpolkit-qt5-1-devel' 'libpolkit-qt5-1-devel-32bit' 'libpolkit0' 'libpolkit0-32bit' 'libpoppler-cpp0' 'libpoppler-cpp0-32bit' 'libpoppler-devel' 'libpoppler-glib-devel' 'libpoppler-glib8' 'libpoppler-glib8-32bit' 'libpoppler-qt5-1' 'libpoppler-qt5-1-32bit' 'libpoppler-qt5-devel' 'libpoppler89' 'libpoppler89-32bit' 'libpopt0' 'libpopt0-32bit' 'libportaudio2' 'libportaudio2-32bit' 'libportaudiocpp0' 'libportmidi0' 'libpostproc53' 'libpostproc53-32bit' 'libpostproc53-32bit-debuginfo' 'libpostproc53-debuginfo' 'libpostproc54' 'libpostproc54-32bit' 'libpostproc54-32bit-debuginfo' 'libpostproc54-debuginfo' 'libpostproc55' 'libpostproc55-32bit' 'libpostproc55-32bit-debuginfo' 'libpostproc55-debuginfo' 'libpotrace0' 'libpowerman0' 'libpq5' 'libpq5-32bit' 'libpqos-devel' 'libpqos3' 'libpqxx-5_0' 'libpqxx-devel' 'libpqxx-doc' 'libprelude-devel' 'libprelude-devel-bindings' 'libprelude-doc' 'libprelude28' 'libpreludecpp8' 'libpreludedb-devel' 'libpreludedb-devel-bindings' 'libpreludedb-doc' 'libpreludedb-mysql' 'libpreludedb-pgsql' 'libpreludedb-plugins' 'libpreludedb-sqlite' 'libpreludedb7' 'libpreludedbcpp2' 'libpresage-devel' 'libpresage-doc' 'libpresage1' 'libprimesieve-devel' 'libprimesieve9' 'libprison-devel' 'libprison0' 'libprison0-32bit' 'libprocps7' 'libprofiler0' 'libproj15' 'libprojectM3' 'libpromises-devel' 'libpromises3' 'libprotobuf-c-devel' 'libprotobuf-c1' 'libprotobuf-lite19' 'libprotobuf-lite20' 'libprotobuf-lite20-32bit' 'libprotobuf-mutator-devel' 'libprotobuf-mutator0' 'libprotobuf-nanopb0' 'libprotobuf20' 'libprotobuf20-32bit' 'libprotoc20' 'libprotoc20-32bit' 'libproxy-devel' 'libproxy-sharp' 'libproxy-tools' 'libproxy1' 'libproxy1-32bit' 'libproxy1-config-gnome3' 'libproxy1-config-gnome3-32bit' 'libproxy1-config-kde' 'libproxy1-config-kde-32bit' 'libproxy1-networkmanager' 'libproxy1-networkmanager-32bit' 'libproxy1-pacrunner-webkit' 'libproxy1-pacrunner-webkit-32bit' 'libpsiconv6' 'libpskc-devel' 'libpskc0' 'libpsl-devel' 'libpsl5' 'libpsl5-32bit' 'libpsm2-2' 'libpsm2-compat' 'libpsm2-devel' 'libpsm_infinipath1' 'libpsm_infinipath1-32bit' 'libpspell15' 'libpspell15-32bit' 'libpst' 'libpst-devel' 'libpst4' 'libpt-devel' 'libpt2_10_11' 'libpt2_10_11-plugins-avc' 'libpt2_10_11-plugins-pulse' 'libptexenc1' 'libptscotch-gnu-mpich-hpc' 'libptscotch-gnu-mvapich2-hpc' 'libptscotch-gnu-openmpi1-hpc' 'libptscotch-gnu-openmpi2-hpc' 'libptscotch-gnu-openmpi3-hpc' 'libptscotch0-mpich' 'libptscotch0-mvapich2' 'libptscotch0-openmpi' 'libptscotch0-openmpi2' 'libptscotch_6_0_6-gnu-mpich-hpc' 'libptscotch_6_0_6-gnu-mvapich2-hpc' 'libptscotch_6_0_6-gnu-openmpi1-hpc' 'libptscotch_6_0_6-gnu-openmpi2-hpc' 'libptscotch_6_0_6-gnu-openmpi3-hpc' 'libpugixml1' 'libpulse-devel' 'libpulse-devel-32bit' 'libpulse-mainloop-glib0' 'libpulse-mainloop-glib0-32bit' 'libpulse0' 'libpulse0-32bit' 'libpurple' 'libpurple-branding-openSUSE' 'libpurple-branding-upstream' 'libpurple-devel' 'libpurple-lang' 'libpurple-plugin-bot-sentry' 'libpurple-plugin-bot-sentry-lang' 'libpurple-plugin-carbons' 'libpurple-plugin-facebook' 'libpurple-plugin-gnome-keyring' 'libpurple-plugin-import-empathy' 'libpurple-plugin-libsteam' 'libpurple-plugin-lurch' 'libpurple-plugin-mattermost' 'libpurple-plugin-mrim' 'libpurple-plugin-mrim-lang' 'libpurple-plugin-pack' 'libpurple-plugin-pack-extras' 'libpurple-plugin-pack-lang' 'libpurple-plugin-prpltwtr' 'libpurple-plugin-prpltwtr-lang' 'libpurple-plugin-rocketchat' 'libpurple-plugin-sametime' 'libpurple-plugin-sipe' 'libpurple-plugin-sipe-lang' 'libpurple-plugin-skypeweb' 'libpurple-plugin-telegram' 'libpurple-plugin-telegram-lang' 'libpurple-tcl' 'libpw3270-5_1' 'libpwquality-devel' 'libpwquality-lang' 'libpwquality-tools' 'libpwquality1' 'libpythia8' 'libpythia8lhapdf6' 'libpython2_7-1_0' 'libpython2_7-1_0-32bit' 'libpython3_7m1_0' 'libpython3_7m1_0-32bit' 'libpyzy-1_0-0' 'libqalculate-devel' 'libqalculate21' 'libqb-devel' 'libqb-devel-32bit' 'libqb-tests' 'libqb-tools' 'libqb20' 'libqb20-32bit' 'libqca-qt5' 'libqca-qt5-32bit' 'libqca-qt5-devel' 'libqca-qt5-devel-32bit' 'libqca-qt5-plugins' 'libqca-qt5-plugins-32bit' 'libqca2' 'libqca2-32bit' 'libqca2-devel' 'libqca2-plugin-cyrus-sasl' 'libqca2-plugin-cyrus-sasl-32bit' 'libqca2-plugin-gcrypt' 'libqca2-plugin-nss' 'libqca2-plugin-nss-32bit' 'libqca2-plugin-pkcs11' 'libqcow-devel' 'libqcow-tools' 'libqcow1' 'libqcustomplot2' 'libqd0' 'libqgpgme-devel' 'libqgpgme7' 'libqgpgme7-32bit' 'libqhexedit4' 'libqhull7-7_2_0' 'libqimageblitz-devel' 'libqimageblitz4' 'libqimageblitz5-1' 'libqimageblitz5-devel' 'libqjack-devel' 'libqjack0' 'libqjson-devel' 'libqjson0' 'libqjson0-32bit' 'libqmatrixclient-devel' 'libqmi-devel' 'libqmi-glib5' 'libqmi-tools' 'libqmmp-devel' 'libqmmp-plugin-mplayer' 'libqmmp-plugin-mplayer-debuginfo' 'libqmmp-plugins' 'libqmmp-plugins-debuginfo' 'libqmmp1' 'libqmmp1-32bit' 'libqmmp1-32bit-debuginfo' 'libqmmp1-debuginfo' 'libqoauth2' 'libqobs-devel' 'libqobs1' 'libqore5' 'libqpdf21' 'libqpid-proton-cpp10' 'libqpid-proton10' 'libqqwing2' 'libqrencode4' 'libqrencode4-32bit' 'libqrupdate1' 'libqsastime0' 'libqscintilla2_qt5-15' 'libqscintilla_qt5-devel' 'libqt4' 'libqt4-32bit' 'libqt4-devel' 'libqt4-devel-32bit' 'libqt4-linguist' 'libqt4-private-headers-devel' 'libqt4-qt3support' 'libqt4-qt3support-32bit' 'libqt4-sql' 'libqt4-sql-32bit' 'libqt4-sql-postgresql' 'libqt4-sql-postgresql-32bit' 'libqt4-sql-sqlite' 'libqt4-sql-sqlite-32bit' 'libqt4-sql-unixODBC' 'libqt4-sql-unixODBC-32bit' 'libqt4-x11' 'libqt4-x11-32bit' 'libqt5-creator' 'libqt5-creator-plugin-devel' 'libqt5-linguist' 'libqt5-linguist-devel' 'libqt5-qdbus' 'libqt5-qt3d-devel' 'libqt5-qt3d-examples' 'libqt5-qt3d-imports' 'libqt5-qt3d-private-headers-devel' 'libqt5-qt3d-tools' 'libqt5-qtbase-common-devel' 'libqt5-qtbase-devel' 'libqt5-qtbase-examples' 'libqt5-qtbase-examples-32bit' 'libqt5-qtbase-platformtheme-gtk3' 'libqt5-qtbase-platformtheme-xdgdesktopportal' 'libqt5-qtbase-private-headers-devel' 'libqt5-qtcanvas3d' 'libqt5-qtcanvas3d-examples' 'libqt5-qtcharts-examples' 'libqt5-qtcharts-imports' 'libqt5-qtconnectivity-devel' 'libqt5-qtconnectivity-devel-32bit' 'libqt5-qtconnectivity-examples' 'libqt5-qtconnectivity-private-headers-devel' 'libqt5-qtconnectivity-tools' 'libqt5-qtdatavis3d-examples' 'libqt5-qtdatavis3d-imports' 'libqt5-qtdeclarative-devel' 'libqt5-qtdeclarative-devel-32bit' 'libqt5-qtdeclarative-examples' 'libqt5-qtdeclarative-private-headers-devel' 'libqt5-qtdeclarative-tools' 'libqt5-qtdoc' 'libqt5-qtdoc-devel' 'libqt5-qtdoc-html' 'libqt5-qtdoc-qch' 'libqt5-qtgamepad-devel' 'libqt5-qtgamepad-devel-32bit' 'libqt5-qtgamepad-examples' 'libqt5-qtgamepad-private-headers-devel' 'libqt5-qtgraphicaleffects' 'libqt5-qtimageformats' 'libqt5-qtimageformats-32bit' 'libqt5-qtimageformats-devel' 'libqt5-qtlocation-devel' 'libqt5-qtlocation-devel-32bit' 'libqt5-qtlocation-examples' 'libqt5-qtlocation-private-headers-devel' 'libqt5-qtlottie' 'libqt5-qtmultimedia-devel' 'libqt5-qtmultimedia-devel-32bit' 'libqt5-qtmultimedia-examples' 'libqt5-qtmultimedia-private-headers-devel' 'libqt5-qtnetworkauth-devel' 'libqt5-qtnetworkauth-devel-32bit' 'libqt5-qtnetworkauth-examples' 'libqt5-qtnetworkauth-private-headers-devel' 'libqt5-qtpaths' 'libqt5-qtquickcontrols' 'libqt5-qtquickcontrols-examples' 'libqt5-qtquickcontrols2' 'libqt5-qtquickcontrols2-examples' 'libqt5-qtquickcontrols2-private-headers-devel' 'libqt5-qtremoteobjects-devel' 'libqt5-qtremoteobjects-devel-32bit' 'libqt5-qtremoteobjects-examples' 'libqt5-qtremoteobjects-private-headers-devel' 'libqt5-qtremoteobjects-tools' 'libqt5-qtscript-devel' 'libqt5-qtscript-devel-32bit' 'libqt5-qtscript-examples' 'libqt5-qtscript-private-headers-devel' 'libqt5-qtscxml-devel' 'libqt5-qtscxml-devel-32bit' 'libqt5-qtscxml-examples' 'libqt5-qtscxml-private-headers-devel' 'libqt5-qtscxml-tools' 'libqt5-qtsensors-devel' 'libqt5-qtsensors-devel-32bit' 'libqt5-qtsensors-examples' 'libqt5-qtsensors-private-headers-devel' 'libqt5-qtserialbus' 'libqt5-qtserialbus-32bit' 'libqt5-qtserialbus-devel' 'libqt5-qtserialbus-devel-32bit' 'libqt5-qtserialbus-examples' 'libqt5-qtserialbus-private-headers-devel' 'libqt5-qtserialport-devel' 'libqt5-qtserialport-devel-32bit' 'libqt5-qtserialport-examples' 'libqt5-qtserialport-private-headers-devel' 'libqt5-qtspeech-devel' 'libqt5-qtspeech-devel-32bit' 'libqt5-qtspeech-examples' 'libqt5-qtspeech-plugin-speechd' 'libqt5-qtspeech-plugin-speechd-32bit' 'libqt5-qtstyleplugins' 'libqt5-qtstyleplugins-devel' 'libqt5-qtstyleplugins-platformtheme-gtk2' 'libqt5-qtsvg-devel' 'libqt5-qtsvg-devel-32bit' 'libqt5-qtsvg-examples' 'libqt5-qtsvg-private-headers-devel' 'libqt5-qttools' 'libqt5-qttools-32bit' 'libqt5-qttools-devel' 'libqt5-qttools-devel-32bit' 'libqt5-qttools-doc' 'libqt5-qttools-examples' 'libqt5-qttools-private-headers-devel' 'libqt5-qttranslations' 'libqt5-qtvirtualkeyboard' 'libqt5-qtvirtualkeyboard-devel' 'libqt5-qtvirtualkeyboard-examples' 'libqt5-qtvirtualkeyboard-hunspell' 'libqt5-qtvirtualkeyboard-private-headers-devel' 'libqt5-qtwayland' 'libqt5-qtwayland-32bit' 'libqt5-qtwayland-devel' 'libqt5-qtwayland-devel-32bit' 'libqt5-qtwayland-examples' 'libqt5-qtwayland-private-headers-devel' 'libqt5-qtwebchannel-devel' 'libqt5-qtwebchannel-devel-32bit' 'libqt5-qtwebchannel-examples' 'libqt5-qtwebchannel-private-headers-devel' 'libqt5-qtwebengine' 'libqt5-qtwebengine-32bit' 'libqt5-qtwebengine-devel' 'libqt5-qtwebengine-devel-32bit' 'libqt5-qtwebengine-examples' 'libqt5-qtwebengine-private-headers-devel' 'libqt5-qtwebsockets-devel' 'libqt5-qtwebsockets-devel-32bit' 'libqt5-qtwebsockets-examples' 'libqt5-qtwebsockets-private-headers-devel' 'libqt5-qtwebview-devel' 'libqt5-qtwebview-examples' 'libqt5-qtwebview-private-headers-devel' 'libqt5-qtx11extras-devel' 'libqt5-qtx11extras-devel-32bit' 'libqt5-qtxmlpatterns-devel' 'libqt5-qtxmlpatterns-devel-32bit' 'libqt5-qtxmlpatterns-examples' 'libqt5-qtxmlpatterns-imports' 'libqt5-qtxmlpatterns-imports-32bit' 'libqt5-qtxmlpatterns-private-headers-devel' 'libqt5keychain1' 'libqt5keychain1-32bit' 'libqt5keychain1-lang' 'libqt5xdg-devel' 'libqtcurve-cairo1' 'libqtcurve-cairo1-32bit' 'libqtcurve-utils2' 'libqtcurve-utils2-32bit' 'libqtermwidget5-0' 'libquadmath0' 'libquadmath0-32bit' 'libquadmath0-gcc7' 'libquadmath0-gcc7-32bit' 'libquadmath0-gcc8' 'libquadmath0-gcc8-32bit' 'libquagga_pb0' 'libquazip5-1' 'libquicktime' 'libquicktime' 'libquicktime-debuginfo' 'libquicktime-debugsource' 'libquicktime-devel' 'libquicktime-lang' 'libquicktime-orig-addon' 'libquicktime-orig-addon-debuginfo' 'libquicktime-tools' 'libquicktime-tools-debuginfo' 'libquicktime0' 'libquicktime0-32bit' 'libquicktime0-32bit-debuginfo' 'libquicktime0-debuginfo' 'libquo-devel' 'libquo6' 'libquorum5' 'libquorum5-32bit' 'libquvi-0_9-0_9_4' 'libquvi-devel' 'libquvi-scripts' 'libquvi-scripts-devel' 'libquvi-scripts-nsfw' 'libqwt5-qt5-5' 'libqwt6' 'libqwtplot3d-qt5-0' 'libqxmledit0' 'libqxmledit0-32bit' 'libqxmpp-devel' 'libqxmpp-doc' 'libqxmpp0' 'libqxmpp0-32bit' 'libqxp-0_0-0' 'libqxp-devel' 'libqxp-doc' 'libqxp-tools' 'libqxtglobalshortcut0' 'libradcli4' 'librados-devel' 'librados2' 'libradospp-devel' 'libradosstriper-devel' 'libradosstriper1' 'libragel0' 'librapi2' 'librapi2' 'librapi2-debuginfo' 'librapi2-debugsource' 'librapi2-devel' 'libraptor-devel' 'libraptor2-0' 'libraptor2-0-32bit' 'libraqm-devel' 'libraqm-doc' 'libraqm0' 'librasqal-devel' 'librasqal-devel-doc' 'librasqal3' 'librasqal3-32bit' 'libratbag-devel' 'libratbag-tools' 'libraw-devel' 'libraw-devel-static' 'libraw-tools' 'libraw1394-11' 'libraw1394-11-32bit' 'libraw1394-devel' 'libraw1394-devel-32bit' 'libraw1394-tools' 'libraw19' 'librawstudio-2_1' 'librawstudio-devel' 'libraylib2' 'librbd-devel' 'librbd1' 'librbio2' 'librbl1' 'librcc-devel' 'librcc0' 'librcc0-32bit' 'librcd-devel' 'librcd0' 'librcd0-32bit' 'librdf0' 'librdf0-32bit' 'librdkafka-devel' 'librdkafka1' 'librdmacm-utils' 'librdmacm1' 'librdmacm1-32bit' 'libre2-0' 'libre2-0-32bit' 'libreadline-java' 'libreadline-java-32bit' 'libreadline-java-javadoc' 'libreadline5' 'libreadline5-32bit' 'libreadline6' 'libreadline6-32bit' 'libreadline8' 'libreadline8-32bit' 'librecad' 'librecad-parts' 'librecode0' 'libredland-devel' 'libredwg-devel' 'libredwg-tools' 'libredwg0' 'libref_array-devel' 'libref_array-devel-32bit' 'libref_array1' 'libref_array1-32bit' 'libregf-devel' 'libregf-tools' 'libregf1' 'libregina3' 'libreiser4-1_2-1' 'libreiser4-minimal-1_2-1' 'libreiserfs-0_3-0' 'libreiserfs-0_3-0-32bit' 'libreiserfs-devel' 'libreiserfs-devel-32bit' 'libreiserfs-progs' 'libreiserfscore-devel' 'libreiserfscore0' 'librelp-devel' 'librelp0' 'libreoffice' 'libreoffice-base' 'libreoffice-base-drivers-firebird' 'libreoffice-base-drivers-postgresql' 'libreoffice-branding-openSUSE' 'libreoffice-branding-upstream' 'libreoffice-calc' 'libreoffice-calc-extensions' 'libreoffice-draw' 'libreoffice-filters-optional' 'libreoffice-gdb-pretty-printers' 'libreoffice-glade' 'libreoffice-gnome' 'libreoffice-gtk2' 'libreoffice-gtk3' 'libreoffice-icon-themes' 'libreoffice-impress' 'libreoffice-l10n-af' 'libreoffice-l10n-am' 'libreoffice-l10n-ar' 'libreoffice-l10n-as' 'libreoffice-l10n-ast' 'libreoffice-l10n-be' 'libreoffice-l10n-bg' 'libreoffice-l10n-bn' 'libreoffice-l10n-bn_IN' 'libreoffice-l10n-bo' 'libreoffice-l10n-br' 'libreoffice-l10n-brx' 'libreoffice-l10n-bs' 'libreoffice-l10n-ca' 'libreoffice-l10n-ca_valencia' 'libreoffice-l10n-cs' 'libreoffice-l10n-cy' 'libreoffice-l10n-da' 'libreoffice-l10n-de' 'libreoffice-l10n-dgo' 'libreoffice-l10n-dsb' 'libreoffice-l10n-dz' 'libreoffice-l10n-el' 'libreoffice-l10n-en' 'libreoffice-l10n-en_GB' 'libreoffice-l10n-en_ZA' 'libreoffice-l10n-eo' 'libreoffice-l10n-es' 'libreoffice-l10n-et' 'libreoffice-l10n-eu' 'libreoffice-l10n-fa' 'libreoffice-l10n-fi' 'libreoffice-l10n-fr' 'libreoffice-l10n-fy' 'libreoffice-l10n-ga' 'libreoffice-l10n-gd' 'libreoffice-l10n-gl' 'libreoffice-l10n-gu' 'libreoffice-l10n-gug' 'libreoffice-l10n-he' 'libreoffice-l10n-hi' 'libreoffice-l10n-hr' 'libreoffice-l10n-hsb' 'libreoffice-l10n-hu' 'libreoffice-l10n-id' 'libreoffice-l10n-is' 'libreoffice-l10n-it' 'libreoffice-l10n-ja' 'libreoffice-l10n-ka' 'libreoffice-l10n-kab' 'libreoffice-l10n-kk' 'libreoffice-l10n-km' 'libreoffice-l10n-kmr_Latn' 'libreoffice-l10n-kn' 'libreoffice-l10n-ko' 'libreoffice-l10n-kok' 'libreoffice-l10n-ks' 'libreoffice-l10n-lb' 'libreoffice-l10n-lo' 'libreoffice-l10n-lt' 'libreoffice-l10n-lv' 'libreoffice-l10n-mai' 'libreoffice-l10n-mk' 'libreoffice-l10n-ml' 'libreoffice-l10n-mn' 'libreoffice-l10n-mni' 'libreoffice-l10n-mr' 'libreoffice-l10n-my' 'libreoffice-l10n-nb' 'libreoffice-l10n-ne' 'libreoffice-l10n-nl' 'libreoffice-l10n-nn' 'libreoffice-l10n-nr' 'libreoffice-l10n-nso' 'libreoffice-l10n-oc' 'libreoffice-l10n-om' 'libreoffice-l10n-or' 'libreoffice-l10n-pa' 'libreoffice-l10n-pl' 'libreoffice-l10n-pt_BR' 'libreoffice-l10n-pt_PT' 'libreoffice-l10n-ro' 'libreoffice-l10n-ru' 'libreoffice-l10n-rw' 'libreoffice-l10n-sa_IN' 'libreoffice-l10n-sat' 'libreoffice-l10n-sd' 'libreoffice-l10n-si' 'libreoffice-l10n-sid' 'libreoffice-l10n-sk' 'libreoffice-l10n-sl' 'libreoffice-l10n-sq' 'libreoffice-l10n-sr' 'libreoffice-l10n-ss' 'libreoffice-l10n-st' 'libreoffice-l10n-sv' 'libreoffice-l10n-sw_TZ' 'libreoffice-l10n-ta' 'libreoffice-l10n-te' 'libreoffice-l10n-tg' 'libreoffice-l10n-th' 'libreoffice-l10n-tn' 'libreoffice-l10n-tr' 'libreoffice-l10n-ts' 'libreoffice-l10n-tt' 'libreoffice-l10n-ug' 'libreoffice-l10n-uk' 'libreoffice-l10n-uz' 'libreoffice-l10n-ve' 'libreoffice-l10n-vec' 'libreoffice-l10n-vi' 'libreoffice-l10n-xh' 'libreoffice-l10n-zh_CN' 'libreoffice-l10n-zh_TW' 'libreoffice-l10n-zu' 'libreoffice-librelogo' 'libreoffice-mailmerge' 'libreoffice-math' 'libreoffice-officebean' 'libreoffice-pyuno' 'libreoffice-qt5' 'libreoffice-sdk' 'libreoffice-sdk-doc' 'libreoffice-share-linker' 'libreoffice-voikko' 'libreoffice-writer' 'libreoffice-writer-extensions' 'libreofficekit' 'libreofficekit-devel' 'librep' 'librep-devel' 'librep16' 'librepair-1_2-1' 'librepilot' 'libreplaygain-devel' 'libreplaygain1' 'librepo-devel' 'librepo0' 'librepository' 'librepository-javadoc' 'librepute1' 'libressl' 'libressl-devel' 'libressl-devel-32bit' 'libressl-devel-doc' 'librest-0_7-0' 'librest-0_7-0-32bit' 'librest-devel' 'libretro-bsnes' 'libretro-gambatte' 'libretro-gtk-0_14-0' 'libretro-pcsx_rearmed' 'librevenge-0_0-0' 'librevenge-devel' 'librevenge-doc' 'librevenge-generators-0_0-0' 'librevenge-stream-0_0-0' 'librfxencode0' 'librgw-devel' 'librgw2' 'librhash0' 'librime-devel' 'librime1' 'librime1-32bit' 'librk0' 'librlog-devel' 'librlog5' 'librlog5-doc' 'librmt-devel-doc' 'librmt1_0' 'libroar2' 'libroar2-debuginfo' 'librocsgraphtheory0' 'librpmem-devel' 'librpmem1' 'librrd8' 'librsb-devel' 'librsb0' 'librscg1_0' 'librsound-devel' 'librsound-devel-static' 'librsound3' 'librsound3-32bit' 'librsound3-32bit-debuginfo' 'librsound3-debuginfo' 'librsvg-2-2' 'librsvg-2-2-32bit' 'librsvg-devel' 'librsync-devel' 'librsync2' 'librtaudio6' 'librtlsdr0' 'librtmidi5' 'librtmp-devel' 'librtmp1' 'librtmp1-32bit' 'librtmp1-32bit-debuginfo' 'librtmp1-debuginfo' 'librttr_core0_9_6' 'librubberband-devel' 'librubberband2' 'librubberband2-32bit' 'libruby2_6-2_6' 'librvngabw-0_0-0' 'librvngabw-devel' 'librvngabw-devel-doc' 'librygel-core-2_6-2' 'librygel-db-2_6-2' 'librygel-renderer-2_6-2' 'librygel-renderer-gst-2_6-2' 'librygel-ruih-2_0-1' 'librygel-server-2_6-2' 'libs3-4' 'libs3-devel' 'libs3-tools' 'libsam4' 'libsam4-32bit' 'libsamba-credentials-devel' 'libsamba-credentials0' 'libsamba-credentials0-32bit' 'libsamba-errors-devel' 'libsamba-errors0' 'libsamba-errors0-32bit' 'libsamba-hostconfig-devel' 'libsamba-hostconfig0' 'libsamba-hostconfig0-32bit' 'libsamba-passdb-devel' 'libsamba-passdb0' 'libsamba-passdb0-32bit' 'libsamba-policy-devel' 'libsamba-policy-python3-devel' 'libsamba-policy0-python3' 'libsamba-policy0-python3-32bit' 'libsamba-util-devel' 'libsamba-util0' 'libsamba-util0-32bit' 'libsamdb-devel' 'libsamdb0' 'libsamdb0-32bit' 'libsaml-devel' 'libsaml10' 'libsamplerate-devel' 'libsamplerate-progs' 'libsamplerate0' 'libsamplerate0-32bit' 'libsanlock1' 'libsasl2-3' 'libsasl2-3-32bit' 'libsass-3_6_1-1' 'libsass-devel' 'libsbc1' 'libsbc1-32bit' 'libsblim-cmpiutil1' 'libscalapack2-gnu-mpich-hpc' 'libscalapack2-gnu-mpich-hpc-devel' 'libscalapack2-gnu-mvapich2-hpc' 'libscalapack2-gnu-mvapich2-hpc-devel' 'libscalapack2-gnu-openmpi1-hpc' 'libscalapack2-gnu-openmpi1-hpc-devel' 'libscalapack2-gnu-openmpi2-hpc' 'libscalapack2-gnu-openmpi2-hpc-devel' 'libscalapack2-gnu-openmpi3-hpc' 'libscalapack2-gnu-openmpi3-hpc-devel' 'libscalapack2-mvapich2' 'libscalapack2-mvapich2-32bit' 'libscalapack2-mvapich2-devel' 'libscalapack2-mvapich2-devel-32bit' 'libscalapack2-mvapich2-devel-static' 'libscalapack2-openmpi' 'libscalapack2-openmpi-32bit' 'libscalapack2-openmpi-devel' 'libscalapack2-openmpi-devel-32bit' 'libscalapack2-openmpi-devel-static' 'libscalapack2-openmpi2' 'libscalapack2-openmpi2-32bit' 'libscalapack2-openmpi2-devel' 'libscalapack2-openmpi2-devel-32bit' 'libscalapack2-openmpi2-devel-static' 'libscalapack2-openmpi3' 'libscalapack2-openmpi3-32bit' 'libscalapack2-openmpi3-devel' 'libscalapack2-openmpi3-devel-32bit' 'libscalapack2-openmpi3-devel-static' 'libscalapack2_2_0_2-gnu-mpich-hpc' 'libscalapack2_2_0_2-gnu-mpich-hpc-devel' 'libscalapack2_2_0_2-gnu-mpich-hpc-devel-static' 'libscalapack2_2_0_2-gnu-mvapich2-hpc' 'libscalapack2_2_0_2-gnu-mvapich2-hpc-devel' 'libscalapack2_2_0_2-gnu-mvapich2-hpc-devel-static' 'libscalapack2_2_0_2-gnu-openmpi1-hpc' 'libscalapack2_2_0_2-gnu-openmpi1-hpc-devel' 'libscalapack2_2_0_2-gnu-openmpi1-hpc-devel-static' 'libscalapack2_2_0_2-gnu-openmpi2-hpc' 'libscalapack2_2_0_2-gnu-openmpi2-hpc-devel' 'libscalapack2_2_0_2-gnu-openmpi2-hpc-devel-static' 'libscalapack2_2_0_2-gnu-openmpi3-hpc' 'libscalapack2_2_0_2-gnu-openmpi3-hpc-devel' 'libscalapack2_2_0_2-gnu-openmpi3-hpc-devel-static' 'libscamperfile-devel' 'libscamperfile0' 'libscca-devel' 'libscca-tools' 'libscca1' 'libscg-devel' 'libscg1_0' 'libscgcmd1_0' 'libschily-devel' 'libschily-devel-doc' 'libschily2_0' 'libschroedinger-1_0-0' 'libschroedinger-1_0-0-32bit' 'libscilab6' 'libscintilla-devel' 'libscintilla3' 'libscotch0' 'libseccomp-devel' 'libseccomp-tools' 'libseccomp2' 'libseccomp2-32bit' 'libsecprog-devel' 'libsecprog0' 'libsecret-1-0' 'libsecret-1-0-32bit' 'libsecret-devel' 'libsecret-lang' 'libsecret-tools' 'libselinux-devel' 'libselinux-devel-static' 'libselinux1' 'libselinux1-32bit' 'libsemanage-devel' 'libsemanage-devel-static' 'libsemanage-migrate-store' 'libsemanage1' 'libsemanage1-32bit' 'libsensors4' 'libsensors4-32bit' 'libsensors4-devel' 'libsepol-devel' 'libsepol-devel-static' 'libsepol-utils' 'libsepol1' 'libsepol1-32bit' 'libserd-0-0' 'libserd-0-0-32bit' 'libserf-1-1' 'libserf-devel' 'libserialdv1' 'libserializer' 'libserializer-javadoc' 'libserialport-devel' 'libserialport0' 'libsfcUtil0' 'libsfml2-2_5' 'libsfml2-2_5-32bit' 'libsfst-hfst0' 'libsgutils-devel' 'libsgutils2-1_45-2' 'libsha1detectcoll-devel' 'libsha1detectcoll1' 'libshaderc_shared1' 'libshadowdive0_0_0-suse' 'libshadowsocks-libev2' 'libshairplay0' 'libshairplay0-debuginfo' 'libshibsp-lite8' 'libshibsp8' 'libshine-devel' 'libshine3' 'libshout-devel' 'libshout-idjc' 'libshout-idjc-debugsource' 'libshout-idjc-devel' 'libshout-idjc-devel-32bit' 'libshout-idjc3' 'libshout-idjc3-32bit' 'libshout-idjc3-32bit-debuginfo' 'libshout-idjc3-debuginfo' 'libshout3' 'libshout3-32bit' 'libshp-devel' 'libshp2' 'libsidplayfp-devel' 'libsidplayfp4' 'libsigc++2-devel' 'libsigc++3-devel' 'libsigc-2_0-0' 'libsigc-2_0-0-32bit' 'libsigc-3_0-0' 'libsigc-3_0-0-32bit' 'libsignal-protocol-c-devel' 'libsignal-protocol-c2' 'libsignon-glib-devel' 'libsignon-glib1' 'libsignon-qt5-1' 'libsignon-qt5-1-32bit' 'libsignon-qt5-devel' 'libsignon-qt5-docs' 'libsigrok-data' 'libsigrok-devel' 'libsigrok4' 'libsigrokcxx4' 'libsigrokdecode-devel' 'libsigrokdecode4' 'libsigscan-devel' 'libsigscan-tools' 'libsigscan1' 'libsigsegv-devel' 'libsigsegv-doc' 'libsigsegv2' 'libskk-devel' 'libskk0' 'libskk0-32bit' 'libslang2' 'libslang2-32bit' 'libslopy7_4' 'libslp1' 'libslurm33' 'libsmartcols-devel' 'libsmartcols-devel-static' 'libsmartcols1' 'libsmbclient-devel' 'libsmbclient0' 'libsmbclient0-32bit' 'libsmbconf-devel' 'libsmbconf0' 'libsmbconf0-32bit' 'libsmbios-devel' 'libsmbios-lang' 'libsmbios_c2' 'libsmbldap-devel' 'libsmbldap2' 'libsmbldap2-32bit' 'libsmdev-devel' 'libsmdev-tools' 'libsmdev1' 'libsmi' 'libsmi-devel' 'libsmi2' 'libsmpp34-1' 'libsmpp34-devel' 'libsmputils-devel' 'libsmputils1-1' 'libsmraw-devel' 'libsmraw-tools' 'libsmraw1' 'libsnapper-devel' 'libsnapper4' 'libsnappy1' 'libsnappy1-32bit' 'libsndfile-devel' 'libsndfile-progs' 'libsndfile1' 'libsndfile1-32bit' 'libsndio7_0' 'libsnmp30' 'libsnmp30-32bit' 'libsoc-common' 'libsoc-devel' 'libsoc2' 'libsocketcan-devel' 'libsocketcan2' 'libsocks0' 'libsocks0-32bit' 'libsodium-devel' 'libsodium23' 'libsodium23-32bit' 'libsofia-sip-ua-glib3' 'libsofia-sip-ua0' 'libsoftokn3' 'libsoftokn3-32bit' 'libsolarus-gui1' 'libsolarus1' 'libsolv-demo' 'libsolv-devel' 'libsolv-tools' 'libsord-0-0' 'libsord-0-0-32bit' 'libsoundio-devel' 'libsoundio1' 'libsoundio1-debuginfo' 'libsoup-2_4-1' 'libsoup-2_4-1-32bit' 'libsoup-devel' 'libsoup-devel-32bit' 'libsoup-lang' 'libsource-highlight-devel' 'libsource-highlight4' 'libsource-highlight4-32bit' 'libsox3' 'libsox3-debuginfo' 'libsoxr-lsr0' 'libsoxr-lsr0-32bit' 'libsoxr0' 'libsoxr0-32bit' 'libspandsp2' 'libspandsp2-32bit' 'libspatialindex4' 'libspatialite-devel' 'libspatialite7' 'libspdylay7' 'libspectre-devel' 'libspectre1' 'libspeechd-devel' 'libspeechd2' 'libspeechd2-32bit' 'libspeex1' 'libspeex1-32bit' 'libspeexdsp1' 'libspeexdsp1-32bit' 'libspf2-2' 'libspf2-devel' 'libspf2-tools' 'libsphinxbase1' 'libsphinxclient-0_0_1' 'libsphinxclient-devel' 'libspice-client-glib-2_0-8' 'libspice-client-glib-helper' 'libspice-client-gtk-3_0-5' 'libspice-server-devel' 'libspice-server1' 'libspiro-devel' 'libspiro0' 'libspirv-cross-c-shared-devel' 'libspirv-cross-c-shared0' 'libsplinter-3-0' 'libspnav-devel' 'libspnav0' 'libspqr2' 'libspread-sheet-widget0' 'libsqlcipher-3_27_2-0' 'libsqlite3-0' 'libsqlite3-0-32bit' 'libsratom-0-0' 'libsratom-0-0-32bit' 'libsrecord0' 'libsrt1' 'libsrt1-32bit' 'libsrtp-devel' 'libsrtp1' 'libsrtp1-32bit' 'libsrtp2-1' 'libsrtp2-1-32bit' 'libsrtp2-devel' 'libssh-config' 'libssh-devel' 'libssh2-1' 'libssh2-1-32bit' 'libssh2-devel' 'libssh4' 'libssh4-32bit' 'libssl47' 'libssl47-32bit' 'libssr-glinject' 'libssr-glinject-32bit' 'libsss_certmap-devel' 'libsss_certmap0' 'libsss_idmap-devel' 'libsss_idmap0' 'libsss_nss_idmap-devel' 'libsss_nss_idmap0' 'libsss_simpleifp-devel' 'libsss_simpleifp0' 'libstaroffice-0_0-0' 'libstaroffice-devel' 'libstaroffice-devel-doc' 'libstaroffice-tools' 'libstartup-notification-1-0' 'libstartup-notification-1-0-32bit' 'libstatgrab-devel' 'libstatgrab-devel-32bit' 'libstatgrab10' 'libstatgrab10-32bit' 'libstdc++-devel' 'libstdc++-devel-32bit' 'libstdc++6' 'libstdc++6-32bit' 'libstdc++6-devel-gcc7' 'libstdc++6-devel-gcc7-32bit' 'libstdc++6-devel-gcc8' 'libstdc++6-devel-gcc8-32bit' 'libstdc++6-devel-gcc9' 'libstdc++6-devel-gcc9-32bit' 'libstdc++6-gcc6-doc' 'libstdc++6-gcc7' 'libstdc++6-gcc7-32bit' 'libstdc++6-gcc7-locale' 'libstdc++6-gcc8' 'libstdc++6-gcc8-32bit' 'libstdc++6-gcc8-locale' 'libstdc++6-locale' 'libstdc++6-pp-gcc9' 'libstdc++6-pp-gcc9-32bit' 'libstfl-devel' 'libstfl0' 'libstilview-devel' 'libstilview0' 'libstk-devel' 'libstk4' 'libstk4-debuginfo' 'libstlink-shared1' 'libstoken1' 'libstorage-ng-devel' 'libstorage-ng-integration-tests' 'libstorage-ng-lang' 'libstorage-ng-python3' 'libstorage-ng-ruby' 'libstorage-ng-utils' 'libstorage-ng1' 'libstoragemgmt' 'libstoragemgmt-arcconf-plugin' 'libstoragemgmt-devel' 'libstoragemgmt-hpsa-plugin' 'libstoragemgmt-local-plugin' 'libstoragemgmt-megaraid-plugin' 'libstoragemgmt-netapp-plugin' 'libstoragemgmt-nfs-plugin' 'libstoragemgmt-nfs-plugin-clibs' 'libstoragemgmt-nstor-plugin' 'libstoragemgmt-smis-plugin' 'libstoragemgmt-targetd-plugin' 'libstoragemgmt-udev' 'libstoragemgmt1' 'libstp2_3' 'libstroke' 'libstroke-devel' 'libstrophe-devel' 'libstrophe0' 'libsubtitleeditor-devel' 'libsubtitleeditor0' 'libsubunit0' 'libsuil-0-0' 'libsuitesparseconfig5' 'libsunpinyin3' 'libsuperlu-gnu-hpc' 'libsuperlu5' 'libsuperlu5-32bit' 'libsuperlu_5_2_1-gnu-hpc' 'libsvn_auth_gnome_keyring-1-0' 'libsvn_auth_kwallet-1-0' 'libsvrcore0' 'libswitchboard-2_0-0' 'libsword-1_8_1' 'libswresample1' 'libswresample1-32bit' 'libswresample1-32bit-debuginfo' 'libswresample1-debuginfo' 'libswresample2' 'libswresample2-32bit' 'libswresample2-32bit-debuginfo' 'libswresample2-debuginfo' 'libswresample3' 'libswresample3-32bit' 'libswresample3-32bit-debuginfo' 'libswresample3-debuginfo' 'libswscale3' 'libswscale3-32bit' 'libswscale3-32bit-debuginfo' 'libswscale3-debuginfo' 'libswscale4' 'libswscale4-32bit' 'libswscale4-32bit-debuginfo' 'libswscale4-debuginfo' 'libswscale5' 'libswscale5-32bit' 'libswscale5-32bit-debuginfo' 'libswscale5-debuginfo' 'libsybdb5' 'libsympol0_1' 'libsynce-devel' 'libsynce0' 'libsynctex2' 'libsynfig0' 'libsynfig0-debuginfo' 'libsynfigapp0' 'libsynfigapp0-debuginfo' 'libsysstat-qt5-0' 'libsysstat-qt5-devel' 'libsystemd0' 'libsystemd0-32bit' 'libsz2' 'libsz2-32bit' 'libt3config-devel' 'libt3config0' 'libt3highlight-devel' 'libt3highlight-utils' 'libt3highlight2' 'libt3key-devel' 'libt3key-utils' 'libt3key1' 'libt3widget-devel' 'libt3widget2' 'libt3window-devel' 'libt3window0' 'libtachyon-0_99b6' 'libtachyon-devel' 'libtag-devel' 'libtag-doc' 'libtag-extras1' 'libtag1' 'libtag1-32bit' 'libtag_c0' 'libtag_c0-32bit' 'libtaginfo-devel' 'libtaginfo1' 'libtaginfo1-32bit' 'libtalloc-devel' 'libtalloc2' 'libtalloc2-32bit' 'libtar' 'libtar-devel' 'libtar1' 'libtasn1' 'libtasn1-6' 'libtasn1-6-32bit' 'libtasn1-devel' 'libtasn1-devel-32bit' 'libtbb2' 'libtbbmalloc2' 'libtcmalloc4' 'libtcmu2' 'libtcnative-1-0' 'libtcnative-1-0-devel' 'libtdb-devel' 'libtdb1' 'libtdb1-32bit' 'libtdsodbc0' 'libteam-devel' 'libteam-tools' 'libteam5' 'libteamdctl0' 'libtecla_r1' 'libteec1' 'libtelepathy-farstream3' 'libtelepathy-farstream3-32bit' 'libtelepathy-glib0' 'libtelepathy-glib0-32bit' 'libtelepathy-logger-qt5' 'libtelepathy-logger3' 'libtelepathy-qt5-0' 'libtelepathy-qt5-0-32bit' 'libtelepathy-qt5-farstream0' 'libtelepathy-qt5-farstream0-32bit' 'libtelepathy-qt5-service0' 'libtelepathy-qt5-service0-32bit' 'libtemplate_glib-1_0-0' 'libtepl-4-0' 'libteredo5' 'libtermkey-devel' 'libtermkey1' 'libtesseract3' 'libtestshade1_9' 'libtevent-devel' 'libtevent-util-devel' 'libtevent-util0' 'libtevent-util0-32bit' 'libtevent0' 'libtevent0-32bit' 'libtexlua53-5' 'libtexluajit2' 'libthai-data' 'libthai-devel' 'libthai0' 'libthai0-32bit' 'libtheora-devel' 'libtheora0' 'libtheora0-32bit' 'libtheoradec1' 'libtheoradec1-32bit' 'libtheoraenc1' 'libtheoraenc1-32bit' 'libthrift-0_12_0' 'libthrift-devel' 'libthrift_c_glib0' 'libthriftnb-0_12_0' 'libthriftz-0_12_0' 'libthunarx-3-0' 'libtidy-devel' 'libtidy5' 'libtidyp-1_04-0' 'libtidyp-devel' 'libtiff-devel' 'libtiff-devel-32bit' 'libtiff5' 'libtiff5-32bit' 'libtiger-devel' 'libtiger5' 'libtiled1' 'libtimidity-devel' 'libtimidity2' 'libtimidity2-32bit' 'libtins-devel' 'libtins3' 'libtinyb0' 'libtinygettext0' 'libtinyobjloader1' 'libtinyxml0' 'libtinyxml2-6' 'libtirpc-devel' 'libtirpc-netconfig' 'libtirpc3' 'libtirpc3-32bit' 'libtls19' 'libtls19-32bit' 'libtntdb-devel' 'libtntdb4' 'libtntnet-devel' 'libtntnet12' 'libtntnet12-debuginfo' 'libtolua++-5_1-1' 'libtolua++-5_1-devel' 'libtolua++-5_3-1' 'libtolua++-5_3-devel' 'libtolua-devel' 'libtolua5' 'libtomcrypt-devel' 'libtomcrypt-examples' 'libtomcrypt1' 'libtomcrypt1-32bit' 'libtommath-devel' 'libtommath-examples' 'libtommath1' 'libtommath1-32bit' 'libtomoe-gtk0' 'libtool' 'libtool-32bit' 'libtorrent-devel' 'libtorrent-rasterbar-devel' 'libtorrent-rasterbar-doc' 'libtorrent-rasterbar9' 'libtorrent21' 'libtotem-plparser-mini18' 'libtotem-plparser18' 'libtotem_pg5' 'libtotem_pg5-32bit' 'libtowitoko2' 'libtoxcore2' 'libtpl-extensions3' 'libtpm_unseal1' 'libtpms-devel' 'libtpms0' 'libtracker-common-2_0' 'libtracker-control-2_0-0' 'libtracker-miner-2_0-0' 'libtracker-sparql-2_0-0' 'libtranscript-devel' 'libtranscript1' 'libtranslate-devel' 'libtranslate-progs' 'libtranslate0' 'libtre5' 'libtrilinos-gnu-mpich-hpc' 'libtrilinos-gnu-mvapich2-hpc' 'libtrilinos-gnu-openmpi2-hpc' 'libtrilinos12' 'libtrilinos12-openmpi2' 'libtrilinos_12_10_1-gnu-mpich-hpc' 'libtrilinos_12_10_1-gnu-mvapich2-hpc' 'libtrilinos_12_10_1-gnu-openmpi2-hpc' 'libts0' 'libts0-32bit' 'libtsan0' 'libtsan0-gcc7' 'libtsan0-gcc8' 'libtsk13' 'libtsm-devel' 'libtsm4' 'libtspi1' 'libtspi1-32bit' 'libtss2-esys0' 'libtss2-esys0-32bit' 'libtss2-mu0' 'libtss2-mu0-32bit' 'libtss2-sys0' 'libtss2-sys0-32bit' 'libtss2-tcti-device0' 'libtss2-tcti-device0-32bit' 'libtss2-tcti-mssim0' 'libtss2-tcti-mssim0-32bit' 'libtss2-tcti-tabrmd0' 'libttf2' 'libttf2-32bit' 'libttsmimic0' 'libtumbler-1-0' 'libtun6-0' 'libturbojpeg0' 'libturbojpeg0-32bit' 'libturing0' 'libturing0-debuginfo' 'libturris-spectator-devel' 'libturris-spectator0' 'libtwolame-devel' 'libtwolame0' 'libtwolame0-32bit' 'libu2f-host-devel' 'libu2f-host-doc' 'libu2f-host0' 'libu2f-server-devel' 'libu2f-server0' 'libubsan0' 'libubsan0-32bit' 'libubsan1' 'libubsan1-32bit' 'libubsan1-gcc8' 'libubsan1-gcc8-32bit' 'libuchardet-devel' 'libuchardet0' 'libuchardet0-32bit' 'libucl1' 'libucm-devel' 'libucm0' 'libucommon8' 'libucp-devel' 'libucp0' 'libucpp13' 'libucs-devel' 'libucs0' 'libuct-devel' 'libuct0' 'libudev-devel' 'libudev-devel-32bit' 'libudev1' 'libudev1-32bit' 'libudf0' 'libudf0-32bit' 'libudisks2-0' 'libudisks2-0-devel' 'libudisks2-0_bcache' 'libudisks2-0_btrfs' 'libudisks2-0_lsm' 'libudisks2-0_lvm2' 'libudisks2-0_vdo' 'libudisks2-0_zram' 'libudns0' 'libudt-devel' 'libudt0' 'libuev-devel' 'libuev2' 'libuhd003' 'libuhttpmock-0_0-0' 'libulfius2_5' 'libulfius2_6' 'libulockmgr1' 'libumfpack5' 'libuna-devel' 'libuna-tools' 'libuna1' 'libunbound-devel-mini' 'libunbound8' 'libunibilium4' 'libunibreak-devel' 'libunibreak3' 'libunicap-devel' 'libunicap2' 'libunicap2-32bit' 'libuninameslist-devel' 'libuninameslist0' 'libunique-1_0-0' 'libunique1-devel' 'libuniraum0' 'libuniraum0-debuginfo' 'libunistring-devel' 'libunistring-devel-32bit' 'libunistring2' 'libunistring2-32bit' 'libunity-devel' 'libunity-gtk-parser-devel' 'libunity-gtk2-parser0' 'libunity-gtk2-parser0-32bit' 'libunity-gtk3-parser0' 'libunity-gtk3-parser0-32bit' 'libunity-tools' 'libunity9' 'libunity9-32bit' 'libunrar-devel' 'libunrar5_7_5' 'libunshield0' 'libunwind' 'libunwind-32bit' 'libunwind-devel' 'libupm1' 'libupnp-devel' 'libupnp13' 'libupnp13-32bit' 'libupower-glib-devel' 'libupower-glib3' 'libupsclient1' 'liburcu-devel' 'liburcu6' 'liburcu6-32bit' 'liburfkill-glib-devel' 'liburfkill-glib0' 'liburiparser1' 'liburiparser1-32bit' 'libusb-0_1-4' 'libusb-0_1-4-32bit' 'libusb-1_0-0' 'libusb-1_0-0-32bit' 'libusb-1_0-devel' 'libusb-1_0-devel-32bit' 'libusb-compat-devel' 'libusb3380-0' 'libusb3380-devel' 'libusbauth-configparser-devel' 'libusbauth-configparser1' 'libusbguard0' 'libusbgx-devel' 'libusbgx-tools' 'libusbgx1' 'libusbmuxd-devel' 'libusbmuxd4' 'libusbmuxd4-32bit' 'libusbprog0' 'libusbredirhost1' 'libusbredirparser1' 'libuser' 'libuser-devel' 'libuser-lang' 'libuser-python' 'libuser1' 'libusrp-3_4_4+git_20190808-0' 'libusrp-devel' 'libustr-1_0-1' 'libustr-1_0-1-32bit' 'libustr-devel' 'libut1' 'libut2' 'libutempter0' 'libutempter0-32bit' 'libutf8proc2' 'libuuid-devel' 'libuuid-devel-32bit' 'libuuid-devel-static' 'libuuid1' 'libuuid1-32bit' 'libuv-devel' 'libuv1' 'libuwac0-0' 'libv4l' 'libv4l-32bit' 'libv4l-devel' 'libv4l-devel-32bit' 'libv4l1-0' 'libv4l1-0-32bit' 'libv4l2-0' 'libv4l2-0-32bit' 'libv4l2rds0' 'libv4l2rds0-32bit' 'libv4lconvert0' 'libv4lconvert0-32bit' 'libva-devel' 'libva-devel-32bit' 'libva-drm2' 'libva-drm2-32bit' 'libva-gl-devel' 'libva-gl-devel-32bit' 'libva-glx2' 'libva-glx2-32bit' 'libva-utils' 'libva-vdpau-driver' 'libva-wayland2' 'libva-wayland2-32bit' 'libva-x11-2' 'libva-x11-2-32bit' 'libva2' 'libva2-32bit' 'libvacuumutils37' 'libvala-0_44-0' 'libvala-0_44-devel' 'libvaladoc-0_44-0' 'libvaladoc-0_44-devel' 'libvamp-hostsdk3' 'libvamp-hostsdk3-32bit' 'libvamp-sdk2' 'libvamp-sdk2-32bit' 'libvapoursynth-46' 'libvapoursynth-47' 'libvapoursynth-script0' 'libvarnishapi2' 'libvbr2' 'libvcdinfo0' 'libvcdinfo0-32bit' 'libvdehist-devel' 'libvdehist0' 'libvdemgmt-devel' 'libvdemgmt0' 'libvdeplug-devel' 'libvdeplug3' 'libvdesnmp-devel' 'libvdesnmp0' 'libvdpau-devel' 'libvdpau-devel-32bit' 'libvdpau1' 'libvdpau1-32bit' 'libvdpau_nouveau' 'libvdpau_nouveau-32bit' 'libvdpau_r300' 'libvdpau_r300-32bit' 'libvdpau_r600' 'libvdpau_r600-32bit' 'libvdpau_radeonsi' 'libvdpau_radeonsi-32bit' 'libvdpau_trace1' 'libvdpau_trace1-32bit' 'libvdpau_va_gl1' 'libvdpau_va_gl1-32bit' 'libventrilo3-0' 'libventrilo3-devel' 'libverto-devel' 'libverto-devel-32bit' 'libverto-glib-devel' 'libverto-glib1' 'libverto-glib1-32bit' 'libverto-libev-devel' 'libverto-libev1' 'libverto-libev1-32bit' 'libverto-tevent-devel' 'libverto-tevent1' 'libverto-tevent1-32bit' 'libverto1' 'libverto1-32bit' 'libvhdi-devel' 'libvhdi-tools' 'libvhdi1' 'libvidstab-devel' 'libvidstab1_1' 'libvidstab1_1-32bit' 'libvigraimpex11' 'libvigraimpex11-32bit' 'libvips-devel' 'libvips42' 'libvirglrenderer0' 'libvirt' 'libvirt-admin' 'libvirt-bash-completion' 'libvirt-cim' 'libvirt-client' 'libvirt-daemon' 'libvirt-daemon-config-network' 'libvirt-daemon-config-nwfilter' 'libvirt-daemon-driver-interface' 'libvirt-daemon-driver-libxl' 'libvirt-daemon-driver-lxc' 'libvirt-daemon-driver-network' 'libvirt-daemon-driver-nodedev' 'libvirt-daemon-driver-nwfilter' 'libvirt-daemon-driver-qemu' 'libvirt-daemon-driver-secret' 'libvirt-daemon-driver-storage' 'libvirt-daemon-driver-storage-core' 'libvirt-daemon-driver-storage-disk' 'libvirt-daemon-driver-storage-gluster' 'libvirt-daemon-driver-storage-iscsi' 'libvirt-daemon-driver-storage-iscsi-direct' 'libvirt-daemon-driver-storage-logical' 'libvirt-daemon-driver-storage-mpath' 'libvirt-daemon-driver-storage-rbd' 'libvirt-daemon-driver-storage-scsi' 'libvirt-daemon-hooks' 'libvirt-daemon-lxc' 'libvirt-daemon-qemu' 'libvirt-daemon-xen' 'libvirt-devel' 'libvirt-devel-32bit' 'libvirt-doc' 'libvirt-glib-1_0-0' 'libvirt-glib-devel' 'libvirt-libs' 'libvirt-lock-sanlock' 'libvirt-nss' 'libvirt-sandbox-1_0-5' 'libvirt-sandbox-devel' 'libvisio-0_1-1' 'libvisio-devel' 'libvisio-devel-doc' 'libvisio-tools' 'libvisio2svg-devel' 'libvisio2svg0' 'libvisual' 'libvisual-32bit' 'libvisual-devel' 'libvkd3d-utils1' 'libvkd3d-utils1-32bit' 'libvkd3d1' 'libvkd3d1-32bit' 'libvlc-gtk0' 'libvlc-gtk0-debuginfo' 'libvlc123' 'libvlc123-debuginfo' 'libvlc5' 'libvlc5-debuginfo' 'libvlccore123' 'libvlccore123-debuginfo' 'libvlccore9' 'libvlccore9-debuginfo' 'libvma' 'libvma-devel' 'libvma8' 'libvmdk-devel' 'libvmdk-tools' 'libvmdk1' 'libvmem-devel' 'libvmem1' 'libvmime-devel' 'libvmime-kopano2' 'libvmmalloc-devel' 'libvmmalloc1' 'libvmtools-devel' 'libvmtools0' 'libvncclient1' 'libvncserver1' 'libvo-aacenc-devel' 'libvo-aacenc0' 'libvo-aacenc0-32bit' 'libvo-aacenc0-32bit-debuginfo' 'libvo-aacenc0-debuginfo' 'libvo-amrwbenc-devel' 'libvo-amrwbenc0' 'libvo-amrwbenc0-32bit' 'libvo-amrwbenc0-32bit-debuginfo' 'libvo-amrwbenc0-debuginfo' 'libvoikko-devel' 'libvoikko1' 'libvoikko1-32bit' 'libvolk1_4' 'libvorbis-devel' 'libvorbis-devel-32bit' 'libvorbis-doc' 'libvorbis0' 'libvorbis0-32bit' 'libvorbisenc2' 'libvorbisenc2-32bit' 'libvorbisfile3' 'libvorbisfile3-32bit' 'libvoro++0' 'libvotca_csg5' 'libvotca_ctp5' 'libvotca_tools5' 'libvotca_xtp5' 'libvotequorum8' 'libvotequorum8-32bit' 'libvpd2' 'libvpd2-32bit' 'libvpd2-devel' 'libvpd2-devel-32bit' 'libvpp0' 'libvpx-devel' 'libvpx6' 'libvpx6-32bit' 'libvshadow-devel' 'libvshadow-tools' 'libvshadow1' 'libvslvm-devel' 'libvslvm-tools' 'libvslvm1' 'libvsqlitepp3' 'libvte-2_91-0' 'libvted-3-0' 'libvterm-devel' 'libvterm-tools' 'libvterm0' 'libvtk1' 'libvtk1-openmpi' 'libvtk1-openmpi2' 'libvulkan1' 'libvulkan1-32bit' 'libvulkan_intel' 'libvulkan_intel-32bit' 'libvulkan_radeon' 'libvulkan_radeon-32bit' 'libwacom-data' 'libwacom-devel' 'libwacom-tools' 'libwacom2' 'libwacom2-32bit' 'libwaffle-1-0' 'libwapcaplet-devel' 'libwapcaplet0' 'libwavpack1' 'libwavpack1-32bit' 'libwayland-client0' 'libwayland-client0-32bit' 'libwayland-cursor0' 'libwayland-cursor0-32bit' 'libwayland-egl1' 'libwayland-egl1-32bit' 'libwayland-server0' 'libwayland-server0-32bit' 'libwaylandpp0' 'libwbclient-devel' 'libwbclient0' 'libwbclient0-32bit' 'libwbxml2-1' 'libwbxml2-devel' 'libwcs6' 'libwebcam-devel' 'libwebcam0' 'libwebkit2gtk-4_0-37' 'libwebkit2gtk-4_0-37-32bit' 'libwebkit2gtk3-lang' 'libwebp-devel' 'libwebp-devel-32bit' 'libwebp-tools' 'libwebp7' 'libwebp7-32bit' 'libwebpdecoder3' 'libwebpdecoder3-32bit' 'libwebpdemux2' 'libwebpdemux2-32bit' 'libwebpmux3' 'libwebpmux3-32bit' 'libwebrtc_audio_processing-devel' 'libwebrtc_audio_processing-devel-static' 'libwebrtc_audio_processing1' 'libwebrtc_audio_processing1-32bit' 'libwebsockets-devel' 'libwebsockets13' 'libwebvfx1' 'libweed-devel' 'libweed0' 'libweed0-debuginfo' 'libweston-7' 'libweston-7-0' 'libweston-desktop-7-0' 'libwicked-0-6' 'libwiiuse0' 'libwim15' 'libwinpr2' 'libwireshark12' 'libwiretap9' 'libwkhtmltox0' 'libwlc0' 'libwlroots3' 'libwmf-0_2-7' 'libwmf-0_2-7-32bit' 'libwmf-devel' 'libwmf-gnome' 'libwmf-gnome-32bit' 'libwmf-tools' 'libwnck-1-22' 'libwnck-1-22-32bit' 'libwnck-3-0' 'libwnck-3-0-32bit' 'libwnck-devel' 'libwnck-lang' 'libwnck-tools' 'libwnck2-devel' 'libwnck2-lang' 'libwnn0' 'libwoff2common1_0_2' 'libwoff2common1_0_2-32bit' 'libwoff2dec1_0_2' 'libwoff2dec1_0_2-32bit' 'libwoff2enc1_0_2' 'libwoff2enc1_0_2-32bit' 'libwpd-0_10-10' 'libwpd-devel' 'libwpd-devel-doc' 'libwpd-tools' 'libwpg-0_3-3' 'libwpg-devel' 'libwpg-devel-doc' 'libwpg-tools' 'libwps-0_4-4' 'libwps-devel' 'libwps-tools' 'libwrap0' 'libwrap0-32bit' 'libwrc-devel' 'libwrc-tools' 'libwrc1' 'libwscodecs2' 'libwslay0' 'libwsman-devel' 'libwsman3' 'libwsman_clientpp-devel' 'libwsman_clientpp1' 'libwsutil10' 'libwtdbo51' 'libwtdbomysql51' 'libwtdbopostgres51' 'libwv-1_2-4' 'libwv2-4' 'libwx_baseu-2_8-0-compat-lib-wxcontainer' 'libwx_baseu-2_8-0-wxcontainer' 'libwx_baseu-2_8-0-wxcontainer-32bit' 'libwx_baseu-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_baseu-2_8-0-wxcontainer-debuginfo' 'libwx_baseu-suse-nostl3_0_4' 'libwx_baseu-suse3_0_4' 'libwx_baseu-suse3_0_4-32bit' 'libwx_baseu-suse3_1_3' 'libwx_baseu_net-2_8-0-compat-lib-wxcontainer' 'libwx_baseu_net-2_8-0-wxcontainer' 'libwx_baseu_net-2_8-0-wxcontainer-32bit' 'libwx_baseu_net-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_baseu_net-2_8-0-wxcontainer-debuginfo' 'libwx_baseu_net-suse-nostl3_0_4' 'libwx_baseu_net-suse3_0_4' 'libwx_baseu_net-suse3_0_4-32bit' 'libwx_baseu_net-suse3_1_3' 'libwx_baseu_xml-2_8-0-compat-lib-wxcontainer' 'libwx_baseu_xml-2_8-0-wxcontainer' 'libwx_baseu_xml-2_8-0-wxcontainer-32bit' 'libwx_baseu_xml-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_baseu_xml-2_8-0-wxcontainer-debuginfo' 'libwx_baseu_xml-suse-nostl3_0_4' 'libwx_baseu_xml-suse3_0_4' 'libwx_baseu_xml-suse3_0_4-32bit' 'libwx_baseu_xml-suse3_1_3' 'libwx_gtk2u_adv-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_adv-2_8-0-wxcontainer' 'libwx_gtk2u_adv-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_adv-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_adv-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_adv-suse-nostl3_0_4' 'libwx_gtk2u_adv-suse3_0_4' 'libwx_gtk2u_adv-suse3_0_4-32bit' 'libwx_gtk2u_adv-suse3_1_3' 'libwx_gtk2u_aui-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_aui-2_8-0-wxcontainer' 'libwx_gtk2u_aui-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_aui-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_aui-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_aui-suse-nostl3_0_4' 'libwx_gtk2u_aui-suse3_0_4' 'libwx_gtk2u_aui-suse3_0_4-32bit' 'libwx_gtk2u_aui-suse3_1_3' 'libwx_gtk2u_core-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_core-2_8-0-wxcontainer' 'libwx_gtk2u_core-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_core-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_core-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_core-suse-nostl3_0_4' 'libwx_gtk2u_core-suse3_0_4' 'libwx_gtk2u_core-suse3_0_4-32bit' 'libwx_gtk2u_core-suse3_1_3' 'libwx_gtk2u_fl-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_fl-2_8-0-wxcontainer' 'libwx_gtk2u_fl-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_fl-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_fl-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gizmos-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gizmos_xrc-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gl-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_gl-2_8-0-wxcontainer' 'libwx_gtk2u_gl-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_gl-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_gl-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gl-suse-nostl3_0_4' 'libwx_gtk2u_gl-suse3_0_4' 'libwx_gtk2u_gl-suse3_0_4-32bit' 'libwx_gtk2u_gl-suse3_1_3' 'libwx_gtk2u_html-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_html-2_8-0-wxcontainer' 'libwx_gtk2u_html-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_html-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_html-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_html-suse-nostl3_0_4' 'libwx_gtk2u_html-suse3_0_4' 'libwx_gtk2u_html-suse3_0_4-32bit' 'libwx_gtk2u_html-suse3_1_3' 'libwx_gtk2u_media-suse-nostl3_0_4' 'libwx_gtk2u_media-suse3_0_4' 'libwx_gtk2u_media-suse3_0_4-32bit' 'libwx_gtk2u_media-suse3_1_3' 'libwx_gtk2u_mmedia-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_ogl-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_ogl-2_8-0-wxcontainer' 'libwx_gtk2u_ogl-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_ogl-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_ogl-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_plot-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_plot-2_8-0-wxcontainer' 'libwx_gtk2u_plot-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_plot-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_plot-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_propgrid-suse-nostl3_0_4' 'libwx_gtk2u_propgrid-suse3_0_4' 'libwx_gtk2u_propgrid-suse3_0_4-32bit' 'libwx_gtk2u_propgrid-suse3_1_3' 'libwx_gtk2u_qa-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_qa-2_8-0-wxcontainer' 'libwx_gtk2u_qa-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_qa-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_qa-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_qa-suse-nostl3_0_4' 'libwx_gtk2u_qa-suse3_0_4' 'libwx_gtk2u_qa-suse3_0_4-32bit' 'libwx_gtk2u_qa-suse3_1_3' 'libwx_gtk2u_ribbon-suse-nostl3_0_4' 'libwx_gtk2u_ribbon-suse3_0_4' 'libwx_gtk2u_ribbon-suse3_0_4-32bit' 'libwx_gtk2u_ribbon-suse3_1_3' 'libwx_gtk2u_richtext-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_richtext-2_8-0-wxcontainer' 'libwx_gtk2u_richtext-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_richtext-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_richtext-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_richtext-suse-nostl3_0_4' 'libwx_gtk2u_richtext-suse3_0_4' 'libwx_gtk2u_richtext-suse3_0_4-32bit' 'libwx_gtk2u_richtext-suse3_1_3' 'libwx_gtk2u_stc-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_stc-2_8-0-wxcontainer' 'libwx_gtk2u_stc-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_stc-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_stc-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_stc-suse-nostl3_0_4' 'libwx_gtk2u_stc-suse3_0_4' 'libwx_gtk2u_stc-suse3_0_4-32bit' 'libwx_gtk2u_stc-suse3_1_3' 'libwx_gtk2u_svg-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_svg-2_8-0-wxcontainer' 'libwx_gtk2u_svg-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_svg-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_svg-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_xrc-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_xrc-2_8-0-wxcontainer' 'libwx_gtk2u_xrc-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_xrc-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_xrc-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_xrc-suse-nostl3_0_4' 'libwx_gtk2u_xrc-suse3_0_4' 'libwx_gtk2u_xrc-suse3_0_4-32bit' 'libwx_gtk2u_xrc-suse3_1_3' 'libwx_gtk3u_adv-suse3_1_3' 'libwx_gtk3u_aui-suse3_1_3' 'libwx_gtk3u_core-suse3_1_3' 'libwx_gtk3u_gl-suse3_1_3' 'libwx_gtk3u_html-suse3_1_3' 'libwx_gtk3u_media-suse3_1_3' 'libwx_gtk3u_propgrid-suse3_1_3' 'libwx_gtk3u_qa-suse3_1_3' 'libwx_gtk3u_ribbon-suse3_1_3' 'libwx_gtk3u_richtext-suse3_1_3' 'libwx_gtk3u_stc-suse3_1_3' 'libwx_gtk3u_webview-suse3_1_3' 'libwx_gtk3u_xrc-suse3_1_3' 'libwx_qtu_adv-suse3_1_3' 'libwx_qtu_aui-suse3_1_3' 'libwx_qtu_core-suse3_1_3' 'libwx_qtu_gl-suse3_1_3' 'libwx_qtu_html-suse3_1_3' 'libwx_qtu_media-suse3_1_3' 'libwx_qtu_propgrid-suse3_1_3' 'libwx_qtu_qa-suse3_1_3' 'libwx_qtu_ribbon-suse3_1_3' 'libwx_qtu_richtext-suse3_1_3' 'libwx_qtu_stc-suse3_1_3' 'libwx_qtu_xrc-suse3_1_3' 'libwxcode_gtk2u_wxsqlite3-3_0-0' 'libwxlua' 'libwxstedit-wx30gtk2u-1_6_0' 'libwxsvg-devel' 'libwxsvg3' 'libx264' 'libx264-155' 'libx264-155-32bit' 'libx264-155-32bit-debuginfo' 'libx264-155-debuginfo' 'libx264-debugsource' 'libx264-devel' 'libx264-x264' 'libx264-x264-debugsource' 'libx265-169' 'libx265-176' 'libx265-176-32bit' 'libx265-176-32bit-debuginfo' 'libx265-176-debuginfo' 'libx265-devel' 'libx86-1' 'libx86-devel' 'libx86-devel-static' 'libx86emu-devel' 'libx86emu2' 'libxalan-c-devel' 'libxalan-c111' 'libxapian-devel' 'libxapian30' 'libxapian30-32bit' 'libxapp-devel' 'libxapp1' 'libxar-devel' 'libxar1' 'libxatracker-devel' 'libxatracker2' 'libxbase64-1' 'libxbrz-1_6' 'libxbsql0' 'libxc-devel' 'libxc5' 'libxcam-devel' 'libxcam1' 'libxcb-composite0' 'libxcb-composite0-32bit' 'libxcb-cursor0' 'libxcb-cursor0-32bit' 'libxcb-damage0' 'libxcb-damage0-32bit' 'libxcb-devel' 'libxcb-devel-32bit' 'libxcb-devel-doc' 'libxcb-dpms0' 'libxcb-dpms0-32bit' 'libxcb-dri2-0' 'libxcb-dri2-0-32bit' 'libxcb-dri3-0' 'libxcb-dri3-0-32bit' 'libxcb-errors0' 'libxcb-errors0-32bit' 'libxcb-ewmh2' 'libxcb-ewmh2-32bit' 'libxcb-glx0' 'libxcb-glx0-32bit' 'libxcb-icccm4' 'libxcb-icccm4-32bit' 'libxcb-image0' 'libxcb-image0-32bit' 'libxcb-keysyms1' 'libxcb-keysyms1-32bit' 'libxcb-present0' 'libxcb-present0-32bit' 'libxcb-randr0' 'libxcb-randr0-32bit' 'libxcb-record0' 'libxcb-record0-32bit' 'libxcb-render-util0' 'libxcb-render-util0-32bit' 'libxcb-render0' 'libxcb-render0-32bit' 'libxcb-res0' 'libxcb-res0-32bit' 'libxcb-screensaver0' 'libxcb-screensaver0-32bit' 'libxcb-shape0' 'libxcb-shape0-32bit' 'libxcb-shm0' 'libxcb-shm0-32bit' 'libxcb-sync1' 'libxcb-sync1-32bit' 'libxcb-util1' 'libxcb-util1-32bit' 'libxcb-xf86dri0' 'libxcb-xf86dri0-32bit' 'libxcb-xfixes0' 'libxcb-xfixes0-32bit' 'libxcb-xinerama0' 'libxcb-xinerama0-32bit' 'libxcb-xinput0' 'libxcb-xinput0-32bit' 'libxcb-xkb1' 'libxcb-xkb1-32bit' 'libxcb-xrm0' 'libxcb-xtest0' 'libxcb-xtest0-32bit' 'libxcb-xv0' 'libxcb-xv0-32bit' 'libxcb-xvmc0' 'libxcb-xvmc0-32bit' 'libxcb1' 'libxcb1-32bit' 'libxclass-0_9_2' 'libxcrypt-devel' 'libxcrypt-devel-32bit' 'libxcrypt-devel-static' 'libxdg-basedir-devel' 'libxdg-basedir1' 'libxerces-c-3_2' 'libxerces-c-3_2-32bit' 'libxerces-c-devel' 'libxfce4panel-1_0-4' 'libxfce4panel-2_0-4' 'libxfce4ui-1-0' 'libxfce4ui-2-0' 'libxfce4ui-branding-openSUSE' 'libxfce4ui-branding-upstream' 'libxfce4ui-devel' 'libxfce4ui-doc' 'libxfce4ui-lang' 'libxfce4ui-tools' 'libxfce4util-devel' 'libxfce4util-lang' 'libxfce4util-tools' 'libxfce4util7' 'libxfconf-0-3' 'libxfconf-devel' 'libxfdashboard0' 'libxine-devel' 'libxine2' 'libxine2-32bit' 'libxine2-32bit-debuginfo' 'libxine2-aa' 'libxine2-aa-debuginfo' 'libxine2-codecs' 'libxine2-debuginfo' 'libxine2-jack' 'libxine2-jack-debuginfo' 'libxine2-pulse' 'libxine2-pulse-debuginfo' 'libxine2-sdl' 'libxine2-sdl-debuginfo' 'libxkbcommon-devel' 'libxkbcommon-devel-32bit' 'libxkbcommon-x11-0' 'libxkbcommon-x11-0-32bit' 'libxkbcommon-x11-devel' 'libxkbcommon-x11-devel-32bit' 'libxkbcommon0' 'libxkbcommon0-32bit' 'libxkbfile-devel' 'libxkbfile-devel-32bit' 'libxkbfile1' 'libxkbfile1-32bit' 'libxkbui-devel' 'libxkbui-devel-32bit' 'libxkbui1' 'libxkbui1-32bit' 'libxklavier-devel' 'libxklavier-doc' 'libxklavier16' 'libxklavier16-32bit' 'libxmi0' 'libxml++-2_6-2' 'libxml++-2_6-2-32bit' 'libxml++-3_0-1' 'libxml++-3_0-1-32bit' 'libxml++-devel' 'libxml++26-devel' 'libxml-security-c-devel' 'libxml-security-c20' 'libxml2-2' 'libxml2-2-32bit' 'libxml2-devel' 'libxml2-devel-32bit' 'libxml2-doc' 'libxml2-tools' 'libxmlb-devel' 'libxmlb1' 'libxmlbird1' 'libxmlrpc++8' 'libxmlrpc3' 'libxmlrpc_abyss++8' 'libxmlrpc_abyss3' 'libxmlrpc_client++8' 'libxmlrpc_client3' 'libxmlrpc_cpp8' 'libxmlrpc_packetsocket8' 'libxmlrpc_server++8' 'libxmlrpc_server3' 'libxmlrpc_server_abyss++8' 'libxmlrpc_server_abyss3' 'libxmlrpc_server_cgi++8' 'libxmlrpc_server_cgi3' 'libxmlrpc_server_pstream++8' 'libxmlrpc_util++8' 'libxmlrpc_util3' 'libxmlsec1-1' 'libxmlsec1-gcrypt1' 'libxmlsec1-gnutls1' 'libxmlsec1-nss1' 'libxmlsec1-openssl1' 'libxmltooling-devel' 'libxmltooling-lite8' 'libxmltooling8' 'libxmmsclient++-glib1' 'libxmmsclient++4' 'libxmmsclient-glib1' 'libxmmsclient6' 'libxmp-devel' 'libxmp4' 'libxnoise-devel' 'libxnoise0' 'libxosd2' 'libxpaintrw0' 'libxpaintrw0-debuginfo' 'libxplayer-plparser-mini18' 'libxplayer-plparser-mini18-32bit' 'libxplayer-plparser18' 'libxplayer-plparser18-32bit' 'libxreaderdocument3' 'libxreaderview3' 'libxshmfence-devel' 'libxshmfence1' 'libxshmfence1-32bit' 'libxslt-devel' 'libxslt-devel-32bit' 'libxslt-python' 'libxslt-tools' 'libxslt1' 'libxslt1-32bit' 'libxspf-devel' 'libxspf4' 'libxtables-devel' 'libxtables12' 'libxtermcap1_0' 'libxtract-devel' 'libxtract0' 'libxtract0' 'libxtract0-debuginfo' 'libxtract0-debugsource' 'libxtrx-devel' 'libxtrx0' 'libxtrx_lms7002m0_0_0-SUSE' 'libxtrxdsp-devel' 'libxtrxdsp0' 'libxtrxll-devel' 'libxtrxll0' 'libxvidcore-devel' 'libxvidcore4' 'libxvidcore4-32bit' 'libxvidcore4-32bit-debuginfo' 'libxvidcore4-debuginfo' 'libxxhash0' 'libxy4' 'libyajl-devel' 'libyajl-devel-32bit' 'libyajl-devel-static' 'libyajl2' 'libyajl2-32bit' 'libyami-devel' 'libyami-utils' 'libyami1' 'libyaml-0-2' 'libyaml-cpp0_6' 'libyaml-devel' 'libyang-cpp-devel' 'libyang-cpp0_16' 'libyang-devel' 'libyang-doc' 'libyang0_16' 'libyara-devel' 'libyara3' 'libyate6' 'libyate6-debuginfo' 'libyaz-devel' 'libyaz-devel-32bit' 'libyaz5' 'libyaz5-32bit' 'libyder1_4' 'libyelp0' 'libykclient-devel' 'libykclient3' 'libykcs11-1' 'libykcs11-devel' 'libykpers-1-1' 'libykpers-devel' 'libykpiv-devel' 'libykpiv1' 'libyubikey-devel' 'libyubikey-tools' 'libyubikey0' 'libyui-devel' 'libyui-doc' 'libyui-ncurses-devel' 'libyui-ncurses-doc' 'libyui-ncurses-pkg-devel' 'libyui-ncurses-pkg-doc' 'libyui-ncurses-pkg10' 'libyui-ncurses-rest-api-devel' 'libyui-ncurses-rest-api10' 'libyui-ncurses-tools' 'libyui-ncurses10' 'libyui-qt-devel' 'libyui-qt-doc' 'libyui-qt-graph-devel' 'libyui-qt-graph-doc' 'libyui-qt-graph10' 'libyui-qt-pkg-devel' 'libyui-qt-pkg-doc' 'libyui-qt-pkg10' 'libyui-qt-rest-api-devel' 'libyui-qt-rest-api10' 'libyui-qt10' 'libyui-rest-api-devel' 'libyui-rest-api10' 'libyui10' 'libz1' 'libz1-32bit' 'libz3-4_8' 'libzapojit-0_0-0' 'libzapojit-devel' 'libzbar-devel' 'libzbar0' 'libzbar0-32bit' 'libzbarqt-devel' 'libzbarqt0' 'libzbarqt0-32bit' 'libzbc-5_8_0' 'libzbc-devel' 'libzbc-gui' 'libzbc-tools' 'libzck-devel' 'libzck1' 'libzebra1' 'libzeitgeist-1_0-1' 'libzeitgeist-1_0-1-32bit' 'libzeitgeist-2_0-0' 'libzeitgeist-devel' 'libzen-devel' 'libzen0' 'libzen0-32bit' 'libzhuyin-1_1-data' 'libzhuyin-1_1-devel' 'libzhuyin13' 'libzhuyin13-32bit' 'libzhuyin7' 'libzimg2' 'libzimg2-32bit' 'libzinnia0' 'libzio-devel' 'libzio1' 'libzio1-32bit' 'libzip-devel' 'libzip-tools' 'libzip5' 'libzip5-32bit' 'libzipkin-cpp-opentracing0' 'libzita-convolver4' 'libzita-convolver4-32bit' 'libzlui0_99' 'libzmf-0_0-0' 'libzmf-devel' 'libzmf-devel-doc' 'libzmf-tools' 'libzmq5' 'libzmq5-32bit' 'libzn_poly-0_9' 'libzopfli-devel' 'libzopfli1' 'libzopflipng1' 'libzrtpcpp-devel' 'libzrtpcpp4' 'libzsolve0' 'libzstd-devel' 'libzstd-devel-static' 'libzstd1' 'libzstd1-32bit' 'libzvbi-chains0' 'libzvbi-chains0-32bit' 'libzvbi0' 'libzvbi0-32bit' 'libzypp' 'libzypp-devel' 'libzypp-devel-doc' 'libzypp-plugin-appdata' 'libzypp-testsuite-tools' 'libzzip-0-13' 'libzzip-0-13-32bit' 'lifecycle-data-openSUSE' 'lifelines' 'liferea' 'liferea-lang' 'light-locker' 'light-locker-lang' 'lightdm' 'lightdm-gobject-devel' 'lightdm-gtk-greeter' 'lightdm-gtk-greeter-branding-openSUSE' 'lightdm-gtk-greeter-branding-upstream' 'lightdm-gtk-greeter-lang' 'lightdm-gtk-greeter-settings' 'lightdm-gtk-greeter-settings-lang' 'lightdm-lang' 'lightdm-qt5-devel' 'lightdm-slick-greeter' 'lightdm-slick-greeter-branding-openSUSE' 'lightdm-slick-greeter-branding-upstream' 'lightdm-slick-greeter-lang' 'lightmediascanner' 'lightmediascanner-devel' 'lightsoff' 'lightsoff-lang' 'lightspark' 'lightspark' 'lightspark-debuginfo' 'lightspark-debugsource' 'lightspark-lang' 'lightspark-plugin' 'lightspark-plugin-debuginfo' 'lightstep-tracer-cpp-devel' 'lightstep-tracer-cpp-source' 'lighttpd' 'lighttpd-mod_authn_gssapi' 'lighttpd-mod_authn_ldap' 'lighttpd-mod_authn_mysql' 'lighttpd-mod_authn_sasl' 'lighttpd-mod_cml' 'lighttpd-mod_geoip' 'lighttpd-mod_magnet' 'lighttpd-mod_mysql_vhost' 'lighttpd-mod_rrdtool' 'lighttpd-mod_trigger_b4_dl' 'lighttpd-mod_vhostdb_dbi' 'lighttpd-mod_vhostdb_ldap' 'lighttpd-mod_vhostdb_mysql' 'lighttpd-mod_vhostdb_pgsql' 'lighttpd-mod_webdav' 'lilo' 'lilv' 'lilypond' 'lilypond-century-schoolbook-l-fonts' 'lilypond-doc' 'lilypond-doc-cs' 'lilypond-doc-de' 'lilypond-doc-es' 'lilypond-doc-fr' 'lilypond-doc-hu' 'lilypond-doc-it' 'lilypond-doc-ja' 'lilypond-doc-nl' 'lilypond-doc-zh' 'lilypond-emmentaler-fonts' 'lilypond-fonts-common' 'limesuite' 'limesuite-devel' 'limesuite-udev' 'linbox-devel' 'link-grammar' 'link-grammar-devel' 'linkchecker' 'linkloop' 'links' 'linphone' 'linphone-cli' 'linssid' 'linux-atm' 'linux-atm-devel' 'linux-ftools' 'linux-glibc-devel' 'linux-libertine-fonts' 'linux32' 'linuxconsoletools' 'linuxptp' 'linuxrc' 'linuxrc-devtools' 'linuxsampler' 'linuxsampler' 'linuxsampler-debuginfo' 'linuxsampler-debugsource' 'linuxsampler-doc' 'lirc-config' 'lirc-core' 'lirc-devel' 'lirc-disable-kernel-rc' 'lirc-drv-ftdi' 'lirc-drv-portaudio' 'lirc-tools-gui' 'listres' 'litetran' 'littleb-devel' 'littleb-examples' 'littlewizard' 'littlewizard-devel' 'littlewizard-examples' 'live-add-yast-repos' 'live-fat-stick' 'live-grub-stick' 'live-kiwi-hook' 'live-langset-data' 'live-net-installer' 'live-usb-gui' 'live555' 'live555-devel' 'liveMedia' 'liveMedia' 'liveMedia-debuginfo' 'liveMedia-debugsource' 'livedtd' 'livestreamer' 'lklug-fonts' 'lksctp-tools' 'lksctp-tools-devel' 'llcbench' 'lld' 'lld6' 'lld7' 'lld8' 'lldb' 'lldb-devel' 'lldb6' 'lldb6-devel' 'lldb7' 'lldb7-devel' 'lldb8' 'lldb8-devel' 'lldpd' 'lldpd-devel' 'llmnrd' 'llvm' 'llvm-LTO-devel' 'llvm-devel' 'llvm-emacs-plugins' 'llvm-gold' 'llvm-vim-plugins' 'llvm6' 'llvm6-LTO-devel' 'llvm6-LTO-devel-32bit' 'llvm6-devel' 'llvm6-devel-32bit' 'llvm6-emacs-plugins' 'llvm6-gold' 'llvm6-opt-viewer' 'llvm6-polly' 'llvm6-polly-devel' 'llvm6-vim-plugins' 'llvm7' 'llvm7-LTO-devel' 'llvm7-LTO-devel-32bit' 'llvm7-devel' 'llvm7-devel-32bit' 'llvm7-emacs-plugins' 'llvm7-gold' 'llvm7-opt-viewer' 'llvm7-polly' 'llvm7-polly-devel' 'llvm7-vim-plugins' 'llvm8' 'llvm8-LTO-devel' 'llvm8-LTO-devel-32bit' 'llvm8-devel' 'llvm8-devel-32bit' 'llvm8-emacs-plugins' 'llvm8-gold' 'llvm8-opt-viewer' 'llvm8-polly' 'llvm8-polly-devel' 'llvm8-vim-plugins' 'lmarbles' 'lmdb' 'lmdb-devel' 'lmms' 'lmms-devel' 'lnav' 'lndir' 'loadlin' 'lockdev' 'lockdev-devel' 'lodepng-devel' 'log4cplus-devel' 'log4cpp-devel' 'log4cpp-doc' 'log4j' 'log4j-javadoc' 'log4j-manual' 'log4j-mini' 'log4j-over-slf4j' 'log4net' 'logdigest' 'logrotate' 'logstalgia' 'logtail' 'logtop' 'logwarn' 'logwarn-nagios-plugin' 'logwatch' 'lokalize' 'lokalize-lang' 'lollypop' 'lollypop-lang' 'lomoco' 'lomt-blackout-fonts' 'lomt-chunk-fonts' 'lomt-fanwood-fonts' 'lomt-goudybookletter-fonts' 'lomt-junction-fonts' 'lomt-knewave-fonts' 'lomt-leaguegothic-fonts' 'lomt-lindenhill-fonts' 'lomt-orbitron-fonts' 'lomt-ostrichsans-fonts' 'lomt-prociono-fonts' 'lomt-script1-fonts' 'lomt-sniglet-fonts' 'lomt-sortsmillgoudy-fonts' 'lonote' 'lookbook' 'loook' 'lostfeathers' 'loudmouth-devel' 'loudmouth-doc' 'lout' 'love' 'love-0_7_2' 'lpairs' 'lpe' 'lpsolve' 'lpsolve-devel' 'lrslib' 'lrslib-devel' 'lsb' 'lsb-release' 'lsdvd' 'lshw' 'lshw-gui' 'lshw-lang' 'lskat' 'lskat-lang' 'lsof' 'lsp-plugins' 'lsp-plugins-doc' 'lsscsi' 'lswm' 'lsyncd' 'ltrace' 'ltrace-32bit' 'lttng-modules' 'lttng-modules-kmp-default' 'lttng-modules-kmp-pae' 'lttng-tools' 'lttng-tools-devel' 'lttng-ust-devel' 'lttng-ust-doc' 'ltxml' 'ltxml-devel' 'lua-Hamliblua' 'lua-genders' 'lua-libguestfs' 'lua-libprelude' 'lua-lmod' 'lua-lmod-doc' 'lua-macros' 'lua-rrdtool' 'lua51' 'lua51-BitOp' 'lua51-bit32' 'lua51-compat-5.3' 'lua51-devel' 'lua51-doc' 'lua51-ldbus' 'lua51-lgi' 'lua51-lgi-doc' 'lua51-lpeg' 'lua51-lpeg-doc' 'lua51-lua-dbus' 'lua51-lua-mpris' 'lua51-luadbi' 'lua51-luaevent' 'lua51-luaexpat' 'lua51-luafilesystem' 'lua51-luajit' 'lua51-luajit-devel' 'lua51-luaposix' 'lua51-luarocks' 'lua51-luasec' 'lua51-luasocket' 'lua51-luasocket-devel' 'lua51-luasql' 'lua51-luaterm' 'lua51-luv' 'lua51-luv-devel' 'lua51-messagepack' 'lua51-mpack' 'lua51-zlib' 'lua53' 'lua53-compat-5.3' 'lua53-devel' 'lua53-doc' 'lua53-ldbus' 'lua53-lgi' 'lua53-lgi-doc' 'lua53-lpeg' 'lua53-lpeg-doc' 'lua53-lua-dbus' 'lua53-lua-mpris' 'lua53-luadbi' 'lua53-luaevent' 'lua53-luaexpat' 'lua53-luafilesystem' 'lua53-luaposix' 'lua53-luarocks' 'lua53-luasec' 'lua53-luasocket' 'lua53-luasocket-devel' 'lua53-luasql' 'lua53-luaterm' 'lua53-luv' 'lua53-luv-devel' 'lua53-messagepack' 'lua53-mpack' 'lua53-zlib' 'luabind-devel' 'luaposix-doc' 'lucene' 'lucene++-devel' 'lucene-analyzers-common' 'lucene-analyzers-smartcn' 'lucene-analyzers-stempel' 'lucene-backward-codecs' 'lucene-classification' 'lucene-codecs' 'lucene-facet' 'lucene-grouping' 'lucene-highlighter' 'lucene-join' 'lucene-memory' 'lucene-misc' 'lucene-queries' 'lucene-queryparser' 'lucene-sandbox' 'lucene-spatial' 'lucene-spatial3d' 'luckybackup' 'lugaru' 'lugaru-data' 'luit' 'lutris' 'luvcview' 'lv' 'lv2' 'lv2-calf' 'lv2-calf-debuginfo' 'lv2-devel' 'lv2-docs' 'lv2-examples' 'lv2-guitarix' 'lv2-linuxsampler' 'lv2-linuxsampler-debuginfo' 'lv2-swh-plugins' 'lvm2' 'lvm2-clvm' 'lvm2-cmirrord' 'lvm2-devel' 'lvm2-lockd' 'lvm2-testsuite' 'lxappearance' 'lxappearance-devel' 'lxappearance-lang' 'lxappearance-obconf' 'lxappearance-obconf-lang' 'lxc' 'lxc-bash-completion' 'lxcc' 'lxcfs' 'lxcfs-hooks-lxc' 'lxd' 'lxd-bash-completion' 'lxde' 'lxde-common' 'lxde-common-branding-openSUSE' 'lxde-common-branding-upstream' 'lxdvdrip' 'lxdvdrip' 'lxdvdrip-debuginfo' 'lxdvdrip-debugsource' 'lximage-qt' 'lximage-qt-lang' 'lxinput' 'lxinput-lang' 'lxlauncher' 'lxmenu-data' 'lxmusic' 'lxmusic-lang' 'lxpanel' 'lxpanel-devel' 'lxpanel-lang' 'lxqt' 'lxqt-about' 'lxqt-about-lang' 'lxqt-build-tools-devel' 'lxqt-config' 'lxqt-config-lang' 'lxqt-globalkeys' 'lxqt-globalkeys-devel' 'lxqt-globalkeys-lang' 'lxqt-notificationd' 'lxqt-notificationd-lang' 'lxqt-openssh-askpass' 'lxqt-openssh-askpass-lang' 'lxqt-panel' 'lxqt-panel-devel' 'lxqt-panel-lang' 'lxqt-policykit' 'lxqt-policykit-lang' 'lxqt-powermanagement' 'lxqt-powermanagement-lang' 'lxqt-qtplugin' 'lxqt-runner' 'lxqt-runner-lang' 'lxqt-session' 'lxqt-session-lang' 'lxqt-sudo' 'lxqt-sudo-lang' 'lxqt-theme-openSUSE-default' 'lxqt-theme-openSUSE-leaper' 'lxqt-theme-openSUSE-light' 'lxqt-themes' 'lxrandr' 'lxrandr-lang' 'lxsession' 'lxshortcut' 'lxtask' 'lxtask-lang' 'lxterminal' 'lxterminal-lang' 'lynis' 'lynx' 'lyx' 'lz4' 'lzfse' 'lzfse-devel' 'lzham_codec-devel' 'lzham_codec-libs' 'lzip' 'lziprecover' 'lzlib-devel' 'lzma-sdk-devel' 'lzo-devel' 'lzo-devel-32bit' 'lzo-devel-static' 'lzop' 'm17n-db' 'm17n-db-lang' 'm17n-lib' 'm17n-lib-devel' 'm4' 'mISDNuser' 'mISDNuser-devel' 'mac' 'mac-debuginfo' 'mac-robber' 'macchanger' 'machinery' 'machinery-doc' 'macrofusion' 'madplay' 'madplay-lang' 'maelstrom' 'mail_server' 'mailcommon' 'mailcommon-devel' 'mailcommon-lang' 'maildir-utils' 'mailgraph' 'mailimporter' 'mailimporter-devel' 'mailimporter-lang' 'mailman' 'mailnag' 'mailnag-lang' 'mailprocessing' 'mailsync' 'mailutils' 'mailutils-devel' 'mailutils-imap4d' 'mailutils-mh' 'mailutils-notify' 'mailutils-pop3d' 'mailx' 'maim' 'mairix' 'make' 'make-lang' 'makebootfat' 'makedepend' 'makedev' 'makedumpfile' 'makeinfo' 'makeinfo4' 'makemkv' 'makemkv' 'makeself' 'makewhat' 'mako' 'malaga-suomi' 'mame' 'mame-data' 'mame-mess' 'mame-tools' 'man' 'man-pages' 'man-pages-de' 'man-pages-de' 'man-pages-fr' 'man-pages-fr-extra' 'man-pages-ja' 'man-pages-posix' 'man-pages-zh_CN' 'manaplus' 'manaplus-lang' 'manchu-fonts' 'mandvd' 'mandvd' 'mandvd-debuginfo' 'mandvd-debugsource' 'mangler' 'manpageeditor' 'manufacturer-PPDs' 'marble' 'marble-data' 'marble-devel' 'marble-doc' 'marble-kde' 'marble-lang' 'marble-qt' 'marco' 'marco-devel' 'marco-lang' 'marco-themes' 'mariadb' 'mariadb-bench' 'mariadb-client' 'mariadb-connector-odbc' 'mariadb-errormessages' 'mariadb-galera' 'mariadb-test' 'mariadb-tools' 'marisa' 'marisa-devel' 'mate' 'mate-applet-appmenu' 'mate-applet-dock' 'mate-applet-indicator' 'mate-applet-indicator-lang' 'mate-applet-sensors' 'mate-applet-sensors-devel' 'mate-applet-sensors-lang' 'mate-applet-softupd' 'mate-applet-softupd-lang' 'mate-applets' 'mate-applets-lang' 'mate-backgrounds' 'mate-backgrounds-lang' 'mate-calc' 'mate-calc-lang' 'mate-common' 'mate-control-center' 'mate-control-center-branding-openSUSE' 'mate-control-center-branding-upstream' 'mate-control-center-devel' 'mate-control-center-lang' 'mate-desktop' 'mate-desktop-devel' 'mate-desktop-gschemas' 'mate-desktop-gschemas-branding-openSUSE' 'mate-desktop-gschemas-branding-upstream' 'mate-desktop-lang' 'mate-dictionary' 'mate-disk-usage-analyzer' 'mate-eiciel' 'mate-eiciel-lang' 'mate-icon-theme' 'mate-icon-theme-faenza' 'mate-icon-theme-faenza-dark' 'mate-icon-theme-faenza-gray' 'mate-media' 'mate-media-lang' 'mate-menu' 'mate-menu-lang' 'mate-menus' 'mate-menus-branding-openSUSE' 'mate-menus-branding-upstream' 'mate-menus-devel' 'mate-menus-lang' 'mate-netbook' 'mate-netbook-lang' 'mate-notification-daemon' 'mate-notification-daemon-lang' 'mate-panel' 'mate-panel-branding-openSUSE' 'mate-panel-branding-upstream' 'mate-panel-devel' 'mate-panel-lang' 'mate-polkit' 'mate-polkit-lang' 'mate-power-manager' 'mate-power-manager-lang' 'mate-screensaver' 'mate-screensaver-devel' 'mate-screensaver-lang' 'mate-screenshot' 'mate-search-tool' 'mate-session-manager' 'mate-session-manager-branding-openSUSE' 'mate-session-manager-branding-upstream' 'mate-session-manager-gschemas' 'mate-session-manager-lang' 'mate-settings-daemon' 'mate-settings-daemon-devel' 'mate-settings-daemon-lang' 'mate-system-log' 'mate-system-monitor' 'mate-system-monitor-lang' 'mate-terminal' 'mate-terminal-lang' 'mate-themes' 'mate-tweak' 'mate-tweak-lang' 'mate-user-guide' 'mate-user-guide-lang' 'mate-user-share' 'mate-user-share-lang' 'mate-utils-common-lang' 'matekbd-common' 'materia-gtk-theme' 'mateweather-common' 'mathgl-cgi' 'mathgl-devel' 'mathgl-devel-static' 'mathgl-doc' 'mathgl-doc-pdf' 'mathgl-doc-ru' 'mathgl-examples' 'mathgl-fonts' 'mathgl-lang' 'mathgl-lua' 'mathgl-tex' 'mathgl-tex-doc' 'mathgl-tools' 'mathjax' 'mathjax-ams-fonts' 'mathjax-caligraphic-fonts' 'mathjax-fraktur-fonts' 'mathjax-main-fonts' 'mathjax-math-fonts' 'mathjax-sansserif-fonts' 'mathjax-script-fonts' 'mathjax-size1-fonts' 'mathjax-size2-fonts' 'mathjax-size3-fonts' 'mathjax-size4-fonts' 'mathjax-typewriter-fonts' 'mathjax-winchrome-fonts' 'mathjax-winie6-fonts' 'mathml-dtd' 'mathomatic' 'mathomatic-devel' 'matio-tools' 'matomo' 'matrix-quaternion' 'matrix-quaternion-lang' 'matthewlib-java' 'matthewlib-java-javadoc' 'maven' 'maven-ant-plugin' 'maven-ant-plugin-javadoc' 'maven-antrun-plugin' 'maven-antrun-plugin-javadoc' 'maven-archiver' 'maven-archiver-javadoc' 'maven-artifact' 'maven-artifact-manager' 'maven-artifact-resolver' 'maven-artifact-resolver-javadoc' 'maven-artifact-transfer' 'maven-artifact-transfer-javadoc' 'maven-assembly-plugin' 'maven-assembly-plugin-javadoc' 'maven-clean-plugin' 'maven-clean-plugin-javadoc' 'maven-common-artifact-filters' 'maven-common-artifact-filters-javadoc' 'maven-compiler-plugin' 'maven-compiler-plugin-bootstrap' 'maven-compiler-plugin-javadoc' 'maven-dependency-analyzer' 'maven-dependency-analyzer-javadoc' 'maven-dependency-plugin' 'maven-dependency-plugin-javadoc' 'maven-dependency-tree' 'maven-dependency-tree-javadoc' 'maven-deploy-plugin' 'maven-deploy-plugin-javadoc' 'maven-doxia-core' 'maven-doxia-javadoc' 'maven-doxia-logging-api' 'maven-doxia-module-apt' 'maven-doxia-module-confluence' 'maven-doxia-module-docbook-simple' 'maven-doxia-module-fml' 'maven-doxia-module-fo' 'maven-doxia-module-latex' 'maven-doxia-module-markdown' 'maven-doxia-module-rtf' 'maven-doxia-module-twiki' 'maven-doxia-module-xdoc' 'maven-doxia-module-xhtml' 'maven-doxia-sink-api' 'maven-doxia-sitetools' 'maven-doxia-sitetools-javadoc' 'maven-doxia-test-docs' 'maven-enforcer' 'maven-enforcer-api' 'maven-enforcer-javadoc' 'maven-enforcer-plugin' 'maven-enforcer-rules' 'maven-failsafe-plugin' 'maven-failsafe-plugin-bootstrap' 'maven-file-management' 'maven-file-management-javadoc' 'maven-filtering' 'maven-filtering-javadoc' 'maven-install-plugin' 'maven-install-plugin-javadoc' 'maven-invoker' 'maven-invoker-javadoc' 'maven-invoker-plugin' 'maven-invoker-plugin-javadoc' 'maven-jar-plugin' 'maven-jar-plugin-bootstrap' 'maven-jar-plugin-javadoc' 'maven-jarsigner-plugin' 'maven-jarsigner-plugin-javadoc' 'maven-javadoc' 'maven-javadoc-plugin' 'maven-javadoc-plugin-bootstrap' 'maven-javadoc-plugin-javadoc' 'maven-jlink-plugin' 'maven-jlink-plugin-javadoc' 'maven-jmod-plugin' 'maven-jmod-plugin-javadoc' 'maven-lib' 'maven-local' 'maven-mapping' 'maven-mapping-javadoc' 'maven-model' 'maven-monitor' 'maven-native' 'maven-native-components' 'maven-native-javadoc' 'maven-osgi' 'maven-osgi-javadoc' 'maven-parent' 'maven-plugin-annotations' 'maven-plugin-build-helper' 'maven-plugin-build-helper-javadoc' 'maven-plugin-bundle' 'maven-plugin-bundle-javadoc' 'maven-plugin-descriptor' 'maven-plugin-plugin' 'maven-plugin-plugin-bootstrap' 'maven-plugin-plugin-javadoc' 'maven-plugin-registry' 'maven-plugin-testing' 'maven-plugin-testing-harness' 'maven-plugin-testing-javadoc' 'maven-plugin-testing-tools' 'maven-plugin-tools-annotations' 'maven-plugin-tools-ant' 'maven-plugin-tools-api' 'maven-plugin-tools-beanshell' 'maven-plugin-tools-generators' 'maven-plugin-tools-java' 'maven-plugin-tools-javadoc' 'maven-plugin-tools-javadocs' 'maven-plugin-tools-model' 'maven-plugins-pom' 'maven-profile' 'maven-project' 'maven-remote-resources-plugin' 'maven-remote-resources-plugin-javadoc' 'maven-reporting-api' 'maven-reporting-api-javadoc' 'maven-reporting-exec' 'maven-reporting-exec-javadoc' 'maven-reporting-impl' 'maven-reporting-impl-javadoc' 'maven-resolver' 'maven-resolver-api' 'maven-resolver-connector-basic' 'maven-resolver-impl' 'maven-resolver-javadoc' 'maven-resolver-spi' 'maven-resolver-test-util' 'maven-resolver-transport-classpath' 'maven-resolver-transport-file' 'maven-resolver-transport-http' 'maven-resolver-transport-wagon' 'maven-resolver-util' 'maven-resources-plugin' 'maven-resources-plugin-bootstrap' 'maven-resources-plugin-javadoc' 'maven-script-ant' 'maven-script-beanshell' 'maven-script-interpreter' 'maven-script-interpreter-javadoc' 'maven-settings' 'maven-shade-plugin' 'maven-shade-plugin-javadoc' 'maven-shared' 'maven-shared-incremental' 'maven-shared-incremental-javadoc' 'maven-shared-io' 'maven-shared-io-javadoc' 'maven-shared-jarsigner' 'maven-shared-jarsigner-javadoc' 'maven-shared-utils' 'maven-shared-utils-javadoc' 'maven-source-plugin' 'maven-source-plugin-javadoc' 'maven-surefire' 'maven-surefire-javadoc' 'maven-surefire-plugin' 'maven-surefire-plugin-bootstrap' 'maven-surefire-plugins-javadoc' 'maven-surefire-provider-junit' 'maven-surefire-provider-junit5' 'maven-surefire-provider-junit5-javadoc' 'maven-surefire-provider-testng' 'maven-surefire-report-parser' 'maven-surefire-report-plugin' 'maven-surefire-report-plugin-bootstrap' 'maven-test-tools' 'maven-toolchain' 'maven-verifier' 'maven-verifier-javadoc' 'maven-wagon-file' 'maven-wagon-ftp' 'maven-wagon-http' 'maven-wagon-http-lightweight' 'maven-wagon-http-shared' 'maven-wagon-javadoc' 'maven-wagon-provider-api' 'maven-war-plugin' 'maven-war-plugin-javadoc' 'maven2-javadoc' 'mawk' 'maxima' 'maxima-exec-clisp' 'maxima-lang-de-utf8' 'maxima-lang-es-utf8' 'maxima-lang-pt-utf8' 'maxima-lang-pt_BR-utf8' 'maxima-xmaxima' 'mayavi' 'mayavi-doc' 'mbedtls-devel' 'mbimcli-bash-completion' 'mbox-importer' 'mbox-importer-lang' 'mbrola' 'mbrola' 'mbrola-de1' 'mbrola-de1' 'mbrola-de2' 'mbrola-de2' 'mbrola-de3' 'mbrola-de3' 'mbrola-de4' 'mbrola-de4' 'mbrola-de5' 'mbrola-de5' 'mbrola-de6' 'mbrola-de6' 'mbrola-de7' 'mbrola-de7' 'mbrola-de8' 'mbrola-de8' 'mbrola-debuginfo' 'mbrola-debugsource' 'mbuffer' 'mc' 'mc-lang' 'mcabber' 'mcabber-devel' 'mccs' 'mcelog' 'mchange-commons' 'mchange-commons-javadoc' 'mcjoin' 'mcomix' 'mcpp' 'mcpp-devel' 'mcs' 'mcs-debuginfo' 'mcstrans' 'mda-lv2' 'mdadm' 'mdbtools' 'mdbtools-devel' 'mdds-1_4-devel' 'mdds-1_5-devel' 'mdf2iso' 'mdf2iso' 'mdf2iso-debuginfo' 'mdf2iso-debugsource' 'mdtest' 'meabo' 'meanwhile-devel' 'meanwhile-doc' 'med' 'med' 'med-debuginfo' 'med-debugsource' 'med-devel' 'med-tools' 'med-tools-doc' 'media-player-info' 'mediainfo' 'mediainfo-gui' 'mediastreamer2' 'mediastreamer2-devel' 'mediatomb' 'mediatomb' 'mediatomb-debuginfo' 'mediatomb-debugsource' 'mediatomb-mysql' 'mediatomb-mysql-debuginfo' 'mediatomb-sqlite' 'mediatomb-sqlite-debuginfo' 'medit' 'medit-lang' 'mednafen' 'mednafen-doc' 'mednafen-lang' 'mednafen-server' 'meep' 'meep-devel' 'megaglest' 'megaglest-data' 'megatools' 'meld' 'meld-lang' 'melody' 'melody-lang' 'melt' 'memcached' 'memcached-devel' 'memkind' 'memkind-devel' 'memory-constraints' 'memphis-devel' 'memprof' 'memprof-lang' 'memtest86+' 'menu-cache' 'menu-cache-devel' 'menulibre' 'mercurial' 'mercurial-lang' 'meslo-lg-fonts' 'meson' 'meson-test' 'meson-tools' 'meson-vim' 'messagelib' 'messagelib-devel' 'messagelib-lang' 'metacity' 'metacity-devel' 'metacity-lang' 'metacity-theme-adapta' 'metacity-theme-plata' 'metacity-tools' 'metallb-controller' 'metallb-k8s-yaml' 'metallb-speaker' 'metamail' 'metamath' 'metamath-book' 'metamath-data' 'metatheme-adapta-common' 'metatheme-adwaita-common' 'metatheme-ambiance-common' 'metatheme-ambiant-mate-common' 'metatheme-arc-common' 'metatheme-bluebird-common' 'metatheme-breeze-common' 'metatheme-e17gtk-common' 'metatheme-elementary-common' 'metatheme-greybird-common' 'metatheme-greybird-geeko-common' 'metatheme-mint-common' 'metatheme-numix-common' 'metatheme-paper-common' 'metatheme-plata-common' 'metatheme-radiance-common' 'metatheme-radiant-mate-common' 'metatheme-sonar-common' 'metatheme-vertex-common' 'metatheme-yaru-common' 'metatheme-yuyo-common' 'meteo' 'meteo-lang' 'meterbridge' 'metis' 'metis-devel' 'metis-doc' 'metis-examples' 'metis-gnu-hpc' 'metis-gnu-hpc-devel' 'metis-gnu-hpc-doc' 'metis_5_1_0-gnu-hpc' 'metis_5_1_0-gnu-hpc-devel' 'metis_5_1_0-gnu-hpc-doc' 'metis_5_1_0-gnu-hpc-examples' 'metronome' 'metronome-lang' 'mfoc' 'mfsm' 'mftrace' 'mgdiff' 'mgetty' 'mgopen-fonts' 'mgp' 'mhash-devel' 'mhvtl' 'mhvtl-kmp-default' 'mhvtl-kmp-pae' 'miam-player' 'miam-player' 'miam-player-debuginfo' 'miam-player-debugsource' 'miam-player-devel' 'miao-fonts' 'microos-tools' 'microos_apparmor' 'microos_base' 'microos_cloud' 'microos_hardware' 'microos_ima_evm' 'microos_sssd_ldap' 'midori' 'midori-devel' 'midori-lang' 'mii-tool' 'mii-tool' 'mii-tool-debuginfo' 'mii-tool-debugsource' 'mikachan-fonts' 'miller' 'milou5' 'milou5-lang' 'miltertest' 'mimic' 'mimic-devel' 'minder' 'minder-lang' 'mined' 'minetest' 'minetest-data' 'minetest-game' 'minetest-lang' 'minetestserver' 'mingetty' 'mingw32-filesystem' 'mingw32-filesystem' 'mingzat-fonts' 'minicom' 'minicom-lang' 'minidlna' 'minikube' 'minimal_base' 'minimodem' 'mininet' 'mininews' 'minisat' 'minisat-devel' 'minitube' 'minitube-lang' 'miniupnpc' 'minizip-devel' 'minuet' 'minuet-devel' 'minuet-lang' 'mipv6d' 'miredo-client' 'miredo-common' 'miredo-devel' 'miredo-server' 'mirisdr' 'mirisdr-udev' 'mirovideoconverter' 'mirovideoconverter' 'mirror' 'mirrormagic' 'mixxx-unstable' 'mixxx-unstable' 'mixxx-unstable-debuginfo' 'mixxx-unstable-debugsource' 'mjpegtools' 'mjpg-streamer' 'mk-configure' 'mk-configure-doc' 'mkcomposecache' 'mkdud' 'mkelfImage' 'mkfontscale' 'mkisofs' 'mkosi' 'mksh' 'mksusecd' 'mktorrent' 'mkvtoolnix' 'mkvtoolnix-gui' 'mlmmj' 'mlocate' 'mlocate-lang' 'mlterm' 'mlterm-canna' 'mlterm-ibus' 'mlterm-m17n' 'mlterm-scim' 'mlterm-uim' 'mlterm-wnn' 'mm-common' 'mm-common-docs' 'mmc-utils' 'mmdblookup' 'mmv' 'moarvm' 'moarvm-devel' 'mobidict' 'mobile-broadband-provider-info' 'mobipocket' 'mobipocket-devel' 'moc' 'mockito' 'mockito-javadoc' 'modello' 'modello-javadoc' 'modello-maven-plugin' 'modello-maven-plugin-javadoc' 'modem-manager-gui' 'modem-manager-gui-lang' 'modglue-devel' 'modsecurity' 'modsecurity-devel' 'modulemd-validator' 'moe' 'moinmoin-wiki' 'mojave-gtk-theme' 'mojo-parent' 'moka-icon-theme' 'mokutil' 'molsketch' 'molsketch-devel' 'molsketch-doc' 'monapo-fonts' 'moneyplex-daten' 'moneyplex-suse' 'mongodb' 'mongodb-mongoperf' 'mongodb-mongos' 'mongodb-server' 'mongodb-shell' 'mongolian-fonts' 'monitor' 'monitor-lang' 'monitoring-plugins' 'monitoring-plugins-all' 'monitoring-plugins-apcupsd' 'monitoring-plugins-bind' 'monitoring-plugins-bind9' 'monitoring-plugins-bl' 'monitoring-plugins-bonding' 'monitoring-plugins-breeze' 'monitoring-plugins-by_ssh' 'monitoring-plugins-clamav' 'monitoring-plugins-cluster' 'monitoring-plugins-common' 'monitoring-plugins-contentage' 'monitoring-plugins-count_file' 'monitoring-plugins-cups' 'monitoring-plugins-dbi' 'monitoring-plugins-dbi-mysql' 'monitoring-plugins-dbi-pgsql' 'monitoring-plugins-dbi-sqlite3' 'monitoring-plugins-dhcp' 'monitoring-plugins-dig' 'monitoring-plugins-disk' 'monitoring-plugins-disk_smb' 'monitoring-plugins-dns' 'monitoring-plugins-dns.pl' 'monitoring-plugins-drbd9' 'monitoring-plugins-dummy' 'monitoring-plugins-extras' 'monitoring-plugins-fail2ban' 'monitoring-plugins-file_age' 'monitoring-plugins-flexlm' 'monitoring-plugins-fping' 'monitoring-plugins-haproxy' 'monitoring-plugins-hpjd' 'monitoring-plugins-http' 'monitoring-plugins-icmp' 'monitoring-plugins-ide_smart' 'monitoring-plugins-ifoperstatus' 'monitoring-plugins-ifstatus' 'monitoring-plugins-ipmi-sensor1' 'monitoring-plugins-ircd' 'monitoring-plugins-keepalived' 'monitoring-plugins-ldap' 'monitoring-plugins-load' 'monitoring-plugins-log' 'monitoring-plugins-mailq' 'monitoring-plugins-mailstat' 'monitoring-plugins-mem' 'monitoring-plugins-metadata' 'monitoring-plugins-mrtg' 'monitoring-plugins-mrtgtraf' 'monitoring-plugins-mysql' 'monitoring-plugins-mysql_health' 'monitoring-plugins-nagios' 'monitoring-plugins-nis' 'monitoring-plugins-nrpe' 'monitoring-plugins-nt' 'monitoring-plugins-ntp_peer' 'monitoring-plugins-ntp_time' 'monitoring-plugins-nwstat' 'monitoring-plugins-openvpn' 'monitoring-plugins-oracle' 'monitoring-plugins-overcr' 'monitoring-plugins-pgsql' 'monitoring-plugins-ping' 'monitoring-plugins-postgres' 'monitoring-plugins-procs' 'monitoring-plugins-qlogic_sanbox' 'monitoring-plugins-radius' 'monitoring-plugins-real' 'monitoring-plugins-repomd' 'monitoring-plugins-rpc' 'monitoring-plugins-rsync' 'monitoring-plugins-sar-perf' 'monitoring-plugins-sensors' 'monitoring-plugins-sentry3' 'monitoring-plugins-sip' 'monitoring-plugins-smart' 'monitoring-plugins-smtp' 'monitoring-plugins-snmp' 'monitoring-plugins-ssh' 'monitoring-plugins-swap' 'monitoring-plugins-tcp' 'monitoring-plugins-tftp' 'monitoring-plugins-time' 'monitoring-plugins-traffic_limit' 'monitoring-plugins-ups' 'monitoring-plugins-users' 'monitoring-plugins-wave' 'monitoring-plugins-zypper' 'mono-addins' 'mono-addins-devel' 'mono-addins-msbuild' 'mono-basic' 'mono-complete' 'mono-core' 'mono-data' 'mono-data-oracle' 'mono-data-sqlite' 'mono-debugger' 'mono-devel' 'mono-extras' 'mono-libkolabxml1' 'mono-locale-extras' 'mono-mvc' 'mono-nat' 'mono-nat-devel' 'mono-nunit' 'mono-reactive' 'mono-uia' 'mono-uia-devel' 'mono-upnp' 'mono-upnp-devel' 'mono-wcf' 'mono-web' 'mono-winforms' 'mono-winfxcore' 'mono-zeroconf' 'mono-zeroconf-devel' 'mono-zeroconf-doc' 'mono-zeroconf-provider-avahi' 'monodoc-core' 'mopac7' 'moreutils' 'moreutils-parallel' 'mosh' 'mosquitto' 'mosquitto-clients' 'mosquitto-devel' 'most' 'motif' 'motif-devel' 'motif-devel-32bit' 'motion' 'motoya-lcedar-fonts' 'motoya-lmaru-fonts' 'motv' 'mousepad' 'mousepad-lang' 'mousetweaks' 'mousetweaks-lang' 'moviethumbnailer' 'moviethumbnailer' 'movit-devel' 'movit8-data' 'mozaddon-devel' 'mozc' 'mozc-gui-tools' 'mozilla-jss' 'mozilla-jss-javadoc' 'mozilla-nspr' 'mozilla-nspr-32bit' 'mozilla-nspr-devel' 'mozilla-nss' 'mozilla-nss-32bit' 'mozilla-nss-certs' 'mozilla-nss-certs-32bit' 'mozilla-nss-devel' 'mozilla-nss-sysinit' 'mozilla-nss-sysinit-32bit' 'mozilla-nss-tools' 'mozjs38' 'mozjs38-devel' 'mozjs52' 'mozjs52-devel' 'mozjs60' 'mozjs60-devel' 'mozldap-devel' 'mozldap-libs' 'mozldap-tools' 'mozo' 'mozo-lang' 'mp' 'mp-gtk3' 'mp3_check' 'mp3blaster' 'mp3blaster' 'mp3blaster-debuginfo' 'mp3blaster-debugsource' 'mp3diags' 'mp3diags' 'mp3diags-debuginfo' 'mp3diags-debugsource' 'mp3diags-unstable' 'mp3diags-unstable' 'mp3diags-unstable-debuginfo' 'mp3diags-unstable-debugsource' 'mp3gain' 'mp3info' 'mp3info' 'mp3info-debuginfo' 'mp3info-debugsource' 'mp3splt' 'mp3splt' 'mp3splt-debuginfo' 'mp3splt-debugsource' 'mp3splt-gtk' 'mp3splt-gtk' 'mp3splt-gtk-debuginfo' 'mp3splt-gtk-debugsource' 'mp3val' 'mp3val' 'mp3val-debuginfo' 'mp3val-debugsource' 'mp3wrap' 'mp3wrap' 'mp3wrap-debuginfo' 'mp3wrap-debugsource' 'mp4als' 'mp4als' 'mp4als-debuginfo' 'mpDris2' 'mpDris2-lang' 'mpc-devel' 'mpc-devel-32bit' 'mpc-qt' 'mpclient' 'mpd' 'mpeg2dec' 'mpeg2demux' 'mpeg2demux-debuginfo' 'mpeg4ip' 'mpeg4ip' 'mpeg4ip-debuginfo' 'mpeg4ip-debugsource' 'mpfc' 'mpfc' 'mpfc-debuginfo' 'mpfc-debugsource' 'mpfi-devel' 'mpfr-devel' 'mpfr-devel-32bit' 'mpg123' 'mpg123-devel' 'mpg123-devel-32bit' 'mpg123-jack' 'mpg123-jack-32bit' 'mpg123-openal' 'mpg123-openal-32bit' 'mpg123-portaudio' 'mpg123-portaudio-32bit' 'mpg123-pulse' 'mpg123-pulse-32bit' 'mpg123-sdl' 'mpg123-sdl-32bit' 'mpgtx' 'mpgtx' 'mpi-selector' 'mpiP-gnu-mpich-hpc' 'mpiP-gnu-mpich-hpc-doc' 'mpiP-gnu-mvapich2-hpc' 'mpiP-gnu-mvapich2-hpc-doc' 'mpiP-gnu-openmpi1-hpc' 'mpiP-gnu-openmpi1-hpc-doc' 'mpiP-gnu-openmpi2-hpc' 'mpiP-gnu-openmpi2-hpc-doc' 'mpiP-gnu-openmpi3-hpc' 'mpiP-gnu-openmpi3-hpc-doc' 'mpiP_3_4_1-gnu-mpich-hpc' 'mpiP_3_4_1-gnu-mpich-hpc-devel-static' 'mpiP_3_4_1-gnu-mpich-hpc-doc' 'mpiP_3_4_1-gnu-mvapich2-hpc' 'mpiP_3_4_1-gnu-mvapich2-hpc-devel-static' 'mpiP_3_4_1-gnu-mvapich2-hpc-doc' 'mpiP_3_4_1-gnu-openmpi1-hpc' 'mpiP_3_4_1-gnu-openmpi1-hpc-devel-static' 'mpiP_3_4_1-gnu-openmpi1-hpc-doc' 'mpiP_3_4_1-gnu-openmpi2-hpc' 'mpiP_3_4_1-gnu-openmpi2-hpc-devel-static' 'mpiP_3_4_1-gnu-openmpi2-hpc-doc' 'mpiP_3_4_1-gnu-openmpi3-hpc' 'mpiP_3_4_1-gnu-openmpi3-hpc-devel-static' 'mpiP_3_4_1-gnu-openmpi3-hpc-doc' 'mpibash' 'mpibash-examples' 'mpich' 'mpich-devel' 'mpich-gnu-hpc' 'mpich-gnu-hpc-devel' 'mpich-gnu-hpc-devel-static' 'mpich-gnu-hpc-macros-devel' 'mpich-ofi' 'mpich-ofi-devel' 'mpich-ofi-gnu-hpc' 'mpich-ofi-gnu-hpc-devel' 'mpich-ofi-gnu-hpc-devel-static' 'mpich-ofi-gnu-hpc-macros-devel' 'mpich-ofi_3_3-gnu-hpc' 'mpich-ofi_3_3-gnu-hpc-devel' 'mpich-ofi_3_3-gnu-hpc-devel-static' 'mpich-ofi_3_3-gnu-hpc-macros-devel' 'mpich_3_3-gnu-hpc' 'mpich_3_3-gnu-hpc-devel' 'mpich_3_3-gnu-hpc-devel-static' 'mpich_3_3-gnu-hpc-macros-devel' 'mpitests' 'mpitests-mpich' 'mpitests-mpich-gnu-hpc' 'mpitests-mpich-ofi' 'mpitests-mpich-ofi-gnu-hpc' 'mpitests-mvapich2' 'mpitests-mvapich2-gnu-hpc' 'mpitests-mvapich2-psm' 'mpitests-mvapich2-psm-gnu-hpc' 'mpitests-mvapich2-psm2' 'mpitests-mvapich2-psm2-gnu-hpc' 'mpitests-openmpi' 'mpitests-openmpi1-gnu-hpc' 'mpitests-openmpi2' 'mpitests-openmpi2-gnu-hpc' 'mpitests-openmpi3' 'mpitests-openmpi3-gnu-hpc' 'mplus-fonts' 'mppenc' 'mppenc' 'mppenc-debuginfo' 'mppenc-debugsource' 'mpt-firmware' 'mpt-status' 'mpv' 'mpv-bash-completion' 'mpv-devel' 'mpv-plugin-mpris' 'mpv-zsh-completion' 'mr' 'mraa' 'mraa-devel' 'mraa-examples' 'mrboom' 'mrouted' 'mrrescue' 'mrsh' 'mrsh-rsh-compat' 'mrsh-rsh-server-compat' 'mrsh-server' 'ms-sys' 'ms-sys' 'ms-sys-debuginfo' 'ms-sys-debugsource' 'mscgen' 'msgpack-devel' 'msitools' 'msitools-devel' 'msitools-lang' 'msmtp' 'msmtp-doc' 'msmtp-mta' 'mspack-examples' 'msr-tools' 'mstflint' 'msv-demo' 'msv-javadoc' 'msv-manual' 'msv-msv' 'msv-rngconv' 'msv-xmlgen' 'msv-xsdlib' 'mt-st' 'mtd-utils' 'mtdev' 'mtdev-devel' 'mtools' 'mtools-doc' 'mtp-tools' 'mtpaint' 'mtpaint-handbook' 'mtpaint-lang' 'mtpfs' 'mtpfs' 'mtpfs-debuginfo' 'mtpfs-debugsource' 'mtr' 'mtr-gtk' 'mtree' 'mtx' 'mu4e' 'muffin' 'muffin-devel' 'muffin-lang' 'mugshot' 'multimedia' 'multimon-ng' 'multipath-tools' 'multipath-tools-devel' 'multitail' 'multus' 'mumble' 'mumble-32bit' 'mumble-server' 'mumps-devel' 'mumps-devel-static' 'mumps-doc' 'mumps-examples' 'mumps-gnu-mpich-hpc-devel' 'mumps-gnu-mpich-hpc-doc' 'mumps-gnu-mpich-hpc-examples' 'mumps-gnu-mvapich2-hpc-devel' 'mumps-gnu-mvapich2-hpc-doc' 'mumps-gnu-mvapich2-hpc-examples' 'mumps-gnu-openmpi1-hpc-devel' 'mumps-gnu-openmpi1-hpc-doc' 'mumps-gnu-openmpi1-hpc-examples' 'mumps-gnu-openmpi2-hpc-devel' 'mumps-gnu-openmpi2-hpc-doc' 'mumps-gnu-openmpi2-hpc-examples' 'mumps-gnu-openmpi3-hpc-devel' 'mumps-gnu-openmpi3-hpc-doc' 'mumps-gnu-openmpi3-hpc-examples' 'mumps-mvapich2-5-compat' 'mumps-mvapich2-devel' 'mumps-mvapich2-devel-static' 'mumps-mvapich2-devel-static-compat' 'mumps-mvapich2-examples' 'mumps-openmpi-5-compat' 'mumps-openmpi-devel' 'mumps-openmpi-devel-static' 'mumps-openmpi-devel-static-compat' 'mumps-openmpi-examples' 'mumps-openmpi2-5-compat' 'mumps-openmpi2-devel' 'mumps-openmpi2-devel-static' 'mumps-openmpi2-devel-static-compat' 'mumps-openmpi2-examples' 'mumps-ptscotch-openmpi-5-compat' 'mumps-ptscotch-openmpi-devel' 'mumps-ptscotch-openmpi-devel-static' 'mumps-ptscotch-openmpi-devel-static-compat' 'mumps-ptscotch-openmpi-examples' 'mumps-ptscotch-openmpi2-5-compat' 'mumps-ptscotch-openmpi2-devel' 'mumps-ptscotch-openmpi2-devel-static' 'mumps-ptscotch-openmpi2-devel-static-compat' 'mumps-ptscotch-openmpi2-examples' 'mumps-scotch-devel' 'mumps-scotch-devel-static' 'mumps-scotch-examples' 'mumps_5_1_2-gnu-mpich-hpc-devel' 'mumps_5_1_2-gnu-mpich-hpc-devel-static' 'mumps_5_1_2-gnu-mpich-hpc-doc' 'mumps_5_1_2-gnu-mpich-hpc-examples' 'mumps_5_1_2-gnu-mvapich2-hpc-devel' 'mumps_5_1_2-gnu-mvapich2-hpc-devel-static' 'mumps_5_1_2-gnu-mvapich2-hpc-doc' 'mumps_5_1_2-gnu-mvapich2-hpc-examples' 'mumps_5_1_2-gnu-openmpi1-hpc-devel' 'mumps_5_1_2-gnu-openmpi1-hpc-devel-static' 'mumps_5_1_2-gnu-openmpi1-hpc-doc' 'mumps_5_1_2-gnu-openmpi1-hpc-examples' 'mumps_5_1_2-gnu-openmpi2-hpc-devel' 'mumps_5_1_2-gnu-openmpi2-hpc-devel-static' 'mumps_5_1_2-gnu-openmpi2-hpc-doc' 'mumps_5_1_2-gnu-openmpi2-hpc-examples' 'mumps_5_1_2-gnu-openmpi3-hpc-devel' 'mumps_5_1_2-gnu-openmpi3-hpc-devel-static' 'mumps_5_1_2-gnu-openmpi3-hpc-doc' 'mumps_5_1_2-gnu-openmpi3-hpc-examples' 'munge' 'munge-devel' 'munge-devel-32bit' 'munge-maven-plugin' 'munge-maven-plugin-javadoc' 'munin' 'munin-node' 'muparser-devel' 'muparser-devel-32bit' 'mupdf' 'mupdf-devel-static' 'muroar' 'muroar' 'muroar-debuginfo' 'muroar-debugsource' 'muroar-devel' 'muroard' 'muroard' 'muroard-debuginfo' 'muroard-debugsource' 'muroard-devel' 'museic' 'musepack' 'musepack-devel' 'musescore' 'musescore-fonts' 'mutt' 'mutt-doc' 'mutt-lang' 'mutter' 'mutter-data' 'mutter-devel' 'mutter-lang' 'mvapich2' 'mvapich2-devel' 'mvapich2-devel-static' 'mvapich2-doc' 'mvapich2-gnu-hpc' 'mvapich2-gnu-hpc-devel' 'mvapich2-gnu-hpc-doc' 'mvapich2-gnu-hpc-macros-devel' 'mvapich2-psm' 'mvapich2-psm-devel' 'mvapich2-psm-devel-static' 'mvapich2-psm-doc' 'mvapich2-psm-gnu-hpc' 'mvapich2-psm-gnu-hpc-devel' 'mvapich2-psm-gnu-hpc-doc' 'mvapich2-psm-gnu-hpc-macros-devel' 'mvapich2-psm2' 'mvapich2-psm2-devel' 'mvapich2-psm2-devel-static' 'mvapich2-psm2-doc' 'mvapich2-psm2-gnu-hpc' 'mvapich2-psm2-gnu-hpc-devel' 'mvapich2-psm2-gnu-hpc-doc' 'mvapich2-psm2-gnu-hpc-macros-devel' 'mvapich2-psm2_2_3_1-gnu-hpc' 'mvapich2-psm2_2_3_1-gnu-hpc-devel' 'mvapich2-psm2_2_3_1-gnu-hpc-devel-static' 'mvapich2-psm2_2_3_1-gnu-hpc-doc' 'mvapich2-psm2_2_3_1-gnu-hpc-macros-devel' 'mvapich2-psm_2_3_1-gnu-hpc' 'mvapich2-psm_2_3_1-gnu-hpc-devel' 'mvapich2-psm_2_3_1-gnu-hpc-devel-static' 'mvapich2-psm_2_3_1-gnu-hpc-doc' 'mvapich2-psm_2_3_1-gnu-hpc-macros-devel' 'mvapich2_2_3_1-gnu-hpc' 'mvapich2_2_3_1-gnu-hpc-devel' 'mvapich2_2_3_1-gnu-hpc-devel-static' 'mvapich2_2_3_1-gnu-hpc-doc' 'mvapich2_2_3_1-gnu-hpc-macros-devel' 'mwic' 'mx4j' 'mxml' 'mxml-devel' 'mxml-doc' 'mybashburn' 'mybashburn' 'mycroft-core' 'mylvmbackup' 'myman' 'mypaint' 'mypaint-brushes' 'mypaint-brushes-devel' 'mypaint-lang' 'mypy' 'myspell-af_NA' 'myspell-af_ZA' 'myspell-an' 'myspell-an_ES' 'myspell-ar' 'myspell-ar_AE' 'myspell-ar_BH' 'myspell-ar_DZ' 'myspell-ar_EG' 'myspell-ar_IQ' 'myspell-ar_JO' 'myspell-ar_KW' 'myspell-ar_LB' 'myspell-ar_LY' 'myspell-ar_MA' 'myspell-ar_OM' 'myspell-ar_QA' 'myspell-ar_SA' 'myspell-ar_SD' 'myspell-ar_SY' 'myspell-ar_TN' 'myspell-ar_YE' 'myspell-be_BY' 'myspell-bg_BG' 'myspell-bn_BD' 'myspell-bn_IN' 'myspell-bo' 'myspell-bo_CN' 'myspell-bo_IN' 'myspell-br_FR' 'myspell-bs' 'myspell-bs_BA' 'myspell-ca' 'myspell-ca_AD' 'myspell-ca_ES' 'myspell-ca_ES_valencia' 'myspell-ca_FR' 'myspell-ca_IT' 'myspell-cs_CZ' 'myspell-da_DK' 'myspell-de' 'myspell-de_AT' 'myspell-de_CH' 'myspell-de_DE' 'myspell-dictionaries' 'myspell-el_GR' 'myspell-en' 'myspell-en_AU' 'myspell-en_BS' 'myspell-en_BZ' 'myspell-en_CA' 'myspell-en_GB' 'myspell-en_GH' 'myspell-en_IE' 'myspell-en_IN' 'myspell-en_JM' 'myspell-en_MW' 'myspell-en_NA' 'myspell-en_NZ' 'myspell-en_PH' 'myspell-en_TT' 'myspell-en_US' 'myspell-en_ZA' 'myspell-en_ZW' 'myspell-es' 'myspell-es_AR' 'myspell-es_BO' 'myspell-es_CL' 'myspell-es_CO' 'myspell-es_CR' 'myspell-es_CU' 'myspell-es_DO' 'myspell-es_EC' 'myspell-es_ES' 'myspell-es_GT' 'myspell-es_HN' 'myspell-es_MX' 'myspell-es_NI' 'myspell-es_PA' 'myspell-es_PE' 'myspell-es_PR' 'myspell-es_PY' 'myspell-es_SV' 'myspell-es_UY' 'myspell-es_VE' 'myspell-et_EE' 'myspell-fr_BE' 'myspell-fr_CA' 'myspell-fr_CH' 'myspell-fr_FR' 'myspell-fr_LU' 'myspell-fr_MC' 'myspell-gd_GB' 'myspell-german-old' 'myspell-gl' 'myspell-gl_ES' 'myspell-gu_IN' 'myspell-gug' 'myspell-gug_PY' 'myspell-he_IL' 'myspell-hi_IN' 'myspell-hr_HR' 'myspell-hu_HU' 'myspell-id' 'myspell-id_ID' 'myspell-is' 'myspell-is_IS' 'myspell-it_IT' 'myspell-kmr_Latn' 'myspell-kmr_Latn_SY' 'myspell-kmr_Latn_TR' 'myspell-lightproof-en' 'myspell-lightproof-hu_HU' 'myspell-lightproof-pt_BR' 'myspell-lightproof-ru_RU' 'myspell-lo_LA' 'myspell-lt_LT' 'myspell-lv_LV' 'myspell-nb_NO' 'myspell-ne_NP' 'myspell-nl_BE' 'myspell-nl_NL' 'myspell-nn_NO' 'myspell-no' 'myspell-oc_FR' 'myspell-pl_PL' 'myspell-pt_AO' 'myspell-pt_BR' 'myspell-pt_PT' 'myspell-ro' 'myspell-ro_RO' 'myspell-ru_RU' 'myspell-si_LK' 'myspell-sk_SK' 'myspell-sl_SI' 'myspell-sq_AL' 'myspell-sr' 'myspell-sr_CS' 'myspell-sr_Latn_CS' 'myspell-sr_Latn_RS' 'myspell-sr_RS' 'myspell-sv_FI' 'myspell-sv_SE' 'myspell-sw_TZ' 'myspell-te' 'myspell-te_IN' 'myspell-th_TH' 'myspell-tr' 'myspell-tr_TR' 'myspell-uk_UA' 'myspell-vi' 'myspell-vi_VN' 'myspell-zu_ZA' 'mysql-connector-java' 'mysql-workbench' 'mythes-devel' 'mythplugins-mytharchive' 'mythplugins-mytharchive-debuginfo' 'mythplugins-mythbrowser' 'mythplugins-mythbrowser-debuginfo' 'mythplugins-mythgallery' 'mythplugins-mythgallery-debuginfo' 'mythplugins-mythgame' 'mythplugins-mythgame-debuginfo' 'mythplugins-mythmusic' 'mythplugins-mythmusic-debuginfo' 'mythplugins-mythnews' 'mythplugins-mythnews-debuginfo' 'mythplugins-mythweather' 'mythplugins-mythweather-debuginfo' 'mythplugins-mythzoneminder' 'mythplugins-mythzoneminder-debuginfo' 'mythtv' 'mythtv-backend' 'mythtv-backend-debuginfo' 'mythtv-base-themes' 'mythtv-common' 'mythtv-common-debuginfo' 'mythtv-debuginfo' 'mythtv-debugsource' 'mythtv-devel' 'mythtv-docs' 'mythtv-frontend' 'mythtv-frontend-debuginfo' 'mythtv-setup' 'mythtv-setup-debuginfo' 'mythweb' 'mythweb' 'mythweb-0_28' 'mythweb-0_28' 'mytop' 'naev' 'naev-data' 'nagios' 'nagios-contrib' 'nagios-devel' 'nagios-rpm-macros' 'nagios-theme-exfoliation' 'nagios-theme-switcher' 'nagios-www' 'nagios-www-dch' 'nagstamon' 'namdhinggo-fonts' 'nano' 'nano-icinga2' 'nano-lang' 'nano-plugin-conky' 'nanomsg-devel' 'nanopb-devel' 'nanopb-source' 'nanoxml' 'nanoxml-javadoc' 'nanoxml-lite' 'nanoxml-manual' 'nanoxml-manual-lite' 'nant' 'nant-devel' 'nanum-fonts' 'nanum-gothic-coding-fonts' 'nasc' 'nasm' 'nast' 'native-maven-plugin' 'nautilus' 'nautilus-deja-dup' 'nautilus-devel' 'nautilus-eiciel' 'nautilus-evince' 'nautilus-extension-actions' 'nautilus-extension-dropbox' 'nautilus-extension-folder-color' 'nautilus-extension-nextcloud' 'nautilus-extension-nitroshare' 'nautilus-extension-seahorse' 'nautilus-extension-terminal' 'nautilus-extension-tilix' 'nautilus-image-converter' 'nautilus-image-converter-lang' 'nautilus-lang' 'nautilus-plugin-easytag' 'nautilus-sendto' 'nautilus-sendto-lang' 'nautilus-share' 'nautilus-share-lang' 'nautilus-terminal' 'nauty' 'nauty-devel' 'nbd' 'ncat' 'ncdc' 'ncdc' 'ncdc-debuginfo' 'ncdc-debugsource' 'ncdu' 'ncftp' 'ncmpc' 'ncmpc' 'ncmpc-debuginfo' 'ncmpc-debugsource' 'ncmpc-lang' 'ncmpcpp' 'ncompress' 'ncrack' 'ncrack' 'ncrack-debuginfo' 'ncrack-debugsource' 'ncurses-devel' 'ncurses-devel-32bit' 'ncurses-devel-static' 'ncurses-utils' 'ncurses5-devel' 'ncurses5-devel-32bit' 'ncurses5-devel-static' 'ndctl' 'ndesk-dbus' 'ndesk-dbus-glib' 'ndesk-dbus-glib-devel' 'ndpi-tools' 'ndpmon' 'ndppd' 'neard' 'neard-devel' 'neard-test' 'nedit' 'neko' 'neko-devel' 'neko-mysql' 'nemesis' 'nemiver' 'nemiver-devel' 'nemiver-lang' 'nemo' 'nemo-devel' 'nemo-extension-actions' 'nemo-extension-audio-tab' 'nemo-extension-compare' 'nemo-extension-dropbox' 'nemo-extension-emblems' 'nemo-extension-fileroller' 'nemo-extension-gtkhash' 'nemo-extension-image-converter' 'nemo-extension-nextcloud' 'nemo-extension-nitroshare' 'nemo-extension-pastebin' 'nemo-extension-preview' 'nemo-extension-repairer' 'nemo-extension-seahorse' 'nemo-extension-share' 'nemo-extension-terminal' 'nemo-extensions-lang' 'nemo-lang' 'neofetch' 'neomutt' 'neomutt-doc' 'neomutt-lang' 'neovim' 'neovim-lang' 'nero-aac' 'nested' 'nestopia' 'net-snmp' 'net-snmp-devel' 'net-snmp-devel-32bit' 'net-tools' 'net-tools-deprecated' 'net-tools-lang' 'net6' 'net6-devel' 'net6-lang' 'netbeans-javaparser' 'netbeans-resolver' 'netbeans-svnclientadapter' 'netcat-openbsd' 'netcdf' 'netcdf-cxx4-gnu-hpc-tools' 'netcdf-cxx4-tools' 'netcdf-cxx4_4_3_0-gnu-hpc-tools' 'netcdf-devel' 'netcdf-devel-data' 'netcdf-devel-static' 'netcdf-fortran-gnu-mpich-hpc' 'netcdf-fortran-gnu-mpich-hpc-devel' 'netcdf-fortran-gnu-openmpi1-hpc' 'netcdf-fortran-gnu-openmpi1-hpc-devel' 'netcdf-fortran-gnu-openmpi2-hpc' 'netcdf-fortran-gnu-openmpi2-hpc-devel' 'netcdf-fortran-gnu-openmpi3-hpc' 'netcdf-fortran-gnu-openmpi3-hpc-devel' 'netcdf-fortran_4_4_4-gnu-mpich-hpc' 'netcdf-fortran_4_4_4-gnu-mpich-hpc-devel' 'netcdf-fortran_4_4_4-gnu-mpich-hpc-devel-static' 'netcdf-fortran_4_4_4-gnu-openmpi1-hpc' 'netcdf-fortran_4_4_4-gnu-openmpi1-hpc-devel' 'netcdf-fortran_4_4_4-gnu-openmpi1-hpc-devel-static' 'netcdf-fortran_4_4_4-gnu-openmpi2-hpc' 'netcdf-fortran_4_4_4-gnu-openmpi2-hpc-devel' 'netcdf-fortran_4_4_4-gnu-openmpi2-hpc-devel-static' 'netcdf-fortran_4_4_4-gnu-openmpi3-hpc' 'netcdf-fortran_4_4_4-gnu-openmpi3-hpc-devel' 'netcdf-fortran_4_4_4-gnu-openmpi3-hpc-devel-static' 'netcdf-gnu-hpc' 'netcdf-gnu-hpc-devel' 'netcdf-gnu-mpich-hpc' 'netcdf-gnu-mpich-hpc-devel' 'netcdf-gnu-mvapich2-hpc' 'netcdf-gnu-mvapich2-hpc-devel' 'netcdf-gnu-openmpi1-hpc' 'netcdf-gnu-openmpi1-hpc-devel' 'netcdf-gnu-openmpi2-hpc' 'netcdf-gnu-openmpi2-hpc-devel' 'netcdf-gnu-openmpi3-hpc' 'netcdf-gnu-openmpi3-hpc-devel' 'netcdf-openmpi' 'netcdf-openmpi-devel' 'netcdf-openmpi-devel-static' 'netcdf-openmpi2' 'netcdf-openmpi2-devel' 'netcdf-openmpi2-devel-static' 'netcdf_4_6_1-gnu-hpc' 'netcdf_4_6_1-gnu-hpc-devel' 'netcdf_4_6_1-gnu-hpc-devel-data' 'netcdf_4_6_1-gnu-hpc-devel-static' 'netcdf_4_6_1-gnu-mpich-hpc' 'netcdf_4_6_1-gnu-mpich-hpc-devel' 'netcdf_4_6_1-gnu-mpich-hpc-devel-static' 'netcdf_4_6_1-gnu-mvapich2-hpc' 'netcdf_4_6_1-gnu-mvapich2-hpc-devel' 'netcdf_4_6_1-gnu-mvapich2-hpc-devel-static' 'netcdf_4_6_1-gnu-openmpi1-hpc' 'netcdf_4_6_1-gnu-openmpi1-hpc-devel' 'netcdf_4_6_1-gnu-openmpi1-hpc-devel-static' 'netcdf_4_6_1-gnu-openmpi2-hpc' 'netcdf_4_6_1-gnu-openmpi2-hpc-devel' 'netcdf_4_6_1-gnu-openmpi2-hpc-devel-static' 'netcdf_4_6_1-gnu-openmpi3-hpc' 'netcdf_4_6_1-gnu-openmpi3-hpc-devel' 'netcdf_4_6_1-gnu-openmpi3-hpc-devel-static' 'netceiver-tools' 'netceiver-tools-debuginfo' 'netcfg' 'netcomponents' 'netcomponents-javadoc' 'netconsole-tools' 'netdata' 'netdate' 'netdiscover' 'netgen' 'netgen-devel' 'nethogs' 'netlabel-tools' 'netpbm' 'netperf' 'netsniff-ng' 'netsurf-buildsystem' 'nettle' 'network-autoconfig' 'network_admin' 'neverball' 'neverball-doc' 'neverball-mapc' 'neverball-neverputt' 'newlib' 'newsboat' 'newsboat-lang' 'newt' 'newt-devel' 'newt-doc' 'newt-static' 'newtonsoft-json' 'newtonsoft-json-devel' 'nextcloud' 'nextcloud-client' 'nextcloud-client-doc' 'nextcloud-client-dolphin' 'nextcloud-client-lang' 'nf3d' 'nfacct' 'nfc-eventd' 'nfcutils' 'nfoview' 'nfoview-lang' 'nfs-client' 'nfs-doc' 'nfs-ganesha' 'nfs-ganesha-ceph' 'nfs-ganesha-mount-9P' 'nfs-ganesha-nullfs' 'nfs-ganesha-proxy' 'nfs-ganesha-rados-grace' 'nfs-ganesha-rgw' 'nfs-ganesha-vfs' 'nfs-ganesha-xfs' 'nfs-kernel-server' 'nfs4-acl-tools' 'nfsidmap' 'nfsidmap-devel' 'nfswatch' 'nftables' 'nftables-devel' 'nghttp2' 'nginx' 'nginx-source' 'ngrep' 'ngspice' 'ngspice-doc' 'ngspice-scripts' 'ngspice-xspice-cm' 'ngspice-xspice-cm-devel' 'nh2ps' 'nicotine-plus' 'nicotine-plus' 'nicotine-plus-debuginfo' 'nicotine-plus-debugsource' 'nilfs-utils' 'nilfs-utils-devel' 'nim' 'nimbus-icon-theme' 'nini' 'ninja' 'ninvaders' 'nip2' 'nitrogen' 'nitrogen-lang' 'nitroshare' 'nitroshare-kde' 'nkf' 'nload' 'nlohmann_json-devel' 'nlopt-devel' 'nm-tray' 'nm-tray-lang' 'nma-data' 'nmap' 'nmapsi4' 'nmcli-dmenu' 'nmh' 'nml' 'nmon' 'nnn' 'no-more-secrets' 'nodejs-common' 'nodejs-emojione' 'nodejs-emojione-awesome' 'nodejs-emojione-demo' 'nodejs-emojione-meteor' 'nodejs-emojione-python' 'nodejs-emojione-swift' 'nodejs-packaging' 'nodejs-underscore' 'nodejs10' 'nodejs10-devel' 'nodejs10-docs' 'nodejs12' 'nodejs12-devel' 'nodejs12-docs' 'nodejs8' 'nodejs8-devel' 'nodejs8-docs' 'nomacs' 'nomacs-lang' 'non-mixer' 'non-ntk' 'non-ntk-devel' 'non-ntk-fluid' 'non-sequencer' 'non-session-manager' 'non-timeline' 'non_oss' 'noping' 'nordlicht' 'nordlicht' 'nordlicht-debuginfo' 'nordlicht-debugsource' 'nordlicht-devel' 'normaliz' 'normaliz-devel' 'normalize' 'normalize' 'normalize-debuginfo' 'normalize-debugsource' 'noson-app' 'noson-devel' 'notejot' 'notejot-lang' 'notepadqq' 'notes-up' 'notes-up-lang' 'notification-daemon' 'notification-daemon-lang' 'notify-osd' 'notify-sharp' 'notify-sharp-devel' 'notify-sharp3' 'notify-sharp3-devel' 'notmuch' 'notmuch-devel' 'notmuch-doc' 'notmuch-emacs' 'noto-coloremoji-fonts' 'noto-kufiarabic-fonts' 'noto-mono-fonts' 'noto-naskharabic-fonts' 'noto-naskharabic-ui-fonts' 'noto-nastaliqurdu-fonts' 'noto-sans-adlam-fonts' 'noto-sans-adlamunjoined-fonts' 'noto-sans-anatolianhieroglyphs-fonts' 'noto-sans-arabic-fonts' 'noto-sans-arabic-ui-fonts' 'noto-sans-armenian-fonts' 'noto-sans-avestan-fonts' 'noto-sans-balinese-fonts' 'noto-sans-bamum-fonts' 'noto-sans-batak-fonts' 'noto-sans-bengali-fonts' 'noto-sans-bengali-ui-fonts' 'noto-sans-brahmi-fonts' 'noto-sans-buginese-fonts' 'noto-sans-buhid-fonts' 'noto-sans-canadianaboriginal-fonts' 'noto-sans-carian-fonts' 'noto-sans-chakma-fonts' 'noto-sans-cham-fonts' 'noto-sans-cherokee-fonts' 'noto-sans-cjk-fonts' 'noto-sans-coptic-fonts' 'noto-sans-cuneiform-fonts' 'noto-sans-cypriot-fonts' 'noto-sans-deseret-fonts' 'noto-sans-devanagari-fonts' 'noto-sans-devanagari-ui-fonts' 'noto-sans-display-fonts' 'noto-sans-egyptianhieroglyphs-fonts' 'noto-sans-ethiopic-fonts' 'noto-sans-fonts' 'noto-sans-georgian-fonts' 'noto-sans-glagolitic-fonts' 'noto-sans-gothic-fonts' 'noto-sans-gujarati-fonts' 'noto-sans-gujarati-ui-fonts' 'noto-sans-gurmukhi-fonts' 'noto-sans-gurmukhi-ui-fonts' 'noto-sans-hanunoo-fonts' 'noto-sans-hebrew-fonts' 'noto-sans-imperialaramaic-fonts' 'noto-sans-inscriptionalpahlavi-fonts' 'noto-sans-inscriptionalparthian-fonts' 'noto-sans-javanese-fonts' 'noto-sans-jp-black-fonts' 'noto-sans-jp-bold-fonts' 'noto-sans-jp-demilight-fonts' 'noto-sans-jp-fonts' 'noto-sans-jp-fonts-full' 'noto-sans-jp-light-fonts' 'noto-sans-jp-medium-fonts' 'noto-sans-jp-mono-fonts' 'noto-sans-jp-regular-fonts' 'noto-sans-jp-thin-fonts' 'noto-sans-kaithi-fonts' 'noto-sans-kannada-fonts' 'noto-sans-kannada-ui-fonts' 'noto-sans-kayahli-fonts' 'noto-sans-kharoshthi-fonts' 'noto-sans-khmer-fonts' 'noto-sans-khmer-ui-fonts' 'noto-sans-kr-black-fonts' 'noto-sans-kr-bold-fonts' 'noto-sans-kr-demilight-fonts' 'noto-sans-kr-fonts' 'noto-sans-kr-fonts-full' 'noto-sans-kr-light-fonts' 'noto-sans-kr-medium-fonts' 'noto-sans-kr-mono-fonts' 'noto-sans-kr-regular-fonts' 'noto-sans-kr-thin-fonts' 'noto-sans-lao-fonts' 'noto-sans-lao-ui-fonts' 'noto-sans-lepcha-fonts' 'noto-sans-limbu-fonts' 'noto-sans-linearb-fonts' 'noto-sans-lisu-fonts' 'noto-sans-lycian-fonts' 'noto-sans-lydian-fonts' 'noto-sans-malayalam-fonts' 'noto-sans-malayalam-ui-fonts' 'noto-sans-mandaic-fonts' 'noto-sans-meeteimayek-fonts' 'noto-sans-mongolian-fonts' 'noto-sans-mono-fonts' 'noto-sans-myanmar-fonts' 'noto-sans-myanmar-ui-fonts' 'noto-sans-newtailue-fonts' 'noto-sans-nko-fonts' 'noto-sans-ogham-fonts' 'noto-sans-olchiki-fonts' 'noto-sans-olditalic-fonts' 'noto-sans-oldpersian-fonts' 'noto-sans-oldsoutharabian-fonts' 'noto-sans-oldturkic-fonts' 'noto-sans-oriya-fonts' 'noto-sans-oriya-ui-fonts' 'noto-sans-osage-fonts' 'noto-sans-osmanya-fonts' 'noto-sans-phagspa-fonts' 'noto-sans-phoenician-fonts' 'noto-sans-rejang-fonts' 'noto-sans-runic-fonts' 'noto-sans-samaritan-fonts' 'noto-sans-saurashtra-fonts' 'noto-sans-sc-black-fonts' 'noto-sans-sc-bold-fonts' 'noto-sans-sc-demilight-fonts' 'noto-sans-sc-fonts' 'noto-sans-sc-fonts-full' 'noto-sans-sc-light-fonts' 'noto-sans-sc-medium-fonts' 'noto-sans-sc-mono-fonts' 'noto-sans-sc-regular-fonts' 'noto-sans-sc-thin-fonts' 'noto-sans-shavian-fonts' 'noto-sans-sinhala-fonts' 'noto-sans-sinhala-ui-fonts' 'noto-sans-sundanese-fonts' 'noto-sans-sylotinagri-fonts' 'noto-sans-symbols-fonts' 'noto-sans-symbols2-fonts' 'noto-sans-syriaceastern-fonts' 'noto-sans-syriacestrangela-fonts' 'noto-sans-syriacwestern-fonts' 'noto-sans-tagalog-fonts' 'noto-sans-tagbanwa-fonts' 'noto-sans-taile-fonts' 'noto-sans-taitham-fonts' 'noto-sans-taiviet-fonts' 'noto-sans-tamil-fonts' 'noto-sans-tamil-ui-fonts' 'noto-sans-tc-black-fonts' 'noto-sans-tc-bold-fonts' 'noto-sans-tc-demilight-fonts' 'noto-sans-tc-fonts' 'noto-sans-tc-fonts-full' 'noto-sans-tc-light-fonts' 'noto-sans-tc-medium-fonts' 'noto-sans-tc-mono-fonts' 'noto-sans-tc-regular-fonts' 'noto-sans-tc-thin-fonts' 'noto-sans-telugu-fonts' 'noto-sans-telugu-ui-fonts' 'noto-sans-thaana-fonts' 'noto-sans-thai-fonts' 'noto-sans-thai-ui-fonts' 'noto-sans-tibetan-fonts' 'noto-sans-tifinagh-fonts' 'noto-sans-ugaritic-fonts' 'noto-sans-vai-fonts' 'noto-sans-yi-fonts' 'noto-serif-armenian-fonts' 'noto-serif-bengali-fonts' 'noto-serif-devanagari-fonts' 'noto-serif-display-fonts' 'noto-serif-ethiopic-fonts' 'noto-serif-fonts' 'noto-serif-georgian-fonts' 'noto-serif-gujarati-fonts' 'noto-serif-hebrew-fonts' 'noto-serif-jp-black-fonts' 'noto-serif-jp-bold-fonts' 'noto-serif-jp-extralight-fonts' 'noto-serif-jp-fonts' 'noto-serif-jp-fonts-full' 'noto-serif-jp-light-fonts' 'noto-serif-jp-medium-fonts' 'noto-serif-jp-regular-fonts' 'noto-serif-jp-semibold-fonts' 'noto-serif-kannada-fonts' 'noto-serif-khmer-fonts' 'noto-serif-kr-black-fonts' 'noto-serif-kr-bold-fonts' 'noto-serif-kr-extralight-fonts' 'noto-serif-kr-fonts' 'noto-serif-kr-fonts-full' 'noto-serif-kr-light-fonts' 'noto-serif-kr-medium-fonts' 'noto-serif-kr-regular-fonts' 'noto-serif-kr-semibold-fonts' 'noto-serif-lao-fonts' 'noto-serif-malayalam-fonts' 'noto-serif-myanmar-fonts' 'noto-serif-sc-black-fonts' 'noto-serif-sc-bold-fonts' 'noto-serif-sc-extralight-fonts' 'noto-serif-sc-fonts' 'noto-serif-sc-fonts-full' 'noto-serif-sc-light-fonts' 'noto-serif-sc-medium-fonts' 'noto-serif-sc-regular-fonts' 'noto-serif-sc-semibold-fonts' 'noto-serif-sinhala-fonts' 'noto-serif-tamil-fonts' 'noto-serif-tc-black-fonts' 'noto-serif-tc-bold-fonts' 'noto-serif-tc-extralight-fonts' 'noto-serif-tc-fonts' 'noto-serif-tc-fonts-full' 'noto-serif-tc-light-fonts' 'noto-serif-tc-medium-fonts' 'noto-serif-tc-regular-fonts' 'noto-serif-tc-semibold-fonts' 'noto-serif-telugu-fonts' 'noto-serif-thai-fonts' 'novdoc' 'novnc' 'novprog' 'novprog-lang' 'nping' 'npkg' 'npm10' 'npm12' 'npm8' 'npth-devel' 'nqp' 'nrpe' 'nrpe-doc' 'nscd' 'nsd' 'nsjail' 'nsnake' 'nss-mdns' 'nss-mdns-32bit' 'nss-myhostname' 'nss-myhostname-32bit' 'nss-mymachines' 'nss-mymachines-32bit' 'nss-pam-ldapd' 'nss-pam-ldapd-32bit' 'nss-resolve' 'nss-shared-helper-devel' 'nss-systemd' 'nss_ldap' 'nss_ldap-32bit' 'nss_wrapper' 'ntfs-3g' 'ntfsprogs' 'ntfsprogs-extra' 'ntl-devel' 'ntl-doc' 'ntp' 'ntp-doc' 'ntp2chrony' 'ntpsec' 'ntpsec-utils' 'nudoku' 'nudoku-lang' 'nulloy' 'nulloy-gstreamer' 'nulloy-phonon' 'nulloy-taglib' 'nulloy-vlc' 'numactl' 'numad' 'numatop' 'numlockx' 'nunit' 'nunit-devel' 'nuntius' 'nuntius-lang' 'nuosu-fonts' 'nuoveXT2-icon-theme' 'nut' 'nut-cgi' 'nut-devel' 'nut-drivers-net' 'nvdock' 'nvidia-computeG04' 'nvidia-computeG05' 'nvidia-gfxG04-kmp-default' 'nvidia-gfxG04-kmp-pae' 'nvidia-gfxG05-kmp-default' 'nvidia-glG04' 'nvidia-glG05' 'nvidia-texture-tools' 'nvme-cli' 'nvme-cli-regress-script' 'nvmetcli' 'nvptx-tools' 'nxtvepg' 'o2locktop' 'o2scl-devel' 'o2scl-doc' 'oaml-devel' 'oath-toolkit' 'oath-toolkit-xml' 'obantoo' 'obby' 'obby-devel' 'obby-lang' 'obconf' 'obconf-qt' 'obconf-qt-lang' 'obex-data-server' 'obexd' 'obexd-client' 'obexd-server' 'obexfs' 'obexftp' 'obexftp-devel' 'objectweb-anttask' 'objectweb-asm' 'objectweb-asm-javadoc' 'objectweb-pom' 'objenesis' 'objenesis-javadoc' 'obs-service-appimage' 'obs-service-download_files' 'obs-service-download_url' 'obs-service-extract_file' 'obs-service-format_spec_file' 'obs-service-kiwi_label_helper' 'obs-service-kiwi_metainfo_helper' 'obs-service-obs_scm' 'obs-service-obs_scm-common' 'obs-service-product_converter' 'obs-service-recompress' 'obs-service-refresh_patches' 'obs-service-replace_using_package_version' 'obs-service-rust2rpm' 'obs-service-set_version' 'obs-service-snapcraft' 'obs-service-source_validator' 'obs-service-tar' 'obs-service-tar_scm' 'obs-service-verify_file' 'obs-studio' 'obs-studio' 'obs-studio-debuginfo' 'obs-studio-debugsource' 'obs-studio-devel' 'obs-v4l2sink' 'obs-v4l2sink' 'obs-v4l2sink-debuginfo' 'obs-v4l2sink-debugsource' 'ocaml' 'ocaml-benchmark' 'ocaml-benchmark-devel' 'ocaml-brlapi' 'ocaml-calendar' 'ocaml-calendar-devel' 'ocaml-camlp4' 'ocaml-camlp4-devel' 'ocaml-camlp5' 'ocaml-camlp5-devel' 'ocaml-camomile' 'ocaml-camomile-data' 'ocaml-camomile-devel' 'ocaml-cmdliner' 'ocaml-cmdliner-devel' 'ocaml-compiler-libs' 'ocaml-compiler-libs-devel' 'ocaml-cppo' 'ocaml-cppo-devel' 'ocaml-csv' 'ocaml-csv-devel' 'ocaml-cudf' 'ocaml-cudf-devel' 'ocaml-curses' 'ocaml-curses-devel' 'ocaml-dose' 'ocaml-dose-devel' 'ocaml-dune' 'ocaml-easy-format' 'ocaml-easy-format-devel' 'ocaml-emacs' 'ocaml-extlib' 'ocaml-extlib-devel' 'ocaml-facile' 'ocaml-facile-devel' 'ocaml-fileutils' 'ocaml-fileutils-devel' 'ocaml-findlib' 'ocaml-findlib-camlp4' 'ocaml-findlib-devel' 'ocaml-gen' 'ocaml-gen-devel' 'ocaml-gettext' 'ocaml-gettext-camomile' 'ocaml-gettext-camomile-devel' 'ocaml-gettext-devel' 'ocaml-gettext-stub' 'ocaml-gettext-stub-devel' 'ocaml-hivex' 'ocaml-hivex-devel' 'ocaml-jsonm' 'ocaml-jsonm-devel' 'ocaml-lablgl' 'ocaml-lablgl-devel' 'ocaml-lablgtk2' 'ocaml-lablgtk2-devel' 'ocaml-labltk' 'ocaml-labltk-devel' 'ocaml-libguestfs' 'ocaml-libguestfs-devel' 'ocaml-libvirt' 'ocaml-libvirt-devel' 'ocaml-mccs' 'ocaml-mccs-devel' 'ocaml-menhir' 'ocaml-menhir-devel' 'ocaml-migrate-parsetree' 'ocaml-migrate-parsetree-devel' 'ocaml-oasis' 'ocaml-oasis-devel' 'ocaml-obuild' 'ocaml-ocamlbuild' 'ocaml-ocamlbuild-devel' 'ocaml-ocamldoc' 'ocaml-ocamlgraph' 'ocaml-ocamlgraph-devel' 'ocaml-odn' 'ocaml-odn-devel' 'ocaml-ounit' 'ocaml-ounit-devel' 'ocaml-parmap' 'ocaml-parmap-devel' 'ocaml-pcre' 'ocaml-pcre-devel' 'ocaml-ppx_derivers' 'ocaml-ppx_derivers-devel' 'ocaml-ppx_tools_versioned' 'ocaml-ppx_tools_versioned-devel' 'ocaml-ptmap' 'ocaml-ptmap-devel' 'ocaml-qcheck' 'ocaml-qcheck-devel' 'ocaml-qtest' 'ocaml-qtest-devel' 'ocaml-re' 'ocaml-re-devel' 'ocaml-result' 'ocaml-result-devel' 'ocaml-rope' 'ocaml-rope-devel' 'ocaml-rpm-macros' 'ocaml-runtime' 'ocaml-sedlex' 'ocaml-sedlex-devel' 'ocaml-sha' 'ocaml-sha-devel' 'ocaml-source' 'ocaml-type-conv' 'ocaml-type-conv-devel' 'ocaml-uutf' 'ocaml-uutf-devel' 'ocaml-x11' 'ocaml-xml-light' 'ocaml-xml-light-devel' 'ocamlify' 'ocamlmod' 'occt' 'occt-DRAWEXE' 'occt-devel' 'occt-devel-doc' 'oce' 'oce-DRAWEXE' 'oce-devel' 'ocfs2-tools' 'ocfs2-tools-devel' 'ocfs2-tools-devel-static' 'ocfs2-tools-o2cb' 'ocl-icd-devel' 'oclock' 'ocp' 'ocp' 'ocp-debuginfo' 'ocp-debugsource' 'ocr-gnu-hpc' 'ocr-gnu-hpc-devel' 'ocr-gnu-hpc-doc' 'ocr-gnu-hpc-examples' 'ocr-gnu-mpich-hpc' 'ocr-gnu-mpich-hpc-devel' 'ocr-gnu-mpich-hpc-doc' 'ocr-gnu-mpich-hpc-examples' 'ocr-gnu-mvapich2-hpc' 'ocr-gnu-mvapich2-hpc-devel' 'ocr-gnu-mvapich2-hpc-doc' 'ocr-gnu-mvapich2-hpc-examples' 'ocr-gnu-openmpi1-hpc' 'ocr-gnu-openmpi1-hpc-devel' 'ocr-gnu-openmpi1-hpc-doc' 'ocr-gnu-openmpi1-hpc-examples' 'ocr-gnu-openmpi2-hpc' 'ocr-gnu-openmpi2-hpc-devel' 'ocr-gnu-openmpi2-hpc-doc' 'ocr-gnu-openmpi2-hpc-examples' 'ocr-gnu-openmpi3-hpc' 'ocr-gnu-openmpi3-hpc-devel' 'ocr-gnu-openmpi3-hpc-doc' 'ocr-gnu-openmpi3-hpc-examples' 'ocr_1_0_1-gnu-hpc' 'ocr_1_0_1-gnu-hpc-devel' 'ocr_1_0_1-gnu-hpc-doc' 'ocr_1_0_1-gnu-hpc-examples' 'ocr_1_0_1-gnu-mpich-hpc' 'ocr_1_0_1-gnu-mpich-hpc-devel' 'ocr_1_0_1-gnu-mpich-hpc-doc' 'ocr_1_0_1-gnu-mpich-hpc-examples' 'ocr_1_0_1-gnu-mvapich2-hpc' 'ocr_1_0_1-gnu-mvapich2-hpc-devel' 'ocr_1_0_1-gnu-mvapich2-hpc-doc' 'ocr_1_0_1-gnu-mvapich2-hpc-examples' 'ocr_1_0_1-gnu-openmpi1-hpc' 'ocr_1_0_1-gnu-openmpi1-hpc-devel' 'ocr_1_0_1-gnu-openmpi1-hpc-doc' 'ocr_1_0_1-gnu-openmpi1-hpc-examples' 'ocr_1_0_1-gnu-openmpi2-hpc' 'ocr_1_0_1-gnu-openmpi2-hpc-devel' 'ocr_1_0_1-gnu-openmpi2-hpc-doc' 'ocr_1_0_1-gnu-openmpi2-hpc-examples' 'ocr_1_0_1-gnu-openmpi3-hpc' 'ocr_1_0_1-gnu-openmpi3-hpc-devel' 'ocr_1_0_1-gnu-openmpi3-hpc-doc' 'ocr_1_0_1-gnu-openmpi3-hpc-examples' 'ocrad' 'ocrad-devel' 'ocserv' 'octave' 'octave-CSXCAD' 'octave-cli' 'octave-devel' 'octave-doc' 'octave-forge-bim' 'octave-forge-cgi' 'octave-forge-communications' 'octave-forge-control' 'octave-forge-data-smoothing' 'octave-forge-database' 'octave-forge-dataframe' 'octave-forge-divand' 'octave-forge-doctest' 'octave-forge-econometrics' 'octave-forge-financial' 'octave-forge-fits' 'octave-forge-fpl' 'octave-forge-fuzzy-logic-toolkit' 'octave-forge-ga' 'octave-forge-general' 'octave-forge-generate_html' 'octave-forge-geometry' 'octave-forge-gsl' 'octave-forge-image' 'octave-forge-image-acquisition' 'octave-forge-instrument-control' 'octave-forge-interval' 'octave-forge-io' 'octave-forge-level-set' 'octave-forge-linear-algebra' 'octave-forge-lssa' 'octave-forge-ltfat' 'octave-forge-mapping' 'octave-forge-mechanics' 'octave-forge-miscellaneous' 'octave-forge-msh' 'octave-forge-mvn' 'octave-forge-nan' 'octave-forge-ncarray' 'octave-forge-netcdf' 'octave-forge-nurbs' 'octave-forge-octclip' 'octave-forge-optics' 'octave-forge-optim' 'octave-forge-parallel' 'octave-forge-quaternion' 'octave-forge-queueing' 'octave-forge-secs1d' 'octave-forge-secs2d' 'octave-forge-secs3d' 'octave-forge-signal' 'octave-forge-sockets' 'octave-forge-specfun' 'octave-forge-splines' 'octave-forge-statistics' 'octave-forge-stk' 'octave-forge-strings' 'octave-forge-struct' 'octave-forge-symbolic' 'octave-forge-tisean' 'octave-forge-tsa' 'octave-forge-vrml' 'octave-nlopt_optimize' 'octave-openEMS' 'ode-devel' 'odp-devel' 'odp-libs' 'odt2txt' 'odvr' 'odvr' 'odvr-debuginfo' 'odvr-debugsource' 'office' 'offlineimap' 'offlineimap-htmldoc' 'ofl' 'ofono' 'ofono-devel' 'ofono-tests' 'oggfwd' 'oggfwd' 'oggfwd-debuginfo' 'oggvideotools' 'oggvideotools' 'oggvideotools-debuginfo' 'oggvideotools-debugsource' 'oggz-tools' 'ogmrip' 'ogmrip' 'ogmrip-ac3' 'ogmrip-ac3' 'ogmrip-ac3-debuginfo' 'ogmrip-ac3-debugsource' 'ogmrip-ac3-lang' 'ogmrip-debuginfo' 'ogmrip-debugsource' 'ogmrip-dirac' 'ogmrip-dirac' 'ogmrip-dirac-debuginfo' 'ogmrip-dirac-debugsource' 'ogmrip-dirac-lang' 'ogmrip-flac' 'ogmrip-flac' 'ogmrip-flac-debuginfo' 'ogmrip-flac-debugsource' 'ogmrip-lang' 'ogmrip-mpeg' 'ogmrip-mpeg' 'ogmrip-mpeg-debuginfo' 'ogmrip-mpeg-debugsource' 'ogmrip-nero-aac' 'ogmrip-nero-aac' 'ogmrip-nero-aac-lang' 'ogmrip-oggz' 'ogmrip-oggz' 'ogmrip-oggz-debuginfo' 'ogmrip-oggz-debugsource' 'ogmrip-oggz-lang' 'ogmrip-profiles' 'ogmrip-profiles' 'ogmrip-video-copy' 'ogmrip-video-copy' 'ogmrip-video-copy-debuginfo' 'ogmrip-video-copy-debugsource' 'ogmtools' 'ogre-demos' 'ogre-demos-devel' 'ogre-docs' 'ogre-tools' 'ohpc' 'oidentd' 'okteta' 'okteta-data' 'okteta-devel' 'okteta-lang' 'okteta-part' 'okteta-part-lang' 'okular' 'okular-devel' 'okular-lang' 'okular-spectre' 'omnisharp-server' 'omping' 'onboard' 'onboard-data' 'onboard-lang' 'oneko' 'oniguruma-devel' 'onscripter' 'onscripter' 'onscripter-debuginfo' 'onscripter-debugsource' 'ooRexx' 'ooRexx-devel' 'opa-address-resolution' 'opa-address-resolution-devel' 'opa-basic-tools' 'opa-fastfabric' 'opa-fm' 'opa-fmgui' 'opa-snapconfig' 'opae' 'opae-devel' 'opam' 'opam-file-format-devel' 'opam-installer' 'open-iscsi' 'open-iscsi-devel' 'open-isns' 'open-isns-devel' 'open-lldp' 'open-lldp-devel' 'open-vm-tools' 'open-vm-tools-desktop' 'openCryptoki' 'openCryptoki-32bit' 'openCryptoki-64bit' 'openCryptoki-devel' 'openEMS' 'openEMS-devel' 'openEMS-matlab' 'openQA' 'openQA-bootstrap' 'openQA-client' 'openQA-common' 'openQA-doc' 'openQA-local-db' 'openQA-worker' 'openSUSE' 'openSUSE-Addon-NonOss' 'openSUSE-Addon-NonOss-release' 'openSUSE-EULAs' 'openSUSE-MicroOS' 'openSUSE-MicroOS-release' 'openSUSE-MicroOS-release-appliance' 'openSUSE-MicroOS-release-appliance-kubic' 'openSUSE-MicroOS-release-dvd' 'openSUSE-MicroOS-release-kubic-dvd' 'openSUSE-appdata-extra' 'openSUSE-appstream-process' 'openSUSE-build-key' 'openSUSE-release' 'openSUSE-release-dvd' 'openSUSE-release-ftp' 'openSUSE-release-tools' 'openSUSE-release-tools-abichecker' 'openSUSE-release-tools-announcer' 'openSUSE-release-tools-check-source' 'openSUSE-release-tools-devel' 'openSUSE-release-tools-leaper' 'openSUSE-release-tools-maintenance' 'openSUSE-release-tools-metrics' 'openSUSE-release-tools-metrics-access' 'openSUSE-release-tools-obs-operator' 'openSUSE-release-tools-origin-manager' 'openSUSE-release-tools-pkglistgen' 'openSUSE-release-tools-repo-checker' 'openSUSE-release-tools-staging-bot' 'openSUSE-xfce-icon-theme' 'openafs' 'openafs-authlibs' 'openafs-authlibs-devel' 'openafs-client' 'openafs-devel' 'openafs-fuse_client' 'openafs-kernel-source' 'openafs-kmp-default' 'openafs-server' 'openal-soft-data' 'openal-soft-devel' 'openal-soft-devel-32bit' 'openal-soft-makehrtf' 'openal-soft-tools' 'openarena' 'openarena-data' 'openbabel' 'openbabel-devel' 'openblas-devel' 'openblas-devel-headers' 'openblas-pthreads_0_3_7-gnu-hpc-devel-static' 'openblas_0_3_7-gnu-hpc-devel-static' 'openblas_openmp-devel-static' 'openblas_pthreads-devel-static' 'openblas_serial-devel-static' 'openbox' 'openbox-adwaita-ob-theme' 'openbox-devel' 'openbox-gnome' 'openbox-kde' 'openbox-theme-adapta' 'openbox-theme-plata' 'openbsc' 'openbsc-bs11-utils' 'openbsc-bsc-sccplite' 'opencc' 'opencc-data' 'opencc-devel' 'opencensus-proto-source' 'opencl-cpp-headers' 'opencl-headers' 'opencl-headers-1_2' 'openclonk' 'openclonk-data' 'openconnect' 'openconnect-devel' 'openconnect-doc' 'openconnect-lang' 'opencore-amr' 'opencore-amr-debugsource' 'opencsg-devel' 'opencv' 'opencv-devel' 'opencv-doc' 'opencv3' 'opencv3-devel' 'opencv3-doc' 'opendchub' 'opendkim' 'opendkim-devel' 'opendvdproducer' 'opendvdproducer' 'openexr' 'openexr-devel' 'openexr-doc' 'openfortivpn' 'opengl-games-utils' 'opengost-otf-fonts' 'opengost-ttf-fonts' 'openh264' 'openh264-debugsource' 'openh264-devel' 'openhpi' 'openhpi-clients' 'openhpi-daemon' 'openhpi-devel' 'openjade' 'openjade-devel' 'openjpeg' 'openjpeg-devel' 'openjpeg-devel-32bit' 'openjpeg2' 'openjpeg2-devel' 'openkim-models' 'openldap2' 'openldap2-back-meta' 'openldap2-back-perl' 'openldap2-back-sock' 'openldap2-back-sql' 'openldap2-client' 'openldap2-contrib' 'openldap2-devel' 'openldap2-devel-32bit' 'openldap2-devel-static' 'openldap2-doc' 'openldap2-ppolicy-check-password' 'openlibm-devel' 'openlierox' 'openlmi' 'openlmi-account' 'openlmi-fan' 'openlmi-hardware' 'openlmi-journald' 'openlmi-locale' 'openlmi-logicalfile' 'openlmi-networking' 'openlmi-pcp' 'openlmi-pegasus-compat' 'openlmi-powermanagement' 'openlmi-providers' 'openlmi-providers-devel' 'openlmi-providers-doc' 'openlmi-providers-libs' 'openlmi-python-base' 'openlmi-python-providers' 'openlmi-python-test' 'openlmi-service' 'openlmi-software' 'openlmi-sssd' 'openmarkup' 'openmarkup-javadoc' 'openmarkup-manual' 'openmpi' 'openmpi-config' 'openmpi-devel' 'openmpi-libs' 'openmpi-libs-32bit' 'openmpi-testsuite' 'openmpi1-gnu-hpc' 'openmpi1-gnu-hpc-devel' 'openmpi1-gnu-hpc-devel-static' 'openmpi1-gnu-hpc-macros-devel' 'openmpi2' 'openmpi2-config' 'openmpi2-devel' 'openmpi2-docs' 'openmpi2-gnu-hpc' 'openmpi2-gnu-hpc-devel' 'openmpi2-gnu-hpc-devel-static' 'openmpi2-gnu-hpc-docs' 'openmpi2-gnu-hpc-macros-devel' 'openmpi2-libs' 'openmpi2-libs-32bit' 'openmpi2-testsuite' 'openmpi3' 'openmpi3-config' 'openmpi3-devel' 'openmpi3-docs' 'openmpi3-gnu-hpc' 'openmpi3-gnu-hpc-devel' 'openmpi3-gnu-hpc-devel-static' 'openmpi3-gnu-hpc-docs' 'openmpi3-gnu-hpc-macros-devel' 'openmpi3-libs' 'openmpi3-libs-32bit' 'openmpi3-testsuite' 'openmpi_1_10_7-gnu-hpc' 'openmpi_1_10_7-gnu-hpc-devel' 'openmpi_1_10_7-gnu-hpc-devel-static' 'openmpi_1_10_7-gnu-hpc-macros-devel' 'openmpi_1_10_7-gnu-hpc-testsuite' 'openmpi_2_1_6-gnu-hpc' 'openmpi_2_1_6-gnu-hpc-devel' 'openmpi_2_1_6-gnu-hpc-devel-static' 'openmpi_2_1_6-gnu-hpc-docs' 'openmpi_2_1_6-gnu-hpc-macros-devel' 'openmpi_2_1_6-gnu-hpc-testsuite' 'openmpi_3_1_4-gnu-hpc' 'openmpi_3_1_4-gnu-hpc-devel' 'openmpi_3_1_4-gnu-hpc-devel-static' 'openmpi_3_1_4-gnu-hpc-docs' 'openmpi_3_1_4-gnu-hpc-macros-devel' 'openmpi_3_1_4-gnu-hpc-testsuite' 'openmpt123' 'openmw' 'openobex-apps' 'openobex-devel' 'openocd' 'openocd-data' 'openomf' 'openpgm-devel' 'openrct2' 'openrct2-titlesequences' 'openrdate' 'openresolv' 'opensaml-bin' 'opensaml-schemas' 'opensc' 'opensc-32bit' 'openscad' 'openscap' 'openscap-content' 'openscap-devel' 'openscap-docker' 'openscap-utils' 'openshot-qt' 'openslide-doc' 'openslide-tools' 'openslp' 'openslp-devel' 'openslp-server' 'opensm' 'opensm-devel' 'opensm-devel-32bit' 'opensnc' 'opensnc' 'opensnc-debuginfo' 'opensnc-debugsource' 'opensp' 'opensp-devel' 'opensp-doc' 'openspades' 'openspades' 'openspades-debuginfo' 'openspades-debugsource' 'openspecfun-devel' 'openssh' 'openssh-askpass-gnome' 'openssh-cavs' 'openssh-fips' 'openssh-helpers' 'openssl' 'openssl-1_0_0' 'openssl-1_0_0-cavs' 'openssl-1_0_0-doc' 'openssl-1_1' 'openssl-1_1-doc' 'openssl-cbs-devel' 'openssl-engine-libp11' 'openssl-ibmpkcs11' 'openssl_tpm_engine' 'openstack-macros' 'openstack-suse-macros' 'openstack-suse-sudo' 'openstack-tempest' 'openstack-tempest-doc' 'openstack-utils' 'opensuse-welcome' 'opensuse-welcome-lang' 'opentest4j' 'opentest4j-javadoc' 'opentoonz' 'opentracing-cpp-devel' 'opentracing-cpp-source' 'openttd' 'openttd-data' 'openttd-dedicated' 'openttd-opengfx' 'openttd-openmsx' 'openttd-opensfx' 'openucx-tools' 'openvpn' 'openvpn-auth-pam-plugin' 'openvpn-devel' 'openvpn-down-root-plugin' 'openvswitch' 'openvswitch-devel' 'openvswitch-doc' 'openvswitch-ipsec' 'openvswitch-ovn-central' 'openvswitch-ovn-common' 'openvswitch-ovn-docker' 'openvswitch-ovn-host' 'openvswitch-ovn-vtep' 'openvswitch-pki' 'openvswitch-test' 'openvswitch-vtep' 'openwsman-java' 'openwsman-perl' 'openwsman-ruby' 'openwsman-ruby-docs' 'openwsman-server' 'openwsman-server-plugin-ruby' 'openxcom' 'openxcom-doc' 'opera' 'opera-uget-integrator' 'opi' 'opie' 'opie-32bit' 'oping' 'opmsg' 'oprofile' 'oprofile-32bit' 'oprofile-devel' 'optee-client' 'optee-client-devel' 'optipng' 'opus-tools' 'opusfile-devel' 'orage' 'orage-doc' 'orage-lang' 'orbit2' 'orbit2-32bit' 'orbit2-devel' 'orbit2-doc' 'orc' 'orc-doc' 'orca' 'orca-lang' 'orcania-devel' 'origami-icon-theme' 'orion' 'orkhon-fonts' 'oro' 'oro-javadoc' 'ortp' 'ortp-devel' 'os-autoinst' 'os-autoinst-distri-opensuse-deps' 'os-autoinst-openvswitch' 'os-prober' 'os-service-types-doc' 'osc' 'osc-plugin-collab' 'osc-plugin-cycle' 'osc-plugin-install' 'osc-plugin-origin' 'osc-plugin-staging' 'osc-plugin-vdelreq' 'osclib' 'osdlyrics' 'osdlyrics-lang' 'osgi-annotation' 'osgi-annotation-javadoc' 'osgi-compendium' 'osgi-compendium-javadoc' 'osgi-core' 'osgi-core-javadoc' 'osinfo-db' 'osinfo-db-tools' 'osl.imageio1_9' 'osmo-bsc' 'osmo-bsc-abisip-find' 'osmo-bsc-bs11-utils' 'osmo-bsc-ipaccess-utils' 'osmo-bsc-meas-utils' 'osmo-bts' 'osmo-bts-omldummy' 'osmo-bts-virtual' 'osmo-fl2k' 'osmo-fl2k-devel' 'osmo-fl2k-udev' 'osmo-gbproxy' 'osmo-ggsn' 'osmo-gtphub' 'osmo-hlr' 'osmo-iuh' 'osmo-mgw' 'osmo-msc' 'osmo-pcu' 'osmo-sgsn' 'osmo-sip-connector' 'osmo-stp' 'osmo-trx' 'osmo-trx-lms' 'osmo-trx-uhd' 'osmo-trx-usrp1' 'osmosdr' 'osmosdr-devel' 'osslsigncode' 'ossp-uuid' 'oto' 'otrs' 'otrs-doc' 'otrs-itsm' 'otter-browser' 'ovirt-guest-agent-common' 'ovmf' 'ovmf-tools' 'owasp-modsecurity-crs' 'owasp-modsecurity-crs-base_rules' 'owasp-modsecurity-crs-experimental_rules' 'owasp-modsecurity-crs-optional_rules' 'owasp-modsecurity-crs-slr_rules' 'owncloud-client' 'owncloud-client-caja' 'owncloud-client-dolphin' 'owncloud-client-l10n' 'owncloud-client-nautilus' 'owncloud-client-nemo' 'oxygen4-cursors' 'oxygen5' 'oxygen5-cursors' 'oxygen5-decoration' 'oxygen5-icon-theme' 'oxygen5-icon-theme-large' 'oxygen5-icon-theme-scalable' 'oxygen5-lang' 'oxygen5-sounds' 'oxygen5-style' 'oxygen5-style-32bit' 'oyranos' 'oyranos-monitor' 'oyranos-profile-graph' 'oyranos-qcmsevents' 'oyranos-ui-fltk' 'p0f' 'p11-kit' 'p11-kit-32bit' 'p11-kit-devel' 'p11-kit-nss-trust' 'p11-kit-nss-trust-32bit' 'p11-kit-server' 'p11-kit-tools' 'p7zip' 'p7zip-doc' 'p7zip-full' 'p8-platform-devel' 'pacemaker' 'pacemaker-cli' 'pacemaker-cts' 'pacemaker-remote' 'packETH' 'package-translations' 'package-update-indicator' 'package-update-indicator-lang' 'packit' 'pacpl' 'pacpl' 'paexec' 'paexec-examples' 'pagein' 'pagemon' 'pagetools' 'paglinawan-quicksand-fonts' 'pagul-fonts' 'pagure' 'pagure-ci' 'pagure-ev' 'pagure-loadjson' 'pagure-logcom' 'pagure-milters' 'pagure-mirror' 'pagure-theme-chameleon' 'pagure-theme-default-openSUSE' 'pagure-theme-default-upstream' 'pagure-theme-pagureio' 'pagure-theme-srcfpo' 'pagure-theme-upstream' 'pagure-webhook' 'palapeli' 'palapeli-data' 'palapeli-devel' 'palapeli-lang' 'palaura' 'palette' 'palette-lang' 'palm-db-tools' 'pam' 'pam-32bit' 'pam-config' 'pam-devel' 'pam-devel-32bit' 'pam-doc' 'pam-python' 'pam_apparmor' 'pam_apparmor-32bit' 'pam_cap' 'pam_cap-32bit' 'pam_ccreds' 'pam_ccreds-32bit' 'pam_cgfs' 'pam_chroot' 'pam_chroot-32bit' 'pam_cifscreds' 'pam_csync' 'pam_csync-32bit' 'pam_dbus' 'pam_krb5' 'pam_krb5-32bit' 'pam_kwallet' 'pam_kwallet-32bit' 'pam_kwallet-common' 'pam_mktemp' 'pam_mktemp-32bit' 'pam_mount' 'pam_mount-32bit' 'pam_oath' 'pam_p11' 'pam_p11-32bit' 'pam_passwdqc' 'pam_passwdqc-32bit' 'pam_pkcs11' 'pam_pkcs11-32bit' 'pam_pkcs11-devel-doc' 'pam_pwquality' 'pam_radius' 'pam_radius-32bit' 'pam_script' 'pam_snapper' 'pam_ssh' 'pam_ssh-32bit' 'pam_u2f' 'pam_userpass' 'pam_userpass-32bit' 'pam_wrapper' 'pam_yubico' 'pamix' 'pamixer' 'pan' 'pan-lang' 'pandoc' 'pandoc-pdf' 'pango-devel' 'pango-devel-32bit' 'pango-tools' 'pangomm-devel' 'pangomm-doc' 'pangomm1_4-devel' 'pangomm1_4-doc' 'pangox-compat' 'pangox-devel' 'panini' 'pantheon-wallpapers-branding-upstream' 'paper-icon-theme' 'paperclips' 'paperclips-javadoc' 'paperkey' 'paperwork' 'papi' 'papi-devel' 'papi-devel-32bit' 'papi-devel-static' 'papi-hpc' 'papi-hpc-devel' 'papi_5_7_0-hpc' 'papi_5_7_0-hpc-devel' 'papi_5_7_0-hpc-devel-static' 'papirus-icon-theme' 'paprefs' 'paprefs-lang' 'paps' 'par' 'par2cmdline' 'parallel-netcdf-devel-data' 'parallel-netcdf-openmpi' 'parallel-netcdf-openmpi-devel' 'parallel-netcdf-openmpi-devel-static' 'parallel-printer-support' 'paratype-pt-mono-fonts' 'paratype-pt-sans-fonts' 'paratype-pt-serif-fonts' 'paraview' 'paraview-devel' 'paraviewdata' 'parboiled' 'parboiled-javadoc' 'parboiled-scala' 'parcellite' 'pari-devel' 'pari-elldata' 'pari-galdata' 'pari-galpol' 'pari-gp' 'pari-nftables' 'pari-seadata' 'parkverbot' 'parlatype' 'parlatype-lang' 'parley' 'parley-lang' 'parole' 'parole-devel' 'parole-lang' 'parpack-openmpi' 'parpack-openmpi-devel' 'parpack-openmpi-devel-32bit' 'partclone' 'partclone-lang' 'parted' 'parted-devel' 'parted-lang' 'parti' 'partitionmanager' 'partitionmanager-lang' 'parzip' 'pass-otp' 'passwdqc' 'passwdqc-devel' 'password-store' 'password-store-dmenu' 'pasystray' 'patch' 'patch2mail' 'patchelf' 'patchutils' 'patool' 'patool-bash-completion' 'patterns-base-32bit' 'patterns-base-apparmor' 'patterns-base-apparmor-32bit' 'patterns-base-apparmor_opt' 'patterns-base-base' 'patterns-base-base-32bit' 'patterns-base-basesystem' 'patterns-base-basic_desktop' 'patterns-base-console' 'patterns-base-documentation' 'patterns-base-enhanced_base' 'patterns-base-enhanced_base-32bit' 'patterns-base-enhanced_base_opt' 'patterns-base-minimal_base' 'patterns-base-minimal_base-32bit' 'patterns-base-sw_management' 'patterns-base-sw_management-32bit' 'patterns-base-transactional_base' 'patterns-base-update_test' 'patterns-base-x11' 'patterns-base-x11-32bit' 'patterns-base-x11_enhanced' 'patterns-base-x11_enhanced-32bit' 'patterns-base-x11_opt' 'patterns-ceph-containers-ceph_base' 'patterns-containers-container_runtime' 'patterns-containers-container_runtime_kubernetes' 'patterns-containers-kubeadm' 'patterns-containers-kubernetes_utilities' 'patterns-containers-kubic_admin' 'patterns-containers-kubic_loadbalancer' 'patterns-containers-kubic_worker' 'patterns-desktop-books' 'patterns-desktop-imaging' 'patterns-desktop-imaging_opt' 'patterns-desktop-laptop' 'patterns-desktop-multimedia' 'patterns-desktop-multimedia_opt' 'patterns-desktop-technical_writing' 'patterns-devel-C-C++-devel_C_C++' 'patterns-devel-base-devel_basis' 'patterns-devel-base-devel_basis-32bit' 'patterns-devel-base-devel_kernel' 'patterns-devel-base-devel_kernel-32bit' 'patterns-devel-base-devel_rpm_build' 'patterns-devel-base-devel_web' 'patterns-devel-java-devel_java' 'patterns-devel-mono-devel_mono' 'patterns-devel-osc-devel_osc_build' 'patterns-devel-perl-devel_perl' 'patterns-devel-python-devel_python3' 'patterns-devel-ruby-devel_ruby' 'patterns-devel-tcl-devel_tcl' 'patterns-enlightenment-enlightenment' 'patterns-fonts-fonts' 'patterns-fonts-fonts_opt' 'patterns-games-games' 'patterns-gnome-devel_gnome' 'patterns-gnome-gnome' 'patterns-gnome-gnome_basic' 'patterns-gnome-gnome_basis' 'patterns-gnome-gnome_basis_opt' 'patterns-gnome-gnome_games' 'patterns-gnome-gnome_ide' 'patterns-gnome-gnome_imaging' 'patterns-gnome-gnome_internet' 'patterns-gnome-gnome_multimedia' 'patterns-gnome-gnome_office' 'patterns-gnome-gnome_utilities' 'patterns-gnome-gnome_x11' 'patterns-gnome-gnome_yast' 'patterns-gnome-sw_management_gnome' 'patterns-hpc-compute_node' 'patterns-hpc-development_node' 'patterns-hpc-libraries' 'patterns-hpc-workload_server' 'patterns-kde-devel_kde_frameworks' 'patterns-kde-devel_qt5' 'patterns-kde-kde' 'patterns-kde-kde_edutainment' 'patterns-kde-kde_games' 'patterns-kde-kde_ide' 'patterns-kde-kde_imaging' 'patterns-kde-kde_internet' 'patterns-kde-kde_multimedia' 'patterns-kde-kde_office' 'patterns-kde-kde_pim' 'patterns-kde-kde_plasma' 'patterns-kde-kde_telepathy' 'patterns-kde-kde_utilities' 'patterns-kde-kde_utilities_opt' 'patterns-kde-kde_yast' 'patterns-leechcraft-leechcraft' 'patterns-leechcraft-leechcraft_browser' 'patterns-leechcraft-leechcraft_media' 'patterns-leechcraft-leechcraft_messenger' 'patterns-leechcraft-leechcraft_netutils' 'patterns-leechcraft-leechcraft_office' 'patterns-leechcraft-leechcraft_utilities' 'patterns-lxde-lxde' 'patterns-lxde-lxde_laptop' 'patterns-lxde-lxde_office' 'patterns-lxqt-lxqt' 'patterns-mate-mate' 'patterns-mate-mate_admin' 'patterns-mate-mate_basis' 'patterns-mate-mate_internet' 'patterns-mate-mate_laptop' 'patterns-mate-mate_office' 'patterns-mate-mate_office_opt' 'patterns-mate-mate_utilities' 'patterns-media-rest_cd_core' 'patterns-media-rest_cd_gnome' 'patterns-media-rest_cd_kde' 'patterns-media-rest_cd_x11' 'patterns-media-rest_core_dvd' 'patterns-media-rest_dvd' 'patterns-microos-alt_onlyDVD' 'patterns-microos-apparmor' 'patterns-microos-base' 'patterns-microos-basesystem' 'patterns-microos-cloud' 'patterns-microos-defaults' 'patterns-microos-hardware' 'patterns-microos-ima_evm' 'patterns-microos-onlyDVD' 'patterns-microos-selinux' 'patterns-microos-sssd_ldap' 'patterns-network-network_admin' 'patterns-non_oss' 'patterns-non_oss_opt' 'patterns-office-office' 'patterns-rpm-macros' 'patterns-server-dhcp_dns_server' 'patterns-server-dhcp_dns_server-32bit' 'patterns-server-directory_server' 'patterns-server-directory_server-32bit' 'patterns-server-file_server' 'patterns-server-file_server-32bit' 'patterns-server-gateway_server' 'patterns-server-gateway_server-32bit' 'patterns-server-kvm_server' 'patterns-server-kvm_tools' 'patterns-server-lamp_server' 'patterns-server-lamp_server-32bit' 'patterns-server-mail_server' 'patterns-server-mail_server-32bit' 'patterns-server-printing' 'patterns-server-printing-32bit' 'patterns-server-xen_server' 'patterns-server-xen_tools' 'patterns-xfce-xfce' 'patterns-xfce-xfce_basis' 'patterns-xfce-xfce_laptop' 'patterns-xfce-xfce_office' 'patterns-yast-devel_yast' 'patterns-yast-x11_yast' 'patterns-yast-yast2_basis' 'patterns-yast-yast2_install_wf' 'pavucontrol' 'pavucontrol-lang' 'pavucontrol-qt' 'pavucontrol-qt-lang' 'pavumeter' 'pax-utils' 'pbm2l7k' 'pbuilder' 'pbzip2' 'pcapdump' 'pcapinfo' 'pcaudiolib-devel' 'pcb' 'pcb-doc' 'pcc' 'pcfclock' 'pcfclock-kmp-default' 'pcfclock-kmp-pae' 'pciutils' 'pciutils-devel' 'pciutils-devel-32bit' 'pcm' 'pcmanfm' 'pcmanfm-devel' 'pcmanfm-lang' 'pcmanfm-qt' 'pcmanfm-qt-lang' 'pcmanx-gtk2' 'pcmciautils' 'pcp' 'pcp-conf' 'pcp-devel' 'pcp-doc' 'pcp-export-pcp2elasticsearch' 'pcp-export-pcp2graphite' 'pcp-export-pcp2influxdb' 'pcp-export-pcp2json' 'pcp-export-pcp2spark' 'pcp-export-pcp2xml' 'pcp-export-pcp2zabbix' 'pcp-export-zabbix-agent' 'pcp-gui' 'pcp-import-collectl2pcp' 'pcp-import-ganglia2pcp' 'pcp-import-iostat2pcp' 'pcp-import-mrtg2pcp' 'pcp-import-sar2pcp' 'pcp-manager' 'pcp-pmda-activemq' 'pcp-pmda-apache' 'pcp-pmda-bash' 'pcp-pmda-bind2' 'pcp-pmda-bonding' 'pcp-pmda-cifs' 'pcp-pmda-cisco' 'pcp-pmda-dbping' 'pcp-pmda-dm' 'pcp-pmda-docker' 'pcp-pmda-ds389' 'pcp-pmda-ds389log' 'pcp-pmda-elasticsearch' 'pcp-pmda-gfs2' 'pcp-pmda-gluster' 'pcp-pmda-gpfs' 'pcp-pmda-gpsd' 'pcp-pmda-haproxy' 'pcp-pmda-infiniband' 'pcp-pmda-json' 'pcp-pmda-lmsensors' 'pcp-pmda-logger' 'pcp-pmda-lustre' 'pcp-pmda-lustrecomm' 'pcp-pmda-mailq' 'pcp-pmda-memcache' 'pcp-pmda-mic' 'pcp-pmda-mounts' 'pcp-pmda-mysql' 'pcp-pmda-named' 'pcp-pmda-netfilter' 'pcp-pmda-news' 'pcp-pmda-nfsclient' 'pcp-pmda-nginx' 'pcp-pmda-nutcracker' 'pcp-pmda-nvidia-gpu' 'pcp-pmda-oracle' 'pcp-pmda-pdns' 'pcp-pmda-perfevent' 'pcp-pmda-postfix' 'pcp-pmda-prometheus' 'pcp-pmda-redis' 'pcp-pmda-roomtemp' 'pcp-pmda-rpm' 'pcp-pmda-rsyslog' 'pcp-pmda-samba' 'pcp-pmda-sendmail' 'pcp-pmda-shping' 'pcp-pmda-slurm' 'pcp-pmda-smart' 'pcp-pmda-snmp' 'pcp-pmda-summary' 'pcp-pmda-systemd' 'pcp-pmda-trace' 'pcp-pmda-unbound' 'pcp-pmda-vmware' 'pcp-pmda-weblog' 'pcp-pmda-zimbra' 'pcp-pmda-zswap' 'pcp-system-tools' 'pcp-testsuite' 'pcp-webapi' 'pcp-zeroconf' 'pcre-devel' 'pcre-devel-static' 'pcre-doc' 'pcre-tools' 'pcre2-devel' 'pcre2-devel-static' 'pcre2-doc' 'pcre2-tools' 'pcsc-acr38' 'pcsc-acr38-devel' 'pcsc-acsccid' 'pcsc-asedriveiiie-serial' 'pcsc-asedriveiiie-usb' 'pcsc-asekey' 'pcsc-ccid' 'pcsc-cyberjack' 'pcsc-eco5000' 'pcsc-gempc' 'pcsc-lite' 'pcsc-lite-devel' 'pcsc-reflex60' 'pcsc-tools' 'pcsc-towitoko' 'pcsc-towitoko-devel' 'pcsx2' 'pcsx2' 'pcsx2-32bit' 'pcsx2-32bit-debuginfo' 'pcsx2-debuginfo' 'pcsx2-debugsource' 'pcsxr' 'pcsxr' 'pcsxr-debuginfo' 'pcsxr-debugsource' 'pdf2djvu' 'pdf2djvu-lang' 'pdf2svg' 'pdfgrep' 'pdfmod' 'pdfmod-lang' 'pdftk' 'pdftk' 'pdftk-debuginfo' 'pdftk-debugsource' 'pdftk-qgui' 'pdftk-qgui' 'pdftk-qgui-debuginfo' 'pdi2iso' 'pdi2iso' 'pdi2iso-debuginfo' 'pdns' 'pdns-backend-geoip' 'pdns-backend-godbc' 'pdns-backend-ldap' 'pdns-backend-lua' 'pdns-backend-mydns' 'pdns-backend-mysql' 'pdns-backend-postgresql' 'pdns-backend-remote' 'pdns-backend-sqlite3' 'pdns-common' 'pdns-recursor' 'pdnsd' 'pdnsd-doc' 'pdsh' 'pdsh-dshgroup' 'pdsh-genders' 'pdsh-machines' 'pdsh-netgroup' 'pdsh-slurm' 'peazip' 'peazip-kf5' 'peek' 'peek-lang' 'pegdown' 'pegdown-javadoc' 'pegtl-devel' 'peksystray' 'pen' 'pencil' 'pentaho-libxml' 'pentaho-libxml-javadoc' 'pentaho-reporting-flow-engine' 'pentaho-reporting-flow-engine-javadoc' 'pepper' 'percona-toolkit' 'perf' 'performous' 'performous' 'performous-debuginfo' 'performous-debugsource' 'perftest' 'perl' 'perl-32bit' 'perl-Acme-Damn' 'perl-Algorithm-Annotate' 'perl-Algorithm-C3' 'perl-Algorithm-CheckDigits' 'perl-Algorithm-Combinatorics' 'perl-Algorithm-Diff' 'perl-Alien-SDL' 'perl-Alien-Tidyp' 'perl-Alien-wxWidgets' 'perl-Any-Moose' 'perl-AnyEvent' 'perl-AnyEvent-HTTP' 'perl-AnyEvent-I3' 'perl-Apache-AuthCookie' 'perl-Apache-DBI' 'perl-Apache-Filter' 'perl-Apache-LogFormat-Compiler' 'perl-Apache-Session' 'perl-Apache-SessionX' 'perl-Apache2-AuthCookieDBI' 'perl-App-Ack' 'perl-App-CELL' 'perl-App-CLI' 'perl-App-Cmd' 'perl-App-Dochazka-CLI' 'perl-App-Dochazka-Common' 'perl-App-Dochazka-REST' 'perl-App-Dochazka-WWW' 'perl-App-FatPacker' 'perl-App-MFILE' 'perl-App-MFILE-WWW' 'perl-App-Nopaste' 'perl-App-Rad' 'perl-App-Rad-Plugin-MoreHelp' 'perl-App-cpanminus' 'perl-App-perlbrew' 'perl-AppConfig' 'perl-Archive-Cpio' 'perl-Archive-Extract' 'perl-Archive-Peek' 'perl-Archive-Tar-Wrapper' 'perl-Archive-Zip' 'perl-Array-Unique' 'perl-Audio-FLAC-Header' 'perl-Audio-FLAC-Header' 'perl-Audio-Musepack' 'perl-Audio-Musepack' 'perl-Audio-RPLD' 'perl-Audio-Scan' 'perl-Audio-Scan' 'perl-Audio-Scan-debuginfo' 'perl-Audio-Scan-debugsource' 'perl-Audio-WMA' 'perl-Audio-WMA' 'perl-Authen-DecHpwd' 'perl-Authen-Passphrase' 'perl-Authen-SASL' 'perl-Authen-SASL-Cyrus' 'perl-B-Debug' 'perl-B-Hooks-EndOfScope' 'perl-B-Hooks-OP-Annotation' 'perl-B-Hooks-OP-Check' 'perl-B-Hooks-OP-PPAddr' 'perl-B-Keywords' 'perl-B-Utils' 'perl-BIND-Conf_Parser' 'perl-BSD-Resource' 'perl-Benchmark-Timer' 'perl-BerkeleyDB' 'perl-Bit-Vector' 'perl-Boost-Geometry-Utils' 'perl-Bootloader' 'perl-Bootloader-YAML' 'perl-Browser-Open' 'perl-Business-ISBN' 'perl-Business-ISBN-Data' 'perl-Business-ISMN' 'perl-Business-ISSN' 'perl-CBOR-XS' 'perl-CBOR-XS' 'perl-CBOR-XS-debuginfo' 'perl-CBOR-XS-debugsource' 'perl-CDDB' 'perl-CDDB' 'perl-CDDB_get' 'perl-CGI' 'perl-CGI-Ajax' 'perl-CGI-Application' 'perl-CGI-FastTemplate' 'perl-CGI-FormBuilder' 'perl-CGI-Session' 'perl-CGI-Simple' 'perl-CHI' 'perl-CLASS' 'perl-CPAN-Changes' 'perl-CPAN-DistnameInfo' 'perl-CPAN-Meta-Check' 'perl-CPAN-Meta-Requirements' 'perl-CPAN-Mini' 'perl-CPAN-Perl-Releases' 'perl-CPAN-Uploader' 'perl-CSS-Minifier-XS' 'perl-CSS-Tiny' 'perl-Cache-Cache' 'perl-Cache-LRU' 'perl-Cache-Memcached' 'perl-Cairo' 'perl-Cairo-GObject' 'perl-Calendar-Simple' 'perl-Canary-Stability' 'perl-Capture-Tiny' 'perl-Carp-Always' 'perl-Carp-Assert' 'perl-Carp-Assert-More' 'perl-Carp-Clan' 'perl-Carton' 'perl-Catalyst-Manual' 'perl-Chart' 'perl-Class-Accessor' 'perl-Class-Accessor-Chained' 'perl-Class-Accessor-Grouped' 'perl-Class-Accessor-Lite' 'perl-Class-Adapter' 'perl-Class-Autouse' 'perl-Class-Base' 'perl-Class-C3' 'perl-Class-C3-Adopt-NEXT' 'perl-Class-C3-Componentised' 'perl-Class-C3-XS' 'perl-Class-Container' 'perl-Class-DBI' 'perl-Class-Data-Inheritable' 'perl-Class-Date' 'perl-Class-ErrorHandler' 'perl-Class-Factory-Util' 'perl-Class-ISA' 'perl-Class-Inner' 'perl-Class-Inspector' 'perl-Class-Load' 'perl-Class-Load-XS' 'perl-Class-MakeMethods' 'perl-Class-Method-Modifiers' 'perl-Class-Method-Modifiers-Fast' 'perl-Class-MethodMaker' 'perl-Class-Mix' 'perl-Class-Multimethods' 'perl-Class-ReturnValue' 'perl-Class-Singleton' 'perl-Class-Spiffy' 'perl-Class-Std' 'perl-Class-Tiny' 'perl-Class-Trigger' 'perl-Class-Unload' 'perl-Class-WhiteHole' 'perl-Class-XPath' 'perl-Class-XSAccessor' 'perl-Clone' 'perl-Clone-Choose' 'perl-Clone-PP' 'perl-Code-DRY' 'perl-CommonMark' 'perl-Compress-Bzip2' 'perl-Compress-Raw-Lzma' 'perl-Config-Any' 'perl-Config-Auto' 'perl-Config-AutoConf' 'perl-Config-Crontab' 'perl-Config-General' 'perl-Config-GitLike' 'perl-Config-Grammar' 'perl-Config-INI' 'perl-Config-IniFiles' 'perl-Config-MVP' 'perl-Config-MVP-Reader-INI' 'perl-Config-MySQL' 'perl-Config-Simple' 'perl-Config-Std' 'perl-Config-Tiny' 'perl-Const-Fast' 'perl-Context-Preserve' 'perl-Contextual-Return' 'perl-Convert-ASN1' 'perl-Convert-BER' 'perl-Convert-BinHex' 'perl-Convert-TNEF' 'perl-Convert-UUlib' 'perl-Cookie-Baker' 'perl-Cpanel-JSON-XS' 'perl-Crypt-Blowfish' 'perl-Crypt-CBC' 'perl-Crypt-DES' 'perl-Crypt-DH-GMP' 'perl-Crypt-Eksblowfish' 'perl-Crypt-MySQL' 'perl-Crypt-OpenSSL-Bignum' 'perl-Crypt-OpenSSL-Guess' 'perl-Crypt-OpenSSL-RSA' 'perl-Crypt-OpenSSL-Random' 'perl-Crypt-PasswdMD5' 'perl-Crypt-RC4' 'perl-Crypt-Rijndael' 'perl-Crypt-Rot13' 'perl-Crypt-SSLeay' 'perl-Crypt-SaltedHash' 'perl-Crypt-SmbHash' 'perl-Crypt-Twofish' 'perl-Crypt-Twofish' 'perl-Crypt-Twofish-debuginfo' 'perl-Crypt-Twofish-debugsource' 'perl-Crypt-UnixCrypt_XS' 'perl-CryptX' 'perl-Curses' 'perl-CursesWidgets' 'perl-Cwd-Guard' 'perl-Cyrus-IMAP' 'perl-Cyrus-SIEVE-managesieve' 'perl-DBD-CSV' 'perl-DBD-MariaDB' 'perl-DBD-ODBC' 'perl-DBD-Pg' 'perl-DBD-SQLite' 'perl-DBD-XBase' 'perl-DBD-mysql' 'perl-DBI' 'perl-DBICx-TestDatabase' 'perl-DBIx-Class' 'perl-DBIx-Class-DeploymentHandler' 'perl-DBIx-Class-DynamicDefault' 'perl-DBIx-Class-Fixtures' 'perl-DBIx-Class-InflateColumn-FS' 'perl-DBIx-Class-IntrospectableM2M' 'perl-DBIx-Class-OptimisticLocking' 'perl-DBIx-Class-Schema-Config' 'perl-DBIx-Class-Schema-Loader' 'perl-DBIx-Class-UUIDColumns' 'perl-DBIx-Connector' 'perl-DBIx-ContextualFetch' 'perl-DBIx-Simple' 'perl-DBIx-Transaction' 'perl-DBM-Deep' 'perl-DNS-LDNS' 'perl-Daemon-Generic' 'perl-Data-Clone' 'perl-Data-Compare' 'perl-Data-Dump' 'perl-Data-Dump-Streamer' 'perl-Data-Dumper-Concise' 'perl-Data-Entropy' 'perl-Data-Float' 'perl-Data-Hexify' 'perl-Data-Hierarchy' 'perl-Data-Integer' 'perl-Data-ObjectDriver' 'perl-Data-OptList' 'perl-Data-Page' 'perl-Data-Peek' 'perl-Data-Perl' 'perl-Data-Printer' 'perl-Data-Random' 'perl-Data-Section' 'perl-Data-Section-Simple' 'perl-Data-ShowTable' 'perl-Data-Structure-Util' 'perl-Data-Tumbler' 'perl-Data-Uniqid' 'perl-Data-Util' 'perl-Data-Validate-Domain' 'perl-Data-Validate-IP' 'perl-Data-Visitor' 'perl-Date-Calc' 'perl-Date-Holidays-CZ' 'perl-Date-Manip' 'perl-Date-Simple' 'perl-Date-Tiny' 'perl-DateTime' 'perl-DateTime-Calendar-Julian' 'perl-DateTime-Calendar-Mayan' 'perl-DateTime-Format-Builder' 'perl-DateTime-Format-DateParse' 'perl-DateTime-Format-Flexible' 'perl-DateTime-Format-ISO8601' 'perl-DateTime-Format-Mail' 'perl-DateTime-Format-MySQL' 'perl-DateTime-Format-Natural' 'perl-DateTime-Format-Pg' 'perl-DateTime-Format-SQLite' 'perl-DateTime-Format-Strptime' 'perl-DateTime-Format-W3CDTF' 'perl-DateTime-Locale' 'perl-DateTime-TimeZone' 'perl-DateTime-Tiny' 'perl-Debug-Trace' 'perl-Declare-Constraints-Simple' 'perl-Devel-Caller' 'perl-Devel-CheckBin' 'perl-Devel-CheckCompiler' 'perl-Devel-CheckLib' 'perl-Devel-CheckOS' 'perl-Devel-Confess' 'perl-Devel-CoreStack' 'perl-Devel-Cover' 'perl-Devel-Cover-Report-Codecov' 'perl-Devel-Cycle' 'perl-Devel-Declare' 'perl-Devel-FindPerl' 'perl-Devel-GlobalDestruction' 'perl-Devel-GlobalPhase' 'perl-Devel-Hide' 'perl-Devel-Leak' 'perl-Devel-LexAlias' 'perl-Devel-NYTProf' 'perl-Devel-OverloadInfo' 'perl-Devel-PPPort' 'perl-Devel-PartialDump' 'perl-Devel-PatchPerl' 'perl-Devel-REPL' 'perl-Devel-StackTrace' 'perl-Devel-StackTrace-AsHTML' 'perl-Devel-Symdump' 'perl-Devel-TakeHashArgs' 'perl-Devel-Trace' 'perl-Device-SerialPort' 'perl-Digest-CRC' 'perl-Digest-HMAC' 'perl-Digest-JHash' 'perl-Digest-MD4' 'perl-Digest-MD5' 'perl-Digest-Perl-MD5' 'perl-Digest-SHA1' 'perl-Dist-CheckConflicts' 'perl-Dist-Zilla' 'perl-Dumbbench' 'perl-Email-Abstract' 'perl-Email-Address' 'perl-Email-Address-XS' 'perl-Email-Date-Format' 'perl-Email-Find' 'perl-Email-Find' 'perl-Email-MIME' 'perl-Email-MIME-ContentType' 'perl-Email-MIME-Encodings' 'perl-Email-MessageID' 'perl-Email-Reply' 'perl-Email-Send' 'perl-Email-Sender' 'perl-Email-Simple' 'perl-Email-Valid' 'perl-Encode' 'perl-Encode-Detect' 'perl-Encode-EUCJPASCII' 'perl-Encode-HanExtra' 'perl-Encode-JIS2K' 'perl-Encode-Locale' 'perl-Error' 'perl-Eval-Closure' 'perl-Eval-LineNumbers' 'perl-Event' 'perl-Event-ExecFlow' 'perl-Event-ExecFlow' 'perl-Event-RPC' 'perl-Event-RPC' 'perl-Exception-Base' 'perl-Exception-Class' 'perl-Expect' 'perl-Export-Attrs' 'perl-Exporter-Declare' 'perl-Exporter-Lite' 'perl-Exporter-Tidy' 'perl-Exporter-Tiny' 'perl-ExtUtils-CBuilder' 'perl-ExtUtils-CChecker' 'perl-ExtUtils-Config' 'perl-ExtUtils-CppGuess' 'perl-ExtUtils-Depends' 'perl-ExtUtils-F77' 'perl-ExtUtils-Helpers' 'perl-ExtUtils-InstallPaths' 'perl-ExtUtils-LibBuilder' 'perl-ExtUtils-MakeMaker' 'perl-ExtUtils-MakeMaker-CPANfile' 'perl-ExtUtils-Manifest' 'perl-ExtUtils-PkgConfig' 'perl-ExtUtils-Typemaps-Default' 'perl-ExtUtils-XSpp' 'perl-FastCGI' 'perl-Feed-Find' 'perl-Fennec-Lite' 'perl-File-BaseDir' 'perl-File-Basename-Object' 'perl-File-Comments' 'perl-File-Copy-Recursive' 'perl-File-Copy-Recursive-Reduced' 'perl-File-DesktopEntry' 'perl-File-FcntlLock' 'perl-File-Find-Rule' 'perl-File-Find-Rule-Perl' 'perl-File-Finder' 'perl-File-Flock' 'perl-File-HomeDir' 'perl-File-LibMagic' 'perl-File-Listing' 'perl-File-MMagic' 'perl-File-MimeInfo' 'perl-File-Mork' 'perl-File-Next' 'perl-File-Path' 'perl-File-Path-Tiny' 'perl-File-RandomAccess' 'perl-File-ReadBackwards' 'perl-File-Remove' 'perl-File-Rsync' 'perl-File-ShareDir' 'perl-File-ShareDir-Install' 'perl-File-ShareDir-ProjectDistDir' 'perl-File-Slurp' 'perl-File-Slurp-Tiny' 'perl-File-Slurp-Unicode' 'perl-File-Slurper' 'perl-File-Sync' 'perl-File-Tail' 'perl-File-Temp' 'perl-File-Touch' 'perl-File-Type' 'perl-File-Unpack' 'perl-File-Which' 'perl-File-chdir' 'perl-File-pushd' 'perl-FileHandle-Unget' 'perl-Filesys-Df' 'perl-Filesys-Notify-Simple' 'perl-Filesys-Statvfs' 'perl-Finance-Quote' 'perl-FindBin-Real' 'perl-Font-AFM' 'perl-Font-FreeType' 'perl-Font-TTF' 'perl-FreezeThaw' 'perl-Furl' 'perl-Fuse' 'perl-Future' 'perl-GD' 'perl-GD-Barcode' 'perl-GD-Graph3d' 'perl-GDGraph' 'perl-GDTextUtil' 'perl-GStreamer1' 'perl-Geo-Coordinates-UTM' 'perl-Geography-Countries' 'perl-Getopt-ArgvFile' 'perl-Getopt-Long-Descriptive' 'perl-Getopt-Tabular' 'perl-Git-Version-Compare' 'perl-Glib' 'perl-Glib-Object-Introspection' 'perl-Gnome2' 'perl-Gnome2-Canvas' 'perl-Gnome2-VFS' 'perl-Gnome2-Wnck' 'perl-GnuPG-Interface' 'perl-Graph' 'perl-GraphViz' 'perl-Graphics-ColorUtils' 'perl-GraphicsMagick' 'perl-Gravatar-URL' 'perl-Growl-GNTP' 'perl-Gtk2' 'perl-Gtk2-AppIndicator' 'perl-Gtk2-Ex-FormFactory' 'perl-Gtk2-Ex-FormFactory' 'perl-Gtk2-GladeXML' 'perl-Gtk2-GladeXML' 'perl-Gtk2-GladeXML-debuginfo' 'perl-Gtk2-GladeXML-debugsource' 'perl-Gtk2-ImageView' 'perl-Gtk2-Notify' 'perl-Gtk2-Notify' 'perl-Gtk2-Notify-debuginfo' 'perl-Gtk2-Notify-debugsource' 'perl-Gtk2-TrayIcon' 'perl-Gtk2-TrayIcon' 'perl-Gtk2-TrayIcon-debuginfo' 'perl-Gtk2-TrayIcon-debugsource' 'perl-Gtk2-Unique' 'perl-Gtk3' 'perl-Guard' 'perl-HTML-Clean' 'perl-HTML-Element-Extended' 'perl-HTML-Encoding' 'perl-HTML-FillInForm' 'perl-HTML-Form' 'perl-HTML-FormHandler' 'perl-HTML-Format' 'perl-HTML-FormatText-WithLinks' 'perl-HTML-FromText' 'perl-HTML-FromText' 'perl-HTML-Parser' 'perl-HTML-RewriteAttributes' 'perl-HTML-Scrubber' 'perl-HTML-SimpleParse' 'perl-HTML-Stream' 'perl-HTML-Strip' 'perl-HTML-Strip' 'perl-HTML-Strip-debuginfo' 'perl-HTML-Strip-debugsource' 'perl-HTML-TableExtract' 'perl-HTML-Tagset' 'perl-HTML-Template' 'perl-HTML-Tidy' 'perl-HTML-TokeParser-Simple' 'perl-HTML-Tree' 'perl-HTTP-Body' 'perl-HTTP-Cache-Transparent' 'perl-HTTP-Cache-Transparent' 'perl-HTTP-Cookies' 'perl-HTTP-DAV' 'perl-HTTP-Daemon' 'perl-HTTP-Date' 'perl-HTTP-Headers-ActionPack' 'perl-HTTP-Headers-Fast' 'perl-HTTP-Lite' 'perl-HTTP-Message' 'perl-HTTP-Negotiate' 'perl-HTTP-Parser-XS' 'perl-HTTP-Request-AsCGI' 'perl-HTTP-Server-Simple' 'perl-HTTP-Thin' 'perl-HTTP-Tiny' 'perl-HTTPS-Daemon' 'perl-Hamlib' 'perl-Hash-Merge' 'perl-Hash-Merge-Simple' 'perl-Hash-MoreUtils' 'perl-Hash-MultiValue' 'perl-Hash-Util-FieldHash-Compat' 'perl-Hook-LexWrap' 'perl-IO-All' 'perl-IO-Async' 'perl-IO-CaptureOutput' 'perl-IO-Event' 'perl-IO-HTML' 'perl-IO-Handle-Util' 'perl-IO-Interactive' 'perl-IO-Interface' 'perl-IO-Multiplex' 'perl-IO-Pager' 'perl-IO-Pipely' 'perl-IO-SessionData' 'perl-IO-Socket-INET6' 'perl-IO-Socket-Multicast' 'perl-IO-Socket-PortState' 'perl-IO-Socket-SSL' 'perl-IO-Socket-Timeout' 'perl-IO-String' 'perl-IO-Stty' 'perl-IO-Tee' 'perl-IO-TieCombine' 'perl-IO-Tty' 'perl-IO-stringy' 'perl-IP-Country' 'perl-IPC-Run' 'perl-IPC-Run3' 'perl-IPC-ShareLite' 'perl-IPC-System-Simple' 'perl-IRI' 'perl-Ima-DBI' 'perl-Image-ExifTool' 'perl-Image-Info' 'perl-Image-Sane' 'perl-Image-Size' 'perl-Import-Into' 'perl-Importer' 'perl-Inline' 'perl-Inline-C' 'perl-Inline-C' 'perl-Inline-Python' 'perl-Iterator' 'perl-Iterator-Util' 'perl-JSON' 'perl-JSON-Any' 'perl-JSON-DWIW' 'perl-JSON-MaybeXS' 'perl-JSON-RPC' 'perl-JSON-Validator' 'perl-JSON-XS' 'perl-JavaScript-Minifier-XS' 'perl-LWP-MediaTypes' 'perl-LWP-Online' 'perl-LWP-Protocol-https' 'perl-Lexical-Persistence' 'perl-Lexical-SealRequireHints' 'perl-Lingua-EN-FindNumber' 'perl-Lingua-EN-Inflect' 'perl-Lingua-EN-Inflect-Number' 'perl-Lingua-EN-Inflect-Phrase' 'perl-Lingua-EN-Number-IsOrdinal' 'perl-Lingua-EN-Numbers-Ordinate' 'perl-Lingua-EN-Numbers-Ordinate' 'perl-Lingua-EN-Sentence' 'perl-Lingua-EN-Tagger' 'perl-Lingua-EN-Words2Nums' 'perl-Lingua-PT-Stemmer' 'perl-Lingua-Preferred' 'perl-Lingua-Preferred' 'perl-Lingua-Stem' 'perl-Lingua-Stem-Fr' 'perl-Lingua-Stem-It' 'perl-Lingua-Stem-Ru' 'perl-Lingua-Stem-Snowball' 'perl-Lingua-Stem-Snowball-Da' 'perl-Lingua-Translit' 'perl-Linux-DesktopFiles' 'perl-Linux-Inotify2' 'perl-Linux-Pid' 'perl-List-AllUtils' 'perl-List-MoreUtils' 'perl-List-MoreUtils-XS' 'perl-List-SomeUtils' 'perl-List-SomeUtils-XS' 'perl-List-UtilsBy' 'perl-Locale-Maketext-Gettext' 'perl-Locale-Maketext-Lexicon' 'perl-Locale-Msgfmt' 'perl-Locale-US' 'perl-LockFile-Simple' 'perl-Log-Any' 'perl-Log-Contextual' 'perl-Log-Dispatch' 'perl-Log-Dispatch-Array' 'perl-Log-Dispatch-Config' 'perl-Log-Dispatch-FileRotate' 'perl-Log-Dispatchouli' 'perl-Log-Log4perl' 'perl-Log-Message' 'perl-Log-Message-Simple' 'perl-Log-TraceMessages' 'perl-Log-TraceMessages' 'perl-MCE' 'perl-MIME-Charset' 'perl-MIME-EncWords' 'perl-MIME-Lite' 'perl-MIME-Types' 'perl-MIME-tools' 'perl-MLDBM' 'perl-MLDBM-Sync' 'perl-MP3-Info' 'perl-MP3-Info' 'perl-MP3-Tag' 'perl-MP3-Tag' 'perl-MP4-Info' 'perl-MP4-Info' 'perl-MRO-Compat' 'perl-Mac-PropertyList' 'perl-Mail-DKIM' 'perl-Mail-IMAPClient' 'perl-Mail-Mbox-MessageParser' 'perl-Mail-SPF' 'perl-Mail-SPF-Test' 'perl-Mail-Sender' 'perl-Mail-Sendmail' 'perl-Mail-SpamAssassin' 'perl-Mail-SpamAssassin-Plugin-iXhash2' 'perl-MailTools' 'perl-Mason' 'perl-Math-Base-Convert' 'perl-Math-BigInt' 'perl-Math-BigInt-GMP' 'perl-Math-Calc-Units' 'perl-Math-Clipper' 'perl-Math-ConvexHull' 'perl-Math-ConvexHull-MonotoneChain' 'perl-Math-Geometry-Voronoi' 'perl-Math-Libm' 'perl-Math-PlanePath' 'perl-Math-Random-ISAAC' 'perl-Math-Round' 'perl-Memoize-ExpireLRU' 'perl-Meta-Builder' 'perl-Method-Signatures' 'perl-Method-Signatures-Simple' 'perl-Minion' 'perl-Minion-Backend-SQLite' 'perl-Mixin-Linewise' 'perl-Mo' 'perl-Mock-Config' 'perl-Mock-Quick' 'perl-Modern-Perl' 'perl-Module-Build' 'perl-Module-Build-Deprecated' 'perl-Module-Build-Tiny' 'perl-Module-Build-WithXSpp' 'perl-Module-Build-XSUtil' 'perl-Module-CPANfile' 'perl-Module-Depends' 'perl-Module-Find' 'perl-Module-Implementation' 'perl-Module-Info' 'perl-Module-Install' 'perl-Module-Install-AuthorTests' 'perl-Module-Install-ExtraTests' 'perl-Module-Load-Conditional' 'perl-Module-Metadata' 'perl-Module-Path' 'perl-Module-Pluggable' 'perl-Module-Reader' 'perl-Module-Refresh' 'perl-Module-Runtime' 'perl-Module-Runtime-Conflicts' 'perl-Module-ScanDeps' 'perl-Module-Signature' 'perl-Module-Starter' 'perl-Module-Util' 'perl-Mojo-IOLoop-ReadWriteProcess' 'perl-Mojo-Pg' 'perl-Mojo-RabbitMQ-Client' 'perl-Mojo-Redis' 'perl-Mojo-SQLite' 'perl-Mojolicious' 'perl-Mojolicious-Plugin-AssetPack' 'perl-Mojolicious-Plugin-CHI' 'perl-Mojolicious-Plugin-NYTProf' 'perl-Mojolicious-Plugin-RenderFile' 'perl-Mojolicious-Plugin-Status' 'perl-Monitoring-Plugin' 'perl-Moo' 'perl-MooX-HandlesVia' 'perl-MooX-Types-MooseLike' 'perl-MooX-Types-MooseLike-Numeric' 'perl-MooX-late' 'perl-Moose' 'perl-Moose-Autobox' 'perl-MooseX-Aliases' 'perl-MooseX-App-Cmd' 'perl-MooseX-ArrayRef' 'perl-MooseX-Attribute-ENV' 'perl-MooseX-AttributeHelpers' 'perl-MooseX-AuthorizedMethods' 'perl-MooseX-ClassAttribute' 'perl-MooseX-Clone' 'perl-MooseX-ConfigFromFile' 'perl-MooseX-Daemonize' 'perl-MooseX-Declare' 'perl-MooseX-Getopt' 'perl-MooseX-GlobRef' 'perl-MooseX-Has-Options' 'perl-MooseX-HasDefaults' 'perl-MooseX-InsideOut' 'perl-MooseX-Iterator' 'perl-MooseX-LazyLogDispatch' 'perl-MooseX-LazyRequire' 'perl-MooseX-Log-Log4perl' 'perl-MooseX-LogDispatch' 'perl-MooseX-MarkAsMethods' 'perl-MooseX-Meta-TypeConstraint-ForceCoercion' 'perl-MooseX-Method-Signatures' 'perl-MooseX-MultiInitArg' 'perl-MooseX-NonMoose' 'perl-MooseX-Object-Pluggable' 'perl-MooseX-OneArgNew' 'perl-MooseX-POE' 'perl-MooseX-Param' 'perl-MooseX-Params-Validate' 'perl-MooseX-Role-Cmd' 'perl-MooseX-Role-Parameterized' 'perl-MooseX-Role-TraitConstructor' 'perl-MooseX-Role-WithOverloading' 'perl-MooseX-SemiAffordanceAccessor' 'perl-MooseX-SetOnce' 'perl-MooseX-SimpleConfig' 'perl-MooseX-Singleton' 'perl-MooseX-Storage' 'perl-MooseX-StrictConstructor' 'perl-MooseX-Traits' 'perl-MooseX-TransactionalMethods' 'perl-MooseX-Types' 'perl-MooseX-Types-Common' 'perl-MooseX-Types-DateTime' 'perl-MooseX-Types-LoadableClass' 'perl-MooseX-Types-Path-Class' 'perl-MooseX-Types-Path-Tiny' 'perl-MooseX-Types-Perl' 'perl-MooseX-Types-Set-Object' 'perl-MooseX-Types-Stringlike' 'perl-MooseX-Types-Structured' 'perl-MooseX-Workers' 'perl-Mouse' 'perl-MouseX-ConfigFromFile' 'perl-MouseX-SimpleConfig' 'perl-MouseX-Types' 'perl-MouseX-Types-Path-Class' 'perl-Mozilla-LDAP' 'perl-MusicBrainz-DiscID' 'perl-NKF' 'perl-Nagios-Plugin' 'perl-Net-AMQP' 'perl-Net-CIDR-Lite' 'perl-Net-CIDR-Set' 'perl-Net-DBus' 'perl-Net-DBus-GLib' 'perl-Net-DBus-GLib' 'perl-Net-DBus-GLib-debuginfo' 'perl-Net-DBus-GLib-debugsource' 'perl-Net-DNS' 'perl-Net-DNS-Resolver-Mock' 'perl-Net-DNS-Resolver-Programmable' 'perl-Net-Daemon' 'perl-Net-Domain-TLD' 'perl-Net-Dropbox-API' 'perl-Net-HTTP' 'perl-Net-HTTPServer' 'perl-Net-IDN-Encode' 'perl-Net-IDN-Nameprep' 'perl-Net-INET6Glue' 'perl-Net-IP' 'perl-Net-IPv4Addr' 'perl-Net-Ident' 'perl-Net-Jabber' 'perl-Net-LibIDN' 'perl-Net-Libproxy' 'perl-Net-Netmask' 'perl-Net-OAuth' 'perl-Net-OpenID-Common' 'perl-Net-OpenID-Consumer' 'perl-Net-OpenStack-Compute' 'perl-Net-Oping' 'perl-Net-Patricia' 'perl-Net-Pcap' 'perl-Net-SMTP-SSL' 'perl-Net-SNMP' 'perl-Net-SSH2' 'perl-Net-SSLGlue' 'perl-Net-SSLeay' 'perl-Net-Server' 'perl-Net-TFTP' 'perl-Net-Telnet' 'perl-Net-Twitter' 'perl-Net-UPnP' 'perl-Net-UPnP' 'perl-Net-Whois-RIPE' 'perl-Net-Whois-Raw' 'perl-Net-XMPP' 'perl-NetAddr-IP' 'perl-NetPacket' 'perl-NetxAP' 'perl-Number-Compare' 'perl-Number-Format' 'perl-Number-WithError' 'perl-OLE-Storage_Lite' 'perl-OSSP-uuid' 'perl-Object-Pluggable' 'perl-Object-Signature' 'perl-Ogg-Vorbis-Header' 'perl-Ogg-Vorbis-Header' 'perl-Ogg-Vorbis-Header-PurePerl' 'perl-Ogg-Vorbis-Header-PurePerl' 'perl-Ogg-Vorbis-Header-debuginfo' 'perl-Ogg-Vorbis-Header-debugsource' 'perl-OpenGL' 'perl-PAR' 'perl-PAR-Dist' 'perl-PAR-Packer' 'perl-PCP-LogImport' 'perl-PCP-LogSummary' 'perl-PCP-MMV' 'perl-PCP-PMDA' 'perl-PDA-Pilot' 'perl-PDF-API2' 'perl-PHP-Serialization' 'perl-POE' 'perl-POE-Test-Loops' 'perl-POSIX-strftime-Compiler' 'perl-PPI' 'perl-PPIx-QuoteLike' 'perl-PPIx-Regexp' 'perl-PPIx-Utilities' 'perl-Package-DeprecationManager' 'perl-Package-Generator' 'perl-Package-Stash' 'perl-Package-Stash-XS' 'perl-Package-Variant' 'perl-PadWalker' 'perl-Pango' 'perl-Parallel-ForkManager' 'perl-Parallel-ForkManager' 'perl-Params-Classify' 'perl-Params-Coerce' 'perl-Params-Util' 'perl-Params-Validate' 'perl-Params-ValidationCompiler' 'perl-Parse-CPAN-Packages' 'perl-Parse-Method-Signatures' 'perl-Parse-PMFile' 'perl-Parse-RecDescent' 'perl-Parse-Win32Registry' 'perl-Parse-Yapp' 'perl-PatchReader' 'perl-Path-Class' 'perl-Path-FindDev' 'perl-Path-IsDev' 'perl-Path-Router' 'perl-Path-Tiny' 'perl-PathTools' 'perl-Pegex' 'perl-Pegex' 'perl-Perl-Critic' 'perl-Perl-Critic-Freenode' 'perl-Perl-Critic-Policy-Variables-ProhibitLoopOnHash' 'perl-Perl-Critic-Pulp' 'perl-Perl-PrereqScanner' 'perl-Perl-Tidy' 'perl-Perl-Version' 'perl-Perl6-Junction' 'perl-PerlIO-gzip' 'perl-PerlIO-locale' 'perl-PerlIO-utf8_strict' 'perl-PerlIO-via-Timeout' 'perl-PerlIO-via-dynamic' 'perl-PerlMagick' 'perl-Plack' 'perl-Plack-Middleware-LogErrors' 'perl-Plack-Middleware-Session' 'perl-Pod-Coverage' 'perl-Pod-Coverage-Moose' 'perl-Pod-Coverage-TrustPod' 'perl-Pod-Eventual' 'perl-Pod-HtmlPsPdf' 'perl-Pod-Markdown' 'perl-Pod-MinimumVersion' 'perl-Pod-POM' 'perl-Pod-Readme' 'perl-Pod-Spell' 'perl-Pod-Usage' 'perl-PostScript-Simple' 'perl-Prima' 'perl-Probe-Perl' 'perl-Proc-Fork' 'perl-Proc-ProcessTable' 'perl-Proc-Simple' 'perl-Protocol-Redis' 'perl-Protocol-Redis-Faster' 'perl-Protocol-WebSocket' 'perl-Quantum-Superpositions' 'perl-RDF-Trine' 'perl-RPC-XML' 'perl-RPM-Header-PurePerl' 'perl-RPM2' 'perl-Readonly' 'perl-Readonly-XS' 'perl-Redis' 'perl-Regexp-Assemble' 'perl-Regexp-Common' 'perl-Regexp-IPv6' 'perl-Regexp-Shellish' 'perl-Return-Value' 'perl-Role-HasMessage' 'perl-Role-Identifiable' 'perl-Role-Tiny' 'perl-Rose-Object' 'perl-Router-Simple' 'perl-SDL' 'perl-SGML-Parser-OpenSP' 'perl-SGMLS' 'perl-SNMP' 'perl-SOAP-Lite' 'perl-SQL-Abstract' 'perl-SQL-ReservedWords' 'perl-SQL-SplitStatement' 'perl-SQL-Statement' 'perl-SQL-Tokenizer' 'perl-SQL-Translator' 'perl-SUPER' 'perl-SVG' 'perl-SVN-Simple' 'perl-Safe-Isa' 'perl-Scalar-List-Utils' 'perl-Scalar-String' 'perl-Scope-Guard' 'perl-Scope-Upper' 'perl-Selenium-Remote-Driver' 'perl-Sereal' 'perl-Sereal-Decoder' 'perl-Sereal-Encoder' 'perl-Set-Crontab' 'perl-Set-Object' 'perl-Set-Scalar' 'perl-Smart-Comments' 'perl-Snowball-Norwegian' 'perl-Snowball-Swedish' 'perl-Socket-MsgHdr' 'perl-Socket6' 'perl-Software-License' 'perl-Sort-Key' 'perl-Sort-Naturally' 'perl-Sort-Versions' 'perl-Specio' 'perl-Spiffy' 'perl-Spooky-Patterns-XS' 'perl-Spreadsheet-ParseExcel' 'perl-Spreadsheet-ParseXLSX' 'perl-Spreadsheet-Read' 'perl-Spreadsheet-ReadSXC' 'perl-Spreadsheet-XLSX' 'perl-Starman' 'perl-Statistics-CaseResampling' 'perl-Statistics-Descriptive' 'perl-Stream-Buffered' 'perl-String-Approx' 'perl-String-CRC32' 'perl-String-CamelCase' 'perl-String-Errf' 'perl-String-Escape' 'perl-String-Flogger' 'perl-String-Format' 'perl-String-Formatter' 'perl-String-RewritePrefix' 'perl-String-ShellQuote' 'perl-String-ToIdentifier-EN' 'perl-String-Truncate' 'perl-Struct-Dumb' 'perl-Sub-Delete' 'perl-Sub-Exporter' 'perl-Sub-Exporter-ForMethods' 'perl-Sub-Exporter-GlobExporter' 'perl-Sub-Exporter-Progressive' 'perl-Sub-Identify' 'perl-Sub-Info' 'perl-Sub-Install' 'perl-Sub-Name' 'perl-Sub-Override' 'perl-Sub-Quote' 'perl-Sub-Retry' 'perl-Sub-Spec' 'perl-Sub-Uplevel' 'perl-Switch' 'perl-Symbol-Table' 'perl-Symbol-Util' 'perl-Syntax-Keyword-Junction' 'perl-Syntax-Keyword-Try' 'perl-Sys-CPU' 'perl-Sys-Guestfs' 'perl-Sys-Hostname-Long' 'perl-Sys-LoadAvg' 'perl-Sys-SigAction' 'perl-Sys-Virt' 'perl-Sysadm-Install' 'perl-Task-Kensho-Async' 'perl-Task-Kensho-CLI' 'perl-Task-Kensho-Config' 'perl-Task-Kensho-Dates' 'perl-Task-Kensho-Exceptions' 'perl-Task-Kensho-ModuleDev' 'perl-Task-Kensho-OOP' 'perl-Task-Kensho-Scalability' 'perl-Task-Kensho-Testing' 'perl-Task-Kensho-XML' 'perl-Task-Moose' 'perl-Task-Weaken' 'perl-Template-GD' 'perl-Template-Toolkit' 'perl-Term-Encoding' 'perl-Term-ProgressBar' 'perl-Term-ReadKey' 'perl-Term-ReadLine-Gnu' 'perl-Term-ReadPassword' 'perl-Term-Table' 'perl-Term-UI' 'perl-Test-Assert' 'perl-Test-Base' 'perl-Test-CChecker' 'perl-Test-CPAN-Meta' 'perl-Test-CheckChanges' 'perl-Test-CheckDeps' 'perl-Test-CheckManifest' 'perl-Test-Class' 'perl-Test-Class-Most' 'perl-Test-ClassAPI' 'perl-Test-CleanNamespaces' 'perl-Test-Command' 'perl-Test-Compile' 'perl-Test-Deep' 'perl-Test-Deep-Type' 'perl-Test-Differences' 'perl-Test-Directory' 'perl-Test-EOL' 'perl-Test-Exception' 'perl-Test-Exception-LessClever' 'perl-Test-FailWarnings' 'perl-Test-Fatal' 'perl-Test-File' 'perl-Test-File-Contents' 'perl-Test-File-ShareDir' 'perl-Test-HasVersion' 'perl-Test-Identity' 'perl-Test-InDistDir' 'perl-Test-Inter' 'perl-Test-JSON' 'perl-Test-Kit' 'perl-Test-LWP-UserAgent' 'perl-Test-LeakTrace' 'perl-Test-LectroTest' 'perl-Test-LongString' 'perl-Test-Manifest' 'perl-Test-Memory-Cycle' 'perl-Test-Mock-Guard' 'perl-Test-Mock-LWP' 'perl-Test-Mock-Time' 'perl-Test-MockModule' 'perl-Test-MockObject' 'perl-Test-MockRandom' 'perl-Test-MockTime' 'perl-Test-Mojo-Pg' 'perl-Test-More-UTF8' 'perl-Test-Most' 'perl-Test-Needs' 'perl-Test-NoTabs' 'perl-Test-NoWarnings' 'perl-Test-Number-Delta' 'perl-Test-Object' 'perl-Test-Output' 'perl-Test-Perl-Critic' 'perl-Test-PerlTidy' 'perl-Test-Pod' 'perl-Test-Pod-Coverage' 'perl-Test-Refcount' 'perl-Test-Requires' 'perl-Test-Requires-Git' 'perl-Test-RequiresInternet' 'perl-Test-Script' 'perl-Test-SharedFork' 'perl-Test-Signature' 'perl-Test-Signature' 'perl-Test-Simple' 'perl-Test-Spec' 'perl-Test-Spelling' 'perl-Test-Strict' 'perl-Test-SubCalls' 'perl-Test-Synopsis' 'perl-Test-TCP' 'perl-Test-Taint' 'perl-Test-TempDir-Tiny' 'perl-Test-Time' 'perl-Test-Trap' 'perl-Test-Unit' 'perl-Test-Unit-Lite' 'perl-Test-UseAllModules' 'perl-Test-WWW-Mechanize' 'perl-Test-WWW-Selenium' 'perl-Test-Warn' 'perl-Test-Warnings' 'perl-Test-Without-Module' 'perl-Test-WriteVariants' 'perl-Test-YAML' 'perl-Test-YAML-Valid' 'perl-Test-utf8' 'perl-Test2-Plugin-NoWarnings' 'perl-Test2-Suite' 'perl-Text-Aligner' 'perl-Text-Autoformat' 'perl-Text-BibTeX' 'perl-Text-BibTeX-devel' 'perl-Text-Brew' 'perl-Text-CSV' 'perl-Text-CSV_XS' 'perl-Text-Capitalize' 'perl-Text-ChaSen' 'perl-Text-CharWidth' 'perl-Text-DelimMatch' 'perl-Text-Diff' 'perl-Text-German' 'perl-Text-Glob' 'perl-Text-Hunspell' 'perl-Text-Iconv' 'perl-Text-Kakasi' 'perl-Text-Markdown' 'perl-Text-Patch' 'perl-Text-RecordParser' 'perl-Text-Reform' 'perl-Text-Roman' 'perl-Text-Soundex' 'perl-Text-SpellChecker' 'perl-Text-Sprintf-Named' 'perl-Text-Table' 'perl-Text-TabularDisplay' 'perl-Text-Template' 'perl-Text-Unidecode' 'perl-Text-WrapI18N' 'perl-Text-Wrapper' 'perl-TheSchwartz' 'perl-Throwable' 'perl-Tie-Cache' 'perl-Tie-Cycle' 'perl-Tie-Hash-DBD' 'perl-Tie-Hash-Method' 'perl-Tie-IxHash' 'perl-Tie-RefHash-Weak' 'perl-Tie-Simple' 'perl-Tie-ToObject' 'perl-Time-Clock' 'perl-Time-Duration' 'perl-Time-Duration-Parse' 'perl-Time-Mock' 'perl-Time-Moment' 'perl-Time-Out' 'perl-Time-Period' 'perl-Time-Tiny' 'perl-Time-modules' 'perl-TimeDate' 'perl-Tk' 'perl-Tk-Clock' 'perl-Tk-FontDialog' 'perl-Tk-FontDialog' 'perl-Tk-devel' 'perl-Tree-DAG_Node' 'perl-Try-Tiny' 'perl-TryCatch' 'perl-Type-Tiny' 'perl-Types-Serialiser' 'perl-UNIVERSAL-can' 'perl-UNIVERSAL-isa' 'perl-UNIVERSAL-moniker' 'perl-UNIVERSAL-require' 'perl-URI' 'perl-URI-Fetch' 'perl-URI-Find' 'perl-URI-Nested' 'perl-URI-Template' 'perl-URI-db' 'perl-Unicode-Collate' 'perl-Unicode-LineBreak' 'perl-Unicode-Map' 'perl-Unicode-Map8' 'perl-Unicode-Normalize' 'perl-Unicode-String' 'perl-Unicode-Stringprep' 'perl-Unix-Syslog' 'perl-Variable-Magic' 'perl-Verilog-Perl' 'perl-WWW-Form-UrlEncoded' 'perl-WWW-Mechanize' 'perl-WWW-PAUSE-CleanUpHomeDir' 'perl-WWW-Pastebin-PastebinCom-Create' 'perl-WWW-RobotRules' 'perl-WWW-Shorten' 'perl-Want' 'perl-WeakRef' 'perl-Web-MREST' 'perl-Web-MREST-CLI' 'perl-Web-Machine' 'perl-WebService-MusicBrainz' 'perl-Win-Hivex' 'perl-Wx' 'perl-X11-Protocol' 'perl-X11-Protocol-Other' 'perl-X500-DN' 'perl-XML-Atom' 'perl-XML-Atom-SimpleFeed' 'perl-XML-Bare' 'perl-XML-CommonNS' 'perl-XML-DOM' 'perl-XML-DOM-XPath' 'perl-XML-Dumper' 'perl-XML-Entities' 'perl-XML-Feed' 'perl-XML-Filter-BufferText' 'perl-XML-Generator-PerlData' 'perl-XML-Handler-YAWriter' 'perl-XML-LibXML' 'perl-XML-LibXML-PrettyPrint' 'perl-XML-LibXML-Simple' 'perl-XML-LibXSLT' 'perl-XML-Namespace' 'perl-XML-NamespaceFactory' 'perl-XML-NamespaceSupport' 'perl-XML-NodeFilter' 'perl-XML-Parser' 'perl-XML-Parser-Lite' 'perl-XML-RSS' 'perl-XML-RSS-LibXML' 'perl-XML-RSS-LibXML' 'perl-XML-RegExp' 'perl-XML-SAX' 'perl-XML-SAX-Base' 'perl-XML-SAX-Expat' 'perl-XML-SAX-ExpatXS' 'perl-XML-SAX-Writer' 'perl-XML-SemanticDiff' 'perl-XML-Simple' 'perl-XML-SimpleObject-LibXML' 'perl-XML-Stream' 'perl-XML-Structured' 'perl-XML-Twig' 'perl-XML-Writer' 'perl-XML-Writer-String' 'perl-XML-XPath' 'perl-XML-XPathEngine' 'perl-XML-XSLT' 'perl-XMLRPC-Lite' 'perl-XSLoader' 'perl-YAML' 'perl-YAML-LibYAML' 'perl-YAML-Syck' 'perl-YAML-Tiny' 'perl-aliased' 'perl-apparmor' 'perl-asa' 'perl-autobox' 'perl-autovivification' 'perl-bareword-filehandles' 'perl-base' 'perl-base-32bit' 'perl-biber' 'perl-boolean' 'perl-checkbot' 'perl-common-sense' 'perl-constant-boolean' 'perl-constant-defer' 'perl-curry' 'perl-doc' 'perl-experimental' 'perl-forks' 'perl-gdal' 'perl-genders' 'perl-getdata' 'perl-gettext' 'perl-homedir' 'perl-indirect' 'perl-ldap' 'perl-libconfigfile' 'perl-libintl-perl' 'perl-libprelude' 'perl-libwww-perl' 'perl-libxml-perl' 'perl-local-lib' 'perl-marisa' 'perl-mousex-getopt' 'perl-multidimensional' 'perl-mythtv' 'perl-namespace-autoclean' 'perl-namespace-clean' 'perl-obexftp' 'perl-pcsc' 'perl-prefork' 'perl-qpid' 'perl-qpid-proton' 'perl-razor-agents' 'perl-rrdtool' 'perl-slurm' 'perl-solv' 'perl-strictures' 'perl-subunit' 'perl-syntax' 'perl-thrift' 'perl-version' 'perl-warewulf-cluster' 'perl-warewulf-common' 'perl-warewulf-ipmi' 'perl-warewulf-provision' 'perl-warewulf-provision-server' 'perl-xfconf' 'perl-xmltv' 'perl-xrood-client-admin' 'perl-yui' 'perlref' 'permissions' 'permissions-config' 'permissions-doc' 'permissions-zypp-plugin' 'permlib-devel' 'perseus-sdr-tools' 'pesign' 'pesign-obs-integration' 'petsc-devel' 'petsc-doc' 'petsc-gnu-mpich-hpc-devel' 'petsc-gnu-mvapich2-hpc-devel' 'petsc-gnu-openmpi1-hpc-devel' 'petsc-gnu-openmpi2-hpc-devel' 'petsc-gnu-openmpi3-hpc-devel' 'petsc-openmpi-devel' 'petsc_3_11_3-gnu-mpich-hpc-devel' 'petsc_3_11_3-gnu-mpich-hpc-saws' 'petsc_3_11_3-gnu-mvapich2-hpc-devel' 'petsc_3_11_3-gnu-mvapich2-hpc-saws' 'petsc_3_11_3-gnu-openmpi1-hpc-devel' 'petsc_3_11_3-gnu-openmpi1-hpc-saws' 'petsc_3_11_3-gnu-openmpi2-hpc-devel' 'petsc_3_11_3-gnu-openmpi2-hpc-saws' 'petsc_3_11_3-gnu-openmpi3-hpc-devel' 'petsc_3_11_3-gnu-openmpi3-hpc-saws' 'pfscalibration' 'pfsglview' 'pfstmo' 'pfstools' 'pfstools-devel' 'pfstools-exr' 'pfstools-imgmagick' 'pfstools-octave' 'pfsview' 'pg_comparator' 'pgaccess' 'pgadmin4' 'pgadmin4-doc' 'pgadmin4-web' 'pgloader' 'pgn-extract' 'phalanx' 'phetsarath-fonts' 'phobos-devel' 'phobos-devel-static' 'phodav-devel' 'phonon-backend-gstreamer' 'phonon-backend-vlc' 'phonon-devel' 'phonon4qt5-backend-gstreamer' 'phonon4qt5-backend-gstreamer-lang' 'phonon4qt5-backend-mpv' 'phonon4qt5-backend-mpv' 'phonon4qt5-backend-vlc' 'phonon4qt5-backend-vlc-lang' 'phonon4qt5-devel' 'phonon4qt5-devel-32bit' 'phonon4qt5-lang' 'phoronix-test-suite' 'photoqt' 'photorec' 'php-Icinga' 'php-composer' 'php-cs-fixer' 'php-mapi' 'php-mythtv' 'php7' 'php7-APCu' 'php7-bcmath' 'php7-bz2' 'php7-calendar' 'php7-ctype' 'php7-curl' 'php7-dba' 'php7-devel' 'php7-dom' 'php7-embed' 'php7-enchant' 'php7-exif' 'php7-fastcgi' 'php7-fileinfo' 'php7-firebird' 'php7-fpm' 'php7-ftp' 'php7-gd' 'php7-geoip' 'php7-gettext' 'php7-gmagick' 'php7-gmp' 'php7-ice' 'php7-iconv' 'php7-imagick' 'php7-intl' 'php7-json' 'php7-ldap' 'php7-maxminddb' 'php7-mbstring' 'php7-memcached' 'php7-mysql' 'php7-odbc' 'php7-opcache' 'php7-openssl' 'php7-pcntl' 'php7-pdo' 'php7-pear' 'php7-pear-Auth_SASL' 'php7-pear-MDB2' 'php7-pear-MDB2_Driver_mysqli' 'php7-pear-Mail_Mime' 'php7-pear-Net_IDNA2' 'php7-pear-Net_LDAP2' 'php7-pear-Net_SMTP' 'php7-pear-Net_Sieve' 'php7-pear-Net_Socket' 'php7-pear-XML_Parser' 'php7-pgsql' 'php7-phalcon' 'php7-phar' 'php7-phpunit8' 'php7-posix' 'php7-readline' 'php7-redis' 'php7-shmop' 'php7-smbclient' 'php7-snmp' 'php7-soap' 'php7-sockets' 'php7-sodium' 'php7-sqlite' 'php7-sysvmsg' 'php7-sysvsem' 'php7-sysvshm' 'php7-tidy' 'php7-tokenizer' 'php7-uuid' 'php7-wddx' 'php7-xdebug' 'php7-xmlreader' 'php7-xmlrpc' 'php7-xmlwriter' 'php7-xsl' 'php7-zip' 'php7-zlib' 'phpMyAdmin' 'phpPgAdmin' 'pia' 'pianobar' 'picard' 'picard-lang' 'picmi' 'picmi-lang' 'pico' 'picocom' 'picojson-devel' 'pidentd' 'pidgin' 'pidgin-devel' 'pidgin-plugin-advanced-sound-notification' 'pidgin-plugin-advanced-sound-notification-lang' 'pidgin-plugin-birthday-reminder' 'pidgin-plugin-birthday-reminder-lang' 'pidgin-plugin-guifications' 'pidgin-plugin-guifications-lang' 'pidgin-plugin-indicator' 'pidgin-plugin-indicator-lang' 'pidgin-plugin-libnotify' 'pidgin-plugin-libnotify-lang' 'pidgin-plugin-libsteam' 'pidgin-plugin-mattermost' 'pidgin-plugin-mrim' 'pidgin-plugin-otr' 'pidgin-plugin-otr-lang' 'pidgin-plugin-pack' 'pidgin-plugin-pack-extras' 'pidgin-plugin-privacy-please' 'pidgin-plugin-privacy-please-lang' 'pidgin-plugin-prpltwtr' 'pidgin-plugin-rocketchat' 'pidgin-plugin-sipe' 'pidgin-plugin-skypeweb' 'pidgin-plugin-telegram' 'pidgin-plugin-xmpp-receipts' 'piglit' 'pigz' 'pilot' 'pilot-link' 'pim-data-exporter' 'pim-data-exporter-lang' 'pim-sieve-editor' 'pim-sieve-editor-lang' 'pimcommon' 'pimcommon-devel' 'pimcommon-lang' 'pin' 'pinentry' 'pinentry-emacs' 'pinentry-fltk' 'pinentry-gnome3' 'pinentry-gtk2' 'pinentry-qt5' 'pinfo' 'pingtunnel' 'pingus' 'pink-pony' 'pink-pony-data' 'pinpoint' 'pinta' 'pinta-lang' 'pipenightdreams' 'piper' 'pipewire' 'pipewire-devel' 'pipewire-modules' 'pipewire-spa-plugins' 'pipewire-spa-tools' 'pipewire-tools' 'pithos' 'pitivi' 'pitivi-lang' 'pix' 'pix-devel' 'pix-lang' 'pixd' 'pixmap' 'pixz' 'pkTriggerCord' 'pkcs11-helper' 'pkcs11-helper-devel' 'pkg2zip' 'pkg2zip' 'pkgconf' 'pkgconf-m4' 'pkgconf-pkg-config' 'pkgdiff' 'pkipplib' 'plank' 'plank-devel' 'plank-docklets' 'plank-lang' 'plank-metatheme-elementary' 'plank-theme-adapta' 'plank-theme-elementary' 'plank-theme-plata' 'plantuml' 'plasma-applet-weather-widget' 'plasma-applet-weather-widget-lang' 'plasma-browser-integration' 'plasma-browser-integration-lang' 'plasma-framework' 'plasma-framework-32bit' 'plasma-framework-components' 'plasma-framework-components-32bit' 'plasma-framework-devel' 'plasma-framework-devel-32bit' 'plasma-framework-lang' 'plasma-mycroft' 'plasma-nm5' 'plasma-nm5-fortisslvpn' 'plasma-nm5-iodine' 'plasma-nm5-l2tp' 'plasma-nm5-lang' 'plasma-nm5-openconnect' 'plasma-nm5-openswan' 'plasma-nm5-openvpn' 'plasma-nm5-pptp' 'plasma-nm5-ssh' 'plasma-nm5-sstp' 'plasma-nm5-strongswan' 'plasma-nm5-vpnc' 'plasma-pass' 'plasma-pass-lang' 'plasma-theme-oxygen' 'plasma-vault' 'plasma-vault-backend-cryfs' 'plasma-vault-backend-encfs' 'plasma-vault-lang' 'plasma5-addons' 'plasma5-addons-devel' 'plasma5-addons-lang' 'plasma5-applet-suse-prime' 'plasma5-beclock-widget' 'plasma5-beclock-widget' 'plasma5-defaults-openSUSE' 'plasma5-desktop' 'plasma5-desktop-lang' 'plasma5-dynamic-wallpaper' 'plasma5-dynamic-wallpaper' 'plasma5-dynamic-wallpaper-lang' 'plasma5-integration-plugin' 'plasma5-integration-plugin-lang' 'plasma5-pa' 'plasma5-pa-lang' 'plasma5-pk-updates' 'plasma5-pk-updates-lang' 'plasma5-radiotray' 'plasma5-radiotray' 'plasma5-radiotray-debuginfo' 'plasma5-radiotray-debugsource' 'plasma5-radiotray-lang' 'plasma5-sdk' 'plasma5-sdk-lang' 'plasma5-session' 'plasma5-session-wayland' 'plasma5-theme-openSUSE' 'plasma5-weather-widget' 'plasma5-weather-widget' 'plasma5-weather-widget-lang' 'plasma5-workspace' 'plasma5-workspace-branding-openSUSE' 'plasma5-workspace-devel' 'plasma5-workspace-lang' 'plasma5-workspace-libs' 'plasma5-workspace-libs-32bit' 'plasma5-workspace-wallpapers' 'plasmaengineexplorer5' 'plater' 'platformsh-cli' 'playerctl' 'playerctl-devel' 'playerctl-doc' 'plee-the-bear' 'plee-the-bear-data' 'plexus-ant-factory' 'plexus-ant-factory-javadoc' 'plexus-archiver' 'plexus-archiver-javadoc' 'plexus-bsh-factory' 'plexus-bsh-factory-javadoc' 'plexus-build-api' 'plexus-build-api-javadoc' 'plexus-cipher' 'plexus-cipher-javadoc' 'plexus-classworlds' 'plexus-classworlds-javadoc' 'plexus-cli' 'plexus-cli-javadoc' 'plexus-compiler' 'plexus-compiler-extras' 'plexus-compiler-javadoc' 'plexus-component-api' 'plexus-component-api-javadoc' 'plexus-component-factories-pom' 'plexus-component-metadata' 'plexus-component-metadata-javadoc' 'plexus-components-pom' 'plexus-containers-component-annotations' 'plexus-containers-component-javadoc' 'plexus-containers-container-default' 'plexus-containers-javadoc' 'plexus-i18n' 'plexus-i18n-javadoc' 'plexus-interactivity-api' 'plexus-interactivity-javadoc' 'plexus-interactivity-jline' 'plexus-interpolation' 'plexus-interpolation-javadoc' 'plexus-io' 'plexus-io-javadoc' 'plexus-languages' 'plexus-languages-javadoc' 'plexus-metadata-generator' 'plexus-metadata-generator-javadoc' 'plexus-pom' 'plexus-resources' 'plexus-resources-javadoc' 'plexus-sec-dispatcher' 'plexus-sec-dispatcher-javadoc' 'plexus-utils' 'plexus-utils-javadoc' 'plexus-velocity' 'plexus-velocity-javadoc' 'plib-devel' 'plistutil' 'plotutils' 'plotutils-devel' 'plowshare' 'plplot-common' 'plplot-devel' 'plplot-doc' 'plplot-driver-cairo' 'plplot-driver-ntk' 'plplot-driver-ps' 'plplot-driver-psttf' 'plplot-driver-svg' 'plplot-driver-xfig' 'plplot-driver-xwin' 'plplot-java' 'plplot-lua' 'plplot-python3-qt' 'plplot-tcltk-devel' 'plplot-tcltk-libs' 'plplot-wxwidgets' 'plplotada-devel' 'plplotcxx-devel' 'plplotfortran-devel' 'plplotqt-devel' 'plplotwxwidgets-devel' 'pluma' 'pluma-devel' 'pluma-lang' 'plymouth' 'plymouth-branding-openSUSE' 'plymouth-devel' 'plymouth-dracut' 'plymouth-plugin-fade-throbber' 'plymouth-plugin-label' 'plymouth-plugin-label-ft' 'plymouth-plugin-script' 'plymouth-plugin-space-flares' 'plymouth-plugin-throbgress' 'plymouth-plugin-tribar' 'plymouth-plugin-two-step' 'plymouth-scripts' 'plymouth-theme-bgrt' 'plymouth-theme-breeze' 'plymouth-theme-breeze-plugin-breeze' 'plymouth-theme-fade-in' 'plymouth-theme-script' 'plymouth-theme-solar' 'plymouth-theme-spinfinity' 'plymouth-theme-spinner' 'plymouth-theme-tribar' 'plzip' 'pmacct' 'pmdk' 'pmdk-convert' 'pmdk-devel-doc' 'pmdk-tools' 'pmidi' 'pmount' 'pmount' 'pmount-debuginfo' 'pmount-debugsource' 'pmount-lang' 'pms' 'pms' 'pms-debuginfo' 'pms-debugsource' 'png++-devel' 'pngcheck' 'pngcrush' 'pnglite-devel' 'pngquant' 'pngtoico' 'pnm2ppa' 'po-utils' 'po4a' 'po4a-lang' 'pocketsphinx' 'pocketsphinx-devel' 'pocl' 'pocl-devel' 'podman' 'podman-cni-config' 'podofo' 'poedit' 'poedit-lang' 'poezio' 'poezio-doc' 'pogo' 'pogo' 'polari' 'polari-lang' 'policycoreutils' 'policycoreutils-devel' 'policycoreutils-lang' 'policycoreutils-newrole' 'polkit' 'polkit-default-privs' 'polkit-devel' 'polkit-doc' 'polkit-gnome' 'polkit-gnome-lang' 'polkit-kde-agent-5' 'polkit-kde-agent-5-lang' 'polkit-whitelisting' 'pology' 'pology-lang' 'polyglot' 'polyglot' 'polyglot-debuginfo' 'polyglot-debugsource' 'pommed' 'pongix' 'poppler-data' 'poppler-tools' 'popt-devel' 'popt-devel-32bit' 'portaudio-devel' 'portmidi' 'portmidi-devel' 'portmidi-java' 'posix_cc' 'posixovl' 'post-build-checks' 'poster' 'postfish' 'postfix' 'postfix-devel' 'postfix-doc' 'postfix-lmdb' 'postfix-mysql' 'postfix-postgresql' 'postfixadmin' 'postgresql' 'postgresql-contrib' 'postgresql-devel' 'postgresql-docs' 'postgresql-llvmjit' 'postgresql-plperl' 'postgresql-plpython' 'postgresql-pltcl' 'postgresql-server' 'postgresql-server-devel' 'postgresql-test' 'postgresql10' 'postgresql10-contrib' 'postgresql10-devel' 'postgresql10-docs' 'postgresql10-pg_cron' 'postgresql10-pgagent' 'postgresql10-plperl' 'postgresql10-plpython' 'postgresql10-plr' 'postgresql10-plr-doc' 'postgresql10-pltcl' 'postgresql10-server' 'postgresql10-test' 'postgresql10-timescaledb' 'postgresql11' 'postgresql11-contrib' 'postgresql11-devel' 'postgresql11-docs' 'postgresql11-llvmjit' 'postgresql11-pg_cron' 'postgresql11-pg_cron-llvmjit' 'postgresql11-pgagent' 'postgresql11-plperl' 'postgresql11-plpython' 'postgresql11-plr' 'postgresql11-plr-doc' 'postgresql11-pltcl' 'postgresql11-server' 'postgresql11-server-devel' 'postgresql11-test' 'postgresql11-timescaledb' 'postgresql94' 'postgresql94-contrib' 'postgresql94-devel' 'postgresql94-docs' 'postgresql94-pgagent' 'postgresql94-plperl' 'postgresql94-plpython' 'postgresql94-plr' 'postgresql94-plr-doc' 'postgresql94-pltcl' 'postgresql94-server' 'postgresql94-test' 'postgresql95' 'postgresql95-contrib' 'postgresql95-devel' 'postgresql95-docs' 'postgresql95-pg_cron' 'postgresql95-pgagent' 'postgresql95-plperl' 'postgresql95-plpython' 'postgresql95-plr' 'postgresql95-plr-doc' 'postgresql95-pltcl' 'postgresql95-server' 'postgresql95-test' 'postgresql96' 'postgresql96-contrib' 'postgresql96-devel' 'postgresql96-docs' 'postgresql96-pg_cron' 'postgresql96-pgagent' 'postgresql96-plperl' 'postgresql96-plpython' 'postgresql96-plr' 'postgresql96-plr-doc' 'postgresql96-pltcl' 'postgresql96-server' 'postgresql96-test' 'postgresql96-timescaledb' 'postgrey' 'postsrsd' 'pothana2000-fonts' 'potrace' 'potrace-devel' 'pound' 'pound-doc' 'povray' 'powdertoy' 'powerd' 'powerdevil5' 'powerdevil5-lang' 'powerline' 'powerline-docs' 'powerline-fonts' 'powerman' 'powerman-devel' 'powermanga' 'powermock-api-easymock' 'powermock-api-mockito' 'powermock-api-support' 'powermock-common' 'powermock-core' 'powermock-javadoc' 'powermock-junit4' 'powermock-reflect' 'powermock-testng' 'powerstat' 'powertop' 'powertop-lang' 'poxml-lang' 'ppp' 'ppp-devel' 'ppp-modem' 'ppp-userpass' 'pps-tools' 'pps-tools-devel' 'pptp' 'pptpd' 'praat' 'pragha' 'pragha-lang' 'pragha-plugins' 'pragha-plugins-devel' 'prboom-plus' 'prctl' 'prelude-correlator-core' 'prelude-lml' 'prelude-lml-devel' 'prelude-lml-rules' 'prelude-manager' 'prelude-manager-db-plugin' 'prelude-manager-devel' 'prelude-manager-smtp-plugin' 'prelude-manager-xml-plugin' 'prelude-tools' 'preludedb-tools' 'premake4' 'presage' 'presage-data' 'prewikka-core' 'prewikka-lang' 'primesieve' 'primus' 'primus-32bit' 'print_server' 'printer-driver-brlaser' 'printproto-devel' 'prison-qt5-devel' 'prison-qt5-devel-32bit' 'prison-qt5-imports' 'privoxy' 'privoxy-doc' 'procdump' 'procinfo' 'procmail' 'procmeter' 'procmeter-devel' 'procps' 'procps-devel' 'product-builder' 'product-builder-plugin-Tumbleweed' 'profanity' 'profanity-mini' 'profanity-standard' 'proftpd' 'proftpd-devel' 'proftpd-doc' 'proftpd-lang' 'proftpd-ldap' 'proftpd-mysql' 'proftpd-pgsql' 'proftpd-radius' 'proftpd-sqlite' 'progress' 'proj' 'proj-devel' 'projectM' 'projectM-data' 'projectM-devel' 'projectlibre' 'prometheus-client-model-source' 'pronsole' 'pronterface' 'prosody' 'proteus' 'protobuf-c' 'protobuf-devel' 'protobuf-java' 'protobuf-source' 'protoc-gen-go' 'protoc-gen-go-source' 'protoc-gen-gogo' 'protoc-gen-gogo-source' 'protoc-gen-validate' 'protoc-gen-validate-source' 'proxychains-ng' 'prozgui' 'prun-ohpc' 'psgml' 'psgplay' 'psi+' 'psi+-data' 'psi+-iconsets' 'psi+-iconsets' 'psi+-lang' 'psi+-plugins-attentionplugin' 'psi+-plugins-autoreplyplugin' 'psi+-plugins-birthdayreminderplugin' 'psi+-plugins-chessplugin' 'psi+-plugins-cleanerplugin' 'psi+-plugins-clientswitcherplugin' 'psi+-plugins-conferenceloggerplugin' 'psi+-plugins-contentdownloaderplugin' 'psi+-plugins-devel' 'psi+-plugins-enummessagesplugin' 'psi+-plugins-extendedmenuplugin' 'psi+-plugins-extendedoptionsplugin' 'psi+-plugins-gnupgplugin' 'psi+-plugins-gomokugameplugin' 'psi+-plugins-historykeeperplugin' 'psi+-plugins-icqdieplugin' 'psi+-plugins-imageplugin' 'psi+-plugins-imagepreviewplugin' 'psi+-plugins-jabberdiskplugin' 'psi+-plugins-juickplugin' 'psi+-plugins-messagefilterplugin' 'psi+-plugins-omemoplugin' 'psi+-plugins-otrplugin' 'psi+-plugins-pepchangenotifyplugin' 'psi+-plugins-qipxstatusesplugin' 'psi+-plugins-screenshotplugin' 'psi+-plugins-skinsplugin' 'psi+-plugins-stopspamplugin' 'psi+-plugins-storagenotesplugin' 'psi+-plugins-translateplugin' 'psi+-plugins-videostatusplugin' 'psi+-plugins-watcherplugin' 'psiconv' 'psiconv-devel' 'psl' 'psl-make-dafsa' 'psmisc' 'psmisc-lang' 'pspg' 'pspp' 'pspp-devel' 'psqlODBC' 'pssh' 'pstoedit' 'pstoedit-devel' 'psutils' 'pthread-stubs-devel' 'ptokax' 'ptools' 'ptpd' 'ptscotch-gnu-mpich-hpc' 'ptscotch-gnu-mpich-hpc-devel' 'ptscotch-gnu-mvapich2-hpc' 'ptscotch-gnu-mvapich2-hpc-devel' 'ptscotch-gnu-openmpi1-hpc' 'ptscotch-gnu-openmpi1-hpc-devel' 'ptscotch-gnu-openmpi2-hpc' 'ptscotch-gnu-openmpi2-hpc-devel' 'ptscotch-gnu-openmpi3-hpc' 'ptscotch-gnu-openmpi3-hpc-devel' 'ptscotch-mpich' 'ptscotch-mpich-devel' 'ptscotch-mpich-devel-static' 'ptscotch-mvapich2' 'ptscotch-mvapich2-devel' 'ptscotch-mvapich2-devel-static' 'ptscotch-openmpi' 'ptscotch-openmpi-devel' 'ptscotch-openmpi-devel-static' 'ptscotch-openmpi2' 'ptscotch-openmpi2-devel' 'ptscotch-openmpi2-devel-static' 'ptscotch-parmetis-mpich-devel' 'ptscotch-parmetis-mvapich2-devel' 'ptscotch-parmetis-openmpi-devel' 'ptscotch-parmetis-openmpi2-devel' 'ptscotch_6_0_6-gnu-mpich-hpc' 'ptscotch_6_0_6-gnu-mpich-hpc-devel' 'ptscotch_6_0_6-gnu-mpich-hpc-devel-static' 'ptscotch_6_0_6-gnu-mvapich2-hpc' 'ptscotch_6_0_6-gnu-mvapich2-hpc-devel' 'ptscotch_6_0_6-gnu-mvapich2-hpc-devel-static' 'ptscotch_6_0_6-gnu-openmpi1-hpc' 'ptscotch_6_0_6-gnu-openmpi1-hpc-devel' 'ptscotch_6_0_6-gnu-openmpi1-hpc-devel-static' 'ptscotch_6_0_6-gnu-openmpi2-hpc' 'ptscotch_6_0_6-gnu-openmpi2-hpc-devel' 'ptscotch_6_0_6-gnu-openmpi2-hpc-devel-static' 'ptscotch_6_0_6-gnu-openmpi3-hpc' 'ptscotch_6_0_6-gnu-openmpi3-hpc-devel' 'ptscotch_6_0_6-gnu-openmpi3-hpc-devel-static' 'publicsuffix' 'puddletag' 'pugixml-devel' 'pullin-bcm43xx-firmware' 'pulseaudio' 'pulseaudio-bash-completion' 'pulseaudio-dlna' 'pulseaudio-dlna' 'pulseaudio-equalizer' 'pulseaudio-esound-compat' 'pulseaudio-gdm-hooks' 'pulseaudio-lang' 'pulseaudio-module-bluetooth' 'pulseaudio-module-gconf' 'pulseaudio-module-gsettings' 'pulseaudio-module-jack' 'pulseaudio-module-lirc' 'pulseaudio-module-x11' 'pulseaudio-module-zeroconf' 'pulseaudio-qt-devel' 'pulseaudio-system-wide' 'pulseaudio-utils' 'pulseaudio-utils-32bit' 'pulseaudio-zsh-completion' 'pulseeffects' 'pulseeffects-lang' 'pulseview' 'pumpa' 'pure-ftpd' 'purpose' 'purpose-32bit' 'purpose-devel' 'purpose-devel-32bit' 'purpose-lang' 'putty' 'pv' 'pw3270' 'pw3270-devel' 'pw3270-plugin-dbus' 'pwgen' 'py-fishcrypt' 'pybugz-common' 'pydb' 'pydb' 'pydf' 'pyenv' 'pyenv-bash-completion' 'pyenv-fish-completion' 'pyenv-zsh-completion' 'pymilter-common' 'pymp3cut' 'pymp3cut' 'pyprompter' 'pyspacewar' 'pythia-devel' 'pythia-doc' 'python' 'python-32bit' 'python-3parclient' 'python-Babel-doc' 'python-Brownie' 'python-Cheetah' 'python-Genshi-doc' 'python-Hamlib' 'python-Jinja2-emacs' 'python-Jinja2-vim' 'python-Kivy-doc' 'python-LHAPDF' 'python-M2Crypto-doc' 'python-OpenColorIO' 'python-OpenColorIO-devel' 'python-PyWavelets-doc' 'python-Rivet' 'python-SHERPA-MC' 'python-SQLAlchemy-doc' 'python-Scrapy-doc' 'python-SpeechRecognition-common-en-US' 'python-Sphinx-doc-html' 'python-Sphinx-doc-man' 'python-Twisted-doc' 'python-WTForms-doc' 'python-WebError' 'python-WebOb-doc' 'python-WebTest-doc' 'python-Whoosh-doc' 'python-YODA' 'python-Yapsy-doc' 'python-ZODB-doc' 'python-acitoolkit-doc' 'python-acitoolkit-doc-applications' 'python-acitoolkit-doc-samples' 'python-aiohttp-doc' 'python-altgraph-doc' 'python-antlr3_runtime' 'python-aodhclient' 'python-aodhclient-doc' 'python-apfel' 'python-atomicwrites-doc' 'python-automaton-doc' 'python-azure-agent' 'python-azure-agent-test' 'python-azure-sdk' 'python-barbicanclient-doc' 'python-base' 'python-base-32bit' 'python-beautifulsoup4-doc' 'python-billiard-doc' 'python-blinker-doc' 'python-boost_parallel_mpi' 'python-bottle-doc' 'python-bpython-common' 'python-bpython-doc' 'python-braille' 'python-caja-devel' 'python-caja-lang' 'python-castellan-doc' 'python-ceph-cfg' 'python-chewing' 'python-cinderclient-doc' 'python-cliff-doc' 'python-congressclient' 'python-congressclient-doc' 'python-cotyledon-doc' 'python-curses' 'python-cwiid' 'python-dbus-python-common-devel' 'python-debtcollector-doc' 'python-demo' 'python-designateclient' 'python-designateclient-doc' 'python-devel' 'python-dfVFS' 'python-dfwinreg' 'python-dialog' 'python-djvulibre-doc' 'python-doc' 'python-doc-pdf' 'python-ecasound' 'python-efilter' 'python-enum34' 'python-espressopp' 'python-falcon-doc' 'python-fastcluster-doc' 'python-faulthandler' 'python-fedmsg-base' 'python-fedmsg-doc' 'python-fityk' 'python-flake8-doc' 'python-flup-doc' 'python-fpconst' 'python-fpconst' 'python-freezerclient-doc' 'python-funcsigs' 'python-functools32' 'python-gamin' 'python-gcs-oauth2-boto-plugin' 'python-gdbm' 'python-genders' 'python-getdata' 'python-gevent-doc' 'python-gexiv2' 'python-glanceclient-doc' 'python-glareclient' 'python-glareclient-doc' 'python-glucat' 'python-gluster' 'python-gnome-dvb-daemon' 'python-gobject-common-devel' 'python-gobject2' 'python-gobject2-devel' 'python-gr-fcdproplus' 'python-gr-iqbal' 'python-gr-osmosdr' 'python-gtk' 'python-gtk-devel' 'python-gtk-doc' 'python-gtksourceview' 'python-gtksourceview-devel' 'python-gunicorn-doc' 'python-hachoir-core' 'python-hachoir-metadata' 'python-hachoir-parser' 'python-happybase-doc' 'python-heatclient-doc' 'python-hivex' 'python-ibus' 'python-idle' 'python-imagestore' 'python-imobiledevice' 'python-ipaddress' 'python-ipython-doc' 'python-ipywidgets-doc' 'python-ironic-inspector-client' 'python-ironicclient-doc' 'python-jaraco.stream-doc' 'python-jrnl' 'python-k8sclient' 'python-k8sclient-doc' 'python-kaa-base' 'python-kaa-metadata' 'python-katedj' 'python-keybinder' 'python-keystoneauth1-doc' 'python-keystoneclient-doc' 'python-keystonemiddleware-doc' 'python-kid-doc' 'python-ktoblzcheck' 'python-lammps' 'python-lash' 'python-lash-debuginfo' 'python-libaccounts' 'python-libaddrxlat' 'python-libcomps-doc' 'python-libesedb' 'python-libevt' 'python-libevtx' 'python-libexe' 'python-libfwsi' 'python-libgpiod' 'python-libkdumpfile' 'python-libkolabxml1' 'python-liblnk' 'python-libmsiecf' 'python-libolecf' 'python-libpff' 'python-libproxy' 'python-libregf' 'python-libteam' 'python-lmiwbem' 'python-logutils-doc' 'python-lxml-doc' 'python-magnumclient-doc' 'python-manilaclient-doc' 'python-marisa' 'python-marshmallow-docs' 'python-masakariclient' 'python-masakariclient-doc' 'python-mathgl' 'python-md2workflow-common' 'python-microversion_parse' 'python-microversion_parse-doc' 'python-mistralclient' 'python-mistralclient-doc' 'python-mlt' 'python-mongodict' 'python-mox3-doc' 'python-mpi4py-common-devel' 'python-mpi4py-doc' 'python-murano-pkg-check' 'python-muranoclient' 'python-muranoclient-doc' 'python-musicbrainz2' 'python-musicbrainz2' 'python-mythtv' 'python-nautilus-common-devel' 'python-nautilus-common-files' 'python-ncclient-doc' 'python-networkx-doc' 'python-neutronclient-doc' 'python-nlopt' 'python-notify' 'python-notify-devel' 'python-notmuch' 'python-notmuch-doc' 'python-novaclient-doc' 'python-obexftp' 'python-octaviaclient-doc' 'python-openbabel' 'python-openstack-doc-tools' 'python-openstackclient-doc' 'python-openstacksdk-doc' 'python-opensync' 'python-optcomplete' 'python-os-testr-doc' 'python-os-win-doc' 'python-osc-lib-doc' 'python-oslo-middleware-doc' 'python-oslo.cache-doc' 'python-oslo.concurrency-doc' 'python-oslo.config-doc' 'python-oslo.context-doc' 'python-oslo.db-doc' 'python-oslo.i18n-doc' 'python-oslo.log-doc' 'python-oslo.messaging-doc' 'python-oslo.policy-doc' 'python-oslo.privsep-doc' 'python-oslo.reports-doc' 'python-oslo.rootwrap-doc' 'python-oslo.serialization-doc' 'python-oslo.service-doc' 'python-oslo.utils-doc' 'python-oslo.versionedobjects-doc' 'python-oslo.vmware-doc' 'python-osprofiler-doc' 'python-ovsdbapp-doc' 'python-paramiko-doc' 'python-peppercorn-doc' 'python-pisock' 'python-plaso' 'python-plist' 'python-ply-doc' 'python-polib-doc' 'python-praatio-doc' 'python-presage' 'python-presagemate' 'python-proliantutils' 'python-pssh' 'python-py2pack-doc' 'python-pycadf-common' 'python-pycadf-doc' 'python-pycairo-common-devel' 'python-pycurl-doc' 'python-pygame-doc' 'python-pyghmi-doc' 'python-pygraphviz-doc' 'python-pyinsane' 'python-pylibacl' 'python-pylibacl-doc' 'python-pymetar' 'python-pymisp-doc' 'python-pymod2pkg-doc' 'python-pymp3cut' 'python-pynag' 'python-pyqtgraph-doc' 'python-pyrrd-docs' 'python-pyserial-doc' 'python-pysnmp-doc' 'python-pysqlite' 'python-pytest-doc' 'python-python-openid' 'python-qpid' 'python-qpid_messaging' 'python-qscintilla-qt5-sip' 'python-qt3d-qt5-api' 'python-qt3d-qt5-examples' 'python-qt3d-qt5-sip' 'python-qt4-doc' 'python-qt4-utils' 'python-qt5-doc' 'python-qt5-utils' 'python-qtcharts-qt5-api' 'python-qtcharts-qt5-examples' 'python-qtcharts-qt5-sip' 'python-qtdatavis3d-qt5-api' 'python-qtdatavis3d-qt5-examples' 'python-qtdatavis3d-qt5-sip' 'python-qtwebengine-qt5-api' 'python-qtwebengine-qt5-sip' 'python-rapi2' 'python-rapi2-debuginfo' 'python-rcssmin-docs' 'python-rdflib-doc' 'python-renderspec' 'python-renderspec-doc' 'python-requestbuilder' 'python-restkit' 'python-rpm-macros' 'python-ruamel.ordereddict' 'python-ryu-common' 'python-saharaclient' 'python-saharaclient-doc' 'python-salt-testing' 'python-scapy' 'python-scapy' 'python-senlinclient-doc' 'python-shodan-doc' 'python-singledispatch' 'python-sip-common' 'python-sip-doc' 'python-six-doc' 'python-solv' 'python-sqlalchemy-migrate-doc' 'python-stevedore-doc' 'python-sushy-doc' 'python-svneverever' 'python-swiftclient-doc' 'python-tables-doc' 'python-temps' 'python-testtools-doc' 'python-tk' 'python-tooz-doc' 'python-translationstring-doc' 'python-tre' 'python-trollius' 'python-troveclient' 'python-troveclient-doc' 'python-tvdb_api' 'python-tvrage' 'python-tvrage' 'python-txsocksx' 'python-typeshed' 'python-vips' 'python-volatility' 'python-watcherclient' 'python-watcherclient-doc' 'python-weakrefmethod' 'python-web.py' 'python-wxWidgets-3_0' 'python-wxWidgets-3_0-devel' 'python-wxWidgets-3_0-lang' 'python-xapian' 'python-xml' 'python-xmms2' 'python-yaql' 'python-yui' 'python-zinnia' 'python-zope.deprecation-doc' 'python-zope.event-doc' 'python-zope.hookable-doc' 'python-zope.i18nmessageid-doc' 'python2-3to2' 'python2-APScheduler' 'python2-AnyQt' 'python2-Arpeggio' 'python2-Automat' 'python2-BTrees' 'python2-BTrees-devel' 'python2-BTrees-doc' 'python2-Babel' 'python2-Beaker' 'python2-BitVector' 'python2-Bottleneck' 'python2-Brotli' 'python2-CDDB' 'python2-CacheControl' 'python2-Cerberus' 'python2-Chameleon' 'python2-Cheetah3' 'python2-CommonMark' 'python2-Cycler' 'python2-Cython' 'python2-DataShape' 'python2-DateTime' 'python2-Delorean' 'python2-Deprecated' 'python2-Django1' 'python2-Durus' 'python2-EasyProcess' 'python2-EditorConfig' 'python2-ExifRead' 'python2-Fabric' 'python2-Fabric3' 'python2-Faker' 'python2-Fiona' 'python2-Flask' 'python2-Flask-Admin' 'python2-Flask-Babel' 'python2-Flask-BabelEx' 'python2-Flask-Bootstrap' 'python2-Flask-Cache' 'python2-Flask-Cache-doc' 'python2-Flask-Compress' 'python2-Flask-Cors' 'python2-Flask-Gravatar' 'python2-Flask-HTMLmin' 'python2-Flask-HTTPAuth' 'python2-Flask-Login' 'python2-Flask-Mail' 'python2-Flask-Migrate' 'python2-Flask-Paranoid' 'python2-Flask-Principal' 'python2-Flask-PyMongo' 'python2-Flask-RESTful' 'python2-Flask-RSTPages' 'python2-Flask-SQLAlchemy' 'python2-Flask-Script' 'python2-Flask-Security' 'python2-Flask-WTF' 'python2-Flask-doc' 'python2-FontTools' 'python2-FormEncode' 'python2-Frozen-Flask' 'python2-GDAL' 'python2-Genshi' 'python2-GeoIP' 'python2-GitPython' 'python2-Glances' 'python2-GooCalendar' 'python2-GridDataFormats' 'python2-HeapDict' 'python2-Jinja2' 'python2-Js2Py' 'python2-JsonWeb' 'python2-Kajiki' 'python2-Keras-Applications' 'python2-Keras-Preprocessing' 'python2-Kivy' 'python2-Kivy-devel' 'python2-LEPL' 'python2-Lektor' 'python2-Levenshtein' 'python2-Logbook' 'python2-M2Crypto' 'python2-Mako' 'python2-MapProxy' 'python2-Markdown' 'python2-MarkupSafe' 'python2-Markups' 'python2-Mathics' 'python2-MechanicalSoup' 'python2-Ming' 'python2-MiniMock' 'python2-Morfessor' 'python2-MulticoreTSNE' 'python2-OWSLib' 'python2-Parsley' 'python2-Paste' 'python2-PasteDeploy' 'python2-PasteScript' 'python2-Paver' 'python2-PeakUtils' 'python2-Pebble' 'python2-Pillow' 'python2-Pillow-tk' 'python2-Pint' 'python2-PrettyTable' 'python2-PsyLab' 'python2-PsychoPy' 'python2-PsychoPy-lang' 'python2-PyAudio' 'python2-PyAutoGUI' 'python2-PyBindGen' 'python2-PyBrowserID' 'python2-PyDispatcher' 'python2-PyECLib' 'python2-PyExecJS' 'python2-PyFxA' 'python2-PyGithub' 'python2-PyHamcrest' 'python2-PyICU' 'python2-PyJWT' 'python2-PyKMIP' 'python2-PyMeta3' 'python2-PyMsgBox' 'python2-PyMySQL' 'python2-PyNaCl' 'python2-PyNamecheap' 'python2-PyOgg' 'python2-PyOpenAL' 'python2-PyPDF2' 'python2-PyPrind' 'python2-PyQRCode' 'python2-PyRIC' 'python2-PySDL2' 'python2-PyScreeze' 'python2-PySocks' 'python2-PyTrie' 'python2-PyTweening' 'python2-PyVirtualDisplay' 'python2-PyWavelets' 'python2-PyWebDAV3' 'python2-PyX' 'python2-PyYAML' 'python2-Pydap' 'python2-Pygments' 'python2-Pykka' 'python2-Pympler' 'python2-Pyphen' 'python2-Pyrex' 'python2-Pyro4' 'python2-QDarkStyle' 'python2-Qt.py' 'python2-QtAwesome' 'python2-QtPy' 'python2-Quandl' 'python2-Routes' 'python2-SPARQLWrapper' 'python2-SQLAlchemy' 'python2-SQLAlchemy-Utils' 'python2-Scrapy' 'python2-SecretStorage' 'python2-Send2Trash' 'python2-Shapely' 'python2-SimpleWebSocketServer' 'python2-SoundFile' 'python2-SpeechRecognition' 'python2-Sphinx' 'python2-Sphinx-doc-html' 'python2-Sphinx-doc-man' 'python2-Sphinx-latex' 'python2-Tempita' 'python2-TermRecord' 'python2-Theano' 'python2-Trolly' 'python2-Trololio' 'python2-Twisted' 'python2-TxSNI' 'python2-URLObject' 'python2-UkPostcodeParser' 'python2-Unidecode' 'python2-WSGIProxy2' 'python2-WSME' 'python2-WTForms' 'python2-WebHelpers' 'python2-WebOb' 'python2-WebTest' 'python2-Werkzeug' 'python2-Whoosh' 'python2-XStatic' 'python2-XStatic-Angular-Schema-Form' 'python2-XStatic-jQuery' 'python2-XStatic-jquery-ui' 'python2-XStatic-objectpath' 'python2-XStatic-term.js' 'python2-XStatic-tv4' 'python2-XlsxWriter' 'python2-Yapsy' 'python2-ZConfig' 'python2-ZConfig-doc' 'python2-ZEO' 'python2-ZODB' 'python2-abclient' 'python2-abimap' 'python2-abimap-doc' 'python2-abseil' 'python2-aci-integration-module' 'python2-acitoolkit' 'python2-acme' 'python2-actdiag' 'python2-adal' 'python2-adapt-parser' 'python2-addict' 'python2-aenum' 'python2-aexpect' 'python2-affine' 'python2-agate' 'python2-agate-dbf' 'python2-agate-excel' 'python2-agate-lookup' 'python2-agate-remote' 'python2-agate-sql' 'python2-agate-stats' 'python2-aioeventlet' 'python2-aiohttp-theme' 'python2-akismet' 'python2-alabaster' 'python2-alembic' 'python2-alsa' 'python2-altair' 'python2-altair-widgets' 'python2-altgraph' 'python2-amqp' 'python2-amqplib' 'python2-amqpstorm' 'python2-ana' 'python2-aniso8601' 'python2-annoy' 'python2-ansel' 'python2-ansi2html' 'python2-ansicolor' 'python2-ansicolors' 'python2-ansiwrap' 'python2-antlr' 'python2-anyjson' 'python2-apache-libcloud' 'python2-apicapi' 'python2-apipkg' 'python2-appdirs' 'python2-appindicator' 'python2-applicationinsights' 'python2-apptools' 'python2-apsw' 'python2-arabic-reshaper' 'python2-argcomplete' 'python2-argh' 'python2-argon2-cffi' 'python2-argparse-manpage' 'python2-args' 'python2-arrow' 'python2-asciimatics' 'python2-asn1crypto' 'python2-aspectlib' 'python2-asteval' 'python2-astor' 'python2-astral' 'python2-astroid' 'python2-astunparse' 'python2-asv' 'python2-atlassian-python-api' 'python2-atom' 'python2-atomicwrites' 'python2-atspi' 'python2-attr' 'python2-attrs' 'python2-aubio' 'python2-audiogrep' 'python2-audiolazy' 'python2-audioread' 'python2-audit' 'python2-augeas' 'python2-autobahn' 'python2-autodoc' 'python2-autoflake' 'python2-automaton' 'python2-autopep8' 'python2-autoupgrade-ng' 'python2-av' 'python2-avocado' 'python2-avocado-plugins-glib' 'python2-avocado-plugins-golang' 'python2-avocado-plugins-loader-yaml' 'python2-avocado-plugins-output-html' 'python2-avocado-plugins-result-upload' 'python2-avocado-plugins-resultsdb' 'python2-avocado-plugins-runner-docker' 'python2-avocado-plugins-runner-remote' 'python2-avocado-plugins-runner-vm' 'python2-avocado-plugins-varianter-pict' 'python2-avocado-plugins-varianter-yaml-to-mux' 'python2-avocado-plugins-vt' 'python2-avro' 'python2-aws-sam-translator' 'python2-aws-xray-sdk' 'python2-aws-xray-sdk-Django' 'python2-aws-xray-sdk-Flask-SQLAlchemy' 'python2-aws-xray-sdk-SQLAlchemy' 'python2-aws-xray-sdk-all' 'python2-aws-xray-sdk-mysql-connector' 'python2-aws-xray-sdk-psycopg2' 'python2-aws-xray-sdk-pymongo' 'python2-aws-xray-sdk-pynamodb' 'python2-aws-xray-sdk-requests' 'python2-axolotl' 'python2-axolotl-curve25519' 'python2-ayatana-appindicator' 'python2-azure-applicationinsights' 'python2-azure-batch' 'python2-azure-cognitiveservices-knowledge-nspkg' 'python2-azure-cognitiveservices-knowledge-qnamaker' 'python2-azure-cognitiveservices-language-luis' 'python2-azure-cognitiveservices-language-nspkg' 'python2-azure-cognitiveservices-language-spellcheck' 'python2-azure-cognitiveservices-language-textanalytics' 'python2-azure-cognitiveservices-nspkg' 'python2-azure-cognitiveservices-search-autosuggest' 'python2-azure-cognitiveservices-search-customimagesearch' 'python2-azure-cognitiveservices-search-customsearch' 'python2-azure-cognitiveservices-search-entitysearch' 'python2-azure-cognitiveservices-search-imagesearch' 'python2-azure-cognitiveservices-search-newssearch' 'python2-azure-cognitiveservices-search-nspkg' 'python2-azure-cognitiveservices-search-videosearch' 'python2-azure-cognitiveservices-search-visualsearch' 'python2-azure-cognitiveservices-search-websearch' 'python2-azure-cognitiveservices-vision-computervision' 'python2-azure-cognitiveservices-vision-contentmoderator' 'python2-azure-cognitiveservices-vision-customvision' 'python2-azure-cognitiveservices-vision-nspkg' 'python2-azure-common' 'python2-azure-datalake-store' 'python2-azure-eventgrid' 'python2-azure-graphrbac' 'python2-azure-keyvault' 'python2-azure-loganalytics' 'python2-azure-mgmt' 'python2-azure-mgmt-advisor' 'python2-azure-mgmt-applicationinsights' 'python2-azure-mgmt-authorization' 'python2-azure-mgmt-batch' 'python2-azure-mgmt-batchai' 'python2-azure-mgmt-billing' 'python2-azure-mgmt-botservice' 'python2-azure-mgmt-cdn' 'python2-azure-mgmt-cognitiveservices' 'python2-azure-mgmt-commerce' 'python2-azure-mgmt-compute' 'python2-azure-mgmt-consumption' 'python2-azure-mgmt-containerinstance' 'python2-azure-mgmt-containerregistry' 'python2-azure-mgmt-containerservice' 'python2-azure-mgmt-cosmosdb' 'python2-azure-mgmt-datafactory' 'python2-azure-mgmt-datalake-analytics' 'python2-azure-mgmt-datalake-nspkg' 'python2-azure-mgmt-datalake-store' 'python2-azure-mgmt-datamigration' 'python2-azure-mgmt-devspaces' 'python2-azure-mgmt-devtestlabs' 'python2-azure-mgmt-dns' 'python2-azure-mgmt-documentdb' 'python2-azure-mgmt-eventgrid' 'python2-azure-mgmt-eventhub' 'python2-azure-mgmt-hanaonazure' 'python2-azure-mgmt-hdinsight' 'python2-azure-mgmt-iotcentral' 'python2-azure-mgmt-iothub' 'python2-azure-mgmt-iothubprovisioningservices' 'python2-azure-mgmt-keyvault' 'python2-azure-mgmt-kusto' 'python2-azure-mgmt-loganalytics' 'python2-azure-mgmt-logic' 'python2-azure-mgmt-machinelearningcompute' 'python2-azure-mgmt-managementgroups' 'python2-azure-mgmt-managementpartner' 'python2-azure-mgmt-maps' 'python2-azure-mgmt-marketplaceordering' 'python2-azure-mgmt-media' 'python2-azure-mgmt-monitor' 'python2-azure-mgmt-msi' 'python2-azure-mgmt-network' 'python2-azure-mgmt-notificationhubs' 'python2-azure-mgmt-nspkg' 'python2-azure-mgmt-policyinsights' 'python2-azure-mgmt-powerbiembedded' 'python2-azure-mgmt-rdbms' 'python2-azure-mgmt-recoveryservices' 'python2-azure-mgmt-recoveryservicesbackup' 'python2-azure-mgmt-redis' 'python2-azure-mgmt-relay' 'python2-azure-mgmt-reservations' 'python2-azure-mgmt-resource' 'python2-azure-mgmt-scheduler' 'python2-azure-mgmt-search' 'python2-azure-mgmt-security' 'python2-azure-mgmt-servermanager' 'python2-azure-mgmt-servicebus' 'python2-azure-mgmt-servicefabric' 'python2-azure-mgmt-signalr' 'python2-azure-mgmt-sql' 'python2-azure-mgmt-sqlvirtualmachine' 'python2-azure-mgmt-storage' 'python2-azure-mgmt-subscription' 'python2-azure-mgmt-trafficmanager' 'python2-azure-mgmt-web' 'python2-azure-monitor' 'python2-azure-multiapi-storage' 'python2-azure-nspkg' 'python2-azure-servicebus' 'python2-azure-servicefabric' 'python2-azure-servicemanagement-legacy' 'python2-azure-storage' 'python2-azure-storage-blob' 'python2-azure-storage-common' 'python2-azure-storage-file' 'python2-azure-storage-nspkg' 'python2-azure-storage-queue' 'python2-babelfish' 'python2-backcall' 'python2-backoff' 'python2-backports' 'python2-backports.csv' 'python2-backports.functools_lru_cache' 'python2-backports.functools_partialmethod' 'python2-backports.html' 'python2-backports.os' 'python2-backports.shutil_get_terminal_size' 'python2-backports.shutil_which' 'python2-backports.ssl_match_hostname' 'python2-backports.tempfile' 'python2-backports.test.support' 'python2-backports.time-perf-counter' 'python2-backports.unittest_mock' 'python2-backports.weakref' 'python2-backports_abc' 'python2-bandit' 'python2-barbicanclient' 'python2-baron' 'python2-bashate' 'python2-bcc' 'python2-bcolz' 'python2-bcrypt' 'python2-beautifulsoup4' 'python2-behave' 'python2-bencode' 'python2-beniget' 'python2-betamax' 'python2-betamax-matchers' 'python2-bibtexparser' 'python2-bidict' 'python2-billiard' 'python2-binary' 'python2-binaryornot' 'python2-bindep' 'python2-binplist' 'python2-biopython' 'python2-biplist' 'python2-bitstring' 'python2-bjoern' 'python2-bleach' 'python2-blessed' 'python2-blessings' 'python2-blindspin' 'python2-blinker' 'python2-blist' 'python2-blockdiag' 'python2-blosc' 'python2-bloscpack' 'python2-bobo' 'python2-bobodoctestumentation' 'python2-bokeh' 'python2-boltons' 'python2-boost_parallel_mpi1_69_0' 'python2-boto' 'python2-boto3' 'python2-botocore' 'python2-bottle' 'python2-bpython' 'python2-bqplot' 'python2-branca' 'python2-breathe' 'python2-brewer2mpl' 'python2-brotlipy' 'python2-bsddb3' 'python2-bsddb3-devel' 'python2-bson' 'python2-bugzilla' 'python2-bugzillatools' 'python2-bz2file' 'python2-cPyparsing' 'python2-cached-property' 'python2-cachetools' 'python2-cachey' 'python2-cairocffi' 'python2-cairocffi-pixbuf' 'python2-caja' 'python2-caldav' 'python2-cangjie' 'python2-canonicaljson' 'python2-capng' 'python2-capturer' 'python2-case' 'python2-cassandra-driver' 'python2-cassowary' 'python2-castellan' 'python2-casttube' 'python2-catkin-pkg' 'python2-cbor' 'python2-cbor2' 'python2-cdecimal' 'python2-celery' 'python2-celery-batches' 'python2-celerymon' 'python2-cerealizer' 'python2-certbot' 'python2-certbot-apache' 'python2-certbot-dns-cloudflare' 'python2-certbot-dns-cloudxns' 'python2-certbot-dns-digitalocean' 'python2-certbot-dns-dnsimple' 'python2-certbot-dns-dnsmadeeasy' 'python2-certbot-dns-google' 'python2-certbot-dns-luadns' 'python2-certbot-dns-nsone' 'python2-certbot-dns-rfc2136' 'python2-certbot-dns-route53' 'python2-certbot-nginx' 'python2-certifi' 'python2-certstream' 'python2-cffi' 'python2-cfgv' 'python2-cfn-lint' 'python2-cfscrape' 'python2-cftime' 'python2-chai' 'python2-chardet' 'python2-chart-studio' 'python2-check-manifest' 'python2-cheroot' 'python2-chest' 'python2-cinderclient' 'python2-ciscoconfparse' 'python2-cl' 'python2-cli-helpers' 'python2-click' 'python2-click-aliases' 'python2-click-completion' 'python2-click-didyoumean' 'python2-click-help-colors' 'python2-click-log' 'python2-click-plugins' 'python2-click-spinner' 'python2-click-threading' 'python2-cliff' 'python2-cligj' 'python2-clinkgrammar' 'python2-clint' 'python2-cloudflare' 'python2-cloudpickle' 'python2-cluster' 'python2-cluster-preflight-check' 'python2-clustershell' 'python2-cmarkgfm' 'python2-cmd2' 'python2-cmdln' 'python2-coards' 'python2-codecov' 'python2-cogapp' 'python2-colander' 'python2-colander-doc' 'python2-colander-lang' 'python2-colorama' 'python2-colorcet' 'python2-colorclass' 'python2-coloredlogs' 'python2-colorlog' 'python2-colorlover' 'python2-colormap' 'python2-colorspacious' 'python2-colour' 'python2-combi' 'python2-compizconfig' 'python2-concurrentloghandler' 'python2-configargparse' 'python2-configobj' 'python2-configparser' 'python2-configshell-fb' 'python2-confluent-kafka' 'python2-confusable-homoglyphs' 'python2-constantly' 'python2-construct' 'python2-contexter' 'python2-contextlib2' 'python2-control' 'python2-cookies' 'python2-cooldict' 'python2-coreapi' 'python2-coreapi-cli' 'python2-coreschema' 'python2-cotyledon' 'python2-cov-core' 'python2-coverage' 'python2-coverage-config-reload-plugin' 'python2-coverage-env-plugin' 'python2-coveralls' 'python2-coveralls-check' 'python2-cppclean' 'python2-cpplint' 'python2-cracklib' 'python2-cram' 'python2-crayons' 'python2-crcmod' 'python2-croniter' 'python2-crumbs' 'python2-cryptography' 'python2-cryptography-vectors' 'python2-css-parser' 'python2-csscompressor' 'python2-cssselect' 'python2-cssutils' 'python2-csvkit' 'python2-ctypesgen' 'python2-cufflinks' 'python2-cursive' 'python2-curtsies' 'python2-cx_Freeze' 'python2-cymruwhois' 'python2-cyordereddict' 'python2-cytoolz' 'python2-d2to1' 'python2-daemonize' 'python2-daiquiri' 'python2-dash' 'python2-dask' 'python2-dask-all' 'python2-dask-array' 'python2-dask-bag' 'python2-dask-dataframe' 'python2-dask-distributed' 'python2-dask-dot' 'python2-dask-multiprocessing' 'python2-datrie' 'python2-dbf' 'python2-dbfread' 'python2-dbus-python' 'python2-dbus-python-devel' 'python2-ddt' 'python2-debian' 'python2-debtcollector' 'python2-decorator' 'python2-defusedxml' 'python2-delegator' 'python2-delegator.py' 'python2-deltarpm' 'python2-demjson' 'python2-dennis' 'python2-deprecation' 'python2-derpconf' 'python2-dfdatetime' 'python2-dialite' 'python2-dicttoxml' 'python2-diff_match_patch' 'python2-digitalocean' 'python2-dill' 'python2-dirtyjson' 'python2-dis3' 'python2-discid' 'python2-discogs-client' 'python2-diskcache' 'python2-distlib' 'python2-distorm3' 'python2-distributed' 'python2-distro' 'python2-distroinfo' 'python2-distutils-extra' 'python2-dj-database-url' 'python2-django-allauth' 'python2-django-allauth-lang' 'python2-django-appconf' 'python2-django-auth-ldap' 'python2-django-avatar' 'python2-django-babel' 'python2-django-braces' 'python2-django-ckeditor' 'python2-django-classy-tags' 'python2-django-contrib-comments' 'python2-django-cors-headers' 'python2-django-crispy-forms' 'python2-django-debreach' 'python2-django-debug-toolbar' 'python2-django-environ' 'python2-django-extensions' 'python2-django-formtools' 'python2-django-grappelli' 'python2-django-guardian' 'python2-django-invitations' 'python2-django-jinja' 'python2-django-js-asset' 'python2-django-json-widget' 'python2-django-jsonfield' 'python2-django-minio-storage' 'python2-django-model-utils' 'python2-django-nine' 'python2-django-nose' 'python2-django-oauth-toolkit' 'python2-django-oidc-provider' 'python2-django-picklefield' 'python2-django-pipeline' 'python2-django-pyscss' 'python2-django-redis' 'python2-django-registration' 'python2-django-rest-framework-client' 'python2-django-rest-framework-social-oauth2' 'python2-django-rest-invitations' 'python2-django-rest-knox' 'python2-django-reversion' 'python2-django-seed' 'python2-django-sekizai' 'python2-django-silk' 'python2-django-storages' 'python2-django-tagging' 'python2-django-tastypie' 'python2-django-threadedcomments' 'python2-django-webpack-loader' 'python2-django-webtest' 'python2-django_compressor' 'python2-django_coverage_plugin' 'python2-djangorestframework' 'python2-djet' 'python2-djvulibre' 'python2-dns-lexicon' 'python2-dnspython' 'python2-docformatter' 'python2-docker' 'python2-docker-compose' 'python2-docker-pycreds' 'python2-dockerpty' 'python2-docopt' 'python2-docrepr' 'python2-docutils' 'python2-docutils-ast-writer' 'python2-dogpile.cache' 'python2-dominate' 'python2-dparse' 'python2-dpkt' 'python2-drf-jwt-knox' 'python2-drf-nested-routers' 'python2-drms' 'python2-dropbox' 'python2-duckduckgo2' 'python2-dukpy' 'python2-dukpy-kovidgoyal' 'python2-dulwich' 'python2-easydev' 'python2-easygui' 'python2-easypysmb' 'python2-easywatch' 'python2-ebcdic' 'python2-ecdsa' 'python2-ed25519ll' 'python2-editdistance' 'python2-editdistance-devel' 'python2-efl' 'python2-efl-doc' 'python2-efl-examples' 'python2-elasticsearch' 'python2-email_validator' 'python2-emoji' 'python2-empy' 'python2-enable' 'python2-enable-kiva' 'python2-enaml' 'python2-encore' 'python2-entrypoint2' 'python2-entrypoints' 'python2-environmental-override' 'python2-enzyme' 'python2-epubmerge' 'python2-eradicate' 'python2-espeak' 'python2-esptool' 'python2-et_xmlfile' 'python2-etcd' 'python2-etcd-test' 'python2-ethtool' 'python2-evdev' 'python2-evemu' 'python2-eventlet' 'python2-evtx' 'python2-exam' 'python2-execnet' 'python2-expects' 'python2-exrex' 'python2-extras' 'python2-ez_setup' 'python2-factory_boy' 'python2-fake-useragent' 'python2-fakeredis' 'python2-falcon' 'python2-fanficfare' 'python2-fann2' 'python2-fastcluster' 'python2-fasteners' 'python2-fastimport' 'python2-fastparquet' 'python2-fb-re2' 'python2-fedmsg' 'python2-feedgenerator' 'python2-feedparser' 'python2-fido2' 'python2-fields' 'python2-filelock' 'python2-finance_enums' 'python2-fire' 'python2-first' 'python2-fixtures' 'python2-flake8' 'python2-flake8-blind-except' 'python2-flake8-builtins' 'python2-flake8-class-newline' 'python2-flake8-debugger' 'python2-flake8-deprecated' 'python2-flake8-docstrings' 'python2-flake8-future-import' 'python2-flake8-import-order' 'python2-flake8-imports' 'python2-flake8-polyfill' 'python2-flake8-quotes' 'python2-flaky' 'python2-flasgger' 'python2-flask-jwt-extended' 'python2-flask-mongoengine' 'python2-flask-peewee' 'python2-flask-restplus' 'python2-flatbuffers' 'python2-flex' 'python2-flexmock' 'python2-flickrapi' 'python2-flower' 'python2-fluent' 'python2-fluidity-sm' 'python2-flup' 'python2-forbiddenfruit' 'python2-freetype-py' 'python2-freezegun' 'python2-freezerclient' 'python2-frozendict' 'python2-fs' 'python2-ftputil' 'python2-fudge' 'python2-funcparserlib' 'python2-funcy' 'python2-furl' 'python2-fuse' 'python2-fusepy' 'python2-future' 'python2-futures' 'python2-futurist' 'python2-fysom' 'python2-gTTS' 'python2-gTTS-token' 'python2-gabbi' 'python2-gast' 'python2-gear' 'python2-ged4py' 'python2-genty' 'python2-geographiclib' 'python2-geoip2' 'python2-geojson' 'python2-geolib' 'python2-geolinks' 'python2-geopy' 'python2-gevent' 'python2-geventhttpclient' 'python2-ggplot' 'python2-girder-client' 'python2-git-pw' 'python2-git-url-parse' 'python2-gitdb2' 'python2-github3.py' 'python2-gitlint' 'python2-glanceclient' 'python2-glean' 'python2-glfw' 'python2-glob2' 'python2-gmpy' 'python2-gmpy2' 'python2-gobject' 'python2-gobject-Dee' 'python2-gobject-Gdk' 'python2-gobject-cairo' 'python2-gobject-devel' 'python2-gogs_client' 'python2-goocanvas' 'python2-goocanvas-devel' 'python2-google-api-core' 'python2-google-api-python-client' 'python2-google-auth' 'python2-google-auth-httplib2' 'python2-google-auth-oauthlib' 'python2-google-cloud-core' 'python2-google-cloud-kms' 'python2-google-cloud-speech' 'python2-google-cloud-storage' 'python2-google-resumable-media' 'python2-googleapis-common-protos' 'python2-googlemaps' 'python2-gpg' 'python2-gpgme' 'python2-gphoto2' 'python2-gpod' 'python2-gprof2dot' 'python2-gpsd' 'python2-grab' 'python2-graphviz' 'python2-greenlet' 'python2-greenlet-devel' 'python2-grpc-google-iam-v1' 'python2-grpcio' 'python2-grpcio-gcp' 'python2-gscholar' 'python2-gspread' 'python2-gssapi' 'python2-gst' 'python2-guessit' 'python2-gunicorn' 'python2-guzzle_sphinx_theme' 'python2-h11' 'python2-h2' 'python2-h5py' 'python2-hankel' 'python2-happybase' 'python2-hawkauthlib' 'python2-hdf5storage' 'python2-heatclient' 'python2-hetzner' 'python2-hexdump' 'python2-hiredis' 'python2-hkdf' 'python2-hl7apy' 'python2-holidays' 'python2-hpack' 'python2-html2text' 'python2-html5-parser' 'python2-html5lib' 'python2-htmlmin' 'python2-httmock' 'python2-http-parser' 'python2-httpbin' 'python2-httplib2' 'python2-httpretty' 'python2-httpsig_cffi' 'python2-httpstatus35' 'python2-humanfriendly' 'python2-humanhash3' 'python2-humanize' 'python2-hupper' 'python2-husl' 'python2-hyper' 'python2-hyperframe' 'python2-hyperlink' 'python2-hypothesis' 'python2-hypothesis-fspaths' 'python2-icalendar' 'python2-identify' 'python2-idna' 'python2-ifaddr' 'python2-imageio' 'python2-imagesize' 'python2-img2pdf' 'python2-iminuit' 'python2-importlab' 'python2-importlib-metadata' 'python2-importlib_resources' 'python2-imread' 'python2-incremental' 'python2-infinity' 'python2-inflect' 'python2-inflection' 'python2-influxdb' 'python2-inifile' 'python2-iniparse' 'python2-inspect2' 'python2-inspektor' 'python2-intervals' 'python2-intervaltree' 'python2-invocations' 'python2-invoke' 'python2-iocapture' 'python2-ioflo' 'python2-ipaddr' 'python2-ipdb' 'python2-iptables' 'python2-ipy' 'python2-ipykernel' 'python2-ipympl' 'python2-ipyparallel' 'python2-ipython' 'python2-ipython-iptest' 'python2-ipython_genutils' 'python2-ipywidgets' 'python2-ironicclient' 'python2-iso8601' 'python2-isodate' 'python2-isort' 'python2-itsdangerous' 'python2-itypes' 'python2-iwlib' 'python2-jaraco.base' 'python2-jaraco.classes' 'python2-jaraco.collections' 'python2-jaraco.functools' 'python2-jaraco.itertools' 'python2-jaraco.logging' 'python2-jaraco.packaging' 'python2-jaraco.stream' 'python2-jaraco.text' 'python2-jdcal' 'python2-jedi' 'python2-jedihttp' 'python2-jenkins-job-builder' 'python2-jenkinsapi' 'python2-jgraph' 'python2-jinja2-fsloader' 'python2-jinja2-time' 'python2-jira' 'python2-jirafs' 'python2-jmespath' 'python2-joblib' 'python2-josepy' 'python2-jplephem' 'python2-jsbeautifier' 'python2-json-rpc' 'python2-json5' 'python2-json_tricks' 'python2-jsondate' 'python2-jsondiff' 'python2-jsonextended' 'python2-jsonlines' 'python2-jsonpatch' 'python2-jsonpath-rw' 'python2-jsonpath-rw-ext' 'python2-jsonpickle' 'python2-jsonpointer' 'python2-jsonref' 'python2-jsonrpclib-pelix' 'python2-jsonschema' 'python2-junitxml' 'python2-jupyter-contrib-nbextensions' 'python2-jupyter-server' 'python2-jupyter_client' 'python2-jupyter_contrib_core' 'python2-jupyter_core' 'python2-jupyter_highlight_selected_word' 'python2-jupyter_latex_envs' 'python2-jupyter_nbextensions_configurator' 'python2-jupyter_sphinx' 'python2-jupyterlab-pygments' 'python2-jupytext' 'python2-jwcrypto' 'python2-k5test' 'python2-kafka-python' 'python2-kaitaistruct' 'python2-kazoo' 'python2-keepalive' 'python2-kerberos' 'python2-keyczar' 'python2-keyring' 'python2-keyrings.alt' 'python2-keystoneauth1' 'python2-keystoneclient' 'python2-keystonemiddleware' 'python2-kid' 'python2-killswitch' 'python2-kitchen' 'python2-kiwisolver' 'python2-kmatch' 'python2-kmod' 'python2-knack' 'python2-kombu' 'python2-kubernetes' 'python2-l20n' 'python2-lancet-ioam' 'python2-lark-parser' 'python2-latexcodec' 'python2-lazr.uri' 'python2-lazy' 'python2-lazy-object-proxy' 'python2-lazyarray' 'python2-ldap' 'python2-ldap3' 'python2-ldappool' 'python2-leather' 'python2-lesscpy' 'python2-leveldb' 'python2-lexicon' 'python2-lhafile' 'python2-libarchive' 'python2-libarchive-c' 'python2-libbde' 'python2-libewf' 'python2-libfsntfs' 'python2-libfvde' 'python2-libfwnt' 'python2-libguestfs' 'python2-liblarch' 'python2-liblarch-gtk' 'python2-libnacl' 'python2-libpamtest' 'python2-libpfm' 'python2-libprelude' 'python2-libpreludedb' 'python2-libqcow' 'python2-librosa' 'python2-libsass' 'python2-libscca' 'python2-libsigscan' 'python2-libsmdev' 'python2-libsmraw' 'python2-libtorrent-rasterbar' 'python2-libunity' 'python2-libusb1' 'python2-libvhdi' 'python2-libvirt-python' 'python2-libvmdk' 'python2-libvshadow' 'python2-libvslvm' 'python2-libxml2-python' 'python2-limnoria' 'python2-line_profiler' 'python2-linecache2' 'python2-lineup-widget' 'python2-linux-procfs' 'python2-lit' 'python2-llfuse' 'python2-llvmlite' 'python2-lmdb' 'python2-lmfit' 'python2-lml' 'python2-localzone' 'python2-locket' 'python2-lockfile' 'python2-logilab-astng' 'python2-logilab-common' 'python2-logutils' 'python2-logzero' 'python2-lupa' 'python2-lxml' 'python2-lxml-devel' 'python2-lz4' 'python2-lzmaffi' 'python2-m2r' 'python2-macholib' 'python2-magic' 'python2-magic-wormhole' 'python2-magic-wormhole-mailbox-server' 'python2-magic-wormhole-transit-relay' 'python2-magnumclient' 'python2-managesieve' 'python2-mando' 'python2-manilaclient' 'python2-manuel' 'python2-manuel-doc' 'python2-marathon' 'python2-markdown-math' 'python2-markdown2' 'python2-matplotlib' 'python2-matplotlib-gtk3' 'python2-matplotlib-latex' 'python2-matplotlib-qt-shared' 'python2-matplotlib-qt5' 'python2-matplotlib-tk' 'python2-matplotlib-web' 'python2-matplotlib-wx' 'python2-matrix-synapse-ldap3' 'python2-maxminddb' 'python2-mbstrdecoder' 'python2-mccabe' 'python2-md2workflow' 'python2-mechanize' 'python2-meld3' 'python2-memory_profiler' 'python2-metaextract' 'python2-metakernel' 'python2-mhash' 'python2-minio' 'python2-miniupnpc' 'python2-mistune' 'python2-moban' 'python2-mock' 'python2-mockito' 'python2-mockldap' 'python2-modernize' 'python2-mohawk' 'python2-moksha-common' 'python2-moksha-hub' 'python2-monascaclient' 'python2-mongoengine' 'python2-monotonic' 'python2-more-itertools' 'python2-moretools' 'python2-moto' 'python2-moviepy' 'python2-mox3' 'python2-mpi4py' 'python2-mpi4py-devel' 'python2-mpmath' 'python2-mraa' 'python2-msgpack' 'python2-msgpack-numpy' 'python2-msoffcrypto-tool' 'python2-msrest' 'python2-msrestazure' 'python2-mujson' 'python2-mulpyplexer' 'python2-multi_key_dict' 'python2-multipledispatch' 'python2-munch' 'python2-musicbrainzngs' 'python2-mutagen' 'python2-mutt-ics' 'python2-mygpoclient' 'python2-mypy_extensions' 'python2-mysql-connector-python' 'python2-mysqlclient' 'python2-nagiosplugin' 'python2-natsort' 'python2-nautilus' 'python2-nautilus-devel' 'python2-nbconvert' 'python2-nbdime' 'python2-nbformat' 'python2-nbindex-jupyter' 'python2-nbsmoke' 'python2-nbsphinx' 'python2-nbsphinx-link' 'python2-nbval' 'python2-nbxmpp' 'python2-nbxmpp-doc' 'python2-ncclient' 'python2-ndg-httpsclient' 'python2-nemo' 'python2-neovim' 'python2-net-snmp' 'python2-netCDF4' 'python2-netaddr' 'python2-netifaces' 'python2-netmiko' 'python2-networkx' 'python2-networkx-doc' 'python2-neutronclient' 'python2-newt' 'python2-nibabel' 'python2-nilearn' 'python2-nine' 'python2-nltk' 'python2-nose' 'python2-nose-cov' 'python2-nose-cover3' 'python2-nose-exclude' 'python2-nose-progressive' 'python2-nose-timer' 'python2-nose2' 'python2-nose_warnings_filters' 'python2-nosexcover' 'python2-notebook' 'python2-notebook-lang' 'python2-notify2' 'python2-novaclient' 'python2-nss' 'python2-ntlm-auth' 'python2-ntplib' 'python2-num2words' 'python2-numba' 'python2-numba-devel' 'python2-numericalunits' 'python2-numexpr' 'python2-numpy' 'python2-numpy-devel' 'python2-numpy-gnu-hpc' 'python2-numpy-gnu-hpc-devel' 'python2-numpy_1_16_4-gnu-hpc' 'python2-numpy_1_16_4-gnu-hpc-devel' 'python2-numpydoc' 'python2-nwdiag' 'python2-oauth2' 'python2-oauth2client' 'python2-oauth2client-flask' 'python2-oauth2client-gce' 'python2-oauthlib' 'python2-objgraph' 'python2-octaviaclient' 'python2-odfpy' 'python2-odorik' 'python2-olefile' 'python2-openapi-core' 'python2-openapi-spec-validator' 'python2-opencv' 'python2-opencv3' 'python2-opengl' 'python2-opengl-accelerate' 'python2-openmesh' 'python2-openpyxl' 'python2-openqa_client' 'python2-openqa_review' 'python2-openstack.nose_plugin' 'python2-openstackclient' 'python2-openstackdocstheme' 'python2-openstacksdk' 'python2-ordered-namespace' 'python2-ordered-set' 'python2-orderedmultidict' 'python2-os-api-ref' 'python2-os-client-config' 'python2-os-service-types' 'python2-os-testr' 'python2-os-win' 'python2-osc-lib' 'python2-oscrypto' 'python2-oslo.cache' 'python2-oslo.concurrency' 'python2-oslo.config' 'python2-oslo.context' 'python2-oslo.db' 'python2-oslo.i18n' 'python2-oslo.log' 'python2-oslo.messaging' 'python2-oslo.middleware' 'python2-oslo.policy' 'python2-oslo.privsep' 'python2-oslo.reports' 'python2-oslo.rootwrap' 'python2-oslo.serialization' 'python2-oslo.service' 'python2-oslo.utils' 'python2-oslo.versionedobjects' 'python2-oslo.vmware' 'python2-oslosphinx' 'python2-oslotest' 'python2-osmviz' 'python2-osprofiler' 'python2-outcome' 'python2-ovirt-engine-sdk' 'python2-ovs' 'python2-ovsdbapp' 'python2-pa-ringbuffer' 'python2-packaging' 'python2-paho-mqtt' 'python2-pako' 'python2-palettable' 'python2-pamqp' 'python2-pandas' 'python2-pandas-datareader' 'python2-pandocfilters' 'python2-panflute' 'python2-parallax' 'python2-param' 'python2-parameterized' 'python2-paramiko' 'python2-paramiko-expect' 'python2-parse' 'python2-parse_type' 'python2-parsedatetime' 'python2-parsel' 'python2-parso' 'python2-partd' 'python2-parted' 'python2-parver' 'python2-pass_python_keyring' 'python2-passa' 'python2-passivetotal' 'python2-passlib' 'python2-pastream' 'python2-path.py' 'python2-pathlib' 'python2-pathlib2' 'python2-pathspec' 'python2-pathtools' 'python2-patsy' 'python2-pbkdf2' 'python2-pbr' 'python2-pdfkit' 'python2-pdfrw' 'python2-pecan' 'python2-peewee' 'python2-pefile' 'python2-pelican' 'python2-pem' 'python2-pep517' 'python2-pep8-naming' 'python2-peppercorn' 'python2-persistent' 'python2-persistent-devel' 'python2-petact' 'python2-pexpect' 'python2-pgmagick' 'python2-phabricator' 'python2-phonenumbers' 'python2-phply' 'python2-phue' 'python2-pick' 'python2-pickleshare' 'python2-piexif' 'python2-pifpaf' 'python2-pika' 'python2-pika-pool' 'python2-pilkit' 'python2-pip' 'python2-pip-api' 'python2-pip-run' 'python2-pip-shims' 'python2-pipdeptree' 'python2-pipenv' 'python2-pipreqs' 'python2-piston-mini-client' 'python2-pivy' 'python2-pkgconfig' 'python2-pkginfo' 'python2-plaster' 'python2-plaster-pastedeploy' 'python2-plette' 'python2-plotly' 'python2-plotly-jupyter' 'python2-pluggy' 'python2-plumbum' 'python2-ply' 'python2-plyvel' 'python2-pmw' 'python2-pocketsphinx' 'python2-pocketsphinx-python' 'python2-podcastparser' 'python2-polib' 'python2-pony' 'python2-port-for' 'python2-portalocker' 'python2-portend' 'python2-portpicker' 'python2-positional' 'python2-posix_ipc' 'python2-power' 'python2-poyo' 'python2-pprintpp' 'python2-precise-runner' 'python2-preggy' 'python2-prelude-correlator' 'python2-premailer' 'python2-pretend' 'python2-prewikka' 'python2-proboscis' 'python2-process-tests' 'python2-proglog' 'python2-progress' 'python2-progressbar' 'python2-prometheus_client' 'python2-promise' 'python2-prompt_toolkit' 'python2-prompt_toolkit1' 'python2-proselint' 'python2-protobuf' 'python2-pscript' 'python2-psutil' 'python2-psycopg2' 'python2-ptpython' 'python2-ptyprocess' 'python2-publicsuffixlist' 'python2-pudb' 'python2-pulsectl' 'python2-pure-sasl' 'python2-purl' 'python2-pushy' 'python2-pwquality' 'python2-py' 'python2-py-cpuinfo' 'python2-py-espeak-ng' 'python2-py-radix' 'python2-py-ubjson' 'python2-py2pack' 'python2-py3status' 'python2-pyDOE2' 'python2-pyFFTW' 'python2-pyLibravatar' 'python2-pyModis' 'python2-pyOCD' 'python2-pyOpenSSL' 'python2-pyPEG2' 'python2-pyRFC3339' 'python2-pyScss' 'python2-pyVows' 'python2-pyacoustid' 'python2-pyaes' 'python2-pyalsaaudio' 'python2-pyaml' 'python2-pyannotate' 'python2-pyasn1' 'python2-pyasn1-modules' 'python2-pybars3' 'python2-pybeam' 'python2-pybind11' 'python2-pybind11-devel' 'python2-pyblake2' 'python2-pybluez' 'python2-pybtex' 'python2-pybugz' 'python2-pycadf' 'python2-pycairo' 'python2-pycairo-devel' 'python2-pycallgraph' 'python2-pycdio' 'python2-pycha' 'python2-pychm' 'python2-pycodestyle' 'python2-pycountry' 'python2-pycparser' 'python2-pycryptodome' 'python2-pycryptodomex' 'python2-pycsw' 'python2-pyct' 'python2-pycups' 'python2-pycurl' 'python2-pycxx' 'python2-pycxx-devel' 'python2-pydata-google-auth' 'python2-pydbus' 'python2-pydenticon' 'python2-pydicom' 'python2-pydns' 'python2-pydocstyle' 'python2-pydocumentdb' 'python2-pydot' 'python2-pydot3' 'python2-pydotplus' 'python2-pydub' 'python2-pyee' 'python2-pyelftools' 'python2-pyemd' 'python2-pyenchant' 'python2-pyface' 'python2-pyfakefs' 'python2-pyfeyn' 'python2-pyfiglet' 'python2-pyflakes' 'python2-pyftpdlib' 'python2-pygal' 'python2-pygaljs' 'python2-pygame' 'python2-pygame-devel' 'python2-pygerrit2' 'python2-pyghmi' 'python2-pygit2' 'python2-pyglet' 'python2-pygments-ansi-color' 'python2-pygments-pytest' 'python2-pygments-style-railscasts' 'python2-pygraphviz' 'python2-pyinotify' 'python2-pyinsane2' 'python2-pyjavaproperties' 'python2-pyjokes' 'python2-pyjsparser' 'python2-pyjwkest' 'python2-pykafka' 'python2-pykeepass' 'python2-pykerberos' 'python2-pykwalify' 'python2-pylama' 'python2-pylev' 'python2-pyliblzma' 'python2-pylibmc' 'python2-pylint' 'python2-pylons-sphinx-themes' 'python2-pylzma' 'python2-pymacaroons' 'python2-pymacaroons-pynacl' 'python2-pymad' 'python2-pymarc' 'python2-pymediainfo' 'python2-pymemcache' 'python2-pymisp' 'python2-pymod2pkg' 'python2-pymol' 'python2-pymongo' 'python2-pymssql' 'python2-pynamodb' 'python2-pyngus' 'python2-pyodbc' 'python2-pyosf' 'python2-pyotp' 'python2-pyparallel' 'python2-pyparsing' 'python2-pyperclip' 'python2-pypiserver' 'python2-pypng' 'python2-pyprel' 'python2-pyprimes' 'python2-pyproj' 'python2-pypsexec' 'python2-pypuppetdb' 'python2-pyqtgraph' 'python2-pyquery' 'python2-pyramid' 'python2-pyreadstat' 'python2-pyroma' 'python2-pyroute2' 'python2-pyrrd' 'python2-pyrsistent' 'python2-pysaml2' 'python2-pyscard' 'python2-pysendfile' 'python2-pyserial' 'python2-pyshould' 'python2-pyshp' 'python2-pysmb' 'python2-pysmbc' 'python2-pysmi' 'python2-pysndfile' 'python2-pysnmp' 'python2-pysofaconventions' 'python2-pysrt' 'python2-pyssim' 'python2-pystache' 'python2-pysvn' 'python2-pytaglib' 'python2-pyte' 'python2-pytesseract' 'python2-pytest-arraydiff' 'python2-pytest-astropy' 'python2-pytest-attrib' 'python2-pytest-bdd' 'python2-pytest-benchmark' 'python2-pytest-check-links' 'python2-pytest-click' 'python2-pytest-codestyle' 'python2-pytest-console-scripts' 'python2-pytest-cov' 'python2-pytest-datadir' 'python2-pytest-django' 'python2-pytest-doctestplus' 'python2-pytest-dotenv' 'python2-pytest-env' 'python2-pytest-error-for-skips' 'python2-pytest-expect' 'python2-pytest-faulthandler' 'python2-pytest-fixture-config' 'python2-pytest-flake8' 'python2-pytest-flakes' 'python2-pytest-flask' 'python2-pytest-forked' 'python2-pytest-git' 'python2-pytest-helpers-namespace' 'python2-pytest-html' 'python2-pytest-httpbin' 'python2-pytest-instafail' 'python2-pytest-isort' 'python2-pytest-lazy-fixture' 'python2-pytest-localserver' 'python2-pytest-metadata' 'python2-pytest-mock' 'python2-pytest-mpl' 'python2-pytest-openfiles' 'python2-pytest-profiling' 'python2-pytest-pythonpath' 'python2-pytest-qt' 'python2-pytest-randomly' 'python2-pytest-relaxed' 'python2-pytest-remotedata' 'python2-pytest-reorder' 'python2-pytest-repeat' 'python2-pytest-reqs' 'python2-pytest-rerunfailures' 'python2-pytest-runner' 'python2-pytest-services' 'python2-pytest-shutil' 'python2-pytest-socket' 'python2-pytest-spec' 'python2-pytest-subtesthack' 'python2-pytest-sugar' 'python2-pytest-super-check' 'python2-pytest-svn' 'python2-pytest-testconfig' 'python2-pytest-timeout' 'python2-pytest-tldr' 'python2-pytest-tornado' 'python2-pytest-translations' 'python2-pytest-travis-fold' 'python2-pytest-vcr' 'python2-pytest-verbose-parametrize' 'python2-pytest-virtualenv' 'python2-pytest-xdist' 'python2-pytest-xvfb' 'python2-pytest3' 'python2-pytest4' 'python2-python-afl' 'python2-python-aiml' 'python2-python-bidi' 'python2-python-box' 'python2-python-cjson' 'python2-python-coveralls' 'python2-python-crfsuite' 'python2-python-daemon' 'python2-python-datamatrix' 'python2-python-dateutil' 'python2-python-dbusmock' 'python2-python-docs-theme' 'python2-python-dotenv' 'python2-python-editor' 'python2-python-fileinspector' 'python2-python-gammu' 'python2-python-gflags' 'python2-python-gitlab' 'python2-python-gnupg' 'python2-python-jenkins' 'python2-python-jose' 'python2-python-json-logger' 'python2-python-louvain' 'python2-python-lzo' 'python2-python-magic' 'python2-python-memcached' 'python2-python-mimeparse' 'python2-python-mpd2' 'python2-python-mpv' 'python2-python-openid-cla' 'python2-python-openid-teams' 'python2-python-pam' 'python2-python-pseudorandom' 'python2-python-ptrace' 'python2-python-qdatamatrix' 'python2-python-qnotifications' 'python2-python-qpid-proton' 'python2-python-qprogedit' 'python2-python-redmine' 'python2-python-slugify' 'python2-python-snappy' 'python2-python-sofa' 'python2-python-sql' 'python2-python-stdnum' 'python2-python-subunit' 'python2-python-twitter' 'python2-python-utils' 'python2-python-vlc' 'python2-python-whois' 'python2-python-xlib' 'python2-python-yubico' 'python2-python3-saml' 'python2-pythonfinder' 'python2-pythonwhois' 'python2-pytidylib' 'python2-pytils' 'python2-pytimeparse' 'python2-pytoml' 'python2-pytools' 'python2-pytricia' 'python2-pytz' 'python2-pyuca' 'python2-pyudev' 'python2-pyusb' 'python2-pyutf8' 'python2-pyviz-comms' 'python2-pyvmomi' 'python2-pywbem' 'python2-pywinrm' 'python2-pyxattr' 'python2-pyxb' 'python2-pyxdg' 'python2-pyzmq' 'python2-pyzmq-devel' 'python2-qgrid' 'python2-qrcode' 'python2-qscintilla-qt5' 'python2-qt3d-qt5' 'python2-qt4' 'python2-qt4-devel' 'python2-qt5' 'python2-qt5-devel' 'python2-qtcharts-qt5' 'python2-qtconsole' 'python2-qtdatavis3d-qt5' 'python2-qtwebengine-qt5' 'python2-queuelib' 'python2-quicktions' 'python2-radon' 'python2-raet' 'python2-random2' 'python2-rarfile' 'python2-rarfile-doc' 'python2-ravello-sdk' 'python2-raven' 'python2-rawkit' 'python2-rcssmin' 'python2-rdflib' 'python2-readme_renderer' 'python2-readthedocs-sphinx-ext' 'python2-rebulk' 'python2-recommonmark' 'python2-redbaron' 'python2-redis' 'python2-rednose' 'python2-regex' 'python2-relatorio' 'python2-releases' 'python2-releases-test' 'python2-remoto' 'python2-rencode' 'python2-reno' 'python2-repex' 'python2-reportlab' 'python2-repoze.lru' 'python2-repoze.sphinx.autointerface' 'python2-repoze.who' 'python2-requests' 'python2-requests-aws' 'python2-requests-cache' 'python2-requests-download' 'python2-requests-file' 'python2-requests-ftp' 'python2-requests-futures' 'python2-requests-hawk' 'python2-requests-kerberos' 'python2-requests-mock' 'python2-requests-oauthlib' 'python2-requests-toolbelt' 'python2-requests-unixsocket' 'python2-requests_ntlm' 'python2-requestsexceptions' 'python2-requirements-detector' 'python2-requirements-parser' 'python2-requirementslib' 'python2-resampy' 'python2-resolvelib' 'python2-responses' 'python2-restructuredtext_lint' 'python2-resultsdb_api' 'python2-retry' 'python2-retry_decorator' 'python2-retrying' 'python2-rfc3986' 'python2-rfc3987' 'python2-rfc6266' 'python2-rjsmin' 'python2-rnginline' 'python2-rollbar' 'python2-roman' 'python2-rope' 'python2-rply' 'python2-rpm' 'python2-rpmfile' 'python2-rpyc' 'python2-rq' 'python2-rrdtool' 'python2-rsa' 'python2-rst.linker' 'python2-rstcheck' 'python2-rt' 'python2-rtslib-fb' 'python2-ruamel.base' 'python2-ruamel.std.argparse' 'python2-ruamel.std.pathlib' 'python2-ruamel.yaml' 'python2-ruamel.yaml.clib' 'python2-ruamel.yaml.cmd' 'python2-ruamel.yaml.convert' 'python2-ruffus' 'python2-ryu' 'python2-s3transfer' 'python2-salt' 'python2-samplerate' 'python2-sane' 'python2-sanlock' 'python2-sarge' 'python2-sas7bdat' 'python2-sasl' 'python2-scales' 'python2-scandir' 'python2-schedule' 'python2-schema' 'python2-scikit-build' 'python2-scikit-dsp-comm' 'python2-scikit-image' 'python2-scikit-learn' 'python2-scikit-sparse' 'python2-scikit-umfpack' 'python2-scikits.example' 'python2-scipy' 'python2-scipy-gnu-hpc' 'python2-scipy_1_2_1-gnu-hpc' 'python2-scitools' 'python2-scour' 'python2-scp' 'python2-scripttest' 'python2-scrypt' 'python2-scspell3k' 'python2-sdnotify' 'python2-seaborn' 'python2-selection' 'python2-selectors2' 'python2-selectors34' 'python2-selenium' 'python2-semanage' 'python2-semantic_version' 'python2-semver' 'python2-senlinclient' 'python2-sentry-sdk' 'python2-seqdiag' 'python2-serpent' 'python2-serpy' 'python2-serverfiles' 'python2-service_identity' 'python2-setproctitle' 'python2-setuptools' 'python2-setuptools-git' 'python2-setuptools_scm' 'python2-setuptools_scm_git_archive' 'python2-sge-pygame' 'python2-sh' 'python2-shaptools' 'python2-shellingham' 'python2-shijian' 'python2-shodan' 'python2-shortuuid' 'python2-shouldbe' 'python2-shutilwhich' 'python2-sievelib' 'python2-signedjson' 'python2-simplebayes' 'python2-simpleeval' 'python2-simplegeneric' 'python2-simplejson' 'python2-sip' 'python2-sip-devel' 'python2-siphashc' 'python2-six' 'python2-sklearn-pandas' 'python2-sleekxmpp' 'python2-slimit' 'python2-slip' 'python2-slip-dbus' 'python2-slip-gtk' 'python2-slumber' 'python2-slycot' 'python2-smartypants' 'python2-smbprotocol' 'python2-smmap' 'python2-smmap2' 'python2-snakefood' 'python2-snowballstemmer' 'python2-snuggs' 'python2-social-auth-app-django' 'python2-social-auth-core' 'python2-socketpool' 'python2-softlayer' 'python2-sortedcollections' 'python2-sortedcontainers' 'python2-sortinghat' 'python2-soundcloud' 'python2-sounddevice' 'python2-soupsieve' 'python2-spake2' 'python2-spark_parser' 'python2-speaklater' 'python2-spec' 'python2-sphinx-bootstrap-theme' 'python2-sphinx-feature-classification' 'python2-sphinx-issues' 'python2-sphinx-removed-in' 'python2-sphinx-testing' 'python2-sphinx-version-warning' 'python2-sphinx_rtd_theme' 'python2-sphinxbase' 'python2-sphinxcontrib-actdiag' 'python2-sphinxcontrib-apidoc' 'python2-sphinxcontrib-asyncio' 'python2-sphinxcontrib-autoprogram' 'python2-sphinxcontrib-autoprogram-doc' 'python2-sphinxcontrib-blockdiag' 'python2-sphinxcontrib-documentedlist' 'python2-sphinxcontrib-github-alt' 'python2-sphinxcontrib-httpdomain' 'python2-sphinxcontrib-issuetracker' 'python2-sphinxcontrib-newsfeed' 'python2-sphinxcontrib-nwdiag' 'python2-sphinxcontrib-pecanwsme' 'python2-sphinxcontrib-programoutput' 'python2-sphinxcontrib-seqdiag' 'python2-sphinxcontrib-svg2pdfconverter' 'python2-sphinxcontrib-websupport' 'python2-spotipy' 'python2-sqlalchemy-migrate' 'python2-sqlitedict' 'python2-sqlparse' 'python2-ssdeep' 'python2-sshtunnel' 'python2-statistics' 'python2-statsd' 'python2-statsmodels' 'python2-stdeb' 'python2-stestr' 'python2-stevedore' 'python2-stomp.py' 'python2-stomper' 'python2-storm' 'python2-storm-django' 'python2-storm-mysql' 'python2-storm-postgresql' 'python2-storm-twisted' 'python2-straight-plugin' 'python2-streamz' 'python2-strict-rfc3339' 'python2-structlog' 'python2-subgrab' 'python2-subliminal' 'python2-subprocess32' 'python2-subst' 'python2-suds-jurko' 'python2-sure' 'python2-sushy' 'python2-svgwrite' 'python2-swapper' 'python2-swiftclient' 'python2-sybil' 'python2-sympy' 'python2-systemd' 'python2-tables' 'python2-tablib' 'python2-tabulate' 'python2-tagpy' 'python2-tap.py' 'python2-targetcli-fb' 'python2-tblib' 'python2-technicolor' 'python2-telepot' 'python2-template-remover' 'python2-tempora' 'python2-tenacity' 'python2-termcolor' 'python2-terminado' 'python2-terminaltables' 'python2-termstyle' 'python2-tesserocr' 'python2-testfixtures' 'python2-testflo' 'python2-testinfra' 'python2-testpath' 'python2-testrepository' 'python2-testresources' 'python2-testscenarios' 'python2-testtools' 'python2-text-unidecode' 'python2-textX' 'python2-textfsm' 'python2-textile' 'python2-texttable' 'python2-textwrap3' 'python2-thLib' 'python2-thrift' 'python2-thriftpy' 'python2-tinydb' 'python2-tinyrecord' 'python2-tinyrpc' 'python2-titlecase' 'python2-tkreadonly' 'python2-tld' 'python2-tldextract' 'python2-tmx' 'python2-toml' 'python2-tomlkit' 'python2-toolz' 'python2-tooz' 'python2-topy' 'python2-tornado' 'python2-tornado4' 'python2-tox' 'python2-tox-no-internet' 'python2-tox-travis' 'python2-tox-wheel' 'python2-tpfd' 'python2-tqdm' 'python2-traceback2' 'python2-traitlets' 'python2-traits' 'python2-traitsui' 'python2-traittypes' 'python2-transaction' 'python2-transip' 'python2-translation-finder' 'python2-translationstring' 'python2-translitcodec' 'python2-treq' 'python2-trustme' 'python2-tsk' 'python2-tvdb_api' 'python2-tweepy' 'python2-twine' 'python2-twitter.common.finagle-thrift' 'python2-twitter.common.lang' 'python2-twitter.common.rpc' 'python2-twodict' 'python2-twython' 'python2-txWS' 'python2-txZMQ' 'python2-txacme' 'python2-txaio' 'python2-txtorcon' 'python2-typing' 'python2-typing_extensions' 'python2-tzlocal' 'python2-u-msgpack-python' 'python2-ua-parser' 'python2-uamqp' 'python2-ucsmsdk' 'python2-ujson' 'python2-unbound' 'python2-uncertainties' 'python2-uncompyle6' 'python2-unicodecsv' 'python2-unidiff' 'python2-unify' 'python2-uniseg' 'python2-units' 'python2-unittest-mixins' 'python2-unittest-xml-reporting' 'python2-unittest2' 'python2-unpaddedbase64' 'python2-untokenize' 'python2-upm' 'python2-uritemplate' 'python2-urlgrabber' 'python2-urllib3' 'python2-urwid' 'python2-user-agents' 'python2-user_agent' 'python2-validate_email' 'python2-validators' 'python2-varlink' 'python2-vcrpy' 'python2-vcs' 'python2-vcversioner' 'python2-vega' 'python2-vega_datasets' 'python2-venusian' 'python2-venusian-doc' 'python2-verboselogs' 'python2-versioneer' 'python2-versiontools' 'python2-vim-vint' 'python2-vine' 'python2-virt-bootstrap' 'python2-virtkey' 'python2-virtualbmc' 'python2-virtualenv' 'python2-virtualenv-clone' 'python2-virtualenvwrapper' 'python2-visitor' 'python2-vispy' 'python2-vistir' 'python2-vobject' 'python2-voila' 'python2-voluptuous' 'python2-vulkan' 'python2-vulture' 'python2-w3lib' 'python2-wadllib' 'python2-waitress' 'python2-waitress-doc' 'python2-wakeonlan' 'python2-warlock' 'python2-watchdog' 'python2-watchdog-doc' 'python2-watermark' 'python2-wcwidth' 'python2-weave' 'python2-webassets' 'python2-webcolors' 'python2-webencodings' 'python2-weblib' 'python2-websocket-client' 'python2-websockify' 'python2-whatever' 'python2-whatthepatch' 'python2-wheel' 'python2-whichcraft' 'python2-whitenoise' 'python2-whois_similarity_distance' 'python2-wikipedia' 'python2-wiring' 'python2-wolframalpha' 'python2-wptools' 'python2-wrapt' 'python2-ws4py' 'python2-wsaccel' 'python2-wsgi_intercept' 'python2-wstools' 'python2-wtf-peewee' 'python2-wurlitzer' 'python2-wxPython' 'python2-wxPython-lang' 'python2-xapp' 'python2-xattr' 'python2-xcffib' 'python2-xdis' 'python2-xerox' 'python2-xhtml2pdf' 'python2-xlrd' 'python2-xlwt' 'python2-xmldiff' 'python2-xmlsec' 'python2-xmltodict' 'python2-xpybutil' 'python2-xsge_gui' 'python2-xsge_lighting' 'python2-xsge_particle' 'python2-xsge_path' 'python2-xsge_physics' 'python2-xsge_tmx' 'python2-xvfbwrapper' 'python2-xxhash' 'python2-yamldoc' 'python2-yamllint' 'python2-yapf' 'python2-yappi' 'python2-yara' 'python2-yarb' 'python2-yarg' 'python2-yaspin' 'python2-youtube-dl' 'python2-yq' 'python2-yum' 'python2-zake' 'python2-zc.buildout' 'python2-zc.customdoctests' 'python2-zc.lockfile' 'python2-zdaemon' 'python2-zeep' 'python2-zetup' 'python2-zict' 'python2-zipp' 'python2-zipstream' 'python2-zodbpickle' 'python2-zope.cachedescriptors' 'python2-zope.component' 'python2-zope.configuration' 'python2-zope.copy' 'python2-zope.deferredimport' 'python2-zope.deprecation' 'python2-zope.event' 'python2-zope.exceptions' 'python2-zope.hookable' 'python2-zope.i18nmessageid' 'python2-zope.interface' 'python2-zope.location' 'python2-zope.proxy' 'python2-zope.proxy-devel' 'python2-zope.schema' 'python2-zope.security' 'python2-zope.testbrowser' 'python2-zope.testing' 'python2-zope.testrunner' 'python2-zstandard' 'python2-zstd' 'python2-zypp-plugin' 'python3' 'python3-32bit' 'python3-3to2' 'python3-APScheduler' 'python3-AnyQt' 'python3-Arpeggio' 'python3-Automat' 'python3-BTrees' 'python3-BTrees-devel' 'python3-BTrees-doc' 'python3-Babel' 'python3-Babel-doc' 'python3-Beaker' 'python3-BitVector' 'python3-Bottleneck' 'python3-Brotli' 'python3-CacheControl' 'python3-CairoSVG' 'python3-Cerberus' 'python3-Chameleon' 'python3-Cheetah3' 'python3-CherryPy' 'python3-CommonMark' 'python3-Cycler' 'python3-Cython' 'python3-DataShape' 'python3-DateTime' 'python3-Delorean' 'python3-Deprecated' 'python3-Django' 'python3-Django1' 'python3-Durus' 'python3-EasyProcess' 'python3-EditorConfig' 'python3-ExifRead' 'python3-Fabric' 'python3-Fabric3' 'python3-Faker' 'python3-Fiona' 'python3-Flask' 'python3-Flask-Admin' 'python3-Flask-Babel' 'python3-Flask-BabelEx' 'python3-Flask-Bootstrap' 'python3-Flask-Cache' 'python3-Flask-Cache-doc' 'python3-Flask-Compress' 'python3-Flask-Cors' 'python3-Flask-Gravatar' 'python3-Flask-HTMLmin' 'python3-Flask-HTTPAuth' 'python3-Flask-Login' 'python3-Flask-Mail' 'python3-Flask-Migrate' 'python3-Flask-Paranoid' 'python3-Flask-Principal' 'python3-Flask-PyMongo' 'python3-Flask-RESTful' 'python3-Flask-RSTPages' 'python3-Flask-SQLAlchemy' 'python3-Flask-Script' 'python3-Flask-Security' 'python3-Flask-WTF' 'python3-Flask-doc' 'python3-FontTools' 'python3-FormEncode' 'python3-Frozen-Flask' 'python3-GDAL' 'python3-Genshi' 'python3-GeoIP' 'python3-GitPython' 'python3-GitgExt' 'python3-Glances' 'python3-GooCalendar' 'python3-GridDataFormats' 'python3-HTTPolice' 'python3-HeapDict' 'python3-IMDbPY' 'python3-Jinja2' 'python3-Js2Py' 'python3-JsonWeb' 'python3-Kajiki' 'python3-Keras-Applications' 'python3-Keras-Preprocessing' 'python3-Kivy' 'python3-Kivy-devel' 'python3-LEPL' 'python3-Lektor' 'python3-Levenshtein' 'python3-Logbook' 'python3-M2Crypto' 'python3-Mako' 'python3-MapProxy' 'python3-Markdown' 'python3-MarkupSafe' 'python3-Markups' 'python3-Mathics' 'python3-MechanicalSoup' 'python3-Ming' 'python3-MiniMock' 'python3-Morfessor' 'python3-MulticoreTSNE' 'python3-OWSLib' 'python3-Parsley' 'python3-Paste' 'python3-PasteDeploy' 'python3-PasteScript' 'python3-Paver' 'python3-PeakUtils' 'python3-Pebble' 'python3-Pillow' 'python3-Pillow-tk' 'python3-Pint' 'python3-PrettyTable' 'python3-PsyLab' 'python3-PsychoPy' 'python3-PsychoPy-lang' 'python3-Pweave' 'python3-PyAudio' 'python3-PyAutoGUI' 'python3-PyBindGen' 'python3-PyBrowserID' 'python3-PyChromecast' 'python3-PyDispatcher' 'python3-PyECLib' 'python3-PyExecJS' 'python3-PyFxA' 'python3-PyGithub' 'python3-PyHamcrest' 'python3-PyICU' 'python3-PyJWT' 'python3-PyKMIP' 'python3-PyMeta3' 'python3-PyMsgBox' 'python3-PyMuPDF' 'python3-PyMySQL' 'python3-PyNaCl' 'python3-PyNamecheap' 'python3-PyOgg' 'python3-PyOpenAL' 'python3-PyPDF2' 'python3-PyPrind' 'python3-PyPrint' 'python3-PyQRCode' 'python3-PyRIC' 'python3-PySDL2' 'python3-PyScreeze' 'python3-PySocks' 'python3-PyTrie' 'python3-PyTweening' 'python3-PyVirtualDisplay' 'python3-PyWavelets' 'python3-PyWebDAV3' 'python3-PyWebDAV3-GNUHealth' 'python3-PyX' 'python3-PyYAML' 'python3-Pydap' 'python3-Pygments' 'python3-Pykka' 'python3-Pympler' 'python3-Pyphen' 'python3-Pyro4' 'python3-QDarkStyle' 'python3-Qt.py' 'python3-QtAwesome' 'python3-QtPy' 'python3-Quandl' 'python3-RegexOrder' 'python3-Routes' 'python3-SPARQLWrapper' 'python3-SQLAlchemy' 'python3-SQLAlchemy-Utils' 'python3-Scrapy' 'python3-SecretStorage' 'python3-Send2Trash' 'python3-Shapely' 'python3-SimpleWebSocketServer' 'python3-SoapySDR' 'python3-SoundCard' 'python3-SoundFile' 'python3-SpeechRecognition' 'python3-Sphinx' 'python3-Sphinx-latex' 'python3-TagStats' 'python3-Tempita' 'python3-TermRecord' 'python3-Theano' 'python3-Transplant' 'python3-Trolly' 'python3-Trololio' 'python3-Twisted' 'python3-TxSNI' 'python3-URLObject' 'python3-UkPostcodeParser' 'python3-Unidecode' 'python3-WSGIProxy2' 'python3-WSME' 'python3-WTForms' 'python3-WeasyPrint' 'python3-WebOb' 'python3-WebTest' 'python3-Werkzeug' 'python3-Whoosh' 'python3-XStatic' 'python3-XStatic-Angular-Schema-Form' 'python3-XStatic-jQuery' 'python3-XStatic-jquery-ui' 'python3-XStatic-objectpath' 'python3-XStatic-term.js' 'python3-XStatic-tv4' 'python3-XlsxWriter' 'python3-Yapsy' 'python3-ZConfig' 'python3-ZConfig-doc' 'python3-ZEO' 'python3-ZODB' 'python3-abclient' 'python3-abimap' 'python3-abimap-doc' 'python3-abseil' 'python3-acefile' 'python3-acitoolkit' 'python3-acme' 'python3-actdiag' 'python3-adal' 'python3-adapt-parser' 'python3-addict' 'python3-aeidon' 'python3-aenum' 'python3-aexpect' 'python3-affine' 'python3-agate' 'python3-agate-dbf' 'python3-agate-excel' 'python3-agate-lookup' 'python3-agate-remote' 'python3-agate-sql' 'python3-agate-stats' 'python3-aina' 'python3-aiobotocore' 'python3-aiodns' 'python3-aioeventlet' 'python3-aioftp' 'python3-aiohttp' 'python3-aiohttp-socks' 'python3-aiohttp-theme' 'python3-aioresponses' 'python3-aiorpcX' 'python3-akismet' 'python3-alabaster' 'python3-alembic' 'python3-alsa' 'python3-altair' 'python3-altair-widgets' 'python3-altgraph' 'python3-amqp' 'python3-amqplib' 'python3-amqpstorm' 'python3-ana' 'python3-aniso8601' 'python3-annoy' 'python3-ansel' 'python3-ansi2html' 'python3-ansicolor' 'python3-ansicolors' 'python3-ansiwrap' 'python3-anyjson' 'python3-apache-libcloud' 'python3-apipkg' 'python3-apparmor' 'python3-appdirs' 'python3-applicationinsights' 'python3-apptools' 'python3-apsw' 'python3-ara' 'python3-arabic-reshaper' 'python3-argcomplete' 'python3-argh' 'python3-argon2-cffi' 'python3-argparse-manpage' 'python3-args' 'python3-arrow' 'python3-asciimatics' 'python3-asdf' 'python3-asn1crypto' 'python3-aspectlib' 'python3-asteval' 'python3-astor' 'python3-astral' 'python3-astroid' 'python3-astropy' 'python3-astropy-helpers' 'python3-astunparse' 'python3-asv' 'python3-async_generator' 'python3-async_timeout' 'python3-asyncssh' 'python3-asynctest' 'python3-atlassian-python-api' 'python3-atom' 'python3-atomicwrites' 'python3-atpublic' 'python3-atspi' 'python3-attr' 'python3-attrs' 'python3-aubio' 'python3-audiogrep' 'python3-audiolazy' 'python3-audiomate' 'python3-audioread' 'python3-audit' 'python3-augeas' 'python3-autobahn' 'python3-autodoc' 'python3-autoflake' 'python3-automaton' 'python3-autopep8' 'python3-autoupgrade-ng' 'python3-av' 'python3-avahi' 'python3-avahi-gtk' 'python3-avocado' 'python3-avocado-plugins-glib' 'python3-avocado-plugins-golang' 'python3-avocado-plugins-loader-yaml' 'python3-avocado-plugins-output-html' 'python3-avocado-plugins-result-upload' 'python3-avocado-plugins-resultsdb' 'python3-avocado-plugins-runner-docker' 'python3-avocado-plugins-runner-remote' 'python3-avocado-plugins-runner-vm' 'python3-avocado-plugins-varianter-pict' 'python3-avocado-plugins-varianter-yaml-to-mux' 'python3-avocado-plugins-vt' 'python3-avro' 'python3-aws-sam-translator' 'python3-aws-xray-sdk' 'python3-aws-xray-sdk-Django' 'python3-aws-xray-sdk-Flask-SQLAlchemy' 'python3-aws-xray-sdk-SQLAlchemy' 'python3-aws-xray-sdk-aiobotocore' 'python3-aws-xray-sdk-aiohttp' 'python3-aws-xray-sdk-all' 'python3-aws-xray-sdk-mysql-connector' 'python3-aws-xray-sdk-psycopg2' 'python3-aws-xray-sdk-pymongo' 'python3-aws-xray-sdk-pynamodb' 'python3-aws-xray-sdk-requests' 'python3-axolotl' 'python3-axolotl-curve25519' 'python3-azure-applicationinsights' 'python3-azure-batch' 'python3-azure-cognitiveservices-knowledge-nspkg' 'python3-azure-cognitiveservices-knowledge-qnamaker' 'python3-azure-cognitiveservices-language-luis' 'python3-azure-cognitiveservices-language-nspkg' 'python3-azure-cognitiveservices-language-spellcheck' 'python3-azure-cognitiveservices-language-textanalytics' 'python3-azure-cognitiveservices-nspkg' 'python3-azure-cognitiveservices-search-autosuggest' 'python3-azure-cognitiveservices-search-customimagesearch' 'python3-azure-cognitiveservices-search-customsearch' 'python3-azure-cognitiveservices-search-entitysearch' 'python3-azure-cognitiveservices-search-imagesearch' 'python3-azure-cognitiveservices-search-newssearch' 'python3-azure-cognitiveservices-search-nspkg' 'python3-azure-cognitiveservices-search-videosearch' 'python3-azure-cognitiveservices-search-visualsearch' 'python3-azure-cognitiveservices-search-websearch' 'python3-azure-cognitiveservices-vision-computervision' 'python3-azure-cognitiveservices-vision-contentmoderator' 'python3-azure-cognitiveservices-vision-customvision' 'python3-azure-cognitiveservices-vision-nspkg' 'python3-azure-common' 'python3-azure-datalake-store' 'python3-azure-eventgrid' 'python3-azure-graphrbac' 'python3-azure-keyvault' 'python3-azure-loganalytics' 'python3-azure-mgmt' 'python3-azure-mgmt-advisor' 'python3-azure-mgmt-applicationinsights' 'python3-azure-mgmt-authorization' 'python3-azure-mgmt-batch' 'python3-azure-mgmt-batchai' 'python3-azure-mgmt-billing' 'python3-azure-mgmt-botservice' 'python3-azure-mgmt-cdn' 'python3-azure-mgmt-cognitiveservices' 'python3-azure-mgmt-commerce' 'python3-azure-mgmt-compute' 'python3-azure-mgmt-consumption' 'python3-azure-mgmt-containerinstance' 'python3-azure-mgmt-containerregistry' 'python3-azure-mgmt-containerservice' 'python3-azure-mgmt-cosmosdb' 'python3-azure-mgmt-datafactory' 'python3-azure-mgmt-datalake-analytics' 'python3-azure-mgmt-datalake-nspkg' 'python3-azure-mgmt-datalake-store' 'python3-azure-mgmt-datamigration' 'python3-azure-mgmt-devspaces' 'python3-azure-mgmt-devtestlabs' 'python3-azure-mgmt-dns' 'python3-azure-mgmt-documentdb' 'python3-azure-mgmt-eventgrid' 'python3-azure-mgmt-eventhub' 'python3-azure-mgmt-hanaonazure' 'python3-azure-mgmt-hdinsight' 'python3-azure-mgmt-iotcentral' 'python3-azure-mgmt-iothub' 'python3-azure-mgmt-iothubprovisioningservices' 'python3-azure-mgmt-keyvault' 'python3-azure-mgmt-kusto' 'python3-azure-mgmt-loganalytics' 'python3-azure-mgmt-logic' 'python3-azure-mgmt-machinelearningcompute' 'python3-azure-mgmt-managementgroups' 'python3-azure-mgmt-managementpartner' 'python3-azure-mgmt-maps' 'python3-azure-mgmt-marketplaceordering' 'python3-azure-mgmt-media' 'python3-azure-mgmt-monitor' 'python3-azure-mgmt-msi' 'python3-azure-mgmt-network' 'python3-azure-mgmt-notificationhubs' 'python3-azure-mgmt-nspkg' 'python3-azure-mgmt-policyinsights' 'python3-azure-mgmt-powerbiembedded' 'python3-azure-mgmt-rdbms' 'python3-azure-mgmt-recoveryservices' 'python3-azure-mgmt-recoveryservicesbackup' 'python3-azure-mgmt-redis' 'python3-azure-mgmt-relay' 'python3-azure-mgmt-reservations' 'python3-azure-mgmt-resource' 'python3-azure-mgmt-scheduler' 'python3-azure-mgmt-search' 'python3-azure-mgmt-security' 'python3-azure-mgmt-servermanager' 'python3-azure-mgmt-servicebus' 'python3-azure-mgmt-servicefabric' 'python3-azure-mgmt-signalr' 'python3-azure-mgmt-sql' 'python3-azure-mgmt-sqlvirtualmachine' 'python3-azure-mgmt-storage' 'python3-azure-mgmt-subscription' 'python3-azure-mgmt-trafficmanager' 'python3-azure-mgmt-web' 'python3-azure-monitor' 'python3-azure-multiapi-storage' 'python3-azure-nspkg' 'python3-azure-sdk' 'python3-azure-servicebus' 'python3-azure-servicefabric' 'python3-azure-servicemanagement-legacy' 'python3-azure-storage' 'python3-azure-storage-blob' 'python3-azure-storage-common' 'python3-azure-storage-file' 'python3-azure-storage-nspkg' 'python3-azure-storage-queue' 'python3-azurectl' 'python3-babelfish' 'python3-babeltrace' 'python3-backcall' 'python3-backoff' 'python3-backports' 'python3-backports.ssl_match_hostname' 'python3-backports_abc' 'python3-bandit' 'python3-barbicanclient' 'python3-baron' 'python3-base' 'python3-base-32bit' 'python3-bashate' 'python3-bcc' 'python3-bcolz' 'python3-bcrypt' 'python3-beautifulsoup4' 'python3-behave' 'python3-bencode' 'python3-beniget' 'python3-betamax' 'python3-betamax-matchers' 'python3-bibtexparser' 'python3-bidict' 'python3-billiard' 'python3-binary' 'python3-binaryornot' 'python3-bind' 'python3-bindep' 'python3-biopython' 'python3-biplist' 'python3-bitstring' 'python3-bjoern' 'python3-black' 'python3-bleach' 'python3-blessed' 'python3-blessings' 'python3-blindspin' 'python3-blinker' 'python3-blist' 'python3-blockdiag' 'python3-blosc' 'python3-bloscpack' 'python3-bobo' 'python3-bobodoctestumentation' 'python3-bokeh' 'python3-boltons' 'python3-boost_parallel_mpi' 'python3-boost_parallel_mpi1_69_0' 'python3-botan' 'python3-boto' 'python3-boto3' 'python3-botocore' 'python3-bottle' 'python3-bpython' 'python3-bqplot' 'python3-branca' 'python3-breathe' 'python3-brewer2mpl' 'python3-brlapi' 'python3-brotlipy' 'python3-bsddb3' 'python3-bsddb3-devel' 'python3-bson' 'python3-bugzilla' 'python3-bugzillatools' 'python3-buku' 'python3-buku-bash-completion' 'python3-buku-fish-completion' 'python3-buku-zsh-completion' 'python3-cPyparsing' 'python3-caca' 'python3-cached-property' 'python3-cachetools' 'python3-cachey' 'python3-caffe' 'python3-caffe-gnu-hpc' 'python3-caffe_1_0-gnu-hpc' 'python3-cairocffi' 'python3-cairocffi-pixbuf' 'python3-caldav' 'python3-calysto' 'python3-cangjie' 'python3-canonicaljson' 'python3-capng' 'python3-capturer' 'python3-case' 'python3-cassandra-driver' 'python3-cassowary' 'python3-castellan' 'python3-casttube' 'python3-catkin-pkg' 'python3-cbor' 'python3-cbor2' 'python3-ccm' 'python3-celery' 'python3-celery-batches' 'python3-celerymon' 'python3-ceph-argparse' 'python3-cephfs' 'python3-cerealizer' 'python3-certbot' 'python3-certbot-apache' 'python3-certbot-dns-cloudflare' 'python3-certbot-dns-cloudxns' 'python3-certbot-dns-digitalocean' 'python3-certbot-dns-dnsimple' 'python3-certbot-dns-dnsmadeeasy' 'python3-certbot-dns-google' 'python3-certbot-dns-luadns' 'python3-certbot-dns-nsone' 'python3-certbot-dns-rfc2136' 'python3-certbot-dns-route53' 'python3-certbot-nginx' 'python3-certifi' 'python3-certstream' 'python3-cffi' 'python3-cfgv' 'python3-cfn-lint' 'python3-cfscrape' 'python3-cftime' 'python3-chai' 'python3-chardet' 'python3-chart-studio' 'python3-check-manifest' 'python3-cheroot' 'python3-chest' 'python3-cinderclient' 'python3-ciscoconfparse' 'python3-cl' 'python3-clang' 'python3-cli-helpers' 'python3-click' 'python3-click-aliases' 'python3-click-completion' 'python3-click-didyoumean' 'python3-click-help-colors' 'python3-click-log' 'python3-click-plugins' 'python3-click-spinner' 'python3-click-threading' 'python3-cliff' 'python3-cligj' 'python3-clinkgrammar' 'python3-clint' 'python3-cloud-init-seed' 'python3-cloudflare' 'python3-cloudpickle' 'python3-cluster' 'python3-cluster-preflight-check' 'python3-clustershell' 'python3-cmarkgfm' 'python3-cmd2' 'python3-cmdln' 'python3-coards' 'python3-coconut' 'python3-codecov' 'python3-cogapp' 'python3-colander' 'python3-colander-doc' 'python3-colander-lang' 'python3-colorama' 'python3-colorcet' 'python3-colorclass' 'python3-coloredlogs' 'python3-colorlog' 'python3-colorlover' 'python3-colormap' 'python3-colorspacious' 'python3-colour' 'python3-combi' 'python3-compizconfig' 'python3-concurrentloghandler' 'python3-configargparse' 'python3-configobj' 'python3-configshell-fb' 'python3-confluent-kafka' 'python3-confusable-homoglyphs' 'python3-constantly' 'python3-construct' 'python3-contexter' 'python3-contextlib2' 'python3-contextvars' 'python3-control' 'python3-cookies' 'python3-cooldict' 'python3-coreapi' 'python3-coreapi-cli' 'python3-coreschema' 'python3-cotyledon' 'python3-cov-core' 'python3-coverage' 'python3-coverage-config-reload-plugin' 'python3-coverage-env-plugin' 'python3-coveralls' 'python3-coveralls-check' 'python3-cppclean' 'python3-cpplint' 'python3-cracklib' 'python3-cram' 'python3-crayons' 'python3-crcmod' 'python3-createrepo_c' 'python3-croniter' 'python3-crumbs' 'python3-cryptography' 'python3-cryptography-vectors' 'python3-css-parser' 'python3-csscompressor' 'python3-cssselect' 'python3-cssselect2' 'python3-cssutils' 'python3-csvkit' 'python3-ctypesgen' 'python3-cufflinks' 'python3-cupshelpers' 'python3-curio' 'python3-curses' 'python3-cursive' 'python3-curtsies' 'python3-cx_Freeze' 'python3-cymruwhois' 'python3-cyordereddict' 'python3-cytoolz' 'python3-d2to1' 'python3-daemonize' 'python3-daiquiri' 'python3-dash' 'python3-dask' 'python3-dask-all' 'python3-dask-array' 'python3-dask-bag' 'python3-dask-dataframe' 'python3-dask-distributed' 'python3-dask-dot' 'python3-dask-multiprocessing' 'python3-datashader' 'python3-datrie' 'python3-dbf' 'python3-dbfread' 'python3-dbm' 'python3-dbus-python' 'python3-dbus-python-devel' 'python3-ddg3' 'python3-ddt' 'python3-debian' 'python3-debtcollector' 'python3-decorator' 'python3-defusedxml' 'python3-delegator' 'python3-delegator.py' 'python3-deltarpm' 'python3-demjson' 'python3-dennis' 'python3-dephell-archive' 'python3-dephell-discover' 'python3-dephell-licenses' 'python3-dephell-links' 'python3-dephell-markers' 'python3-dephell-pythons' 'python3-dephell-shells' 'python3-dephell-specifier' 'python3-dephell-venvs' 'python3-deprecation' 'python3-derpconf' 'python3-devel' 'python3-dfdatetime' 'python3-dfwinreg' 'python3-dialite' 'python3-dicttoxml' 'python3-diff_match_patch' 'python3-digitalocean' 'python3-dill' 'python3-dirtyjson' 'python3-discid' 'python3-discogs-client' 'python3-diskcache' 'python3-distlib' 'python3-distorm3' 'python3-distributed' 'python3-distro' 'python3-distroinfo' 'python3-distutils-extra' 'python3-dj-database-url' 'python3-django-allauth' 'python3-django-allauth-lang' 'python3-django-appconf' 'python3-django-auth-ldap' 'python3-django-avatar' 'python3-django-babel' 'python3-django-braces' 'python3-django-ckeditor' 'python3-django-classy-tags' 'python3-django-contrib-comments' 'python3-django-cors-headers' 'python3-django-crispy-forms' 'python3-django-debreach' 'python3-django-debug-toolbar' 'python3-django-environ' 'python3-django-extensions' 'python3-django-filter' 'python3-django-formtools' 'python3-django-grappelli' 'python3-django-guardian' 'python3-django-invitations' 'python3-django-jinja' 'python3-django-js-asset' 'python3-django-json-widget' 'python3-django-jsonfield' 'python3-django-minio-storage' 'python3-django-model-utils' 'python3-django-nine' 'python3-django-nose' 'python3-django-oauth-toolkit' 'python3-django-oidc-provider' 'python3-django-picklefield' 'python3-django-pipeline' 'python3-django-pyscss' 'python3-django-redis' 'python3-django-registration' 'python3-django-rest-framework-client' 'python3-django-rest-framework-social-oauth2' 'python3-django-rest-invitations' 'python3-django-rest-knox' 'python3-django-reversion' 'python3-django-seed' 'python3-django-sekizai' 'python3-django-silk' 'python3-django-storages' 'python3-django-tagging' 'python3-django-tastypie' 'python3-django-threadedcomments' 'python3-django-webpack-loader' 'python3-django-webtest' 'python3-django_compressor' 'python3-django_coverage_plugin' 'python3-djangorestframework' 'python3-djangorestframework-simplejwt' 'python3-djet' 'python3-djvulibre' 'python3-dnf' 'python3-dnf-plugin-leaves' 'python3-dnf-plugin-local' 'python3-dnf-plugin-rpmconf' 'python3-dnf-plugin-show-leaves' 'python3-dnf-plugin-snapper' 'python3-dnf-plugin-system-upgrade' 'python3-dnf-plugin-torproxy' 'python3-dnf-plugin-versionlock' 'python3-dnf-plugins-core' 'python3-dnf-plugins-extras-common' 'python3-dns-lexicon' 'python3-dnspython' 'python3-doc' 'python3-doc-devhelp' 'python3-docformatter' 'python3-docker' 'python3-docker-compose' 'python3-docker-pycreds' 'python3-dockerpty' 'python3-docopt' 'python3-docrepr' 'python3-docutils' 'python3-docutils-ast-writer' 'python3-dogpile.cache' 'python3-dominate' 'python3-dparse' 'python3-dpcontracts' 'python3-dpkt' 'python3-drf-jwt-knox' 'python3-drf-nested-routers' 'python3-drms' 'python3-dropbox' 'python3-duckduckgo2' 'python3-dukpy' 'python3-dukpy-kovidgoyal' 'python3-dulwich' 'python3-dynaconf' 'python3-easydev' 'python3-easygui' 'python3-easypysmb' 'python3-easywatch' 'python3-ebcdic' 'python3-ec2imgutils' 'python3-ecdsa' 'python3-editdistance' 'python3-editdistance-devel' 'python3-efl' 'python3-efl-doc' 'python3-efl-examples' 'python3-elasticsearch' 'python3-eliot' 'python3-email_validator' 'python3-emoji' 'python3-empy' 'python3-enable' 'python3-enable-kiva' 'python3-enaml' 'python3-encore' 'python3-entrypoint2' 'python3-entrypoints' 'python3-environmental-override' 'python3-envisage' 'python3-enzyme' 'python3-eradicate' 'python3-espeak' 'python3-espressomd' 'python3-esptool' 'python3-et_xmlfile' 'python3-etcd' 'python3-etcd-test' 'python3-ethtool' 'python3-evdev' 'python3-evemu' 'python3-eventlet' 'python3-evtx' 'python3-exam' 'python3-execnet' 'python3-exiv2' 'python3-expects' 'python3-experimentator' 'python3-exrex' 'python3-extras' 'python3-extratools' 'python3-ez_setup' 'python3-factory_boy' 'python3-fake-useragent' 'python3-fakeredis' 'python3-falcon' 'python3-fanficfare' 'python3-fann2' 'python3-fastTSNE' 'python3-fastcluster' 'python3-fasteners' 'python3-fastimport' 'python3-fastnumbers' 'python3-fastparquet' 'python3-fb-re2' 'python3-featureflow' 'python3-fedmsg' 'python3-feedgenerator' 'python3-feedparser' 'python3-fido2' 'python3-fields' 'python3-fife' 'python3-filelock' 'python3-finance_enums' 'python3-fire' 'python3-firewall' 'python3-first' 'python3-fixtures' 'python3-flake8' 'python3-flake8-blind-except' 'python3-flake8-bugbear' 'python3-flake8-builtins' 'python3-flake8-class-newline' 'python3-flake8-comprehensions' 'python3-flake8-debugger' 'python3-flake8-deprecated' 'python3-flake8-docstrings' 'python3-flake8-future-import' 'python3-flake8-import-order' 'python3-flake8-imports' 'python3-flake8-polyfill' 'python3-flake8-pyi' 'python3-flake8-quotes' 'python3-flaky' 'python3-flasgger' 'python3-flask-jwt-extended' 'python3-flask-mongoengine' 'python3-flask-peewee' 'python3-flask-restplus' 'python3-flatbuffers' 'python3-flex' 'python3-flexmock' 'python3-flexx' 'python3-flickrapi' 'python3-flit' 'python3-flower' 'python3-fluent' 'python3-fluidity-sm' 'python3-flup' 'python3-forbiddenfruit' 'python3-freetype-py' 'python3-freezegun' 'python3-freezerclient' 'python3-frozendict' 'python3-fs' 'python3-fsspec' 'python3-ftfy' 'python3-ftputil' 'python3-fudge' 'python3-funcparserlib' 'python3-funcy' 'python3-furl' 'python3-fuse' 'python3-fusepy' 'python3-future' 'python3-futurist' 'python3-fysom' 'python3-gTTS' 'python3-gTTS-token' 'python3-gabbi' 'python3-gast' 'python3-gcemetadata' 'python3-gcsfs' 'python3-gcsfs-fuse' 'python3-gear' 'python3-ged4py' 'python3-gedit' 'python3-geis' 'python3-genty' 'python3-geographiclib' 'python3-geoip2' 'python3-geojson' 'python3-geolib' 'python3-geolinks' 'python3-geopy' 'python3-gevent' 'python3-geventhttpclient' 'python3-gexiv2' 'python3-ggplot' 'python3-girder-client' 'python3-git-pw' 'python3-git-url-parse' 'python3-gitdb2' 'python3-github3.py' 'python3-gitlint' 'python3-glanceclient' 'python3-glean' 'python3-glfw' 'python3-glob2' 'python3-glom' 'python3-gmconfig' 'python3-gmpy' 'python3-gmpy2' 'python3-gnucash' 'python3-gobject' 'python3-gobject-Dee' 'python3-gobject-Gdk' 'python3-gobject-cairo' 'python3-gobject-devel' 'python3-gobject2' 'python3-gobject2-devel' 'python3-gogs_client' 'python3-gom' 'python3-google-api-core' 'python3-google-api-python-client' 'python3-google-auth' 'python3-google-auth-httplib2' 'python3-google-auth-oauthlib' 'python3-google-cloud-core' 'python3-google-cloud-kms' 'python3-google-cloud-speech' 'python3-google-cloud-storage' 'python3-google-resumable-media' 'python3-googleapis-common-protos' 'python3-googlemaps' 'python3-gpg' 'python3-gpgme' 'python3-gphoto2' 'python3-gprof2dot' 'python3-gpsd' 'python3-grab' 'python3-graphviz' 'python3-greenlet' 'python3-greenlet-devel' 'python3-grpc-google-iam-v1' 'python3-grpcio' 'python3-grpcio-gcp' 'python3-gscholar' 'python3-gspread' 'python3-gssapi' 'python3-gst' 'python3-gsw' 'python3-guessit' 'python3-gunicorn' 'python3-guzzle_sphinx_theme' 'python3-h11' 'python3-h2' 'python3-h5py' 'python3-hankel' 'python3-happybase' 'python3-haproxyctl' 'python3-hawkauthlib' 'python3-hawkey' 'python3-hdf5storage' 'python3-heatclient' 'python3-hetzner' 'python3-hetznercloud' 'python3-hexdump' 'python3-hiredis' 'python3-hkdf' 'python3-hl7apy' 'python3-holidays' 'python3-holoviews' 'python3-hpack' 'python3-html2text' 'python3-html5-parser' 'python3-html5lib' 'python3-htmlmin' 'python3-httmock' 'python3-http-parser' 'python3-httpbin' 'python3-httpie' 'python3-httplib2' 'python3-httpretty' 'python3-httpsig_cffi' 'python3-humanfriendly' 'python3-humanhash3' 'python3-humanize' 'python3-hupper' 'python3-husl' 'python3-hvplot' 'python3-hyper' 'python3-hyperframe' 'python3-hyperlink' 'python3-hypothesis' 'python3-hypothesis-fspaths' 'python3-icalendar' 'python3-identify' 'python3-idle' 'python3-idna' 'python3-idna_ssl' 'python3-ifaddr' 'python3-imageio' 'python3-imageio-ffmpeg' 'python3-imagesize' 'python3-imbox' 'python3-img2pdf' 'python3-iminuit' 'python3-immutables' 'python3-importlab' 'python3-importlib-metadata' 'python3-imread' 'python3-incremental' 'python3-infinity' 'python3-inflect' 'python3-inflection' 'python3-influxdb' 'python3-inifile' 'python3-iniparse' 'python3-injector' 'python3-inspektor' 'python3-intake' 'python3-intervals' 'python3-intervaltree' 'python3-invocations' 'python3-invoke' 'python3-iocapture' 'python3-ioflo' 'python3-ipa' 'python3-ipa-tests' 'python3-ipa_hbac' 'python3-ipaddr' 'python3-ipdb' 'python3-iptables' 'python3-ipy' 'python3-ipydatawidgets' 'python3-ipykernel' 'python3-ipyleaflet' 'python3-ipympl' 'python3-ipyparallel' 'python3-ipyscales' 'python3-ipysheet' 'python3-ipython' 'python3-ipython-iptest' 'python3-ipython_genutils' 'python3-ipyvolume' 'python3-ipywebrtc' 'python3-ipywidgets' 'python3-irc' 'python3-ironicclient' 'python3-iso8601' 'python3-isodate' 'python3-isort' 'python3-itsdangerous' 'python3-itypes' 'python3-iwlib' 'python3-jaraco.base' 'python3-jaraco.classes' 'python3-jaraco.collections' 'python3-jaraco.functools' 'python3-jaraco.itertools' 'python3-jaraco.logging' 'python3-jaraco.packaging' 'python3-jaraco.stream' 'python3-jaraco.text' 'python3-javapackages' 'python3-jdcal' 'python3-jedi' 'python3-jedihttp' 'python3-jeepney' 'python3-jellyfish' 'python3-jenkins-job-builder' 'python3-jenkinsapi' 'python3-jgraph' 'python3-jinja2-fsloader' 'python3-jinja2-time' 'python3-jira' 'python3-jirafs' 'python3-jmespath' 'python3-joblib' 'python3-josepy' 'python3-jplephem' 'python3-jsbeautifier' 'python3-json-rpc' 'python3-json5' 'python3-json_tricks' 'python3-jsondate' 'python3-jsondiff' 'python3-jsonextended' 'python3-jsonlib-python3' 'python3-jsonlines' 'python3-jsonpatch' 'python3-jsonpath-rw' 'python3-jsonpath-rw-ext' 'python3-jsonpickle' 'python3-jsonpointer' 'python3-jsonref' 'python3-jsonrpclib-pelix' 'python3-jsonschema' 'python3-jsonslicer' 'python3-junitxml' 'python3-jupyter-contrib-nbextensions' 'python3-jupyter-datatables' 'python3-jupyter-nbutils' 'python3-jupyter-protocol' 'python3-jupyter-require' 'python3-jupyter-server' 'python3-jupyter_client' 'python3-jupyter_console' 'python3-jupyter_contrib_core' 'python3-jupyter_core' 'python3-jupyter_highlight_selected_word' 'python3-jupyter_kernel_test' 'python3-jupyter_latex_envs' 'python3-jupyter_nbextensions_configurator' 'python3-jupyter_sphinx' 'python3-jupyterlab-pygments' 'python3-jupytext' 'python3-jwcrypto' 'python3-k5test' 'python3-kafka-python' 'python3-kaitaistruct' 'python3-kazoo' 'python3-keepalive' 'python3-kerberos' 'python3-keyczar' 'python3-keyring' 'python3-keyrings.alt' 'python3-keystoneauth1' 'python3-keystoneclient' 'python3-keystonemiddleware' 'python3-kitchen' 'python3-kiwi' 'python3-kiwisolver' 'python3-kmatch' 'python3-kmod' 'python3-knack' 'python3-kombu' 'python3-kopano' 'python3-kubernetes' 'python3-l20n' 'python3-lancet-ioam' 'python3-language-check' 'python3-lark-parser' 'python3-latexcodec' 'python3-lazr.uri' 'python3-lazy' 'python3-lazy-object-proxy' 'python3-lazyarray' 'python3-ldap' 'python3-ldap3' 'python3-ldappool' 'python3-ldb' 'python3-ldb-32bit' 'python3-ldb-devel' 'python3-ldns' 'python3-leather' 'python3-lensfun' 'python3-lesscpy' 'python3-leveldb' 'python3-lexicon' 'python3-lhafile' 'python3-lib3to6' 'python3-libaccounts' 'python3-libarchive' 'python3-libarchive-c' 'python3-libbde' 'python3-libblockdev' 'python3-libbytesize' 'python3-libcec' 'python3-libcomps' 'python3-libdnf' 'python3-libewf' 'python3-libfsntfs' 'python3-libftdi1' 'python3-libfvde' 'python3-libfwnt' 'python3-libguestfs' 'python3-libixion' 'python3-liblarch' 'python3-liblarch-gtk' 'python3-libmodulemd' 'python3-libmount' 'python3-libnacl' 'python3-liborcus' 'python3-libpamtest' 'python3-libpfm' 'python3-libprelude' 'python3-libpreludedb' 'python3-libproxy' 'python3-libqcow' 'python3-librepo' 'python3-librosa' 'python3-libsass' 'python3-libscca' 'python3-libsigscan' 'python3-libsmdev' 'python3-libsmraw' 'python3-libsoc' 'python3-libstoragemgmt' 'python3-libstoragemgmt-clibs' 'python3-libtorrent-rasterbar' 'python3-libunity' 'python3-libusb1' 'python3-libvhdi' 'python3-libvirt-python' 'python3-libvmdk' 'python3-libvoikko' 'python3-libvshadow' 'python3-libvslvm' 'python3-libxml2-python' 'python3-lilv' 'python3-limnoria' 'python3-line_profiler' 'python3-linecache2' 'python3-lineup-widget' 'python3-linux-procfs' 'python3-lit' 'python3-lldb' 'python3-lldb6' 'python3-lldb7' 'python3-lldb8' 'python3-llfuse' 'python3-llvmlite' 'python3-lmdb' 'python3-lmfit' 'python3-lml' 'python3-localzone' 'python3-locket' 'python3-lockfile' 'python3-logilab-astng' 'python3-logilab-common' 'python3-logreduce' 'python3-loguru' 'python3-logutils' 'python3-logzero' 'python3-louis' 'python3-lttngust' 'python3-lupa' 'python3-lxml' 'python3-lxml-devel' 'python3-lz4' 'python3-lzmaffi' 'python3-m2r' 'python3-macholib' 'python3-magic' 'python3-magic-wormhole' 'python3-magic-wormhole-mailbox-server' 'python3-magic-wormhole-transit-relay' 'python3-magnumclient' 'python3-managesieve' 'python3-mando' 'python3-manilaclient' 'python3-manuel' 'python3-manuel-doc' 'python3-mapi' 'python3-marathon' 'python3-markdown-math' 'python3-markdown2' 'python3-marshmallow' 'python3-matplotlib' 'python3-matplotlib-cairo' 'python3-matplotlib-gtk3' 'python3-matplotlib-latex' 'python3-matplotlib-qt-shared' 'python3-matplotlib-qt5' 'python3-matplotlib-tk' 'python3-matplotlib-web' 'python3-matplotlib-wx' 'python3-matrix-synapse' 'python3-matrix-synapse-ldap3' 'python3-maxminddb' 'python3-mbstrdecoder' 'python3-mccabe' 'python3-md2workflow' 'python3-mechanize' 'python3-meld3' 'python3-memory_profiler' 'python3-metaextract' 'python3-metakernel' 'python3-metamagic.json' 'python3-mimesis' 'python3-minidb' 'python3-minio' 'python3-miniupnpc' 'python3-mistune' 'python3-moban' 'python3-mock' 'python3-mockldap' 'python3-modernize' 'python3-mohawk' 'python3-moksha-common' 'python3-moksha-hub' 'python3-monascaclient' 'python3-mongoengine' 'python3-monotonic' 'python3-more-itertools' 'python3-moretools' 'python3-moto' 'python3-moviepy' 'python3-mox3' 'python3-mpi4py' 'python3-mpi4py-devel' 'python3-mpmath' 'python3-mraa' 'python3-msgpack' 'python3-msgpack-numpy' 'python3-msk' 'python3-msm' 'python3-msoffcrypto-tool' 'python3-msrest' 'python3-msrestazure' 'python3-mujson' 'python3-mulpyplexer' 'python3-multi_key_dict' 'python3-multidict' 'python3-multipledispatch' 'python3-munch' 'python3-munkres' 'python3-musicbrainzngs' 'python3-mutagen' 'python3-mutt-ics' 'python3-mygpoclient' 'python3-mypy_extensions' 'python3-mysql-connector-python' 'python3-mysqlclient' 'python3-nagiosplugin' 'python3-natsort' 'python3-nautilus' 'python3-nautilus-devel' 'python3-nbconvert' 'python3-nbdime' 'python3-nbformat' 'python3-nbindex-jupyter' 'python3-nbinteract' 'python3-nbsmoke' 'python3-nbsphinx' 'python3-nbsphinx-link' 'python3-nbval' 'python3-nbxmpp' 'python3-nbxmpp-doc' 'python3-ncclient' 'python3-ndg-httpsclient' 'python3-neovim' 'python3-neovim-remote' 'python3-net-snmp' 'python3-netCDF4' 'python3-netaddr' 'python3-netifaces' 'python3-netmiko' 'python3-networkx' 'python3-neutronclient' 'python3-newt' 'python3-nghttp2' 'python3-nibabel' 'python3-nilearn' 'python3-nine' 'python3-nltk' 'python3-node-semver' 'python3-nose' 'python3-nose-cov' 'python3-nose-cover3' 'python3-nose-exclude' 'python3-nose-progressive' 'python3-nose-timer' 'python3-nose2' 'python3-nose_warnings_filters' 'python3-nosexcover' 'python3-notebook' 'python3-notebook-lang' 'python3-notify2' 'python3-notmuch' 'python3-novaclient' 'python3-nss' 'python3-ntfy' 'python3-ntlm-auth' 'python3-ntp' 'python3-ntplib' 'python3-num2words' 'python3-numba' 'python3-numba-devel' 'python3-numericalunits' 'python3-numexpr' 'python3-numpy' 'python3-numpy-devel' 'python3-numpy-gnu-hpc' 'python3-numpy-gnu-hpc-devel' 'python3-numpy_1_17_0-gnu-hpc' 'python3-numpy_1_17_0-gnu-hpc-devel' 'python3-numpydoc' 'python3-nwdiag' 'python3-oauth2' 'python3-oauth2client' 'python3-oauth2client-flask' 'python3-oauth2client-gce' 'python3-oauthlib' 'python3-objgraph' 'python3-oct2py' 'python3-octave-kernel' 'python3-octaviaclient' 'python3-odfpy' 'python3-odorik' 'python3-oic' 'python3-olefile' 'python3-onionshare' 'python3-openapi-core' 'python3-openapi-spec-validator' 'python3-opencv' 'python3-opencv3' 'python3-opengl' 'python3-opengl-accelerate' 'python3-openmesh' 'python3-openpyxl' 'python3-openqa_client' 'python3-openqa_review' 'python3-openshot' 'python3-openstack.nose_plugin' 'python3-openstackclient' 'python3-openstackdocstheme' 'python3-openstacksdk' 'python3-openwsman' 'python3-ordered-namespace' 'python3-ordered-set' 'python3-orderedmultidict' 'python3-os-api-ref' 'python3-os-client-config' 'python3-os-service-types' 'python3-os-testr' 'python3-os-win' 'python3-osc-lib' 'python3-oscrypto' 'python3-osdlyrics' 'python3-oslo.cache' 'python3-oslo.concurrency' 'python3-oslo.config' 'python3-oslo.context' 'python3-oslo.db' 'python3-oslo.i18n' 'python3-oslo.log' 'python3-oslo.messaging' 'python3-oslo.middleware' 'python3-oslo.policy' 'python3-oslo.privsep' 'python3-oslo.reports' 'python3-oslo.rootwrap' 'python3-oslo.serialization' 'python3-oslo.service' 'python3-oslo.utils' 'python3-oslo.versionedobjects' 'python3-oslo.vmware' 'python3-oslosphinx' 'python3-oslotest' 'python3-osmviz' 'python3-osprofiler' 'python3-outcome' 'python3-ovirt-engine-sdk' 'python3-ovs' 'python3-ovsdbapp' 'python3-pa-ringbuffer' 'python3-packaging' 'python3-padaos' 'python3-padatious' 'python3-paho-mqtt' 'python3-pako' 'python3-palettable' 'python3-pampy' 'python3-pamqp' 'python3-pandas' 'python3-pandas-datareader' 'python3-pandocfilters' 'python3-panflute' 'python3-parallax' 'python3-param' 'python3-parameterized' 'python3-paramiko' 'python3-paramiko-expect' 'python3-parfive' 'python3-parse' 'python3-parse_type' 'python3-parsedatetime' 'python3-parsel' 'python3-parso' 'python3-partd' 'python3-parted' 'python3-parver' 'python3-pass_python_keyring' 'python3-passa' 'python3-passivetotal' 'python3-passlib' 'python3-pastream' 'python3-path.py' 'python3-pathlib' 'python3-pathlib2' 'python3-pathspec' 'python3-pathtools' 'python3-patsy' 'python3-pbkdf2' 'python3-pbr' 'python3-pcp' 'python3-pdd' 'python3-pdfkit' 'python3-pdfrw' 'python3-pecan' 'python3-peewee' 'python3-pefile' 'python3-pelican' 'python3-pem' 'python3-pep517' 'python3-pep8-naming' 'python3-peppercorn' 'python3-perfume-bench' 'python3-persistent' 'python3-persistent-devel' 'python3-petact' 'python3-pexpect' 'python3-pgmagick' 'python3-phabricator' 'python3-phonenumbers' 'python3-photutils' 'python3-phply' 'python3-phue' 'python3-pick' 'python3-pickleshare' 'python3-piexif' 'python3-pifpaf' 'python3-pika' 'python3-pika-pool' 'python3-pilkit' 'python3-pip' 'python3-pip-api' 'python3-pip-run' 'python3-pip-shims' 'python3-pipdeptree' 'python3-pipenv' 'python3-pipreqs' 'python3-piston-mini-client' 'python3-pivy' 'python3-pkgconfig' 'python3-pkginfo' 'python3-plaster' 'python3-plaster-pastedeploy' 'python3-plette' 'python3-plotly' 'python3-plotly-jupyter' 'python3-plplot' 'python3-pluggy' 'python3-plumbum' 'python3-ply' 'python3-plyvel' 'python3-pmw' 'python3-pocketsphinx-python' 'python3-podcastparser' 'python3-polib' 'python3-policycoreutils' 'python3-pony' 'python3-poppler-qt5' 'python3-port-for' 'python3-portalocker' 'python3-portend' 'python3-portpicker' 'python3-positional' 'python3-posix_ipc' 'python3-power' 'python3-poyo' 'python3-pprintpp' 'python3-praatio' 'python3-precis-i18n' 'python3-precise-runner' 'python3-preggy' 'python3-prelude-correlator' 'python3-premailer' 'python3-pretend' 'python3-prewikka' 'python3-proboscis' 'python3-process-tests' 'python3-proglog' 'python3-progress' 'python3-progressbar' 'python3-prometheus_client' 'python3-promise' 'python3-prompt_toolkit' 'python3-prompt_toolkit1' 'python3-proselint' 'python3-protobuf' 'python3-pscript' 'python3-psutil' 'python3-psycopg2' 'python3-ptpython' 'python3-ptpython-ptipython' 'python3-ptyprocess' 'python3-publicsuffixlist' 'python3-pudb' 'python3-pulsectl' 'python3-pure-sasl' 'python3-purl' 'python3-pwquality' 'python3-py' 'python3-py-cpuinfo' 'python3-py-espeak-ng' 'python3-py-radix' 'python3-py-ubjson' 'python3-py2pack' 'python3-py3dns' 'python3-py3status' 'python3-pyDOE2' 'python3-pyFFTW' 'python3-pyLibravatar' 'python3-pyModis' 'python3-pyOCD' 'python3-pyOpenSSL' 'python3-pyPEG2' 'python3-pyRFC3339' 'python3-pyScss' 'python3-pyVows' 'python3-pyacoustid' 'python3-pyaes' 'python3-pyalsaaudio' 'python3-pyaml' 'python3-pyannotate' 'python3-pyasn1' 'python3-pyasn1-modules' 'python3-pybars3' 'python3-pybeam' 'python3-pybind11' 'python3-pybind11-devel' 'python3-pyblake2' 'python3-pybluez' 'python3-pybtex' 'python3-pybugz' 'python3-pycadf' 'python3-pycairo' 'python3-pycairo-devel' 'python3-pycallgraph' 'python3-pycares' 'python3-pycdio' 'python3-pycha' 'python3-pycodestyle' 'python3-pycountry' 'python3-pycparser' 'python3-pycryptodome' 'python3-pycryptodomex' 'python3-pycsw' 'python3-pyct' 'python3-pycups' 'python3-pycurl' 'python3-pycxx' 'python3-pycxx-devel' 'python3-pydata-google-auth' 'python3-pydbus' 'python3-pydenticon' 'python3-pydicom' 'python3-pydle' 'python3-pydocstyle' 'python3-pydocumentdb' 'python3-pydot' 'python3-pydot3' 'python3-pydotplus' 'python3-pydub' 'python3-pyee' 'python3-pyelftools' 'python3-pyemd' 'python3-pyenchant' 'python3-pyface' 'python3-pyfakefs' 'python3-pyfeyn' 'python3-pyfiglet' 'python3-pyflakes' 'python3-pyftpdlib' 'python3-pyfuse3' 'python3-pygal' 'python3-pygaljs' 'python3-pygame' 'python3-pygame-devel' 'python3-pygerrit2' 'python3-pyghmi' 'python3-pygit2' 'python3-pyglet' 'python3-pygments-ansi-color' 'python3-pygments-pytest' 'python3-pygments-style-railscasts' 'python3-pygraphviz' 'python3-pyhibp' 'python3-pyinotify' 'python3-pyinsane2' 'python3-pyjavaproperties' 'python3-pyjokes' 'python3-pyjsparser' 'python3-pyjwkest' 'python3-pykafka' 'python3-pykeepass' 'python3-pykerberos' 'python3-pykwalify' 'python3-pylama' 'python3-pylast' 'python3-pylev' 'python3-pylibmc' 'python3-pylint' 'python3-pylons-sphinx-themes' 'python3-pylzma' 'python3-pymacaroons' 'python3-pymacaroons-pynacl' 'python3-pymad' 'python3-pymarc' 'python3-pymediainfo' 'python3-pymemcache' 'python3-pymilter' 'python3-pymisp' 'python3-pymod2pkg' 'python3-pymol' 'python3-pymongo' 'python3-pymssql' 'python3-pynamodb' 'python3-pyngus' 'python3-pyo' 'python3-pyocr' 'python3-pyodbc' 'python3-pyosf' 'python3-pyotherside' 'python3-pyotp' 'python3-pyowm' 'python3-pyparallel' 'python3-pyparsing' 'python3-pyperclip' 'python3-pypet' 'python3-pypiserver' 'python3-pypng' 'python3-pyppeteer' 'python3-pyprel' 'python3-pyprimes' 'python3-pyproj' 'python3-pypsexec' 'python3-pypuppetdb' 'python3-pyqtgraph' 'python3-pyquery' 'python3-pyramid' 'python3-pyreadstat' 'python3-pyroma' 'python3-pyroute2' 'python3-pyrsistent' 'python3-pysaml2' 'python3-pyscard' 'python3-pysendfile' 'python3-pyserial' 'python3-pyshould' 'python3-pyshp' 'python3-pyside2' 'python3-pyside2-devel' 'python3-pyside2-examples' 'python3-pysmb' 'python3-pysmbc' 'python3-pysmi' 'python3-pysndfile' 'python3-pysnmp' 'python3-pysofaconventions' 'python3-pysrt' 'python3-pyssim' 'python3-pystache' 'python3-pysvn' 'python3-pytaglib' 'python3-pyte' 'python3-pytesseract' 'python3-pytest' 'python3-pytest-aiohttp' 'python3-pytest-arraydiff' 'python3-pytest-astropy' 'python3-pytest-asyncio' 'python3-pytest-attrib' 'python3-pytest-bdd' 'python3-pytest-benchmark' 'python3-pytest-check-links' 'python3-pytest-click' 'python3-pytest-codestyle' 'python3-pytest-console-scripts' 'python3-pytest-cov' 'python3-pytest-datadir' 'python3-pytest-django' 'python3-pytest-doctestplus' 'python3-pytest-dotenv' 'python3-pytest-env' 'python3-pytest-error-for-skips' 'python3-pytest-expect' 'python3-pytest-faulthandler' 'python3-pytest-fixture-config' 'python3-pytest-flake8' 'python3-pytest-flake8dir' 'python3-pytest-flakes' 'python3-pytest-flask' 'python3-pytest-forked' 'python3-pytest-git' 'python3-pytest-helpers-namespace' 'python3-pytest-html' 'python3-pytest-httpbin' 'python3-pytest-httpserver' 'python3-pytest-instafail' 'python3-pytest-isort' 'python3-pytest-lazy-fixture' 'python3-pytest-localserver' 'python3-pytest-metadata' 'python3-pytest-mock' 'python3-pytest-mpl' 'python3-pytest-openfiles' 'python3-pytest-profiling' 'python3-pytest-pythonpath' 'python3-pytest-qt' 'python3-pytest-random-order' 'python3-pytest-randomly' 'python3-pytest-relaxed' 'python3-pytest-remotedata' 'python3-pytest-reorder' 'python3-pytest-repeat' 'python3-pytest-reqs' 'python3-pytest-rerunfailures' 'python3-pytest-runner' 'python3-pytest-services' 'python3-pytest-shutil' 'python3-pytest-socket' 'python3-pytest-spec' 'python3-pytest-subtesthack' 'python3-pytest-sugar' 'python3-pytest-super-check' 'python3-pytest-svn' 'python3-pytest-testconfig' 'python3-pytest-timeout' 'python3-pytest-tldr' 'python3-pytest-tornado' 'python3-pytest-translations' 'python3-pytest-travis-fold' 'python3-pytest-trio' 'python3-pytest-vcr' 'python3-pytest-verbose-parametrize' 'python3-pytest-virtualenv' 'python3-pytest-xdist' 'python3-pytest-xvfb' 'python3-pytest3' 'python3-pytest4' 'python3-python-afl' 'python3-python-aiml' 'python3-python-barcode' 'python3-python-bidi' 'python3-python-box' 'python3-python-cjson' 'python3-python-coveralls' 'python3-python-crfsuite' 'python3-python-daemon' 'python3-python-datamatrix' 'python3-python-dateutil' 'python3-python-dbusmock' 'python3-python-docs-theme' 'python3-python-dotenv' 'python3-python-editor' 'python3-python-fileinspector' 'python3-python-gammu' 'python3-python-gflags' 'python3-python-gitlab' 'python3-python-gnupg' 'python3-python-jenkins' 'python3-python-jose' 'python3-python-json-logger' 'python3-python-louvain' 'python3-python-lzo' 'python3-python-magic' 'python3-python-memcached' 'python3-python-mimeparse' 'python3-python-mpd2' 'python3-python-mpv' 'python3-python-openid-cla' 'python3-python-openid-teams' 'python3-python-pam' 'python3-python-pseudorandom' 'python3-python-ptrace' 'python3-python-qdatamatrix' 'python3-python-qnotifications' 'python3-python-qpid-proton' 'python3-python-qprogedit' 'python3-python-rapidjson' 'python3-python-redmine' 'python3-python-rpm-spec' 'python3-python-slugify' 'python3-python-snappy' 'python3-python-sofa' 'python3-python-sql' 'python3-python-stdnum' 'python3-python-subunit' 'python3-python-twitter' 'python3-python-utils' 'python3-python-vlc' 'python3-python-whois' 'python3-python-xlib' 'python3-python-yubico' 'python3-python3-openid' 'python3-python3-saml' 'python3-pythonfinder' 'python3-pythonwhois' 'python3-pythreejs' 'python3-pytidylib' 'python3-pytils' 'python3-pytimeparse' 'python3-pytlv' 'python3-pytoml' 'python3-pytools' 'python3-pytricia' 'python3-pytz' 'python3-pyuca' 'python3-pyudev' 'python3-pyusb' 'python3-pyverbs' 'python3-pyviz-comms' 'python3-pyvmomi' 'python3-pywbem' 'python3-pywinrm' 'python3-pyxattr' 'python3-pyxb' 'python3-pyxdg' 'python3-pyzmq' 'python3-pyzmq-devel' 'python3-qet_tb_generator' 'python3-qgrid' 'python3-qrcode' 'python3-qscintilla-qt5' 'python3-qt3d-qt5' 'python3-qt4' 'python3-qt4-devel' 'python3-qt5' 'python3-qt5-devel' 'python3-qtcharts-qt5' 'python3-qtconsole' 'python3-qtdatavis3d-qt5' 'python3-qtwebengine-qt5' 'python3-queuelib' 'python3-quicktions' 'python3-radon' 'python3-rados' 'python3-raet' 'python3-random2' 'python3-rarfile' 'python3-rarfile-doc' 'python3-ravello-sdk' 'python3-raven' 'python3-rawkit' 'python3-rbd' 'python3-rcssmin' 'python3-rdflib' 'python3-readme_renderer' 'python3-readthedocs-sphinx-ext' 'python3-rebulk' 'python3-recommonmark' 'python3-redbaron' 'python3-redis' 'python3-rednose' 'python3-regex' 'python3-relatorio' 'python3-releases' 'python3-releases-test' 'python3-remoto' 'python3-rencode' 'python3-reno' 'python3-repex' 'python3-reportlab' 'python3-repoze.lru' 'python3-repoze.sphinx.autointerface' 'python3-repoze.who' 'python3-requests' 'python3-requests-aws' 'python3-requests-cache' 'python3-requests-download' 'python3-requests-file' 'python3-requests-ftp' 'python3-requests-futures' 'python3-requests-hawk' 'python3-requests-html' 'python3-requests-kerberos' 'python3-requests-mock' 'python3-requests-oauthlib' 'python3-requests-toolbelt' 'python3-requests-unixsocket' 'python3-requests_ntlm' 'python3-requestsexceptions' 'python3-requirements-detector' 'python3-requirements-parser' 'python3-requirementslib' 'python3-resampy' 'python3-resolvelib' 'python3-responses' 'python3-restructuredtext_lint' 'python3-resultsdb_api' 'python3-retry' 'python3-retry_decorator' 'python3-retrying' 'python3-rfc3986' 'python3-rfc3987' 'python3-rgw' 'python3-rjsmin' 'python3-rnginline' 'python3-rollbar' 'python3-roman' 'python3-rope' 'python3-rply' 'python3-rpm' 'python3-rpmconf' 'python3-rpmfile' 'python3-rpy2' 'python3-rpyc' 'python3-rq' 'python3-rrdtool' 'python3-rsa' 'python3-rst.linker' 'python3-rstcheck' 'python3-rt' 'python3-rtslib-fb' 'python3-ruamel.base' 'python3-ruamel.std.argparse' 'python3-ruamel.std.pathlib' 'python3-ruamel.yaml' 'python3-ruamel.yaml.clib' 'python3-ruamel.yaml.cmd' 'python3-ruamel.yaml.convert' 'python3-ruffus' 'python3-rust2rpm' 'python3-rustcfg' 'python3-ryu' 'python3-s3fs' 'python3-s3transfer' 'python3-salt' 'python3-samplerate' 'python3-sane' 'python3-sanlock' 'python3-sarge' 'python3-sas7bdat' 'python3-sasl' 'python3-scales' 'python3-scandir' 'python3-schedule' 'python3-schema' 'python3-scikit-build' 'python3-scikit-dsp-comm' 'python3-scikit-image' 'python3-scikit-learn' 'python3-scikit-sound' 'python3-scikit-sparse' 'python3-scikit-umfpack' 'python3-scikits.example' 'python3-scipy' 'python3-scipy-gnu-hpc' 'python3-scipy_1_3_1-gnu-hpc' 'python3-scour' 'python3-scp' 'python3-scripttest' 'python3-scrypt' 'python3-scspell3k' 'python3-sdnotify' 'python3-seaborn' 'python3-selection' 'python3-selectors2' 'python3-selenium' 'python3-selinux' 'python3-semanage' 'python3-semantic_version' 'python3-semver' 'python3-senlinclient' 'python3-sentry-sdk' 'python3-seqdiag' 'python3-serpent' 'python3-serpy' 'python3-serverfiles' 'python3-service_identity' 'python3-setools' 'python3-setproctitle' 'python3-setuptools' 'python3-setuptools-git' 'python3-setuptools_scm' 'python3-setuptools_scm_git_archive' 'python3-sge-pygame' 'python3-sgmllib3k' 'python3-sh' 'python3-shaptools' 'python3-shellingham' 'python3-shijian' 'python3-shodan' 'python3-shortuuid' 'python3-shouldbe' 'python3-sidecar' 'python3-sievelib' 'python3-sigal' 'python3-signedjson' 'python3-simpleaudio' 'python3-simplebayes' 'python3-simpleeval' 'python3-simplegeneric' 'python3-simplejson' 'python3-sip' 'python3-sip-devel' 'python3-siphashc' 'python3-six' 'python3-sklearn-pandas' 'python3-sleekxmpp' 'python3-slimit' 'python3-slip' 'python3-slip-dbus' 'python3-slixmpp' 'python3-slumber' 'python3-slycot' 'python3-smartypants' 'python3-smbios' 'python3-smbios-utils' 'python3-smbprotocol' 'python3-smmap' 'python3-smmap2' 'python3-sniffio' 'python3-snowballstemmer' 'python3-snuggs' 'python3-social-auth-app-django' 'python3-social-auth-core' 'python3-socketpool' 'python3-softlayer' 'python3-solv' 'python3-sortedcollections' 'python3-sortedcontainers' 'python3-sortinghat' 'python3-soundcloud' 'python3-sounddevice' 'python3-soupsieve' 'python3-spake2' 'python3-spark_parser' 'python3-sparse' 'python3-speaklater' 'python3-spec' 'python3-speechd' 'python3-sphinx-autodoc-typehints' 'python3-sphinx-bootstrap-theme' 'python3-sphinx-feature-classification' 'python3-sphinx-issues' 'python3-sphinx-removed-in' 'python3-sphinx-testing' 'python3-sphinx-version-warning' 'python3-sphinx_rtd_theme' 'python3-sphinxcontrib-actdiag' 'python3-sphinxcontrib-apidoc' 'python3-sphinxcontrib-applehelp' 'python3-sphinxcontrib-asyncio' 'python3-sphinxcontrib-autoprogram' 'python3-sphinxcontrib-autoprogram-doc' 'python3-sphinxcontrib-blockdiag' 'python3-sphinxcontrib-devhelp' 'python3-sphinxcontrib-documentedlist' 'python3-sphinxcontrib-github-alt' 'python3-sphinxcontrib-htmlhelp' 'python3-sphinxcontrib-httpdomain' 'python3-sphinxcontrib-issuetracker' 'python3-sphinxcontrib-jsmath' 'python3-sphinxcontrib-newsfeed' 'python3-sphinxcontrib-nwdiag' 'python3-sphinxcontrib-pecanwsme' 'python3-sphinxcontrib-programoutput' 'python3-sphinxcontrib-qthelp' 'python3-sphinxcontrib-seqdiag' 'python3-sphinxcontrib-serializinghtml' 'python3-sphinxcontrib-svg2pdfconverter' 'python3-sphinxcontrib-trio' 'python3-sphinxcontrib-websupport' 'python3-splinter' 'python3-spotipy' 'python3-spyder-kernels' 'python3-sqlalchemy-migrate' 'python3-sqlitedict' 'python3-sqlparse' 'python3-ssdeep' 'python3-sshtunnel' 'python3-sss-murmur' 'python3-sss_nss_idmap' 'python3-sssd-config' 'python3-statsd' 'python3-statsmodels' 'python3-stdeb' 'python3-stem' 'python3-stestr' 'python3-stevedore' 'python3-stomp.py' 'python3-stomper' 'python3-straight-plugin' 'python3-streamz' 'python3-strict-rfc3339' 'python3-structlog' 'python3-subgrab' 'python3-subliminal' 'python3-subscene-api' 'python3-subst' 'python3-suds-jurko' 'python3-sunpy' 'python3-sure' 'python3-susepubliccloudinfo' 'python3-sushy' 'python3-svgwrite' 'python3-swapper' 'python3-swiftclient' 'python3-sybil' 'python3-sympy' 'python3-systemd' 'python3-tables' 'python3-tablib' 'python3-tabulate' 'python3-tagpy' 'python3-talloc' 'python3-talloc-32bit' 'python3-talloc-devel' 'python3-tap.py' 'python3-targetcli-fb' 'python3-tbb' 'python3-tblib' 'python3-tdb' 'python3-tdb-32bit' 'python3-technicolor' 'python3-telepot' 'python3-template-remover' 'python3-tempora' 'python3-tenacity' 'python3-termcolor' 'python3-terminado' 'python3-terminaltables' 'python3-termstyle' 'python3-tesserocr' 'python3-testfixtures' 'python3-testflo' 'python3-testinfra' 'python3-testpath' 'python3-testrepository' 'python3-testresources' 'python3-testscenarios' 'python3-testsuite' 'python3-testtools' 'python3-tevent' 'python3-tevent-32bit' 'python3-text-unidecode' 'python3-textX' 'python3-textfsm' 'python3-textile' 'python3-texttable' 'python3-textwrap3' 'python3-thLib' 'python3-threevis' 'python3-thrift' 'python3-thriftpy' 'python3-tinycss2' 'python3-tinydb' 'python3-tinyrecord' 'python3-tinyrpc' 'python3-titlecase' 'python3-tk' 'python3-tkreadonly' 'python3-tld' 'python3-tldextract' 'python3-tmx' 'python3-tomate' 'python3-toml' 'python3-tomlkit' 'python3-tools' 'python3-toolz' 'python3-tooz' 'python3-topy' 'python3-tornado' 'python3-tornado4' 'python3-tox' 'python3-tox-no-internet' 'python3-tox-travis' 'python3-tox-wheel' 'python3-tpfd' 'python3-tqdm' 'python3-traceback2' 'python3-traitlets' 'python3-traits' 'python3-traitsui' 'python3-traittypes' 'python3-transaction' 'python3-transip' 'python3-translation-finder' 'python3-translationstring' 'python3-translitcodec' 'python3-treq' 'python3-trio' 'python3-trustme' 'python3-tsk' 'python3-tvdb_api' 'python3-tvtk' 'python3-tvtk-doc' 'python3-tweepy' 'python3-twine' 'python3-twitter.common.finagle-thrift' 'python3-twitter.common.lang' 'python3-twitter.common.rpc' 'python3-twodict' 'python3-twython' 'python3-txWS' 'python3-txZMQ' 'python3-txacme' 'python3-txaio' 'python3-txtorcon' 'python3-typed-ast' 'python3-typing_extensions' 'python3-tzlocal' 'python3-u-msgpack-python' 'python3-ua-parser' 'python3-uamqp' 'python3-ucsmsdk' 'python3-ujson' 'python3-unbound' 'python3-uncertainties' 'python3-uncompyle6' 'python3-unicodecsv' 'python3-unidiff' 'python3-unify' 'python3-uniseg' 'python3-units' 'python3-unittest-mixins' 'python3-unittest-xml-reporting' 'python3-unittest2' 'python3-unpaddedbase64' 'python3-untokenize' 'python3-upm' 'python3-uritemplate' 'python3-urlgrabber' 'python3-urllib3' 'python3-urwid' 'python3-user-agents' 'python3-user_agent' 'python3-uvloop' 'python3-validate_email' 'python3-validators' 'python3-vapoursynth' 'python3-varlink' 'python3-vcrpy' 'python3-vcversioner' 'python3-vdirsyncer' 'python3-vega' 'python3-vega_datasets' 'python3-venusian' 'python3-venusian-doc' 'python3-verboselogs' 'python3-versioneer' 'python3-versiontools' 'python3-veusz' 'python3-vim-vint' 'python3-vine' 'python3-virt-bootstrap' 'python3-virtkey' 'python3-virtualbmc' 'python3-virtualbox' 'python3-virtualenv' 'python3-virtualenv-clone' 'python3-virtualenvwrapper' 'python3-visitor' 'python3-vispy' 'python3-vistir' 'python3-vobject' 'python3-voila' 'python3-voluptuous' 'python3-voluptuous-serialize' 'python3-vtk' 'python3-vtk-openmpi' 'python3-vtk-openmpi2' 'python3-vulkan' 'python3-vulture' 'python3-w3lib' 'python3-wadllib' 'python3-waitress' 'python3-waitress-doc' 'python3-wakeonlan' 'python3-warlock' 'python3-watchdog' 'python3-watchdog-doc' 'python3-watermark' 'python3-wcwidth' 'python3-web_cache' 'python3-webassets' 'python3-webcolors' 'python3-webencodings' 'python3-weblib' 'python3-webruntime' 'python3-websocket-client' 'python3-websockets' 'python3-websockify' 'python3-whatever' 'python3-whatthepatch' 'python3-wheel' 'python3-whichcraft' 'python3-whitenoise' 'python3-whois_similarity_distance' 'python3-wikipedia' 'python3-wiring' 'python3-wolframalpha' 'python3-wptools' 'python3-wrapt' 'python3-ws4py' 'python3-wsaccel' 'python3-wsgi_intercept' 'python3-wsproto' 'python3-wstools' 'python3-wtf-peewee' 'python3-wurlitzer' 'python3-wxPython' 'python3-wxPython-lang' 'python3-xapian' 'python3-xapp' 'python3-xarray' 'python3-xattr' 'python3-xcb-proto-devel' 'python3-xcffib' 'python3-xdis' 'python3-xerox' 'python3-xhtml2pdf' 'python3-xlrd' 'python3-xlwt' 'python3-xmldiff' 'python3-xmlsec' 'python3-xmltodict' 'python3-xpybutil' 'python3-xsge_gui' 'python3-xsge_lighting' 'python3-xsge_particle' 'python3-xsge_path' 'python3-xsge_physics' 'python3-xsge_tmx' 'python3-xvfbwrapper' 'python3-xxhash' 'python3-yamldoc' 'python3-yamllint' 'python3-yang' 'python3-yapf' 'python3-yappi' 'python3-yara' 'python3-yarb' 'python3-yarg' 'python3-yarl' 'python3-yaspin' 'python3-youtube-dl' 'python3-yq' 'python3-yt' 'python3-z3' 'python3-zake' 'python3-zarafa' 'python3-zc.buildout' 'python3-zc.customdoctests' 'python3-zc.lockfile' 'python3-zdaemon' 'python3-zeep' 'python3-zeroconf' 'python3-zetup' 'python3-zict' 'python3-zipp' 'python3-zipstream' 'python3-zodbpickle' 'python3-zope.cachedescriptors' 'python3-zope.component' 'python3-zope.configuration' 'python3-zope.copy' 'python3-zope.deferredimport' 'python3-zope.deprecation' 'python3-zope.event' 'python3-zope.exceptions' 'python3-zope.hookable' 'python3-zope.i18nmessageid' 'python3-zope.interface' 'python3-zope.location' 'python3-zope.proxy' 'python3-zope.proxy-devel' 'python3-zope.schema' 'python3-zope.security' 'python3-zope.testbrowser' 'python3-zope.testing' 'python3-zope.testrunner' 'python3-zstandard' 'python3-zstd' 'python3-zypp-plugin' 'pyzy-db-android' 'pyzy-db-open-phrase' 'pyzy-devel' 'q4wine' 'q4wine-lang' 'qactus' 'qalculate' 'qalculate-data' 'qbittorrent' 'qbittorrent-nox' 'qbs' 'qbs-devel' 'qcustomplot-devel' 'qcustomplot-doc' 'qd-devel' 'qdirstat' 'qdox' 'qdox-javadoc' 'qelectrotech' 'qemacs' 'qemu' 'qemu-arm' 'qemu-audio-alsa' 'qemu-audio-pa' 'qemu-audio-sdl' 'qemu-block-curl' 'qemu-block-dmg' 'qemu-block-gluster' 'qemu-block-iscsi' 'qemu-block-nfs' 'qemu-block-rbd' 'qemu-block-ssh' 'qemu-extra' 'qemu-guest-agent' 'qemu-ipxe' 'qemu-ksm' 'qemu-kvm' 'qemu-lang' 'qemu-linux-user' 'qemu-ovmf-ia32' 'qemu-ovmf-x86_64' 'qemu-ovmf-x86_64-debug' 'qemu-ppc' 'qemu-s390' 'qemu-seabios' 'qemu-sgabios' 'qemu-testsuite' 'qemu-tools' 'qemu-ui-curses' 'qemu-ui-gtk' 'qemu-ui-sdl' 'qemu-vgabios' 'qemu-x86' 'qgit' 'qgo' 'qgroundcontrol' 'qhexedit2' 'qhexedit2-devel' 'qhexedit2-doc' 'qhull' 'qhull-devel' 'qimgv' 'qiv' 'qjackctl' 'qjackctl-lang' 'qlipper' 'qlipper-lang' 'qm' 'qmelt' 'qml-box2d' 'qmltermwidget' 'qmmp' 'qmmp' 'qmmp-debuginfo' 'qmmp-debugsource' 'qmmp-plugin-pack' 'qmmp-plugin-pack-ffap' 'qmmp-plugin-pack-ffvideo' 'qmmp-plugin-pack-goom' 'qmmp-plugin-pack-samplerate' 'qmmp-plugin-pack-xmp' 'qmp3gain' 'qmp3gain' 'qmp3gain-debuginfo' 'qmp3gain-debugsource' 'qmp3gain-lang' 'qnapi' 'qoauth-qt5-devel' 'qore' 'qore-devel' 'qore-devel-doc' 'qore-doc' 'qore-json-module' 'qore-json-module-doc' 'qore-misc-tools' 'qore-mysql-module' 'qore-mysql-module-doc' 'qore-pgsql-module' 'qore-pgsql-module-doc' 'qore-sqlite3-module' 'qore-sqlite3-module-doc' 'qore-ssh2-module' 'qore-ssh2-module-doc' 'qore-uuid-module' 'qore-uuid-module-doc' 'qore-xml-module' 'qore-xml-module-doc' 'qore-yaml-module' 'qore-yaml-module-doc' 'qos' 'qpdf' 'qpdf-devel' 'qpdf-htmldoc' 'qpdfview' 'qpdfview-lang' 'qpdfview-plugin-djvu' 'qpdfview-plugin-image' 'qpdfview-plugin-pdf' 'qpdfview-plugin-ps' 'qperf' 'qphotorec' 'qpid-cpp-client' 'qpid-cpp-client-devel' 'qpid-cpp-client-devel-docs' 'qpid-cpp-server' 'qpid-cpp-server-ha' 'qpid-cpp-server-store' 'qpid-proton-devel' 'qpid-proton-devel-doc' 'qpid-qmf' 'qpid-qmf-devel' 'qpid-tests' 'qpid-tools' 'qpress' 'qprint' 'qps' 'qps-lang' 'qputty-qt5' 'qqc2-desktop-style' 'qqc2-desktop-style-devel' 'qqwing' 'qqwing-devel' 'qrencode' 'qrencode-devel' 'qrupdate' 'qrupdate-devel' 'qrupdate-static' 'qscintilla2_qt5' 'qsyncthingtray' 'qsynergy' 'qsynth' 'qsynth-lang' 'qt3' 'qt3' 'qt3-32bit' 'qt3-32bit-debuginfo' 'qt3-debuginfo' 'qt3-debugsource' 'qt3-devel' 'qt3-devel-32bit' 'qt3-devel-32bit-debuginfo' 'qt3-devel-debuginfo' 'qt4-assistant-adp' 'qt4-assistant-adp-devel' 'qt4-qtscript' 'qt4-qtscript-doc' 'qt4-style-fusion' 'qt4pas' 'qt4pas-devel' 'qt5ct' 'qtcurve-gtk2' 'qtcurve-gtk2-32bit' 'qtcurve-kde4' 'qtcurve-kde4-32bit' 'qtcurve-qt5' 'qtcurve-qt5-32bit' 'qtel' 'qterm' 'qterminal' 'qterminal-lang' 'qtermwidget-qt5-data' 'qtermwidget-qt5-devel' 'qtfm' 'qtile' 'qtkeychain-qt5-devel' 'qtodotxt' 'qtox' 'qtractor' 'qtsmbstatus' 'qtsmbstatus' 'qtsmbstatus-debuginfo' 'qtsmbstatus-debugsource' 'qtsmbstatus-lang' 'qtsmbstatus-light' 'qtsmbstatus-light-debuginfo' 'qtsmbstatus-server' 'qtsmbstatus-server-debuginfo' 'qtweetlib' 'qtweetlib-debugsource' 'qtweetlib-devel' 'quadrapassel' 'quadrapassel-lang' 'quagga' 'quagga-devel' 'quakespasm' 'quantum-espresso' 'quantum-espresso-doc' 'quantum-espresso-openmpi' 'quassel-base' 'quassel-client' 'quassel-client-qt5' 'quassel-core' 'quassel-mono' 'quazip-devel' 'quazip-doc' 'quilt' 'quilter' 'quilter-lang' 'quimup' 'quiterss' 'quiterss-lang' 'quota' 'quota-nfs' 'quotatool' 'qutebrowser' 'qutecom' 'qutecom' 'qutecom-debuginfo' 'qutecom-debugsource' 'quvi' 'qv4l2' 'qview' 'qwt-designer' 'qwt-devel' 'qwt-devel-doc' 'qwt6-designer' 'qwt6-devel' 'qwt6-devel-doc' 'qwt6-examples' 'qwtplot3d-devel' 'qx11grab' 'qx11grab' 'qx11grab-debuginfo' 'qx11grab-debugsource' 'qxmledit' 'qxmledit-devel' 'qxtglobalshortcut-devel' 'r8168' 'r8168-blacklist-r8169' 'r8168-debugsource' 'r8168-kmp-default' 'r8168-kmp-default-debuginfo' 'r8168-kmp-pae' 'r8168-kmp-pae-debuginfo' 'rabbitmq-java-client' 'rabbitmq-server' 'rabbitmq-server-plugins' 'racer' 'racket' 'racket-devel' 'racket-doc' 'radamsa' 'radcli' 'radcli-compat-devel' 'radcli-devel' 'radeontop' 'radeontop-lang' 'radiotray' 'radiotray-lang' 'rados-objclass-devel' 'radvd' 'rage' 'ragel' 'ragel-6' 'ragel-devel' 'rakkess' 'rakudo' 'raleway-fonts' 'ranger' 'rapi2-tools' 'rapi2-tools-debuginfo' 'rapid-photo-downloader' 'rapid-photo-downloader-lang' 'rapidjson-devel' 'raptor' 'rar' 'rar' 'rarian' 'rarian-devel' 'rarian-scrollkeeper-compat' 'rarpd' 'rasdaemon' 'rash' 'rasmol' 'raspberrypi-firmware' 'raspberrypi-firmware-config' 'raspberrypi-firmware-dt' 'raspberrypi-firmware-extra' 'raspberrypi-firmware-extra-pi4' 'rasqal' 'ratbagd' 'ratslap' 'raw-thumbnailer' 'rawstudio' 'rawstudio-lang' 'raylib-devel' 'razercfg' 'razor-agents' 'rbac-lookup' 'rbac-manager' 'rbac-manager-k8s-yaml' 'rbd-fuse' 'rbd-mirror' 'rbd-nbd' 'rbutil' 'rcc-runtime' 'rclone' 'rclone-bash-completion' 'rclone-zsh-completion' 'rcm' 'rcs' 'rdesktop' 'rdiff' 'rdiff-backup' 'rdma-core' 'rdma-core-devel' 'rdma-core-devel-32bit' 'rdma-ndd' 'rds-tools' 'rds-tools-devel' 're2-devel' 're2c' 'read-edid' 'read-only-root-fs' 'read-only-root-fs-volatile' 'readcd' 'readline-devel' 'readline-devel-32bit' 'readline-devel-static' 'readline-doc' 'readline5-devel' 'readline5-devel-32bit' 'readline6-devel' 'readline6-devel-32bit' 'realmd' 'realmd-lang' 'rear' 'reaver' 'reaver' 'reaver-debuginfo' 'reaver-debugsource' 'rebootmgr' 'recidivm' 'reco' 'reco-lang' 'recode' 'recode-devel' 'recorditnow' 'recorditnow' 'recorditnow-backend-ffmpeg' 'recorditnow-backend-ffmpeg-debuginfo' 'recorditnow-backend-mplayer' 'recorditnow-backend-mplayer-debuginfo' 'recorditnow-debuginfo' 'recorditnow-debugsource' 'recorditnow-lang' 'recordmydesktop' 'redeclipse' 'redeclipse-data' 'redis' 'redland' 'redland-storage-postgresql' 'rednotebook' 'rednotebook-lang' 'redsea' 'redshift' 'redshift-gtk' 'regexp' 'reiser4progs' 'reiser4progs-devel' 'reiserfs' 'relaxngDatatype' 'release-notes-openSUSE' 'remake' 'remake-lang' 'remind' 'remmina' 'remmina-devel' 'remmina-kiosk' 'remmina-lang' 'remmina-plugin-exec' 'remmina-plugin-kwallet' 'remmina-plugin-rdp' 'remmina-plugin-secret' 'remmina-plugin-spice' 'remmina-plugin-st' 'remmina-plugin-vnc' 'remmina-plugin-www' 'remmina-plugin-xdmcp' 'rendercheck' 'rep-gtk' 'rep-gtk-devel' 'reptyr' 'resample' 'rescue' 'resolv_wrapper' 'resource-agents' 'restic' 'restic-bash-completion' 'restic-zsh-completion' 'restorecond' 'retext' 'retro-gtk-devel' 'reuse' 'reuse-lang' 'reveng' 'rfb' 'rfbplaymacro' 'rfbproxy' 'rfcdiff' 'rgb' 'rhash' 'rhash-devel' 'rhash-lang' 'rhino' 'rhino-demo' 'rhythmbox' 'rhythmbox-devel' 'rhythmbox-lang' 'rime' 'rime-plum' 'rinetd' 'ripgrep' 'ripgrep-bash-completion' 'ripgrep-fish-completion' 'ripgrep-zsh-completion' 'ripit' 'ristretto' 'ristretto-lang' 'rk-devel' 'rkhunter' 'rkward' 'rls' 'rlwrap' 'rmail' 'rmedigicontrol' 'rmt-server' 'rmt-server-config' 'rmt-server-pubcloud' 'rnd_jue' 'rnd_jue-data' 'rng-tools' 'roar-devel' 'roar-devel-debuginfo' 'roaraudio' 'roaraudio' 'roaraudio-compat2' 'roaraudio-debuginfo' 'roaraudio-debugsource' 'roaraudio-plugins' 'roaraudio-plugins-debuginfo' 'roarpld' 'roarpld' 'roarpld-codechelper-gst' 'roarpld-debuginfo' 'roarpld-debugsource' 'roarpld-devel' 'robinhood' 'robinhood-tests' 'robinhood-tools' 'robinhood-webgui' 'roccat-arvo' 'roccat-isku' 'roccat-iskufx' 'roccat-kiro' 'roccat-kone' 'roccat-koneplus' 'roccat-konepure' 'roccat-konextd' 'roccat-kova2016' 'roccat-kovaplus' 'roccat-lua' 'roccat-nyth' 'roccat-pyra' 'roccat-ryos' 'roccat-savu' 'roccat-skeltr' 'roccat-sova' 'roccat-suora' 'roccat-tools' 'roccat-tyon' 'rockdodger' 'rocksndiamonds' 'rocksndiamonds-data' 'rocs' 'rocs-devel' 'rocs-lang' 'rofi' 'rofi-calc' 'rofi-devel' 'rollback-helper' 'rook' 'rook-integration' 'rook-k8s-yaml' 'rook-rookflex' 'root-tail' 'rosa-media-player' 'rosa-media-player' 'rosa-media-player-debuginfo' 'rosa-media-player-debugsource' 'rosa-media-player-lang' 'rosegarden' 'rott' 'roundcubemail' 'rox-filer' 'rp-pppoe' 'rpcbind' 'rpcgen' 'rpcsvc-proto-devel' 'rpm' 'rpm-32bit' 'rpm-build' 'rpm-config-SUSE' 'rpm-devel' 'rpmconf' 'rpmdevtools' 'rpmemd' 'rpmkey-packman' 'rpmkey-packman' 'rpmlint' 'rpmlint-Factory' 'rpmlint-Factory-strict' 'rpmlint-mini' 'rpmorphan' 'rpmrebuild' 'rrdtool' 'rrdtool-cached' 'rrdtool-devel' 'rrdtool-doc' 'rscsi' 'rsibreak' 'rsibreak-lang' 'rsnapshot' 'rsocket' 'rsocket-32bit' 'rsound' 'rsound' 'rsound-debuginfo' 'rsound-debugsource' 'rss-glx' 'rss2email' 'rssguard' 'rsstail' 'rst2html5' 'rstart' 'rsvg-thumbnailer' 'rsvg-view' 'rsvg2-sharp' 'rsync' 'rsyslog' 'rsyslog-diag-tools' 'rsyslog-doc' 'rsyslog-module-dbi' 'rsyslog-module-elasticsearch' 'rsyslog-module-gcrypt' 'rsyslog-module-gssapi' 'rsyslog-module-gtls' 'rsyslog-module-mmnormalize' 'rsyslog-module-mysql' 'rsyslog-module-omamqp1' 'rsyslog-module-omhttpfs' 'rsyslog-module-omtcl' 'rsyslog-module-ossl' 'rsyslog-module-pgsql' 'rsyslog-module-relp' 'rsyslog-module-snmp' 'rsyslog-module-udpspoof' 'rt-tests' 'rt2860' 'rtags' 'rtaudio-devel' 'rtkit' 'rtl-sdr' 'rtl-sdr-devel' 'rtl-sdr-udev' 'rtl8812au' 'rtl8812au-kmp-default' 'rtl8812au-kmp-pae' 'rtl_433' 'rtl_433-devel' 'rtmidi-devel' 'rtmpdump' 'rtmpdump' 'rtmpdump-debuginfo' 'rtmpdump-debugsource' 'rtmpgw' 'rtmpgw-debuginfo' 'rtmpsrv' 'rtmpsrv-debuginfo' 'rtmpsuck' 'rtmpsuck-debuginfo' 'rtorrent' 'rttr-devel' 'rttr-devel-doc' 'rubber' 'rubberband-cli' 'rubberband-ladspa' 'rubberband-ladspa-32bit' 'rubberband-vamp' 'rubberband-vamp-32bit' 'ruby' 'ruby-apparmor' 'ruby-bundled-gems-rpmhelper' 'ruby-common' 'ruby-common-rails' 'ruby-devel' 'ruby-ecasound' 'ruby-geos' 'ruby-libprelude' 'ruby-marisa' 'ruby-obexftp' 'ruby-rrdtool' 'ruby-selinux' 'ruby-solv' 'ruby-xapian' 'ruby-yui' 'ruby2.6' 'ruby2.6-devel' 'ruby2.6-devel-extra' 'ruby2.6-doc' 'ruby2.6-doc-ri' 'ruby2.6-rubygem-RedCloth' 'ruby2.6-rubygem-RedCloth-doc' 'ruby2.6-rubygem-RedCloth-testsuite' 'ruby2.6-rubygem-abstract' 'ruby2.6-rubygem-abstract-doc' 'ruby2.6-rubygem-abstract-testsuite' 'ruby2.6-rubygem-abstract_method' 'ruby2.6-rubygem-abstract_method-doc' 'ruby2.6-rubygem-actioncable-5.2' 'ruby2.6-rubygem-actioncable-5_0' 'ruby2.6-rubygem-actioncable-5_1' 'ruby2.6-rubygem-actioncable-6.0' 'ruby2.6-rubygem-actioncable-doc-5.2' 'ruby2.6-rubygem-actioncable-doc-5_0' 'ruby2.6-rubygem-actioncable-doc-5_1' 'ruby2.6-rubygem-actioncable-doc-6.0' 'ruby2.6-rubygem-actionmailbox-6.0' 'ruby2.6-rubygem-actionmailbox-doc-6.0' 'ruby2.6-rubygem-actionmailer-5.2' 'ruby2.6-rubygem-actionmailer-5_0' 'ruby2.6-rubygem-actionmailer-5_1' 'ruby2.6-rubygem-actionmailer-6.0' 'ruby2.6-rubygem-actionmailer-doc-5.2' 'ruby2.6-rubygem-actionmailer-doc-5_0' 'ruby2.6-rubygem-actionmailer-doc-5_1' 'ruby2.6-rubygem-actionmailer-doc-6.0' 'ruby2.6-rubygem-actionpack-5.2' 'ruby2.6-rubygem-actionpack-5_0' 'ruby2.6-rubygem-actionpack-5_1' 'ruby2.6-rubygem-actionpack-6.0' 'ruby2.6-rubygem-actionpack-doc-5.2' 'ruby2.6-rubygem-actionpack-doc-5_0' 'ruby2.6-rubygem-actionpack-doc-5_1' 'ruby2.6-rubygem-actionpack-doc-6.0' 'ruby2.6-rubygem-actiontext-6.0' 'ruby2.6-rubygem-actiontext-doc-6.0' 'ruby2.6-rubygem-actionview-5.2' 'ruby2.6-rubygem-actionview-5_0' 'ruby2.6-rubygem-actionview-5_1' 'ruby2.6-rubygem-actionview-6.0' 'ruby2.6-rubygem-actionview-doc-5.2' 'ruby2.6-rubygem-actionview-doc-5_0' 'ruby2.6-rubygem-actionview-doc-5_1' 'ruby2.6-rubygem-actionview-doc-6.0' 'ruby2.6-rubygem-activejob-5.2' 'ruby2.6-rubygem-activejob-5_0' 'ruby2.6-rubygem-activejob-5_1' 'ruby2.6-rubygem-activejob-6.0' 'ruby2.6-rubygem-activejob-doc-5.2' 'ruby2.6-rubygem-activejob-doc-5_0' 'ruby2.6-rubygem-activejob-doc-5_1' 'ruby2.6-rubygem-activejob-doc-6.0' 'ruby2.6-rubygem-activemodel-5.2' 'ruby2.6-rubygem-activemodel-5_0' 'ruby2.6-rubygem-activemodel-5_1' 'ruby2.6-rubygem-activemodel-6.0' 'ruby2.6-rubygem-activemodel-doc-5.2' 'ruby2.6-rubygem-activemodel-doc-5_0' 'ruby2.6-rubygem-activemodel-doc-5_1' 'ruby2.6-rubygem-activemodel-doc-6.0' 'ruby2.6-rubygem-activerecord-5.2' 'ruby2.6-rubygem-activerecord-5_0' 'ruby2.6-rubygem-activerecord-5_1' 'ruby2.6-rubygem-activerecord-6.0' 'ruby2.6-rubygem-activerecord-deprecated_finders' 'ruby2.6-rubygem-activerecord-deprecated_finders-doc' 'ruby2.6-rubygem-activerecord-doc-5.2' 'ruby2.6-rubygem-activerecord-doc-5_0' 'ruby2.6-rubygem-activerecord-doc-6.0' 'ruby2.6-rubygem-activestorage-5.2' 'ruby2.6-rubygem-activestorage-6.0' 'ruby2.6-rubygem-activestorage-doc-5.2' 'ruby2.6-rubygem-activestorage-doc-6.0' 'ruby2.6-rubygem-activesupport-5.2' 'ruby2.6-rubygem-activesupport-5_0' 'ruby2.6-rubygem-activesupport-5_1' 'ruby2.6-rubygem-activesupport-6.0' 'ruby2.6-rubygem-activesupport-doc-5.2' 'ruby2.6-rubygem-activesupport-doc-5_0' 'ruby2.6-rubygem-activesupport-doc-5_1' 'ruby2.6-rubygem-activesupport-doc-6.0' 'ruby2.6-rubygem-addressable' 'ruby2.6-rubygem-addressable-2_3' 'ruby2.6-rubygem-addressable-doc' 'ruby2.6-rubygem-addressable-doc-2_3' 'ruby2.6-rubygem-addressable-testsuite' 'ruby2.6-rubygem-addressable-testsuite-2_3' 'ruby2.6-rubygem-aes_key_wrap' 'ruby2.6-rubygem-aes_key_wrap-doc' 'ruby2.6-rubygem-airbrussh' 'ruby2.6-rubygem-airbrussh-doc' 'ruby2.6-rubygem-amq-protocol' 'ruby2.6-rubygem-amq-protocol-doc' 'ruby2.6-rubygem-amq-protocol-testsuite' 'ruby2.6-rubygem-amqp' 'ruby2.6-rubygem-amqp-doc' 'ruby2.6-rubygem-amqp-testsuite' 'ruby2.6-rubygem-archive-tar-minitar' 'ruby2.6-rubygem-archive-tar-minitar-doc' 'ruby2.6-rubygem-arel' 'ruby2.6-rubygem-arel-3_0' 'ruby2.6-rubygem-arel-6' 'ruby2.6-rubygem-arel-7' 'ruby2.6-rubygem-arel-8' 'ruby2.6-rubygem-arel-doc' 'ruby2.6-rubygem-arel-doc-3_0' 'ruby2.6-rubygem-arel-doc-6' 'ruby2.6-rubygem-arel-doc-7' 'ruby2.6-rubygem-arel-doc-8' 'ruby2.6-rubygem-arel-testsuite-3_0' 'ruby2.6-rubygem-asciidoctor' 'ruby2.6-rubygem-asciidoctor-doc' 'ruby2.6-rubygem-atomic' 'ruby2.6-rubygem-atomic-doc' 'ruby2.6-rubygem-atomic-testsuite' 'ruby2.6-rubygem-attr_required' 'ruby2.6-rubygem-attr_required-doc' 'ruby2.6-rubygem-attr_required-testsuite' 'ruby2.6-rubygem-autoprefixer-rails' 'ruby2.6-rubygem-autoprefixer-rails-doc' 'ruby2.6-rubygem-autoprefixer-rails-testsuite' 'ruby2.6-rubygem-axiom-types' 'ruby2.6-rubygem-axiom-types-doc' 'ruby2.6-rubygem-axiom-types-testsuite' 'ruby2.6-rubygem-base32' 'ruby2.6-rubygem-base32-doc' 'ruby2.6-rubygem-base32-testsuite' 'ruby2.6-rubygem-bcrypt' 'ruby2.6-rubygem-bcrypt-doc' 'ruby2.6-rubygem-bcrypt-ruby' 'ruby2.6-rubygem-bcrypt-ruby-doc' 'ruby2.6-rubygem-bcrypt-testsuite' 'ruby2.6-rubygem-bcrypt_pbkdf' 'ruby2.6-rubygem-bcrypt_pbkdf-doc' 'ruby2.6-rubygem-bcrypt_pbkdf-testsuite' 'ruby2.6-rubygem-bindata' 'ruby2.6-rubygem-bindata-doc' 'ruby2.6-rubygem-bindata-testsuite' 'ruby2.6-rubygem-bindex' 'ruby2.6-rubygem-bindex-doc' 'ruby2.6-rubygem-bindex-testsuite' 'ruby2.6-rubygem-binding_of_caller' 'ruby2.6-rubygem-binding_of_caller-doc' 'ruby2.6-rubygem-binding_of_caller-testsuite' 'ruby2.6-rubygem-bootsnap' 'ruby2.6-rubygem-bootsnap-doc' 'ruby2.6-rubygem-bootstrap-sass' 'ruby2.6-rubygem-bootstrap-sass-doc' 'ruby2.6-rubygem-bootstrap-sass-testsuite' 'ruby2.6-rubygem-buff-extensions' 'ruby2.6-rubygem-buff-extensions-doc' 'ruby2.6-rubygem-buff-extensions-testsuite' 'ruby2.6-rubygem-buff-ignore' 'ruby2.6-rubygem-buff-ignore-doc' 'ruby2.6-rubygem-buff-ignore-testsuite' 'ruby2.6-rubygem-buff-ruby_engine' 'ruby2.6-rubygem-buff-ruby_engine-doc' 'ruby2.6-rubygem-buff-ruby_engine-testsuite' 'ruby2.6-rubygem-builder' 'ruby2.6-rubygem-builder-doc' 'ruby2.6-rubygem-builder-testsuite' 'ruby2.6-rubygem-bundler' 'ruby2.6-rubygem-bundler-audit' 'ruby2.6-rubygem-bundler-audit-doc' 'ruby2.6-rubygem-bundler-audit-testsuite' 'ruby2.6-rubygem-bundler-doc' 'ruby2.6-rubygem-bunny' 'ruby2.6-rubygem-bunny-doc' 'ruby2.6-rubygem-bunny-testsuite' 'ruby2.6-rubygem-byebug' 'ruby2.6-rubygem-byebug-doc' 'ruby2.6-rubygem-capistrano' 'ruby2.6-rubygem-capistrano-doc' 'ruby2.6-rubygem-capistrano-harrow' 'ruby2.6-rubygem-capistrano-harrow-doc' 'ruby2.6-rubygem-capistrano-stats' 'ruby2.6-rubygem-capistrano-stats-doc' 'ruby2.6-rubygem-capistrano-testsuite' 'ruby2.6-rubygem-celluloid' 'ruby2.6-rubygem-celluloid-doc' 'ruby2.6-rubygem-celluloid-essentials' 'ruby2.6-rubygem-celluloid-essentials-doc' 'ruby2.6-rubygem-celluloid-extras' 'ruby2.6-rubygem-celluloid-extras-doc' 'ruby2.6-rubygem-celluloid-fsm' 'ruby2.6-rubygem-celluloid-fsm-doc' 'ruby2.6-rubygem-celluloid-pool' 'ruby2.6-rubygem-celluloid-pool-doc' 'ruby2.6-rubygem-celluloid-supervision' 'ruby2.6-rubygem-celluloid-supervision-doc' 'ruby2.6-rubygem-celluloid-testsuite' 'ruby2.6-rubygem-cfa' 'ruby2.6-rubygem-cfa-doc' 'ruby2.6-rubygem-cfa_grub2' 'ruby2.6-rubygem-cfa_grub2-doc' 'ruby2.6-rubygem-changelog_generator' 'ruby2.6-rubygem-changelog_generator-doc' 'ruby2.6-rubygem-changelog_generator-testsuite' 'ruby2.6-rubygem-cheetah' 'ruby2.6-rubygem-cheetah-doc' 'ruby2.6-rubygem-childprocess' 'ruby2.6-rubygem-childprocess-0_6' 'ruby2.6-rubygem-childprocess-doc' 'ruby2.6-rubygem-childprocess-doc-0_6' 'ruby2.6-rubygem-childprocess-testsuite' 'ruby2.6-rubygem-childprocess-testsuite-0_6' 'ruby2.6-rubygem-ci_reporter' 'ruby2.6-rubygem-ci_reporter-doc' 'ruby2.6-rubygem-ci_reporter-testsuite' 'ruby2.6-rubygem-cleanroom' 'ruby2.6-rubygem-cleanroom-doc' 'ruby2.6-rubygem-cleanroom-testsuite' 'ruby2.6-rubygem-coderay' 'ruby2.6-rubygem-coderay-doc' 'ruby2.6-rubygem-coercible' 'ruby2.6-rubygem-coercible-doc' 'ruby2.6-rubygem-coercible-testsuite' 'ruby2.6-rubygem-coffee-rails' 'ruby2.6-rubygem-coffee-rails-doc' 'ruby2.6-rubygem-coffee-script' 'ruby2.6-rubygem-coffee-script-doc' 'ruby2.6-rubygem-coffee-script-source' 'ruby2.6-rubygem-coffee-script-source-doc' 'ruby2.6-rubygem-colorator' 'ruby2.6-rubygem-colorator-0' 'ruby2.6-rubygem-colorator-doc' 'ruby2.6-rubygem-colorator-doc-0' 'ruby2.6-rubygem-colorator-testsuite-0' 'ruby2.6-rubygem-colored' 'ruby2.6-rubygem-colored-doc' 'ruby2.6-rubygem-colored-testsuite' 'ruby2.6-rubygem-colorize' 'ruby2.6-rubygem-colorize-doc' 'ruby2.6-rubygem-colorize-testsuite' 'ruby2.6-rubygem-columnize' 'ruby2.6-rubygem-columnize-doc' 'ruby2.6-rubygem-columnize-testsuite' 'ruby2.6-rubygem-commander' 'ruby2.6-rubygem-commander-doc' 'ruby2.6-rubygem-commander-testsuite' 'ruby2.6-rubygem-concurrent-ruby' 'ruby2.6-rubygem-concurrent-ruby-doc' 'ruby2.6-rubygem-cool.io' 'ruby2.6-rubygem-cool.io-doc' 'ruby2.6-rubygem-cool.io-testsuite' 'ruby2.6-rubygem-crack' 'ruby2.6-rubygem-crack-doc' 'ruby2.6-rubygem-crack-testsuite' 'ruby2.6-rubygem-crass' 'ruby2.6-rubygem-crass-doc' 'ruby2.6-rubygem-crass-testsuite' 'ruby2.6-rubygem-cri' 'ruby2.6-rubygem-cri-doc' 'ruby2.6-rubygem-cri-testsuite' 'ruby2.6-rubygem-cssmin' 'ruby2.6-rubygem-cssmin-doc' 'ruby2.6-rubygem-daemon_controller' 'ruby2.6-rubygem-daemon_controller-doc' 'ruby2.6-rubygem-daemon_controller-testsuite' 'ruby2.6-rubygem-daemons' 'ruby2.6-rubygem-daemons-doc' 'ruby2.6-rubygem-debug_inspector' 'ruby2.6-rubygem-debug_inspector-doc' 'ruby2.6-rubygem-debug_inspector-testsuite' 'ruby2.6-rubygem-debugger-linecache' 'ruby2.6-rubygem-debugger-linecache-doc' 'ruby2.6-rubygem-debugger-linecache-testsuite' 'ruby2.6-rubygem-deep_merge' 'ruby2.6-rubygem-deep_merge-doc' 'ruby2.6-rubygem-deep_merge-testsuite' 'ruby2.6-rubygem-delayed_job' 'ruby2.6-rubygem-delayed_job-doc' 'ruby2.6-rubygem-delayed_job-testsuite' 'ruby2.6-rubygem-delayed_job_active_record' 'ruby2.6-rubygem-delayed_job_active_record-doc' 'ruby2.6-rubygem-descendants_tracker' 'ruby2.6-rubygem-descendants_tracker-doc' 'ruby2.6-rubygem-descendants_tracker-testsuite' 'ruby2.6-rubygem-devise' 'ruby2.6-rubygem-devise-doc' 'ruby2.6-rubygem-devise-i18n' 'ruby2.6-rubygem-devise-i18n-doc' 'ruby2.6-rubygem-devise_ldap_authenticatable' 'ruby2.6-rubygem-devise_ldap_authenticatable-doc' 'ruby2.6-rubygem-devise_ldap_authenticatable-testsuite' 'ruby2.6-rubygem-dice' 'ruby2.6-rubygem-dice-doc' 'ruby2.6-rubygem-diff-lcs' 'ruby2.6-rubygem-diff-lcs-doc' 'ruby2.6-rubygem-diff-lcs-testsuite' 'ruby2.6-rubygem-diffy' 'ruby2.6-rubygem-diffy-doc' 'ruby2.6-rubygem-diffy-testsuite' 'ruby2.6-rubygem-dig_rb' 'ruby2.6-rubygem-dig_rb-doc' 'ruby2.6-rubygem-docile' 'ruby2.6-rubygem-docile-1_1' 'ruby2.6-rubygem-docile-doc' 'ruby2.6-rubygem-docile-doc-1_1' 'ruby2.6-rubygem-docile-testsuite-1_1' 'ruby2.6-rubygem-domain_name' 'ruby2.6-rubygem-domain_name-doc' 'ruby2.6-rubygem-domain_name-testsuite' 'ruby2.6-rubygem-ed25519' 'ruby2.6-rubygem-ed25519-doc' 'ruby2.6-rubygem-em-websocket' 'ruby2.6-rubygem-em-websocket-doc' 'ruby2.6-rubygem-em-websocket-testsuite' 'ruby2.6-rubygem-equalizer' 'ruby2.6-rubygem-equalizer-doc' 'ruby2.6-rubygem-equalizer-testsuite' 'ruby2.6-rubygem-erubi' 'ruby2.6-rubygem-erubi-doc' 'ruby2.6-rubygem-erubi-testsuite' 'ruby2.6-rubygem-erubis' 'ruby2.6-rubygem-erubis-2_6' 'ruby2.6-rubygem-erubis-doc' 'ruby2.6-rubygem-erubis-doc-2_6' 'ruby2.6-rubygem-erubis-testsuite' 'ruby2.6-rubygem-erubis-testsuite-2_6' 'ruby2.6-rubygem-eventmachine' 'ruby2.6-rubygem-eventmachine-doc' 'ruby2.6-rubygem-exception_notification' 'ruby2.6-rubygem-exception_notification-doc' 'ruby2.6-rubygem-exception_notification-testsuite' 'ruby2.6-rubygem-excon' 'ruby2.6-rubygem-excon-doc' 'ruby2.6-rubygem-execjs' 'ruby2.6-rubygem-execjs-doc' 'ruby2.6-rubygem-extlib' 'ruby2.6-rubygem-extlib-doc' 'ruby2.6-rubygem-extlib-testsuite' 'ruby2.6-rubygem-factory_girl' 'ruby2.6-rubygem-factory_girl-doc' 'ruby2.6-rubygem-factory_girl_rails' 'ruby2.6-rubygem-factory_girl_rails-doc' 'ruby2.6-rubygem-fake_ftp' 'ruby2.6-rubygem-fake_ftp-0_1' 'ruby2.6-rubygem-fake_ftp-doc' 'ruby2.6-rubygem-fake_ftp-doc-0_1' 'ruby2.6-rubygem-fake_ftp-testsuite' 'ruby2.6-rubygem-fake_ftp-testsuite-0_1' 'ruby2.6-rubygem-faraday' 'ruby2.6-rubygem-faraday-0_12' 'ruby2.6-rubygem-faraday-doc' 'ruby2.6-rubygem-faraday-doc-0_12' 'ruby2.6-rubygem-faraday_middleware' 'ruby2.6-rubygem-faraday_middleware-doc' 'ruby2.6-rubygem-faraday_middleware-multi_json' 'ruby2.6-rubygem-faraday_middleware-multi_json-doc' 'ruby2.6-rubygem-faraday_middleware-multi_json-testsuite' 'ruby2.6-rubygem-fast_gettext' 'ruby2.6-rubygem-fast_gettext-1.1' 'ruby2.6-rubygem-fast_gettext-doc' 'ruby2.6-rubygem-fast_gettext-doc-1.1' 'ruby2.6-rubygem-fast_xs' 'ruby2.6-rubygem-fast_xs-doc' 'ruby2.6-rubygem-fast_xs-testsuite' 'ruby2.6-rubygem-fastercsv' 'ruby2.6-rubygem-fastercsv-doc' 'ruby2.6-rubygem-fastercsv-testsuite' 'ruby2.6-rubygem-ffi' 'ruby2.6-rubygem-ffi-doc' 'ruby2.6-rubygem-file-tail' 'ruby2.6-rubygem-file-tail-doc' 'ruby2.6-rubygem-flog' 'ruby2.6-rubygem-flog-doc' 'ruby2.6-rubygem-flog-testsuite' 'ruby2.6-rubygem-fluentd' 'ruby2.6-rubygem-fluentd-doc' 'ruby2.6-rubygem-fluentd-testsuite' 'ruby2.6-rubygem-fog-core' 'ruby2.6-rubygem-fog-core-doc' 'ruby2.6-rubygem-fog-core-testsuite' 'ruby2.6-rubygem-fog-json' 'ruby2.6-rubygem-fog-json-doc' 'ruby2.6-rubygem-fog-json-testsuite' 'ruby2.6-rubygem-fog-libvirt' 'ruby2.6-rubygem-fog-libvirt-doc' 'ruby2.6-rubygem-fog-xml' 'ruby2.6-rubygem-fog-xml-doc' 'ruby2.6-rubygem-fog-xml-testsuite' 'ruby2.6-rubygem-font-awesome-rails' 'ruby2.6-rubygem-font-awesome-rails-doc' 'ruby2.6-rubygem-font-awesome-rails-testsuite' 'ruby2.6-rubygem-formatador' 'ruby2.6-rubygem-formatador-doc' 'ruby2.6-rubygem-forwardable-extended' 'ruby2.6-rubygem-forwardable-extended-doc' 'ruby2.6-rubygem-gem2rpm' 'ruby2.6-rubygem-get_process_mem' 'ruby2.6-rubygem-get_process_mem-doc' 'ruby2.6-rubygem-get_process_mem-testsuite' 'ruby2.6-rubygem-gettext' 'ruby2.6-rubygem-gettext-doc' 'ruby2.6-rubygem-gettext-setup' 'ruby2.6-rubygem-gettext-setup-doc' 'ruby2.6-rubygem-gettext-setup-testsuite' 'ruby2.6-rubygem-gettext-testsuite' 'ruby2.6-rubygem-gettext_i18n_rails' 'ruby2.6-rubygem-gettext_i18n_rails-doc' 'ruby2.6-rubygem-gettext_i18n_rails_js' 'ruby2.6-rubygem-gettext_i18n_rails_js-doc' 'ruby2.6-rubygem-gettext_i18n_rails_js-testsuite' 'ruby2.6-rubygem-gli' 'ruby2.6-rubygem-gli-doc' 'ruby2.6-rubygem-gli-testsuite' 'ruby2.6-rubygem-globalid' 'ruby2.6-rubygem-globalid-doc' 'ruby2.6-rubygem-gpgme' 'ruby2.6-rubygem-gpgme-doc' 'ruby2.6-rubygem-gpgme-testsuite' 'ruby2.6-rubygem-grape' 'ruby2.6-rubygem-grape-doc' 'ruby2.6-rubygem-grape-testsuite' 'ruby2.6-rubygem-gravatar_image_tag' 'ruby2.6-rubygem-gravatar_image_tag-doc' 'ruby2.6-rubygem-gravatar_image_tag-testsuite' 'ruby2.6-rubygem-gssapi' 'ruby2.6-rubygem-gssapi-doc' 'ruby2.6-rubygem-gssapi-testsuite' 'ruby2.6-rubygem-gyoku' 'ruby2.6-rubygem-gyoku-doc' 'ruby2.6-rubygem-gyoku-testsuite' 'ruby2.6-rubygem-haml' 'ruby2.6-rubygem-haml-doc' 'ruby2.6-rubygem-haml-rails' 'ruby2.6-rubygem-haml-rails-doc' 'ruby2.6-rubygem-haml-rails-testsuite' 'ruby2.6-rubygem-has_mobile_views' 'ruby2.6-rubygem-has_mobile_views-doc' 'ruby2.6-rubygem-has_mobile_views-testsuite' 'ruby2.6-rubygem-hashdiff' 'ruby2.6-rubygem-hashdiff-doc' 'ruby2.6-rubygem-hashdiff-testsuite' 'ruby2.6-rubygem-hashicorp-checkpoint' 'ruby2.6-rubygem-hashicorp-checkpoint-doc' 'ruby2.6-rubygem-hashicorp-checkpoint-testsuite' 'ruby2.6-rubygem-hashie' 'ruby2.6-rubygem-hashie-doc' 'ruby2.6-rubygem-hashie-testsuite' 'ruby2.6-rubygem-highline' 'ruby2.6-rubygem-highline-1_6' 'ruby2.6-rubygem-highline-1_7' 'ruby2.6-rubygem-highline-doc' 'ruby2.6-rubygem-highline-doc-1_6' 'ruby2.6-rubygem-highline-doc-1_7' 'ruby2.6-rubygem-highline-testsuite-1_6' 'ruby2.6-rubygem-highline-testsuite-1_7' 'ruby2.6-rubygem-hike' 'ruby2.6-rubygem-hike-1_2' 'ruby2.6-rubygem-hike-doc' 'ruby2.6-rubygem-hike-doc-1_2' 'ruby2.6-rubygem-hitimes' 'ruby2.6-rubygem-hitimes-doc' 'ruby2.6-rubygem-hitimes-testsuite' 'ruby2.6-rubygem-hoe' 'ruby2.6-rubygem-hoe-doc' 'ruby2.6-rubygem-hoe-testsuite' 'ruby2.6-rubygem-hpricot' 'ruby2.6-rubygem-hpricot-doc' 'ruby2.6-rubygem-hpricot-testsuite' 'ruby2.6-rubygem-html2haml' 'ruby2.6-rubygem-html2haml-doc' 'ruby2.6-rubygem-html2haml-testsuite' 'ruby2.6-rubygem-http-cookie' 'ruby2.6-rubygem-http-cookie-doc' 'ruby2.6-rubygem-http-cookie-testsuite' 'ruby2.6-rubygem-http_accept_language' 'ruby2.6-rubygem-http_accept_language-doc' 'ruby2.6-rubygem-http_accept_language-testsuite' 'ruby2.6-rubygem-http_parser.rb' 'ruby2.6-rubygem-http_parser.rb-doc' 'ruby2.6-rubygem-http_parser.rb-testsuite' 'ruby2.6-rubygem-httpclient' 'ruby2.6-rubygem-httpclient-doc' 'ruby2.6-rubygem-httpclient-testsuite' 'ruby2.6-rubygem-i18n' 'ruby2.6-rubygem-i18n-0_6' 'ruby2.6-rubygem-i18n-0_9' 'ruby2.6-rubygem-i18n-1.1' 'ruby2.6-rubygem-i18n-doc' 'ruby2.6-rubygem-i18n-doc-0_6' 'ruby2.6-rubygem-i18n-doc-0_9' 'ruby2.6-rubygem-i18n-doc-1.1' 'ruby2.6-rubygem-i18n-testsuite-0_6' 'ruby2.6-rubygem-i18n-testsuite-0_9' 'ruby2.6-rubygem-i18n-testsuite-1.1' 'ruby2.6-rubygem-ice_nine' 'ruby2.6-rubygem-ice_nine-doc' 'ruby2.6-rubygem-ice_nine-testsuite' 'ruby2.6-rubygem-inifile' 'ruby2.6-rubygem-inifile-doc' 'ruby2.6-rubygem-inifile-testsuite' 'ruby2.6-rubygem-ipaddress' 'ruby2.6-rubygem-ipaddress-doc' 'ruby2.6-rubygem-ipaddress-testsuite' 'ruby2.6-rubygem-jbuilder' 'ruby2.6-rubygem-jbuilder-doc' 'ruby2.6-rubygem-jbuilder-testsuite' 'ruby2.6-rubygem-jekyll' 'ruby2.6-rubygem-jekyll-doc' 'ruby2.6-rubygem-jekyll-sass-converter' 'ruby2.6-rubygem-jekyll-sass-converter-doc' 'ruby2.6-rubygem-jekyll-watch' 'ruby2.6-rubygem-jekyll-watch-doc' 'ruby2.6-rubygem-jmespath' 'ruby2.6-rubygem-jmespath-doc' 'ruby2.6-rubygem-journey-1_0' 'ruby2.6-rubygem-journey-doc-1_0' 'ruby2.6-rubygem-journey-testsuite-1_0' 'ruby2.6-rubygem-jquery-rails' 'ruby2.6-rubygem-jquery-rails-doc' 'ruby2.6-rubygem-jquery-rails-testsuite' 'ruby2.6-rubygem-jquery-ui-rails' 'ruby2.6-rubygem-jquery-ui-rails-doc' 'ruby2.6-rubygem-js-routes' 'ruby2.6-rubygem-js-routes-doc' 'ruby2.6-rubygem-js-routes-testsuite' 'ruby2.6-rubygem-json' 'ruby2.6-rubygem-json-doc' 'ruby2.6-rubygem-json-jwt' 'ruby2.6-rubygem-json-jwt-doc' 'ruby2.6-rubygem-json-schema' 'ruby2.6-rubygem-json-schema-doc' 'ruby2.6-rubygem-json_pure' 'ruby2.6-rubygem-json_pure-doc' 'ruby2.6-rubygem-jwt' 'ruby2.6-rubygem-jwt-1_5' 'ruby2.6-rubygem-jwt-doc' 'ruby2.6-rubygem-jwt-doc-1_5' 'ruby2.6-rubygem-jwt-testsuite-1_5' 'ruby2.6-rubygem-kgio' 'ruby2.6-rubygem-kgio-doc' 'ruby2.6-rubygem-kgio-testsuite' 'ruby2.6-rubygem-kramdown' 'ruby2.6-rubygem-kramdown-doc' 'ruby2.6-rubygem-kramdown-testsuite' 'ruby2.6-rubygem-launchy' 'ruby2.6-rubygem-launchy-doc' 'ruby2.6-rubygem-launchy-testsuite' 'ruby2.6-rubygem-levenshtein' 'ruby2.6-rubygem-levenshtein-doc' 'ruby2.6-rubygem-levenshtein-testsuite' 'ruby2.6-rubygem-librarian' 'ruby2.6-rubygem-librarian-doc' 'ruby2.6-rubygem-librarian-testsuite' 'ruby2.6-rubygem-libyui-rake' 'ruby2.6-rubygem-libyui-rake-doc' 'ruby2.6-rubygem-lightbox2' 'ruby2.6-rubygem-lightbox2-doc' 'ruby2.6-rubygem-liquid' 'ruby2.6-rubygem-liquid-3' 'ruby2.6-rubygem-liquid-doc' 'ruby2.6-rubygem-liquid-doc-3' 'ruby2.6-rubygem-liquid-testsuite' 'ruby2.6-rubygem-liquid-testsuite-3' 'ruby2.6-rubygem-listen' 'ruby2.6-rubygem-listen-3_0' 'ruby2.6-rubygem-listen-doc' 'ruby2.6-rubygem-listen-doc-3_0' 'ruby2.6-rubygem-little-plugger' 'ruby2.6-rubygem-little-plugger-doc' 'ruby2.6-rubygem-little-plugger-testsuite' 'ruby2.6-rubygem-locale' 'ruby2.6-rubygem-locale-doc' 'ruby2.6-rubygem-locale-testsuite' 'ruby2.6-rubygem-log4r' 'ruby2.6-rubygem-log4r-doc' 'ruby2.6-rubygem-logging' 'ruby2.6-rubygem-logging-doc' 'ruby2.6-rubygem-logging-testsuite' 'ruby2.6-rubygem-loofah' 'ruby2.6-rubygem-loofah-doc' 'ruby2.6-rubygem-loofah-testsuite' 'ruby2.6-rubygem-mail' 'ruby2.6-rubygem-mail-2_5' 'ruby2.6-rubygem-mail-doc' 'ruby2.6-rubygem-mail-doc-2_5' 'ruby2.6-rubygem-manpages' 'ruby2.6-rubygem-manpages-doc' 'ruby2.6-rubygem-marcel' 'ruby2.6-rubygem-marcel-doc' 'ruby2.6-rubygem-memcache-client' 'ruby2.6-rubygem-memcache-client-doc' 'ruby2.6-rubygem-memcache-client-testsuite' 'ruby2.6-rubygem-mercenary' 'ruby2.6-rubygem-mercenary-doc' 'ruby2.6-rubygem-mercenary-testsuite' 'ruby2.6-rubygem-metaclass' 'ruby2.6-rubygem-metaclass-doc' 'ruby2.6-rubygem-metaclass-testsuite' 'ruby2.6-rubygem-method_source' 'ruby2.6-rubygem-method_source-doc' 'ruby2.6-rubygem-method_source-testsuite' 'ruby2.6-rubygem-micromachine' 'ruby2.6-rubygem-micromachine-doc' 'ruby2.6-rubygem-micromachine-testsuite' 'ruby2.6-rubygem-mime-types' 'ruby2.6-rubygem-mime-types-1' 'ruby2.6-rubygem-mime-types-data' 'ruby2.6-rubygem-mime-types-data-doc' 'ruby2.6-rubygem-mime-types-doc' 'ruby2.6-rubygem-mime-types-doc-1' 'ruby2.6-rubygem-mime-types-testsuite' 'ruby2.6-rubygem-mime-types-testsuite-1' 'ruby2.6-rubygem-mimemagic' 'ruby2.6-rubygem-mimemagic-doc' 'ruby2.6-rubygem-mimemagic-testsuite' 'ruby2.6-rubygem-mini_magick' 'ruby2.6-rubygem-mini_magick-doc' 'ruby2.6-rubygem-mini_mime' 'ruby2.6-rubygem-mini_mime-doc' 'ruby2.6-rubygem-mini_portile2' 'ruby2.6-rubygem-mini_portile2-2_3' 'ruby2.6-rubygem-mini_portile2-doc' 'ruby2.6-rubygem-mini_portile2-doc-2_3' 'ruby2.6-rubygem-mini_portile2-testsuite' 'ruby2.6-rubygem-mini_portile2-testsuite-2_3' 'ruby2.6-rubygem-minitar' 'ruby2.6-rubygem-minitar-doc' 'ruby2.6-rubygem-mixlib-authentication' 'ruby2.6-rubygem-mixlib-authentication-doc' 'ruby2.6-rubygem-mixlib-cli' 'ruby2.6-rubygem-mixlib-cli-doc' 'ruby2.6-rubygem-mixlib-config' 'ruby2.6-rubygem-mixlib-config-doc' 'ruby2.6-rubygem-mixlib-log' 'ruby2.6-rubygem-mixlib-log-doc' 'ruby2.6-rubygem-mixlib-shellout' 'ruby2.6-rubygem-mixlib-shellout-doc' 'ruby2.6-rubygem-mobileesp_converted' 'ruby2.6-rubygem-mobileesp_converted-doc' 'ruby2.6-rubygem-mobileesp_converted-testsuite' 'ruby2.6-rubygem-mocha' 'ruby2.6-rubygem-mocha-doc' 'ruby2.6-rubygem-mocha-testsuite' 'ruby2.6-rubygem-moneta' 'ruby2.6-rubygem-moneta-0_7' 'ruby2.6-rubygem-moneta-doc' 'ruby2.6-rubygem-moneta-doc-0_7' 'ruby2.6-rubygem-moneta-testsuite' 'ruby2.6-rubygem-moneta-testsuite-0_7' 'ruby2.6-rubygem-msgpack' 'ruby2.6-rubygem-msgpack-doc' 'ruby2.6-rubygem-msgpack-testsuite' 'ruby2.6-rubygem-multi_json' 'ruby2.6-rubygem-multi_json-doc' 'ruby2.6-rubygem-multi_xml' 'ruby2.6-rubygem-multi_xml-doc' 'ruby2.6-rubygem-multipart-post' 'ruby2.6-rubygem-multipart-post-doc' 'ruby2.6-rubygem-multipart-post-testsuite' 'ruby2.6-rubygem-mustache' 'ruby2.6-rubygem-mustache-doc' 'ruby2.6-rubygem-mustache-testsuite' 'ruby2.6-rubygem-mustermann' 'ruby2.6-rubygem-mustermann-doc' 'ruby2.6-rubygem-mustermann-grape' 'ruby2.6-rubygem-mustermann-grape-doc' 'ruby2.6-rubygem-mustermann-grape-testsuite' 'ruby2.6-rubygem-mustermann-testsuite' 'ruby2.6-rubygem-mysql2' 'ruby2.6-rubygem-mysql2-0.4' 'ruby2.6-rubygem-mysql2-doc' 'ruby2.6-rubygem-mysql2-doc-0.4' 'ruby2.6-rubygem-mysql2-testsuite' 'ruby2.6-rubygem-mysql2-testsuite-0.4' 'ruby2.6-rubygem-net-ldap' 'ruby2.6-rubygem-net-ldap-doc' 'ruby2.6-rubygem-net-ldap-testsuite' 'ruby2.6-rubygem-net-scp' 'ruby2.6-rubygem-net-scp-1_1' 'ruby2.6-rubygem-net-scp-1_2' 'ruby2.6-rubygem-net-scp-doc' 'ruby2.6-rubygem-net-scp-doc-1_1' 'ruby2.6-rubygem-net-scp-doc-1_2' 'ruby2.6-rubygem-net-scp-testsuite-1_1' 'ruby2.6-rubygem-net-scp-testsuite-1_2' 'ruby2.6-rubygem-net-sftp' 'ruby2.6-rubygem-net-sftp-doc' 'ruby2.6-rubygem-net-sftp-testsuite' 'ruby2.6-rubygem-net-ssh' 'ruby2.6-rubygem-net-ssh-4_1' 'ruby2.6-rubygem-net-ssh-5.1' 'ruby2.6-rubygem-net-ssh-doc' 'ruby2.6-rubygem-net-ssh-doc-4_1' 'ruby2.6-rubygem-net-ssh-doc-5.1' 'ruby2.6-rubygem-net-ssh-gateway' 'ruby2.6-rubygem-net-ssh-gateway-doc' 'ruby2.6-rubygem-net-ssh-multi' 'ruby2.6-rubygem-net-ssh-multi-1_1' 'ruby2.6-rubygem-net-ssh-multi-doc' 'ruby2.6-rubygem-net-ssh-multi-doc-1_1' 'ruby2.6-rubygem-net-ssh-multi-testsuite' 'ruby2.6-rubygem-net-ssh-multi-testsuite-1_1' 'ruby2.6-rubygem-netrc' 'ruby2.6-rubygem-netrc-doc' 'ruby2.6-rubygem-netrc-testsuite' 'ruby2.6-rubygem-nio4r' 'ruby2.6-rubygem-nio4r-doc' 'ruby2.6-rubygem-nio4r-testsuite' 'ruby2.6-rubygem-nokogiri' 'ruby2.6-rubygem-nokogiri-doc' 'ruby2.6-rubygem-nori' 'ruby2.6-rubygem-nori-doc' 'ruby2.6-rubygem-nori-testsuite' 'ruby2.6-rubygem-oauth' 'ruby2.6-rubygem-oauth-doc' 'ruby2.6-rubygem-oauth2' 'ruby2.6-rubygem-oauth2-doc' 'ruby2.6-rubygem-omniauth' 'ruby2.6-rubygem-omniauth-doc' 'ruby2.6-rubygem-omniauth-github' 'ruby2.6-rubygem-omniauth-github-doc' 'ruby2.6-rubygem-omniauth-github-testsuite' 'ruby2.6-rubygem-omniauth-gitlab' 'ruby2.6-rubygem-omniauth-gitlab-doc' 'ruby2.6-rubygem-omniauth-gitlab-testsuite' 'ruby2.6-rubygem-omniauth-google-oauth2' 'ruby2.6-rubygem-omniauth-google-oauth2-doc' 'ruby2.6-rubygem-omniauth-google-oauth2-testsuite' 'ruby2.6-rubygem-omniauth-oauth' 'ruby2.6-rubygem-omniauth-oauth-doc' 'ruby2.6-rubygem-omniauth-oauth-testsuite' 'ruby2.6-rubygem-omniauth-oauth2' 'ruby2.6-rubygem-omniauth-oauth2-doc' 'ruby2.6-rubygem-omniauth-oauth2-testsuite' 'ruby2.6-rubygem-open4' 'ruby2.6-rubygem-open4-doc' 'ruby2.6-rubygem-open4-testsuite' 'ruby2.6-rubygem-openid_connect' 'ruby2.6-rubygem-openid_connect-doc' 'ruby2.6-rubygem-openid_connect-testsuite' 'ruby2.6-rubygem-orm_adapter' 'ruby2.6-rubygem-orm_adapter-doc' 'ruby2.6-rubygem-orm_adapter-testsuite' 'ruby2.6-rubygem-owncloud-admin' 'ruby2.6-rubygem-owncloud-admin-doc' 'ruby2.6-rubygem-packaging_rake_tasks' 'ruby2.6-rubygem-packaging_rake_tasks-doc' 'ruby2.6-rubygem-paint' 'ruby2.6-rubygem-paint-doc' 'ruby2.6-rubygem-parallel' 'ruby2.6-rubygem-parallel-doc' 'ruby2.6-rubygem-parallel_tests' 'ruby2.6-rubygem-parallel_tests-doc' 'ruby2.6-rubygem-passenger' 'ruby2.6-rubygem-passenger-doc' 'ruby2.6-rubygem-path_expander' 'ruby2.6-rubygem-path_expander-doc' 'ruby2.6-rubygem-path_expander-testsuite' 'ruby2.6-rubygem-pathutil' 'ruby2.6-rubygem-pathutil-doc' 'ruby2.6-rubygem-pg' 'ruby2.6-rubygem-pg-doc' 'ruby2.6-rubygem-pg-testsuite' 'ruby2.6-rubygem-pkg-config' 'ruby2.6-rubygem-pkg-config-doc' 'ruby2.6-rubygem-pkg-config-testsuite' 'ruby2.6-rubygem-po_to_json' 'ruby2.6-rubygem-po_to_json-doc' 'ruby2.6-rubygem-po_to_json-testsuite' 'ruby2.6-rubygem-polyglot' 'ruby2.6-rubygem-polyglot-doc' 'ruby2.6-rubygem-pry' 'ruby2.6-rubygem-pry-doc' 'ruby2.6-rubygem-pry-doc-testsuite' 'ruby2.6-rubygem-pry_debug' 'ruby2.6-rubygem-pry_debug-doc' 'ruby2.6-rubygem-pry_debug-testsuite' 'ruby2.6-rubygem-public_suffix' 'ruby2.6-rubygem-public_suffix-3.1' 'ruby2.6-rubygem-public_suffix-doc' 'ruby2.6-rubygem-public_suffix-doc-3.1' 'ruby2.6-rubygem-public_suffix-testsuite' 'ruby2.6-rubygem-public_suffix-testsuite-3.1' 'ruby2.6-rubygem-puma' 'ruby2.6-rubygem-puma-doc' 'ruby2.6-rubygem-puma_worker_killer' 'ruby2.6-rubygem-puma_worker_killer-doc' 'ruby2.6-rubygem-puma_worker_killer-testsuite' 'ruby2.6-rubygem-pundit' 'ruby2.6-rubygem-pundit-doc' 'ruby2.6-rubygem-pundit-testsuite' 'ruby2.6-rubygem-rack' 'ruby2.6-rubygem-rack-1_3' 'ruby2.6-rubygem-rack-1_4' 'ruby2.6-rubygem-rack-1_6' 'ruby2.6-rubygem-rack-accept' 'ruby2.6-rubygem-rack-accept-doc' 'ruby2.6-rubygem-rack-accept-testsuite' 'ruby2.6-rubygem-rack-cache-1_2' 'ruby2.6-rubygem-rack-cache-doc-1_2' 'ruby2.6-rubygem-rack-cache-testsuite-1_2' 'ruby2.6-rubygem-rack-doc' 'ruby2.6-rubygem-rack-doc-1_3' 'ruby2.6-rubygem-rack-doc-1_4' 'ruby2.6-rubygem-rack-doc-1_6' 'ruby2.6-rubygem-rack-oauth2' 'ruby2.6-rubygem-rack-oauth2-doc' 'ruby2.6-rubygem-rack-oauth2-testsuite' 'ruby2.6-rubygem-rack-protection' 'ruby2.6-rubygem-rack-protection-doc' 'ruby2.6-rubygem-rack-ssl' 'ruby2.6-rubygem-rack-ssl-1_3' 'ruby2.6-rubygem-rack-ssl-doc' 'ruby2.6-rubygem-rack-ssl-doc-1_3' 'ruby2.6-rubygem-rack-test-0_6' 'ruby2.6-rubygem-rack-test-doc-0_6' 'ruby2.6-rubygem-rack-test-testsuite-0_6' 'ruby2.6-rubygem-rack-testsuite' 'ruby2.6-rubygem-rack-testsuite-1_3' 'ruby2.6-rubygem-rack-testsuite-1_4' 'ruby2.6-rubygem-rack-testsuite-1_6' 'ruby2.6-rubygem-rails-5.2' 'ruby2.6-rubygem-rails-5_0' 'ruby2.6-rubygem-rails-5_1' 'ruby2.6-rubygem-rails-6.0' 'ruby2.6-rubygem-rails-deprecated_sanitizer' 'ruby2.6-rubygem-rails-deprecated_sanitizer-doc' 'ruby2.6-rubygem-rails-deprecated_sanitizer-testsuite' 'ruby2.6-rubygem-rails-doc-5.2' 'ruby2.6-rubygem-rails-doc-5_0' 'ruby2.6-rubygem-rails-doc-5_1' 'ruby2.6-rubygem-rails-doc-6.0' 'ruby2.6-rubygem-rails-dom-testing' 'ruby2.6-rubygem-rails-dom-testing-doc' 'ruby2.6-rubygem-rails-dom-testing-testsuite' 'ruby2.6-rubygem-rails-html-sanitizer' 'ruby2.6-rubygem-rails-html-sanitizer-doc' 'ruby2.6-rubygem-rails-html-sanitizer-testsuite' 'ruby2.6-rubygem-rails-i18n' 'ruby2.6-rubygem-rails-i18n-doc' 'ruby2.6-rubygem-rails_stdout_logging' 'ruby2.6-rubygem-rails_stdout_logging-doc' 'ruby2.6-rubygem-rails_stdout_logging-testsuite' 'ruby2.6-rubygem-railties-5.2' 'ruby2.6-rubygem-railties-5_0' 'ruby2.6-rubygem-railties-5_1' 'ruby2.6-rubygem-railties-6.0' 'ruby2.6-rubygem-railties-doc-5.2' 'ruby2.6-rubygem-railties-doc-5_0' 'ruby2.6-rubygem-railties-doc-5_1' 'ruby2.6-rubygem-railties-doc-6.0' 'ruby2.6-rubygem-raindrops' 'ruby2.6-rubygem-raindrops-doc' 'ruby2.6-rubygem-raindrops-testsuite' 'ruby2.6-rubygem-rake-11_3' 'ruby2.6-rubygem-rake-12_0' 'ruby2.6-rubygem-rake-compiler' 'ruby2.6-rubygem-rake-compiler-doc' 'ruby2.6-rubygem-rake-compiler-testsuite' 'ruby2.6-rubygem-rake-doc-11_3' 'ruby2.6-rubygem-rake-doc-12_0' 'ruby2.6-rubygem-rb-fsevent' 'ruby2.6-rubygem-rb-fsevent-doc' 'ruby2.6-rubygem-rb-inotify' 'ruby2.6-rubygem-rb-inotify-doc' 'ruby2.6-rubygem-rb-inotify-testsuite' 'ruby2.6-rubygem-rb-kqueue' 'ruby2.6-rubygem-rb-kqueue-doc' 'ruby2.6-rubygem-rb-kqueue-testsuite' 'ruby2.6-rubygem-rdiscount' 'ruby2.6-rubygem-rdiscount-doc' 'ruby2.6-rubygem-rdiscount-testsuite' 'ruby2.6-rubygem-rdoc-4' 'ruby2.6-rubygem-rdoc-doc-4' 'ruby2.6-rubygem-rdoc-testsuite-4' 'ruby2.6-rubygem-responders' 'ruby2.6-rubygem-responders-doc' 'ruby2.6-rubygem-rest-client' 'ruby2.6-rubygem-rest-client-doc' 'ruby2.6-rubygem-rest-client-testsuite' 'ruby2.6-rubygem-restility' 'ruby2.6-rubygem-restility-doc' 'ruby2.6-rubygem-restility-testsuite' 'ruby2.6-rubygem-rgen' 'ruby2.6-rubygem-rgen-doc' 'ruby2.6-rubygem-rgen-testsuite' 'ruby2.6-rubygem-rice' 'ruby2.6-rubygem-rice-doc' 'ruby2.6-rubygem-rice-testsuite' 'ruby2.6-rubygem-ronn' 'ruby2.6-rubygem-ronn-doc' 'ruby2.6-rubygem-ronn-testsuite' 'ruby2.6-rubygem-rouge' 'ruby2.6-rubygem-rouge-1' 'ruby2.6-rubygem-rouge-doc' 'ruby2.6-rubygem-rouge-doc-1' 'ruby2.6-rubygem-rpm' 'ruby2.6-rubygem-rpm-doc' 'ruby2.6-rubygem-rpm-testsuite' 'ruby2.6-rubygem-rspec' 'ruby2.6-rubygem-rspec-3_5' 'ruby2.6-rubygem-rspec-core' 'ruby2.6-rubygem-rspec-core-3_5' 'ruby2.6-rubygem-rspec-core-doc' 'ruby2.6-rubygem-rspec-core-doc-3_5' 'ruby2.6-rubygem-rspec-doc' 'ruby2.6-rubygem-rspec-doc-3_5' 'ruby2.6-rubygem-rspec-expectations' 'ruby2.6-rubygem-rspec-expectations-3_5' 'ruby2.6-rubygem-rspec-expectations-doc' 'ruby2.6-rubygem-rspec-expectations-doc-3_5' 'ruby2.6-rubygem-rspec-its' 'ruby2.6-rubygem-rspec-its-doc' 'ruby2.6-rubygem-rspec-its-testsuite' 'ruby2.6-rubygem-rspec-mocks' 'ruby2.6-rubygem-rspec-mocks-3_5' 'ruby2.6-rubygem-rspec-mocks-doc' 'ruby2.6-rubygem-rspec-mocks-doc-3_5' 'ruby2.6-rubygem-rspec-support' 'ruby2.6-rubygem-rspec-support-3_5' 'ruby2.6-rubygem-rspec-support-doc' 'ruby2.6-rubygem-rspec-support-doc-3_5' 'ruby2.6-rubygem-ruby-augeas' 'ruby2.6-rubygem-ruby-augeas-doc' 'ruby2.6-rubygem-ruby-dbus' 'ruby2.6-rubygem-ruby-dbus-doc' 'ruby2.6-rubygem-ruby-dbus-testsuite' 'ruby2.6-rubygem-ruby-filemagic' 'ruby2.6-rubygem-ruby-filemagic-doc' 'ruby2.6-rubygem-ruby-filemagic-testsuite' 'ruby2.6-rubygem-ruby-libvirt' 'ruby2.6-rubygem-ruby-libvirt-doc' 'ruby2.6-rubygem-ruby-openid' 'ruby2.6-rubygem-ruby-openid-doc' 'ruby2.6-rubygem-ruby-openid-testsuite' 'ruby2.6-rubygem-ruby-shadow' 'ruby2.6-rubygem-ruby-shadow-doc' 'ruby2.6-rubygem-ruby_dep' 'ruby2.6-rubygem-ruby_dep-1_3' 'ruby2.6-rubygem-ruby_dep-doc' 'ruby2.6-rubygem-ruby_dep-doc-1_3' 'ruby2.6-rubygem-ruby_dig' 'ruby2.6-rubygem-ruby_dig-doc' 'ruby2.6-rubygem-ruby_dig-testsuite' 'ruby2.6-rubygem-ruby_parser' 'ruby2.6-rubygem-ruby_parser-doc' 'ruby2.6-rubygem-ruby_parser-testsuite' 'ruby2.6-rubygem-rubyforge' 'ruby2.6-rubygem-rubyforge-doc' 'ruby2.6-rubygem-rubyforge-testsuite' 'ruby2.6-rubygem-rubyntlm' 'ruby2.6-rubygem-rubyntlm-doc' 'ruby2.6-rubygem-rubyntlm-testsuite' 'ruby2.6-rubygem-rubyzip' 'ruby2.6-rubygem-rubyzip-doc' 'ruby2.6-rubygem-rubyzip-testsuite' 'ruby2.6-rubygem-safe_yaml' 'ruby2.6-rubygem-safe_yaml-doc' 'ruby2.6-rubygem-safe_yaml-testsuite' 'ruby2.6-rubygem-sass' 'ruby2.6-rubygem-sass-doc' 'ruby2.6-rubygem-sass-listen' 'ruby2.6-rubygem-sass-listen-doc' 'ruby2.6-rubygem-sass-rails' 'ruby2.6-rubygem-sass-rails-5.1' 'ruby2.6-rubygem-sass-rails-doc' 'ruby2.6-rubygem-sass-rails-doc-5.1' 'ruby2.6-rubygem-sassc' 'ruby2.6-rubygem-sassc-doc' 'ruby2.6-rubygem-sassc-rails' 'ruby2.6-rubygem-sassc-rails-doc' 'ruby2.6-rubygem-sassc-rails-testsuite' 'ruby2.6-rubygem-sassc-testsuite' 'ruby2.6-rubygem-sdoc' 'ruby2.6-rubygem-sdoc-doc' 'ruby2.6-rubygem-sdoc-testsuite' 'ruby2.6-rubygem-securecompare' 'ruby2.6-rubygem-securecompare-doc' 'ruby2.6-rubygem-securecompare-testsuite' 'ruby2.6-rubygem-serverengine' 'ruby2.6-rubygem-serverengine-doc' 'ruby2.6-rubygem-serverengine-testsuite' 'ruby2.6-rubygem-sexp_processor' 'ruby2.6-rubygem-sexp_processor-doc' 'ruby2.6-rubygem-sexp_processor-testsuite' 'ruby2.6-rubygem-sigdump' 'ruby2.6-rubygem-sigdump-doc' 'ruby2.6-rubygem-simple_oauth' 'ruby2.6-rubygem-simple_oauth-doc' 'ruby2.6-rubygem-simplecov' 'ruby2.6-rubygem-simplecov-doc' 'ruby2.6-rubygem-simplecov-html' 'ruby2.6-rubygem-simplecov-html-doc' 'ruby2.6-rubygem-simplecov-html-testsuite' 'ruby2.6-rubygem-simpleidn' 'ruby2.6-rubygem-simpleidn-doc' 'ruby2.6-rubygem-sinatra' 'ruby2.6-rubygem-sinatra-doc' 'ruby2.6-rubygem-slim' 'ruby2.6-rubygem-slim-doc' 'ruby2.6-rubygem-slim-testsuite' 'ruby2.6-rubygem-slop' 'ruby2.6-rubygem-slop-3' 'ruby2.6-rubygem-slop-3_3' 'ruby2.6-rubygem-slop-doc' 'ruby2.6-rubygem-slop-doc-3' 'ruby2.6-rubygem-slop-doc-3_3' 'ruby2.6-rubygem-slop-testsuite' 'ruby2.6-rubygem-slop-testsuite-3' 'ruby2.6-rubygem-slop-testsuite-3_3' 'ruby2.6-rubygem-spring' 'ruby2.6-rubygem-spring-doc' 'ruby2.6-rubygem-spring-watcher-listen' 'ruby2.6-rubygem-spring-watcher-listen-doc' 'ruby2.6-rubygem-spring-watcher-listen-testsuite' 'ruby2.6-rubygem-sprockets' 'ruby2.6-rubygem-sprockets-2_1' 'ruby2.6-rubygem-sprockets-2_2' 'ruby2.6-rubygem-sprockets-doc' 'ruby2.6-rubygem-sprockets-doc-2_1' 'ruby2.6-rubygem-sprockets-doc-2_2' 'ruby2.6-rubygem-sprockets-helpers' 'ruby2.6-rubygem-sprockets-helpers-doc' 'ruby2.6-rubygem-sprockets-helpers-testsuite' 'ruby2.6-rubygem-sprockets-rails' 'ruby2.6-rubygem-sprockets-rails-doc' 'ruby2.6-rubygem-sqlite3' 'ruby2.6-rubygem-sqlite3-doc' 'ruby2.6-rubygem-sqlite3-testsuite' 'ruby2.6-rubygem-sshkit' 'ruby2.6-rubygem-sshkit-doc' 'ruby2.6-rubygem-sshkit-testsuite' 'ruby2.6-rubygem-stackdeck' 'ruby2.6-rubygem-stackdeck-doc' 'ruby2.6-rubygem-stackdeck-testsuite' 'ruby2.6-rubygem-stomp' 'ruby2.6-rubygem-stomp-doc' 'ruby2.6-rubygem-stomp-testsuite' 'ruby2.6-rubygem-strptime' 'ruby2.6-rubygem-strptime-doc' 'ruby2.6-rubygem-swd' 'ruby2.6-rubygem-swd-doc' 'ruby2.6-rubygem-swd-testsuite' 'ruby2.6-rubygem-systemu' 'ruby2.6-rubygem-systemu-doc' 'ruby2.6-rubygem-systemu-testsuite' 'ruby2.6-rubygem-taskjuggler' 'ruby2.6-rubygem-taskjuggler-doc' 'ruby2.6-rubygem-taskjuggler-testsuite' 'ruby2.6-rubygem-temple' 'ruby2.6-rubygem-temple-doc' 'ruby2.6-rubygem-temple-testsuite' 'ruby2.6-rubygem-term-ansicolor' 'ruby2.6-rubygem-term-ansicolor-doc' 'ruby2.6-rubygem-text' 'ruby2.6-rubygem-text-doc' 'ruby2.6-rubygem-text-hyphen' 'ruby2.6-rubygem-text-hyphen-doc' 'ruby2.6-rubygem-text-hyphen-testsuite' 'ruby2.6-rubygem-text-testsuite' 'ruby2.6-rubygem-thor' 'ruby2.6-rubygem-thor-0_19' 'ruby2.6-rubygem-thor-doc' 'ruby2.6-rubygem-thor-doc-0_19' 'ruby2.6-rubygem-thread_safe' 'ruby2.6-rubygem-thread_safe-doc' 'ruby2.6-rubygem-thread_safe-testsuite' 'ruby2.6-rubygem-tilt' 'ruby2.6-rubygem-tilt-1_1' 'ruby2.6-rubygem-tilt-1_4' 'ruby2.6-rubygem-tilt-doc' 'ruby2.6-rubygem-tilt-doc-1_1' 'ruby2.6-rubygem-tilt-doc-1_4' 'ruby2.6-rubygem-tilt-testsuite' 'ruby2.6-rubygem-tilt-testsuite-1_1' 'ruby2.6-rubygem-tilt-testsuite-1_4' 'ruby2.6-rubygem-timers' 'ruby2.6-rubygem-timers-doc' 'ruby2.6-rubygem-timers-testsuite' 'ruby2.6-rubygem-tins' 'ruby2.6-rubygem-tins-doc' 'ruby2.6-rubygem-tmuxinator' 'ruby2.6-rubygem-tmuxinator-doc' 'ruby2.6-rubygem-tmuxinator-testsuite' 'ruby2.6-rubygem-tomlrb' 'ruby2.6-rubygem-tomlrb-doc' 'ruby2.6-rubygem-treetop' 'ruby2.6-rubygem-treetop-1_4' 'ruby2.6-rubygem-treetop-doc' 'ruby2.6-rubygem-treetop-doc-1_4' 'ruby2.6-rubygem-treetop-testsuite-1_4' 'ruby2.6-rubygem-trollop' 'ruby2.6-rubygem-trollop-doc' 'ruby2.6-rubygem-trollop-testsuite' 'ruby2.6-rubygem-turbolinks' 'ruby2.6-rubygem-turbolinks-doc' 'ruby2.6-rubygem-turbolinks-source' 'ruby2.6-rubygem-turbolinks-source-doc' 'ruby2.6-rubygem-tzinfo' 'ruby2.6-rubygem-tzinfo-0' 'ruby2.6-rubygem-tzinfo-1.2' 'ruby2.6-rubygem-tzinfo-data' 'ruby2.6-rubygem-tzinfo-data-doc' 'ruby2.6-rubygem-tzinfo-doc' 'ruby2.6-rubygem-tzinfo-doc-0' 'ruby2.6-rubygem-tzinfo-doc-1.2' 'ruby2.6-rubygem-tzinfo-testsuite-0' 'ruby2.6-rubygem-tzinfo-testsuite-1.2' 'ruby2.6-rubygem-uglifier' 'ruby2.6-rubygem-uglifier-doc' 'ruby2.6-rubygem-unf' 'ruby2.6-rubygem-unf-doc' 'ruby2.6-rubygem-unf-testsuite' 'ruby2.6-rubygem-unf_ext' 'ruby2.6-rubygem-unf_ext-doc' 'ruby2.6-rubygem-unf_ext-testsuite' 'ruby2.6-rubygem-unicorn' 'ruby2.6-rubygem-unicorn-doc' 'ruby2.6-rubygem-unicorn-testsuite' 'ruby2.6-rubygem-unicorn-worker-killer' 'ruby2.6-rubygem-unicorn-worker-killer-doc' 'ruby2.6-rubygem-url_safe_base64' 'ruby2.6-rubygem-url_safe_base64-doc' 'ruby2.6-rubygem-url_safe_base64-testsuite' 'ruby2.6-rubygem-vagrant-spec' 'ruby2.6-rubygem-vagrant-spec-doc' 'ruby2.6-rubygem-vagrant-spec-testsuite' 'ruby2.6-rubygem-vagrant_cloud' 'ruby2.6-rubygem-vagrant_cloud-doc' 'ruby2.6-rubygem-validate_email' 'ruby2.6-rubygem-validate_email-doc' 'ruby2.6-rubygem-validate_url' 'ruby2.6-rubygem-validate_url-doc' 'ruby2.6-rubygem-virtus' 'ruby2.6-rubygem-virtus-doc' 'ruby2.6-rubygem-virtus-testsuite' 'ruby2.6-rubygem-warden' 'ruby2.6-rubygem-warden-doc' 'ruby2.6-rubygem-web-console' 'ruby2.6-rubygem-web-console-2' 'ruby2.6-rubygem-web-console-doc' 'ruby2.6-rubygem-web-console-doc-2' 'ruby2.6-rubygem-webfinger' 'ruby2.6-rubygem-webfinger-doc' 'ruby2.6-rubygem-webfinger-testsuite' 'ruby2.6-rubygem-webmock-1_2' 'ruby2.6-rubygem-webmock-2_3' 'ruby2.6-rubygem-webmock-doc-1_2' 'ruby2.6-rubygem-webmock-doc-2_3' 'ruby2.6-rubygem-webmock-testsuite-1_2' 'ruby2.6-rubygem-webmock-testsuite-2_3' 'ruby2.6-rubygem-websocket' 'ruby2.6-rubygem-websocket-doc' 'ruby2.6-rubygem-websocket-driver' 'ruby2.6-rubygem-websocket-driver-0_6' 'ruby2.6-rubygem-websocket-driver-doc' 'ruby2.6-rubygem-websocket-driver-doc-0_6' 'ruby2.6-rubygem-websocket-extensions' 'ruby2.6-rubygem-websocket-extensions-doc' 'ruby2.6-rubygem-websocket-testsuite' 'ruby2.6-rubygem-winrm-2_1' 'ruby2.6-rubygem-winrm-doc-2_1' 'ruby2.6-rubygem-winrm-elevated' 'ruby2.6-rubygem-winrm-elevated-doc' 'ruby2.6-rubygem-winrm-fs' 'ruby2.6-rubygem-winrm-fs-doc' 'ruby2.6-rubygem-xdg' 'ruby2.6-rubygem-xdg-doc' 'ruby2.6-rubygem-xml-simple' 'ruby2.6-rubygem-xml-simple-doc' 'ruby2.6-rubygem-xmlhash' 'ruby2.6-rubygem-xmlhash-doc' 'ruby2.6-rubygem-xmlhash-testsuite' 'ruby2.6-rubygem-yajl-ruby' 'ruby2.6-rubygem-yajl-ruby-doc' 'ruby2.6-rubygem-yajl-ruby-testsuite' 'ruby2.6-rubygem-yard' 'ruby2.6-rubygem-yard-doc' 'ruby2.6-rubygem-yard-testsuite' 'ruby2.6-rubygem-yast-rake' 'ruby2.6-rubygem-yast-rake-doc' 'ruby2.6-rubygem-zeitwerk' 'ruby2.6-rubygem-zeitwerk-doc' 'rubygem-builder-3_0' 'rubygem-builder-3_0-doc' 'rubygem-builder-3_0-testsuite' 'rubygem-cancan' 'rubygem-cancan-doc' 'rubygem-cancan-testsuite' 'rubygem-docker-api' 'rubygem-docker-api-doc' 'rubygem-docker-api-testsuite' 'rubygem-gettext_activerecord' 'rubygem-gettext_activerecord-doc' 'rubygem-gettext_activerecord-testsuite' 'rubygem-libguestfs' 'rubygem-libwebsocket' 'rubygem-libwebsocket-doc' 'rubygem-libwebsocket-testsuite' 'rubygem-mail-2_4' 'rubygem-mail-2_4-doc' 'rubygem-passenger' 'rubygem-passenger-apache2' 'rubygem-passenger-nginx' 'rubygem-ruby-fcgi' 'rubygem-ruby-fcgi-doc' 'rubygem-ruby-fcgi-testsuite' 'rubygem-sexp_processor-3_2' 'rubygem-sexp_processor-3_2-doc' 'rubygem-sexp_processor-3_2-testsuite' 'rubygem-shoes' 'rubygem-shoes-doc' 'rubygem-shoes-testsuite' 'rubygem-taskjuggler' 'runawk' 'runawk-examples' 'runc' 'runc-test' 'rungetty' 'rust' 'rust-analysis' 'rust-cbindgen' 'rust-doc' 'rust-gdb' 'rust-packaging' 'rust-src' 'rust-srpm-macros' 'rust-std-static' 'rustfmt' 'rxp' 'rxvt-unicode' 'rygel' 'rygel-devel' 'rygel-lang' 'rygel-plugin-gstreamer-renderer' 'rygel-plugin-tracker' 'rypper' 'rzip' 'rzsz' 's3backer' 's3fs' 'sablot' 'sablot-devel' 'sac' 'sac-javadoc' 'safte-monitor' 'saidar' 'sakura' 'sakura-lang' 'salt' 'salt-api' 'salt-bash-completion' 'salt-cloud' 'salt-doc' 'salt-fish-completion' 'salt-master' 'salt-minion' 'salt-proxy' 'salt-shaptools' 'salt-ssh' 'salt-standalone-formulas-configuration' 'salt-syndic' 'salt-zsh-completion' 'samba' 'samba-ad-dc' 'samba-ad-dc-32bit' 'samba-ceph' 'samba-client' 'samba-client-32bit' 'samba-core-devel' 'samba-doc' 'samba-dsdb-modules' 'samba-krb-printing' 'samba-libs' 'samba-libs-32bit' 'samba-libs-python3' 'samba-libs-python3-32bit' 'samba-pidl' 'samba-python3' 'samba-test' 'samba-winbind' 'samba-winbind-32bit' 'samplicator' 'sane-backends' 'sane-backends-32bit' 'sane-backends-autoconfig' 'sane-backends-devel' 'sane-backends-devel-32bit' 'sanlk-reset' 'sanlock' 'sanlock-devel' 'saphanabootstrap-formula' 'sar2' 'sar2-data' 'sarg' 'sasl2-kdexoauth2' 'sassc' 'sat4j' 'savannahice' 'savannahice' 'savannahice-debuginfo' 'savannahice-debugsource' 'saweri-fonts' 'sawfish' 'sawfish-devel' 'sawfish-pager' 'sawfish-sounds' 'sax3' 'saxon6' 'saxon6-aelfred' 'saxon6-demo' 'saxon6-fop' 'saxon6-javadoc' 'saxon6-jdom' 'saxon6-manual' 'saxon6-scripts' 'saxon8' 'saxon8-demo' 'saxon8-dom' 'saxon8-javadoc' 'saxon8-jdom' 'saxon8-manual' 'saxon8-scripts' 'saxon8-sql' 'saxon8-xom' 'saxon8-xpath' 'saxon9' 'saxon9-demo' 'saxon9-javadoc' 'saxon9-manual' 'saxon9-scripts' 'saxpath' 'sazanami-fonts' 'sbc' 'sbc-devel' 'sbcl' 'sbd' 'sbiload' 'sbl' 'sbl-orca' 'sblim-cim-client2' 'sblim-cim-client2-javadoc' 'sblim-cim-client2-manual' 'sblim-cmpi-base' 'sblim-cmpi-base-devel' 'sblim-cmpi-base-testsuite' 'sblim-cmpi-c++-devel' 'sblim-cmpi-devel' 'sblim-cmpi-ssh_service_profile' 'sblim-cmpiutil-devel' 'sblim-indication_helper' 'sblim-indication_helper-devel' 'sblim-sfcCommon-devel' 'sblim-sfcb' 'sblim-sfcc-devel' 'sblim-testsuite' 'sblim-tools-libra-devel' 'sblim-wbemcli' 'sc' 'sc-controller' 'sca-appliance-agent' 'sca-appliance-broker' 'sca-appliance-common' 'sca-appliance-patdev' 'sca-patterns-base' 'sca-patterns-edir' 'sca-patterns-filr' 'sca-patterns-groupwise' 'sca-patterns-hae' 'sca-patterns-oes' 'sca-patterns-sle09' 'sca-patterns-sle10' 'sca-patterns-sle11' 'sca-patterns-sle12' 'sca-patterns-sle15' 'sca-patterns-suma' 'sca-server-report' 'scala' 'scala-apidoc' 'scala-bootstrap' 'scala-bootstrap-apidoc' 'scala-bootstrap-swing' 'scala-swing' 'scalapack-mvapich2-test' 'scalapack-openmpi-test' 'scalapack-openmpi2-test' 'scalapack-openmpi3-test' 'scalapack_2_0_2-gnu-mpich-hpc-module' 'scalapack_2_0_2-gnu-mpich-hpc-test' 'scalapack_2_0_2-gnu-mvapich2-hpc-module' 'scalapack_2_0_2-gnu-mvapich2-hpc-test' 'scalapack_2_0_2-gnu-openmpi1-hpc-module' 'scalapack_2_0_2-gnu-openmpi1-hpc-test' 'scalapack_2_0_2-gnu-openmpi2-hpc-module' 'scalapack_2_0_2-gnu-openmpi2-hpc-test' 'scalapack_2_0_2-gnu-openmpi3-hpc-module' 'scalapack_2_0_2-gnu-openmpi3-hpc-test' 'scalpel' 'scamper' 'scanmem' 'scantailor' 'scap-workbench' 'scap-workbench-doc' 'scat' 'sccs' 'scdl' 'scdoc' 'schedtool' 'schedtop' 'schemaspy' 'scheme48' 'scheme48-devel' 'scheme48-doc' 'scheme48-prescheme' 'scheme48-vm' 'schily-mt' 'schily-rmt' 'schismtracker' 'schroedinger-devel' 'schroedinger-doc' 'scid' 'scid' 'scid-debuginfo' 'scid-debugsource' 'scidavis' 'scidavis-lang' 'scilab' 'scilab-devel' 'scilab-lang' 'scilab-modules' 'scilab-modules-doc' 'scilab-modules-doc-lang' 'scilab-tests' 'scim' 'scim-32bit' 'scim-anthy' 'scim-bridge' 'scim-bridge-gtk2' 'scim-bridge-gtk2-32bit' 'scim-canna' 'scim-chewing' 'scim-devel' 'scim-gtk' 'scim-gtk-32bit' 'scim-gtk3' 'scim-gtk3-32bit' 'scim-hangul' 'scim-input-pad' 'scim-lang' 'scim-m17n' 'scim-pinyin' 'scim-skk' 'scim-sunpinyin' 'scim-tables' 'scim-tables-additional' 'scim-tables-ja' 'scim-tables-ko' 'scim-tables-lang' 'scim-tables-zh' 'scim-tomoe' 'scim-uim' 'scim-unikey' 'scirenderer' 'scirenderer-javadoc' 'scite' 'scmon' 'scons' 'scorpio22' 'scorpio22' 'scorpio22-debuginfo' 'scorpio23' 'scorpio23' 'scorpio23-debuginfo' 'scorpio24' 'scorpio24' 'scorpio24-debuginfo' 'scorpio25' 'scorpio25' 'scorpio25-debuginfo' 'scorpio26' 'scorpio26' 'scorpio26-debuginfo' 'scotch' 'scotch-devel' 'scotch-devel-static' 'scotch-metis-devel' 'scout' 'screen' 'screen-message' 'screencast' 'screencast-lang' 'screenfetch' 'screengen' 'screengen' 'screengen-debuginfo' 'screengen-debugsource' 'screengrab' 'screengrab-lang' 'screenkey' 'scribus' 'scribus-devel' 'scrot' 'scrub' 'scrypt' 'scsh' 'scsh-base' 'scsirastools' 'scsires' 'scummvm' 'scummvm' 'scummvm-debuginfo' 'scummvm-debugsource' 'scummvm-extra' 'scummvm-extra-debuginfo' 'scummvm-tools' 'sdcc' 'sdcc-doc' 'sdcc-libc-sources' 'sdcv' 'sddm' 'sddm-branding-openSUSE' 'sddm-branding-upstream' 'sddm-theme-openSUSE' 'sdl-asylum' 'sdl-ball' 'sdl_bomber' 'sdlscavenger' 'sdparm' 'seahorse' 'seahorse-daemon' 'seahorse-lang' 'seahorse-nautilus-lang' 'seahorse-sharing' 'seahorse-sharing-lang' 'seamonkey' 'seamonkey-translations-common' 'seamonkey-translations-other' 'seccheck' 'sed' 'sed-lang' 'sedutil' 'segv_handler' 'selene' 'selene' 'selene-debuginfo' 'selene-debugsource' 'selene-lang' 'selinux-tools' 'semantik' 'sendfax' 'sendmail' 'sendmail-devel' 'sendmail-starttls' 'sendxmpp' 'sensord' 'sensors' 'seq24' 'ser2net' 'serd-devel' 'serdi' 'serialdv-devel' 'servletapi4' 'servletapi4-javadoc' 'servletapi5' 'sessreg' 'setconf' 'setools-console' 'setools-gui' 'setserial' 'setxkbmap' 'sev-tool' 'sfftobmp' 'sffview' 'sfml2-devel' 'sfml2-doc' 'sg3_utils' 'sgi-bitmap-fonts' 'sgml-skel' 'sgmltool' 'sgmltools-lite' 'sgpio' 'sgrep' 'sha1collisiondetection' 'sha3sum' 'shaderc' 'shaderc-devel' 'shadow' 'shadowdive-devel' 'shadowsocks-libev' 'shadowsocks-libev-devel' 'shadowsocks-libev-doc' 'shairplay' 'shairplay' 'shairplay-debuginfo' 'shairplay-debugsource' 'shairplay-devel' 'shairport-sync' 'shapelib' 'shared-color-targets' 'shared-desktop-ontologies' 'shared-desktop-ontologies-devel' 'shared-mime-info' 'shared-mime-info-lang' 'sharutils' 'sharutils-lang' 'shellementary' 'shepherd' 'shepherd-bins' 'shibboleth-sp' 'shibboleth-sp-devel' 'shigofumi' 'shim' 'shlomif-cmake-modules' 'shntool' 'shorewall' 'shorewall-core' 'shorewall-docs' 'shorewall-init' 'shorewall-lite' 'shorewall6' 'shorewall6-lite' 'shorten' 'shorten' 'shorten-debuginfo' 'shorten-debugsource' 'shotcut' 'shotcut-lang' 'shotwell' 'shotwell-lang' 'shoutsend' 'shoutsend' 'shoutsend-debuginfo' 'showfont' 'showfoto' 'shp' 'shunit2' 'shutdownscheduler' 'shutdownscheduler-lang' 'shutter' 'shutter-lang' 'siege' 'siga' 'sigil' 'signify' 'signing-party' 'signon-kwallet-extension' 'signon-plugin-oauth2' 'signon-plugin-oauth2-devel' 'signon-plugins' 'signon-plugins-32bit' 'signon-plugins-devel' 'signon-plugins-docs' 'signon-ui' 'signond' 'signond-docs' 'signond-libs' 'signond-libs-32bit' 'signond-libs-devel' 'sigrok-cli' 'sigrok-firmware-fx2lafw' 'sil-abyssinica-fonts' 'sil-andika-fonts' 'sil-charis-fonts' 'sil-doulos-fonts' 'sil-gentium-fonts' 'sil-mondulkiri-fonts' 'sil-padauk-fonts' 'simh' 'simple-ccsm' 'simple-ccsm-lang' 'simple-mtpfs' 'simple-obfs' 'simple-obfs-doc' 'simple-scan' 'simple-scan-lang' 'simplescreenrecorder' 'singularity' 'sipcalc' 'sipp' 'siproxd' 'siproxd-doc' 'siren' 'siren' 'siren-debuginfo' 'siren-debugsource' 'sisctrl' 'sisu-inject' 'sisu-javadoc' 'sisu-plexus' 'sitar' 'site-config' 'sitecopy' 'sitecopy-lang' 'sk1' 'skanlite' 'skanlite-lang' 'skelcd-control-Kubic' 'skelcd-control-MicroOS' 'skelcd-control-openSUSE-promo' 'skelcd-fallbackrepo-openSUSE' 'skelcd-installer-Kubic' 'skelcd-installer-MicroOS' 'skelcd-installer-net-Kubic' 'skelcd-installer-net-MicroOS' 'skelcd-installer-net-openSUSE' 'skelcd-installer-openSUSE' 'ski' 'skinlf' 'skinlf-demo' 'skinlf-javadoc' 'skkdic' 'skkdic-extra' 'skopeo' 'skrooge' 'skrooge-lang' 'sl' 'slade' 'slang-devel' 'slang-slsh' 'sleuth' 'sleuthkit' 'sleuthkit-devel' 'slf4j' 'slf4j-ext' 'slf4j-javadoc' 'slf4j-jcl' 'slf4j-jdk14' 'slf4j-log4j12' 'slf4j-manual' 'slf4j-sources' 'slib' 'slingshot' 'slirp4netns' 'slop' 'slop-devel' 'sloppy022' 'sloppy022' 'sloppy022-debuginfo' 'slowmoVideo' 'slowmoVideo' 'slowmoVideo-debuginfo' 'slowmoVideo-debugsource' 'slrn' 'slrn-lang' 'sluice' 'slurm' 'slurm-auth-none' 'slurm-config' 'slurm-config-man' 'slurm-cray' 'slurm-devel' 'slurm-doc' 'slurm-hdf5' 'slurm-lua' 'slurm-munge' 'slurm-node' 'slurm-openlava' 'slurm-pam_slurm' 'slurm-plugins' 'slurm-seff' 'slurm-sjstat' 'slurm-slurmdbd' 'slurm-sql' 'slurm-sview' 'slurm-torque' 'slurp' 'smake' 'smartmontools' 'smatch' 'smbios-utils' 'smc-tools' 'smcroute' 'smem' 'smemstat' 'smenu' 'smenu-tests' 'smictrl' 'smillaenlarger' 'smilutils' 'smlnj' 'smp_utils' 'smplayer' 'smplayer-lang' 'smplayer-skins' 'smplayer-skins' 'smplayer-theme-leo' 'smplayer-theme-leo' 'smplayer-themes' 'smplayer-themes' 'smproxy' 'smssend' 'smtpping' 'smtube' 'smtube' 'smtube-debuginfo' 'smtube-debugsource' 'smtube-lang' 'smuxi' 'smuxi-engine' 'smuxi-engine-campfire' 'smuxi-engine-campfire-lang' 'smuxi-engine-irc' 'smuxi-engine-irc-lang' 'smuxi-engine-jabbr' 'smuxi-engine-jabbr-lang' 'smuxi-engine-lang' 'smuxi-engine-twitter' 'smuxi-engine-twitter-lang' 'smuxi-engine-xmpp' 'smuxi-engine-xmpp-lang' 'smuxi-frontend' 'smuxi-frontend-gnome' 'smuxi-frontend-gnome-irc' 'smuxi-frontend-gnome-irc-lang' 'smuxi-frontend-gnome-lang' 'smuxi-frontend-gnome-twitter' 'smuxi-frontend-gnome-twitter-lang' 'smuxi-frontend-gnome-xmpp' 'smuxi-frontend-gnome-xmpp-lang' 'smuxi-frontend-lang' 'smuxi-frontend-stfl' 'smuxi-message-buffer' 'smuxi-message-buffer-lang' 'smuxi-server' 'smuxi-server-lang' 'snack' 'snakeyaml' 'snakeyaml-javadoc' 'snapper' 'snapper-zypp-plugin' 'snappy-devel' 'snd' 'snd_sf2' 'sndio' 'sndio-devel' 'sngrep' 'sni-qt' 'sni-qt-32bit' 'snipl' 'snmp-mibs' 'snmpsim' 'snorenotify-qt5' 'snorenotify-qt5-devel' 'snowmix' 'snowmix' 'snowmix-debuginfo' 'snowmix-debugsource' 'soapy-osmo-devel' 'soapy-sdr' 'soapy-sdr-devel' 'soapysdr0.7-module-airspy' 'soapysdr0.7-module-bladerf' 'soapysdr0.7-module-freesrp' 'soapysdr0.7-module-hackrf' 'soapysdr0.7-module-lms7' 'soapysdr0.7-module-mirisdr' 'soapysdr0.7-module-osmosdr' 'soapysdr0.7-module-remote' 'soapysdr0.7-module-rfspace' 'soapysdr0.7-module-rtlsdr' 'soapysdr0.7-module-uhd' 'soapysdr0.7-module-xtrx' 'sobby' 'socat' 'socket_wrapper' 'sofia-sip' 'sofia-sip-devel' 'softhsm' 'softhsm-devel' 'solaar' 'solaar-doc' 'solaar-udev' 'solarfighter' 'solarus' 'solarus-devel' 'solarus-gui' 'solarus-gui-lang' 'solarus-quest-editor' 'solarus-quest-editor-assets' 'solarus-quest-editor-lang' 'solarwolf' 'solarwolf_we' 'solfege' 'solid-devel' 'solid-devel-32bit' 'solid-imports' 'solid-tools' 'solo-udev' 'something-for-reddit' 'sonar-icon-theme' 'sonatype-oss-parent' 'sonatype-plugins-parent' 'sonic-visualiser' 'sonnet' 'sonnet-devel' 'sonnet-devel-32bit' 'sonobuoy' 'sooperlooper' 'sooperlooper' 'sooperlooper-debuginfo' 'sooperlooper-debugsource' 'sopwith' 'sord' 'sord-devel' 'sound-juicer' 'sound-juicer-lang' 'sound-theme-freedesktop' 'sound-theme-yaru' 'soundconverter' 'soundconverter-lang' 'soundio' 'soundio-debugsource' 'soundtouch' 'soundtouch-devel' 'soup-sharp' 'soup-sharp-devel' 'source-highlight' 'source-highlight-cgi' 'sox' 'sox' 'sox-debuginfo' 'sox-debugsource' 'sox-devel' 'soxr-devel' 'spacefm' 'spacefm-lang' 'spacenavd' 'spamassassin' 'spandsp-devel' 'spandsp-doc' 'sparse' 'sparse-inspect' 'sparse-llvm' 'sparsehash-devel' 'spatialindex-devel' 'spawn-fcgi' 'spax' 'spdlog-devel' 'spdylay' 'spdylay-devel' 'spec-cleaner' 'spec-cleaner-format_spec_file' 'spec-version-maven-plugin' 'spec-version-maven-plugin-javadoc' 'spectacle' 'spectacle-doc' 'spectacle-lang' 'spectator' 'spectcl' 'spectre-meltdown-checker' 'speech-dispatcher' 'speech-dispatcher-configure' 'speech-dispatcher-module-espeak' 'speedcrunch' 'speedtest-cli' 'speex' 'speex-devel' 'speexdsp-devel' 'spek' 'spek' 'spek-debuginfo' 'spek-debugsource' 'spek-lang' 'spew' 'sphinx' 'sphinxbase' 'sphinxbase-devel' 'spice-gtk' 'spice-gtk-devel' 'spice-gtk-lang' 'spice-html5' 'spice-parent' 'spice-protocol-devel' 'spice-up' 'spice-up-lang' 'spice-vdagent' 'spice-webdavd' 'spirv-cross' 'spirv-headers' 'spirv-tools' 'spirv-tools-devel' 'spirv-tools-devel-32bit' 'splint' 'splinter-devel' 'splix' 'spotify-installer' 'spotify-installer' 'spread-sheet-widget-devel' 'spu-tools' 'spyder' 'spyder-breakpoints' 'spyder-breakpoints-lang' 'spyder-dicom' 'spyder-hdf5' 'spyder-lang' 'spyder-line-profiler' 'spyder-memory-profiler' 'spyder-notebook' 'spyder-profiler' 'spyder-profiler-lang' 'spyder-pylint' 'spyder-pylint-lang' 'spyder-terminal' 'spyder-unittest' 'spyder3' 'spyder3-breakpoints' 'spyder3-breakpoints-lang' 'spyder3-dicom' 'spyder3-hdf5' 'spyder3-lang' 'spyder3-line-profiler' 'spyder3-memory-profiler' 'spyder3-notebook' 'spyder3-profiler' 'spyder3-profiler-lang' 'spyder3-pylint' 'spyder3-pylint-lang' 'spyder3-terminal' 'spyder3-unittest' 'sqlcipher' 'sqlcipher-devel' 'sqlite3' 'sqlite3-devel' 'sqlite3-doc' 'sqlitebrowser' 'sqliteman' 'sqliteodbc' 'sqliteodbc-doc' 'sqtop' 'squashfs' 'squid' 'squidGuard' 'squidGuard-doc' 'squidview' 'squirrel' 'squirrel-devel' 'squirrel-devel-static' 'squirrel-doc' 'squirrel-examples' 'sratom-devel' 'src_vipa' 'srecord' 'srecord-devel' 'srecord-doc' 'srm' 'srp_daemon' 'srt' 'srt-devel' 'sscape-ctl' 'ssdeep' 'ssdp-responder' 'ssh-contact' 'ssh-contact-client' 'ssh-contact-service' 'sshfs' 'sshguard' 'sshpass' 'sshuttle' 'ssl-cert-check' 'ssldump' 'sslscan' 'sssd' 'sssd-32bit' 'sssd-ad' 'sssd-dbus' 'sssd-ipa' 'sssd-krb5' 'sssd-krb5-common' 'sssd-ldap' 'sssd-proxy' 'sssd-tools' 'sssd-wbclient' 'sssd-wbclient-devel' 'sssd-winbind-idmap' 'stack' 'staging-build-key' 'stalonetray' 'stan' 'star' 'stardict' 'stardict-dic-enru-engcom' 'stardict-dic-enru-mueller7' 'stardict-sounds-wyabdcrealpeopletts' 'stardict-tools' 'starfighter' 'startup-notification-devel' 'statgrab' 'statserial' 'stax2-api' 'stax2-api-javadoc' 'stb-devel' 'stdman' 'steam' 'steam-controller' 'steam-vr' 'steamcmd' 'steamtricks' 'steamtricks-data' 'stellarium' 'step' 'step-lang' 'stgit' 'stix-fonts' 'stix-integrals-fonts' 'stix-pua-fonts' 'stix-sizes-fonts' 'stix-variants-fonts' 'stk' 'stk-debugsource' 'stlink' 'stlink-devel' 'stlink-gui' 'stm32flash' 'stockfish' 'stoken' 'stoken-devel' 'stoken-gui' 'storage-fixup' 'storeBackup' 'stow' 'stow-doc' 'stp' 'stp-devel' 'stp-python' 'strace' 'strawberry' 'stream' 'streamripper' 'streamripper' 'streamripper-debuginfo' 'streamripper-debugsource' 'streamtuner2' 'streamtuner2' 'stress-ng' 'stress-ng-bash-completion' 'stressapptest' 'strip-nondeterminism' 'strongswan' 'strongswan-doc' 'strongswan-hmac' 'strongswan-ipsec' 'strongswan-libs0' 'strongswan-mysql' 'strongswan-nm' 'strongswan-sqlite' 'stunnel' 'stunnel-doc' 'su-wrapper' 'submin' 'submin-apache' 'submin-svn' 'subnetcalc' 'subtitlecomposer' 'subtitlecomposer-lang' 'subtitleeditor' 'subtitleeditor-lang' 'subtitleripper' 'subtitleripper' 'subtitleripper-debuginfo' 'subtitleripper-debugsource' 'subunit' 'subunit-devel' 'subunit-filters' 'subunit-shell' 'subversion' 'subversion-bash-completion' 'subversion-devel' 'subversion-doc' 'subversion-perl' 'subversion-python' 'subversion-python-ctypes' 'subversion-ruby' 'subversion-server' 'subversion-tools' 'suck' 'sudo' 'sudo-devel' 'sudo-test' 'sudoku-sensei' 'suil-devel' 'suil-plugin-gtk2-in-qt5' 'suil-plugin-qt5-in-gtk2' 'suil-plugin-x11' 'suil-plugin-x11-in-gtk2' 'suil-plugin-x11-in-gtk3' 'suil-plugin-x11-in-qt5' 'suitesparse-devel' 'suitesparse-devel-static' 'sundanese-unicode-fonts' 'sunpinyin-data' 'sunpinyin-devel' 'sunpinyin-tools' 'sunwait' 'sunxi-tools' 'superlu-devel' 'superlu-doc' 'superlu-examples' 'superlu-gnu-hpc-devel' 'superlu-gnu-hpc-doc' 'superlu-gnu-hpc-examples' 'superlu_5_2_1-gnu-hpc-devel' 'superlu_5_2_1-gnu-hpc-doc' 'superlu_5_2_1-gnu-hpc-examples' 'supermin' 'supertux2' 'supertuxkart' 'supertuxkart-data' 'supervisor' 'supportutils' 'surfraw' 'surfraw-woffle' 'suru-plus-dark-icon-theme' 'suse-build-key' 'suse-hpc' 'suse-module-tools' 'suse-module-tools-legacy' 'suse-prime' 'suse-xsl-stylesheets' 'susefirewall2-to-firewalld' 'susepaste' 'susepaste-screenshot' 'suseprime-appindicator' 'sushi' 'sushi-lang' 'svg-schema' 'svg-schema-doc' 'svgcleaner' 'svgcleaner-gui' 'svgpart' 'svgpart-lang' 'sview' 'sview' 'svn2git' 'svxlink-server' 'sw_management' 'sway' 'swaybg' 'swayidle' 'swayidle-bash-completion' 'swayidle-fish-completion' 'swayidle-zsh-completion' 'swaylock' 'swaylock-bash-completion' 'swaylock-fish-completion' 'swaylock-zsh-completion' 'sweep' 'sweep' 'sweep-debuginfo' 'sweep-debugsource' 'sweeper' 'sweeper-lang' 'swell-foop' 'swell-foop-lang' 'swift-im' 'swiften-devel' 'swig' 'swig-doc' 'swig-examples' 'swing-layout' 'swing-layout-javadoc' 'swing-worker' 'swing-worker-demo' 'swing-worker-javadoc' 'swingx' 'swingx-javadoc' 'swipl' 'switch_sles_sle-hpc' 'switchboard' 'switchboard-devel' 'switchboard-lang' 'switcheroo-control' 'switcheroo-control-doc' 'sword' 'sword-devel' 'swtcalendar' 'swtchart' 'swtchart-javadoc' 'sxhkd' 'sxiv' 'sympol' 'sympol-devel' 'synapse' 'synapse-lang' 'syncthing' 'syncthing-gtk' 'syncthing-gtk-lang' 'syncthing-relaysrv' 'syndication-devel' 'synergy' 'synfig' 'synfig' 'synfig-debuginfo' 'synfig-debugsource' 'synfig-devel' 'synfig-doc' 'synfig-lang' 'synfig-modules' 'synfig-modules-debuginfo' 'synfigapp-devel' 'synfigstudio' 'synfigstudio' 'synfigstudio-debuginfo' 'synfigstudio-debugsource' 'synfigstudio-lang' 'synnefo' 'syntax-highlighting' 'syntax-highlighting-devel' 'syntax-highlighting-devel-32bit' 'sysbench' 'sysconfig' 'sysconfig-netconfig' 'sysdig' 'sysdig-kmp-default' 'sysdig-kmp-pae' 'sysfsutils' 'sysfsutils-32bit' 'sysfsutils-devel' 'sysinfo' 'syslinux' 'syslog-ng' 'syslog-ng-curl' 'syslog-ng-devel' 'syslog-ng-geoip' 'syslog-ng-java' 'syslog-ng-python' 'syslog-ng-redis' 'syslog-ng-smtp' 'syslog-ng-sql' 'syslog-service' 'syslogd' 'sysprof' 'sysprof-capture-devel-static' 'sysprof-devel' 'sysprof-lang' 'sysstat' 'sysstat-isag' 'system-config-printer' 'system-config-printer-applet' 'system-config-printer-common' 'system-config-printer-common-lang' 'system-config-printer-dbus-service' 'system-group-hardware' 'system-group-obsolete' 'system-group-wheel' 'system-tuning-common-SUSE' 'system-user-bin' 'system-user-daemon' 'system-user-flatpak' 'system-user-ftp' 'system-user-games' 'system-user-lp' 'system-user-mail' 'system-user-man' 'system-user-news' 'system-user-nobody' 'system-user-root' 'system-user-srvGeoClue' 'system-user-tftp' 'system-user-upsd' 'system-user-uucp' 'system-user-uuidd' 'system-user-wwwrun' 'systemd' 'systemd-32bit' 'systemd-container' 'systemd-coredump' 'systemd-devel' 'systemd-icon-branding-openSUSE' 'systemd-journal-remote' 'systemd-logger' 'systemd-mini-container' 'systemd-presets-branding-MicroOS' 'systemd-presets-branding-openSUSE' 'systemd-presets-branding-transactional-server' 'systemd-presets-common-SUSE' 'systemd-rpm-macros' 'systemd-sysvinit' 'systemd-ui' 'systemd-zram-service' 'systemsettings5' 'systemsettings5-devel' 'systemsettings5-lang' 'systemtap' 'systemtap-docs' 'systemtap-headers' 'systemtap-runtime' 'systemtap-sdt-devel' 'systemtap-server' 'systester' 'sysuser-shadow' 'sysuser-tools' 'sysvinit-tools' 'sz2-devel' 't-prot' 't1utils' 't38modem' 'tachyon' 'tack' 'tagbanwa-fonts' 'taglib' 'taglib-extras-devel' 'taglib-sharp' 'taglib-sharp-devel' 'tagsoup' 'tagsoup-javadoc' 'tai-heritage-pro-fonts' 'taisei' 'taisei-data' 'tali' 'tali-lang' 'talk' 'talk-server' 'talloc-man' 'tallow' 'tamago' 'tamil-gtk2im' 'tamil-gtk2im-32bit' 'tango-icon-theme' 'tanukiwrapper' 'tanukiwrapper-javadoc' 'tanukiwrapper-manual' 'tar' 'tar-backup-scripts' 'tar-doc' 'tar-lang' 'tar-rmt' 'tar-tests' 'tardy' 'target-isns' 'targetcli-fb-common' 'taskwarrior' 'tasque' 'tasque-lang' 'tayga' 'tbb-devel' 'tboot' 'tcd' 'tcl' 'tcl-32bit' 'tcl-Hamlib' 'tcl-brlapi' 'tcl-devel' 'tcl-rrdtool' 'tcl-sqlcipher' 'tcl-tktray' 'tcl8-xapian' 'tclap' 'tclap-doc' 'tclcurl' 'tcllib' 'tclplug' 'tclplug-32bit' 'tcludp' 'tclx' 'tcmu-runner' 'tcmu-runner-handler-glusterfs' 'tcmu-runner-handler-rbd' 'tcmu-runner-handler-zbc' 'tcpd' 'tcpd-devel' 'tcpdump' 'tcpflow' 'tcpreplay' 'tcsh' 'tcsh-lang' 'tdb-tools' 'tdom' 'tdom-devel' 'tdu' 'tdu' 'tdu-debuginfo' 'tea' 'tealdeer' 'teamviewer' 'teamviewer-host' 'teamviewer-host-suse' 'teamviewer-suse' 'technical_writing' 'technisat-usb2-firmware' 'tecla' 'tecla-devel' 'tecnoballz' 'teeworlds' 'tei-roma' 'tei-xsl-stylesheets' 'tei_4' 'telegraf' 'telegram-desktop' 'telegram-theme-adapta' 'telegram-theme-plata' 'telemetrics-client' 'telemetrics-client-devel' 'telepathy-accounts-signon' 'telepathy-farstream-devel' 'telepathy-gabble' 'telepathy-gabble-xmpp-console' 'telepathy-glib-devel' 'telepathy-glib-doc' 'telepathy-haze' 'telepathy-idle' 'telepathy-logger' 'telepathy-logger-devel' 'telepathy-logger-qt5-devel' 'telepathy-mission-control' 'telepathy-mission-control-devel' 'telepathy-mission-control-plugin-goa' 'telepathy-qt5-devel' 'telepathy-qt5-devel-32bit' 'telepathy-rakia' 'telepathy-rakia-devel' 'telepathy-sipe' 'tellico' 'tellico-lang' 'telnet' 'telnet-server' 'template-glib-devel' 'template-glib-lang' 'tennebon-dynamic-wallpaper' 'tensorflow' 'tensorflow-avx2-gnu-hpc' 'tensorflow-avx2-gnu-mvapich2-hpc' 'tensorflow-avx2-gnu-openmpi2-hpc' 'tensorflow-avx2_1_13_1-gnu-hpc' 'tensorflow-avx2_1_13_1-gnu-hpc-devel' 'tensorflow-avx2_1_13_1-gnu-hpc-doc' 'tensorflow-avx2_1_13_1-gnu-mvapich2-hpc' 'tensorflow-avx2_1_13_1-gnu-mvapich2-hpc-devel' 'tensorflow-avx2_1_13_1-gnu-mvapich2-hpc-doc' 'tensorflow-avx2_1_13_1-gnu-openmpi2-hpc' 'tensorflow-avx2_1_13_1-gnu-openmpi2-hpc-devel' 'tensorflow-avx2_1_13_1-gnu-openmpi2-hpc-doc' 'tensorflow-devel' 'tensorflow-doc' 'tensorflow-gnu-hpc' 'tensorflow-gnu-mvapich2-hpc' 'tensorflow-gnu-openmpi2-hpc' 'tensorflow-lite' 'tensorflow-lite-devel' 'tensorflow_1_13_1-gnu-hpc' 'tensorflow_1_13_1-gnu-hpc-devel' 'tensorflow_1_13_1-gnu-hpc-doc' 'tensorflow_1_13_1-gnu-mvapich2-hpc' 'tensorflow_1_13_1-gnu-mvapich2-hpc-devel' 'tensorflow_1_13_1-gnu-mvapich2-hpc-doc' 'tensorflow_1_13_1-gnu-openmpi2-hpc' 'tensorflow_1_13_1-gnu-openmpi2-hpc-devel' 'tensorflow_1_13_1-gnu-openmpi2-hpc-doc' 'tepl-4-lang' 'tepl-devel' 'termcap' 'termcap-32bit' 'terminator' 'terminator-lang' 'terminatorX' 'terminatorX' 'terminatorX-debuginfo' 'terminatorX-debugsource' 'terminfo' 'terminfo-base' 'terminfo-iterm' 'terminfo-screen' 'terminology' 'terminology-lang' 'terminology-theme-dark' 'terminology-theme-misc' 'terminology-theme-openSUSE' 'terminology-theme-openSUSE-oliveleaf' 'terminology-theme-upstream' 'terminus' 'terminus-bitmap-fonts' 'terminus-lang' 'termsyn-bitmap-fonts' 'terraform' 'teseq' 'tesseract' 'tesseract-data' 'tesseract-ocr' 'tesseract-ocr-devel' 'tesseract-ocr-traineddata-afrikaans' 'tesseract-ocr-traineddata-albanian' 'tesseract-ocr-traineddata-amharic' 'tesseract-ocr-traineddata-arabic' 'tesseract-ocr-traineddata-assamese' 'tesseract-ocr-traineddata-azerbaijani' 'tesseract-ocr-traineddata-azerbaijani_cyrillic' 'tesseract-ocr-traineddata-basque' 'tesseract-ocr-traineddata-belarusian' 'tesseract-ocr-traineddata-bengali' 'tesseract-ocr-traineddata-bosnian' 'tesseract-ocr-traineddata-bulgarian' 'tesseract-ocr-traineddata-burmese' 'tesseract-ocr-traineddata-catalan' 'tesseract-ocr-traineddata-cebuano' 'tesseract-ocr-traineddata-cherokee' 'tesseract-ocr-traineddata-chinese_simplified' 'tesseract-ocr-traineddata-chinese_traditional' 'tesseract-ocr-traineddata-croatian' 'tesseract-ocr-traineddata-czech' 'tesseract-ocr-traineddata-danish' 'tesseract-ocr-traineddata-dutch' 'tesseract-ocr-traineddata-dzongkha' 'tesseract-ocr-traineddata-english' 'tesseract-ocr-traineddata-english_middle' 'tesseract-ocr-traineddata-esperanto' 'tesseract-ocr-traineddata-estonian' 'tesseract-ocr-traineddata-finnish' 'tesseract-ocr-traineddata-frankish' 'tesseract-ocr-traineddata-french' 'tesseract-ocr-traineddata-french_middle' 'tesseract-ocr-traineddata-galician' 'tesseract-ocr-traineddata-georgian' 'tesseract-ocr-traineddata-georgian_old' 'tesseract-ocr-traineddata-german' 'tesseract-ocr-traineddata-greek' 'tesseract-ocr-traineddata-greek_ancient' 'tesseract-ocr-traineddata-gujarati' 'tesseract-ocr-traineddata-haitian' 'tesseract-ocr-traineddata-hebrew' 'tesseract-ocr-traineddata-hindi' 'tesseract-ocr-traineddata-hungarian' 'tesseract-ocr-traineddata-icelandic' 'tesseract-ocr-traineddata-indonese' 'tesseract-ocr-traineddata-inuktitut' 'tesseract-ocr-traineddata-irish' 'tesseract-ocr-traineddata-italian' 'tesseract-ocr-traineddata-italian_old' 'tesseract-ocr-traineddata-japanese' 'tesseract-ocr-traineddata-javanese' 'tesseract-ocr-traineddata-kannada' 'tesseract-ocr-traineddata-kazakh' 'tesseract-ocr-traineddata-khmer' 'tesseract-ocr-traineddata-korean' 'tesseract-ocr-traineddata-kurdish' 'tesseract-ocr-traineddata-kyrgyz' 'tesseract-ocr-traineddata-lao' 'tesseract-ocr-traineddata-latin' 'tesseract-ocr-traineddata-latvian' 'tesseract-ocr-traineddata-lithuanian' 'tesseract-ocr-traineddata-macedonian' 'tesseract-ocr-traineddata-malay' 'tesseract-ocr-traineddata-malayalam' 'tesseract-ocr-traineddata-maltese' 'tesseract-ocr-traineddata-marathi' 'tesseract-ocr-traineddata-math_equation' 'tesseract-ocr-traineddata-nepali' 'tesseract-ocr-traineddata-norwegian' 'tesseract-ocr-traineddata-orientation_and_script_detection' 'tesseract-ocr-traineddata-oriya' 'tesseract-ocr-traineddata-pashto' 'tesseract-ocr-traineddata-persian' 'tesseract-ocr-traineddata-polish' 'tesseract-ocr-traineddata-portuguese' 'tesseract-ocr-traineddata-punjabi' 'tesseract-ocr-traineddata-romanian' 'tesseract-ocr-traineddata-russian' 'tesseract-ocr-traineddata-sanskrit' 'tesseract-ocr-traineddata-serbian' 'tesseract-ocr-traineddata-serbian_latin' 'tesseract-ocr-traineddata-sinhala' 'tesseract-ocr-traineddata-slovak' 'tesseract-ocr-traineddata-slovenian' 'tesseract-ocr-traineddata-spanish' 'tesseract-ocr-traineddata-spanish_old' 'tesseract-ocr-traineddata-swahili' 'tesseract-ocr-traineddata-swedish' 'tesseract-ocr-traineddata-syriac' 'tesseract-ocr-traineddata-tagalog' 'tesseract-ocr-traineddata-tajik' 'tesseract-ocr-traineddata-tamil' 'tesseract-ocr-traineddata-telugu' 'tesseract-ocr-traineddata-thai' 'tesseract-ocr-traineddata-tibetan_standard' 'tesseract-ocr-traineddata-tigrinya' 'tesseract-ocr-traineddata-turkish' 'tesseract-ocr-traineddata-ukrainian' 'tesseract-ocr-traineddata-urdu' 'tesseract-ocr-traineddata-uyghur' 'tesseract-ocr-traineddata-uzbek' 'tesseract-ocr-traineddata-uzbek_cyrillic' 'tesseract-ocr-traineddata-vietnamese' 'tesseract-ocr-traineddata-welsh' 'tesseract-ocr-traineddata-yiddish' 'tesseract-server' 'testdisk' 'testng' 'testng-javadoc' 'tetrinet-server' 'tevent-man' 'texamator' 'texamator-lang' 'texi2html' 'texi2html-lang' 'texi2roff' 'texinfo' 'texinfo4' 'texlive' 'texlive-12many' 'texlive-12many-doc' 'texlive-2up' 'texlive-2up-doc' 'texlive-Asana-Math' 'texlive-Asana-Math-doc' 'texlive-Asana-Math-fonts' 'texlive-ESIEEcv' 'texlive-ESIEEcv-doc' 'texlive-FAQ-en' 'texlive-GS1' 'texlive-GS1-doc' 'texlive-HA-prosper' 'texlive-HA-prosper-doc' 'texlive-IEEEconf' 'texlive-IEEEconf-doc' 'texlive-IEEEtran' 'texlive-IEEEtran-doc' 'texlive-MemoirChapStyles' 'texlive-SIstyle' 'texlive-SIstyle-doc' 'texlive-SIunits' 'texlive-SIunits-doc' 'texlive-Tabbing' 'texlive-Tabbing-doc' 'texlive-Type1fonts' 'texlive-a0poster' 'texlive-a0poster-doc' 'texlive-a2ping' 'texlive-a2ping-bin' 'texlive-a2ping-doc' 'texlive-a4wide' 'texlive-a4wide-doc' 'texlive-a5comb' 'texlive-a5comb-doc' 'texlive-aastex' 'texlive-aastex-doc' 'texlive-abbr' 'texlive-abbr-doc' 'texlive-abc' 'texlive-abc-doc' 'texlive-abnt' 'texlive-abnt-doc' 'texlive-abntex2' 'texlive-abntex2-doc' 'texlive-abraces' 'texlive-abraces-doc' 'texlive-abstract' 'texlive-abstract-doc' 'texlive-abstyles' 'texlive-abstyles-doc' 'texlive-academicons' 'texlive-academicons-doc' 'texlive-academicons-fonts' 'texlive-accanthis' 'texlive-accanthis-doc' 'texlive-accanthis-fonts' 'texlive-accfonts' 'texlive-accfonts-bin' 'texlive-accfonts-doc' 'texlive-achemso' 'texlive-achemso-doc' 'texlive-acmart' 'texlive-acmart-doc' 'texlive-acmconf' 'texlive-acmconf-doc' 'texlive-acro' 'texlive-acro-doc' 'texlive-acronym' 'texlive-acronym-doc' 'texlive-acroterm' 'texlive-acroterm-doc' 'texlive-active-conf' 'texlive-active-conf-doc' 'texlive-actuarialangle' 'texlive-actuarialangle-doc' 'texlive-actuarialsymbol' 'texlive-actuarialsymbol-doc' 'texlive-addfont' 'texlive-addfont-doc' 'texlive-addlines' 'texlive-addlines-doc' 'texlive-adfathesis' 'texlive-adfathesis-doc' 'texlive-adforn' 'texlive-adforn-doc' 'texlive-adforn-fonts' 'texlive-adfsymbols' 'texlive-adfsymbols-doc' 'texlive-adfsymbols-fonts' 'texlive-adhocfilelist' 'texlive-adhocfilelist-bin' 'texlive-adhocfilelist-doc' 'texlive-adigraph' 'texlive-adigraph-doc' 'texlive-adjmulticol' 'texlive-adjmulticol-doc' 'texlive-adjustbox' 'texlive-adjustbox-doc' 'texlive-adobemapping' 'texlive-adrconv' 'texlive-adrconv-doc' 'texlive-adtrees' 'texlive-adtrees-doc' 'texlive-advdate' 'texlive-advdate-doc' 'texlive-ae' 'texlive-ae-doc' 'texlive-aecc' 'texlive-aecc-doc' 'texlive-aeguill' 'texlive-aeguill-doc' 'texlive-afm2pl' 'texlive-afm2pl-bin' 'texlive-afm2pl-doc' 'texlive-afparticle' 'texlive-afparticle-doc' 'texlive-afthesis' 'texlive-afthesis-doc' 'texlive-aguplus' 'texlive-aguplus-doc' 'texlive-aiaa' 'texlive-aiaa-doc' 'texlive-aichej' 'texlive-ajl' 'texlive-akktex' 'texlive-akktex-doc' 'texlive-akletter' 'texlive-akletter-doc' 'texlive-alegreya' 'texlive-alegreya-doc' 'texlive-alegreya-fonts' 'texlive-aleph' 'texlive-aleph-bin' 'texlive-alertmessage' 'texlive-alertmessage-doc' 'texlive-alg' 'texlive-alg-doc' 'texlive-algobox' 'texlive-algobox-doc' 'texlive-algolrevived' 'texlive-algolrevived-doc' 'texlive-algolrevived-fonts' 'texlive-algorithm2e' 'texlive-algorithm2e-doc' 'texlive-algorithmicx' 'texlive-algorithmicx-doc' 'texlive-algorithms' 'texlive-algorithms-doc' 'texlive-aligned-overset' 'texlive-aligned-overset-doc' 'texlive-alkalami' 'texlive-alkalami-doc' 'texlive-alkalami-fonts' 'texlive-allrunes' 'texlive-allrunes-doc' 'texlive-allrunes-fonts' 'texlive-almfixed' 'texlive-almfixed-doc' 'texlive-almfixed-fonts' 'texlive-alnumsec' 'texlive-alnumsec-doc' 'texlive-alpha-persian' 'texlive-alpha-persian-doc' 'texlive-alterqcm' 'texlive-alterqcm-doc' 'texlive-altfont' 'texlive-altfont-doc' 'texlive-ametsoc' 'texlive-ametsoc-doc' 'texlive-amiri' 'texlive-amiri-doc' 'texlive-amiri-fonts' 'texlive-amsaddr' 'texlive-amsaddr-doc' 'texlive-amscls' 'texlive-amscls-doc' 'texlive-amsfonts' 'texlive-amsfonts-doc' 'texlive-amsfonts-fonts' 'texlive-amslatex-primer' 'texlive-amsldoc-it' 'texlive-amsldoc-vn' 'texlive-amsmath' 'texlive-amsmath-doc' 'texlive-amsmath-it' 'texlive-amsrefs' 'texlive-amsrefs-doc' 'texlive-amstex' 'texlive-amstex-bin' 'texlive-amstex-doc' 'texlive-amsthdoc-it' 'texlive-animate' 'texlive-animate-doc' 'texlive-anonchap' 'texlive-anonchap-doc' 'texlive-anonymouspro' 'texlive-anonymouspro-doc' 'texlive-anonymouspro-fonts' 'texlive-answers' 'texlive-answers-doc' 'texlive-antiqua' 'texlive-antiqua-doc' 'texlive-antiqua-fonts' 'texlive-antomega' 'texlive-antomega-doc' 'texlive-antt' 'texlive-antt-doc' 'texlive-antt-fonts' 'texlive-anufinalexam' 'texlive-anyfontsize' 'texlive-anyfontsize-doc' 'texlive-anysize' 'texlive-anysize-doc' 'texlive-aobs-tikz' 'texlive-aobs-tikz-doc' 'texlive-aomart' 'texlive-aomart-doc' 'texlive-apa' 'texlive-apa-doc' 'texlive-apa6' 'texlive-apa6-doc' 'texlive-apa6e' 'texlive-apa6e-doc' 'texlive-apacite' 'texlive-apacite-doc' 'texlive-apalike-german' 'texlive-apalike-german-doc' 'texlive-apalike2' 'texlive-apnum' 'texlive-apnum-doc' 'texlive-appendix' 'texlive-appendix-doc' 'texlive-appendixnumberbeamer' 'texlive-appendixnumberbeamer-doc' 'texlive-apprends-latex' 'texlive-apptools' 'texlive-apptools-doc' 'texlive-apxproof' 'texlive-apxproof-doc' 'texlive-arabi' 'texlive-arabi-add' 'texlive-arabi-add-doc' 'texlive-arabi-doc' 'texlive-arabi-fonts' 'texlive-arabluatex' 'texlive-arabluatex-doc' 'texlive-arabtex' 'texlive-arabtex-doc' 'texlive-arabtex-fonts' 'texlive-arabxetex' 'texlive-arabxetex-doc' 'texlive-aramaic-serto' 'texlive-aramaic-serto-doc' 'texlive-aramaic-serto-fonts' 'texlive-arara' 'texlive-arara-bin' 'texlive-arara-doc' 'texlive-archaeologie' 'texlive-archaeologie-doc' 'texlive-archaic' 'texlive-archaic-doc' 'texlive-archaic-fonts' 'texlive-arcs' 'texlive-arcs-doc' 'texlive-arev' 'texlive-arev-doc' 'texlive-arev-fonts' 'texlive-arimo' 'texlive-arimo-doc' 'texlive-arimo-fonts' 'texlive-armtex' 'texlive-armtex-doc' 'texlive-armtex-fonts' 'texlive-around-the-bend' 'texlive-arphic' 'texlive-arphic-doc' 'texlive-arphic-fonts' 'texlive-arphic-ttf' 'texlive-arphic-ttf-doc' 'texlive-arphic-ttf-fonts' 'texlive-arrayjobx' 'texlive-arrayjobx-doc' 'texlive-arraysort' 'texlive-arraysort-doc' 'texlive-arsclassica' 'texlive-arsclassica-doc' 'texlive-articleingud' 'texlive-articleingud-doc' 'texlive-arydshln' 'texlive-arydshln-doc' 'texlive-asaetr' 'texlive-asaetr-doc' 'texlive-asapsym' 'texlive-asapsym-doc' 'texlive-asapsym-fonts' 'texlive-ascelike' 'texlive-ascelike-doc' 'texlive-ascii-chart' 'texlive-ascii-font' 'texlive-ascii-font-doc' 'texlive-ascii-font-fonts' 'texlive-asciilist' 'texlive-asciilist-doc' 'texlive-ascmac' 'texlive-ascmac-doc' 'texlive-ascmac-fonts' 'texlive-askmaps' 'texlive-askmaps-doc' 'texlive-asmeconf' 'texlive-asmeconf-doc' 'texlive-aspectratio' 'texlive-aspectratio-doc' 'texlive-aspectratio-fonts' 'texlive-assignment' 'texlive-assignment-doc' 'texlive-assoccnt' 'texlive-assoccnt-doc' 'texlive-astro' 'texlive-astro-doc' 'texlive-asyfig' 'texlive-asyfig-doc' 'texlive-asymptote' 'texlive-asymptote-bin' 'texlive-asymptote-by-example-zh-cn' 'texlive-asymptote-doc' 'texlive-asymptote-faq-zh-cn' 'texlive-asymptote-manual-zh-cn' 'texlive-asypictureb' 'texlive-asypictureb-doc' 'texlive-attachfile' 'texlive-attachfile-doc' 'texlive-aucklandthesis' 'texlive-aucklandthesis-doc' 'texlive-augie' 'texlive-augie-doc' 'texlive-augie-fonts' 'texlive-auncial-new' 'texlive-auncial-new-doc' 'texlive-auncial-new-fonts' 'texlive-aurical' 'texlive-aurical-doc' 'texlive-aurical-fonts' 'texlive-aurl' 'texlive-aurl-doc' 'texlive-authoraftertitle' 'texlive-authoraftertitle-doc' 'texlive-authorarchive' 'texlive-authorarchive-doc' 'texlive-authorindex' 'texlive-authorindex-bin' 'texlive-authorindex-doc' 'texlive-auto-pst-pdf' 'texlive-auto-pst-pdf-doc' 'texlive-auto-pst-pdf-lua' 'texlive-auto-pst-pdf-lua-doc' 'texlive-autoaligne' 'texlive-autoaligne-doc' 'texlive-autoarea' 'texlive-autoarea-doc' 'texlive-autobreak' 'texlive-autobreak-doc' 'texlive-automata' 'texlive-automata-doc' 'texlive-autonum' 'texlive-autonum-doc' 'texlive-autopdf' 'texlive-autopdf-doc' 'texlive-autosp' 'texlive-autosp-bin' 'texlive-avantgar' 'texlive-avantgar-fonts' 'texlive-avremu' 'texlive-avremu-doc' 'texlive-awesomebox' 'texlive-awesomebox-doc' 'texlive-axodraw2' 'texlive-axodraw2-bin' 'texlive-axodraw2-doc' 'texlive-b1encoding' 'texlive-b1encoding-doc' 'texlive-babel' 'texlive-babel-albanian' 'texlive-babel-albanian-doc' 'texlive-babel-azerbaijani' 'texlive-babel-azerbaijani-doc' 'texlive-babel-basque' 'texlive-babel-basque-doc' 'texlive-babel-belarusian' 'texlive-babel-belarusian-doc' 'texlive-babel-bosnian' 'texlive-babel-bosnian-doc' 'texlive-babel-breton' 'texlive-babel-breton-doc' 'texlive-babel-bulgarian' 'texlive-babel-bulgarian-doc' 'texlive-babel-catalan' 'texlive-babel-catalan-doc' 'texlive-babel-croatian' 'texlive-babel-croatian-doc' 'texlive-babel-czech' 'texlive-babel-czech-doc' 'texlive-babel-danish' 'texlive-babel-danish-doc' 'texlive-babel-doc' 'texlive-babel-dutch' 'texlive-babel-dutch-doc' 'texlive-babel-english' 'texlive-babel-english-doc' 'texlive-babel-esperanto' 'texlive-babel-esperanto-doc' 'texlive-babel-estonian' 'texlive-babel-estonian-doc' 'texlive-babel-finnish' 'texlive-babel-finnish-doc' 'texlive-babel-french' 'texlive-babel-french-doc' 'texlive-babel-friulan' 'texlive-babel-friulan-doc' 'texlive-babel-galician' 'texlive-babel-galician-doc' 'texlive-babel-georgian' 'texlive-babel-georgian-doc' 'texlive-babel-german' 'texlive-babel-german-doc' 'texlive-babel-greek' 'texlive-babel-greek-doc' 'texlive-babel-hebrew' 'texlive-babel-hebrew-doc' 'texlive-babel-hungarian' 'texlive-babel-hungarian-doc' 'texlive-babel-icelandic' 'texlive-babel-icelandic-doc' 'texlive-babel-indonesian' 'texlive-babel-indonesian-doc' 'texlive-babel-interlingua' 'texlive-babel-interlingua-doc' 'texlive-babel-irish' 'texlive-babel-irish-doc' 'texlive-babel-italian' 'texlive-babel-italian-doc' 'texlive-babel-japanese' 'texlive-babel-japanese-doc' 'texlive-babel-kurmanji' 'texlive-babel-kurmanji-doc' 'texlive-babel-latin' 'texlive-babel-latin-doc' 'texlive-babel-latvian' 'texlive-babel-latvian-doc' 'texlive-babel-macedonian' 'texlive-babel-macedonian-doc' 'texlive-babel-malay' 'texlive-babel-malay-doc' 'texlive-babel-norsk' 'texlive-babel-norsk-doc' 'texlive-babel-occitan' 'texlive-babel-occitan-doc' 'texlive-babel-piedmontese' 'texlive-babel-piedmontese-doc' 'texlive-babel-polish' 'texlive-babel-polish-doc' 'texlive-babel-portuges' 'texlive-babel-portuges-doc' 'texlive-babel-romanian' 'texlive-babel-romanian-doc' 'texlive-babel-romansh' 'texlive-babel-romansh-doc' 'texlive-babel-russian' 'texlive-babel-russian-doc' 'texlive-babel-samin' 'texlive-babel-samin-doc' 'texlive-babel-scottish' 'texlive-babel-scottish-doc' 'texlive-babel-serbian' 'texlive-babel-serbian-doc' 'texlive-babel-serbianc' 'texlive-babel-serbianc-doc' 'texlive-babel-slovak' 'texlive-babel-slovak-doc' 'texlive-babel-slovenian' 'texlive-babel-slovenian-doc' 'texlive-babel-sorbian' 'texlive-babel-sorbian-doc' 'texlive-babel-spanglish' 'texlive-babel-spanglish-doc' 'texlive-babel-spanish' 'texlive-babel-spanish-doc' 'texlive-babel-swedish' 'texlive-babel-swedish-doc' 'texlive-babel-thai' 'texlive-babel-thai-doc' 'texlive-babel-turkish' 'texlive-babel-turkish-doc' 'texlive-babel-ukrainian' 'texlive-babel-ukrainian-doc' 'texlive-babel-vietnamese' 'texlive-babel-vietnamese-doc' 'texlive-babel-welsh' 'texlive-babel-welsh-doc' 'texlive-babelbib' 'texlive-babelbib-doc' 'texlive-background' 'texlive-background-doc' 'texlive-backnaur' 'texlive-backnaur-doc' 'texlive-baekmuk' 'texlive-baekmuk-doc' 'texlive-baekmuk-fonts' 'texlive-bagpipe' 'texlive-bagpipe-doc' 'texlive-bangorcsthesis' 'texlive-bangorcsthesis-doc' 'texlive-bangorexam' 'texlive-bangorexam-doc' 'texlive-bangtex' 'texlive-bangtex-doc' 'texlive-bankstatement' 'texlive-bankstatement-doc' 'texlive-barcodes' 'texlive-barcodes-doc' 'texlive-bardiag' 'texlive-bardiag-doc' 'texlive-barr' 'texlive-barr-doc' 'texlive-bartel-chess-fonts' 'texlive-bartel-chess-fonts-doc' 'texlive-bashful' 'texlive-bashful-doc' 'texlive-basicarith' 'texlive-basicarith-doc' 'texlive-baskervald' 'texlive-baskervald-doc' 'texlive-baskervald-fonts' 'texlive-baskervaldx' 'texlive-baskervaldx-doc' 'texlive-baskervaldx-fonts' 'texlive-baskervillef' 'texlive-baskervillef-doc' 'texlive-baskervillef-fonts' 'texlive-basque-book' 'texlive-basque-book-doc' 'texlive-basque-date' 'texlive-basque-date-doc' 'texlive-bath-bst' 'texlive-bath-bst-doc' 'texlive-bbcard' 'texlive-bbcard-doc' 'texlive-bbding' 'texlive-bbding-doc' 'texlive-bbm' 'texlive-bbm-doc' 'texlive-bbm-macros' 'texlive-bbm-macros-doc' 'texlive-bbold' 'texlive-bbold-doc' 'texlive-bbold-type1' 'texlive-bbold-type1-doc' 'texlive-bbold-type1-fonts' 'texlive-bchart' 'texlive-bchart-doc' 'texlive-bclogo' 'texlive-bclogo-doc' 'texlive-beamer' 'texlive-beamer-FUBerlin' 'texlive-beamer-doc' 'texlive-beamer-rl' 'texlive-beamer-rl-doc' 'texlive-beamer-tut-pt' 'texlive-beamer-verona' 'texlive-beamer-verona-doc' 'texlive-beamer2thesis' 'texlive-beamer2thesis-doc' 'texlive-beameraudience' 'texlive-beameraudience-doc' 'texlive-beamercolorthemeowl' 'texlive-beamercolorthemeowl-doc' 'texlive-beamerdarkthemes' 'texlive-beamerdarkthemes-doc' 'texlive-beamerposter' 'texlive-beamerposter-doc' 'texlive-beamersubframe' 'texlive-beamersubframe-doc' 'texlive-beamerswitch' 'texlive-beamerswitch-doc' 'texlive-beamertheme-cuerna' 'texlive-beamertheme-cuerna-doc' 'texlive-beamertheme-detlevcm' 'texlive-beamertheme-detlevcm-doc' 'texlive-beamertheme-epyt' 'texlive-beamertheme-epyt-doc' 'texlive-beamertheme-focus' 'texlive-beamertheme-focus-doc' 'texlive-beamertheme-light' 'texlive-beamertheme-light-doc' 'texlive-beamertheme-metropolis' 'texlive-beamertheme-metropolis-doc' 'texlive-beamertheme-npbt' 'texlive-beamertheme-npbt-doc' 'texlive-beamertheme-phnompenh' 'texlive-beamertheme-phnompenh-doc' 'texlive-beamertheme-saintpetersburg' 'texlive-beamertheme-saintpetersburg-doc' 'texlive-beamertheme-upenn-bc' 'texlive-beamertheme-upenn-bc-doc' 'texlive-beamerthemejltree' 'texlive-beamerthemenirma' 'texlive-beamerthemenirma-doc' 'texlive-beebe' 'texlive-begingreek' 'texlive-begingreek-doc' 'texlive-begriff' 'texlive-begriff-doc' 'texlive-beilstein' 'texlive-beilstein-doc' 'texlive-belleek' 'texlive-belleek-doc' 'texlive-belleek-fonts' 'texlive-bengali' 'texlive-bengali-doc' 'texlive-bera' 'texlive-bera-doc' 'texlive-bera-fonts' 'texlive-berenisadf' 'texlive-berenisadf-doc' 'texlive-berenisadf-fonts' 'texlive-besjournals' 'texlive-besjournals-doc' 'texlive-bestpapers' 'texlive-bestpapers-doc' 'texlive-betababel' 'texlive-betababel-doc' 'texlive-beton' 'texlive-beton-doc' 'texlive-beuron' 'texlive-beuron-doc' 'texlive-beuron-fonts' 'texlive-bewerbung' 'texlive-bewerbung-doc' 'texlive-bez123' 'texlive-bez123-doc' 'texlive-bezierplot' 'texlive-bezierplot-doc' 'texlive-bezos' 'texlive-bezos-doc' 'texlive-bgreek' 'texlive-bgreek-doc' 'texlive-bgteubner' 'texlive-bgteubner-doc' 'texlive-bguq' 'texlive-bguq-doc' 'texlive-bguq-fonts' 'texlive-bhcexam' 'texlive-bhcexam-doc' 'texlive-bib-fr' 'texlive-bib-fr-doc' 'texlive-bib2gls' 'texlive-bib2gls-bin' 'texlive-bib2gls-doc' 'texlive-bibarts' 'texlive-bibarts-doc' 'texlive-biber' 'texlive-biber-bin' 'texlive-bibexport' 'texlive-bibexport-bin' 'texlive-bibexport-doc' 'texlive-bibhtml' 'texlive-bibhtml-doc' 'texlive-biblatex' 'texlive-biblatex-abnt' 'texlive-biblatex-abnt-doc' 'texlive-biblatex-anonymous' 'texlive-biblatex-anonymous-doc' 'texlive-biblatex-apa' 'texlive-biblatex-apa-doc' 'texlive-biblatex-archaeology' 'texlive-biblatex-archaeology-doc' 'texlive-biblatex-arthistory-bonn' 'texlive-biblatex-arthistory-bonn-doc' 'texlive-biblatex-bath' 'texlive-biblatex-bath-doc' 'texlive-biblatex-bookinarticle' 'texlive-biblatex-bookinarticle-doc' 'texlive-biblatex-bookinother' 'texlive-biblatex-bookinother-doc' 'texlive-biblatex-bwl' 'texlive-biblatex-bwl-doc' 'texlive-biblatex-caspervector' 'texlive-biblatex-caspervector-doc' 'texlive-biblatex-cheatsheet' 'texlive-biblatex-chem' 'texlive-biblatex-chem-doc' 'texlive-biblatex-chicago' 'texlive-biblatex-chicago-doc' 'texlive-biblatex-claves' 'texlive-biblatex-claves-doc' 'texlive-biblatex-doc' 'texlive-biblatex-dw' 'texlive-biblatex-dw-doc' 'texlive-biblatex-enc' 'texlive-biblatex-enc-doc' 'texlive-biblatex-ext' 'texlive-biblatex-ext-doc' 'texlive-biblatex-fiwi' 'texlive-biblatex-fiwi-doc' 'texlive-biblatex-gb7714-2015' 'texlive-biblatex-gb7714-2015-doc' 'texlive-biblatex-gost' 'texlive-biblatex-gost-doc' 'texlive-biblatex-historian' 'texlive-biblatex-historian-doc' 'texlive-biblatex-ieee' 'texlive-biblatex-ieee-doc' 'texlive-biblatex-ijsra' 'texlive-biblatex-ijsra-doc' 'texlive-biblatex-iso690' 'texlive-biblatex-iso690-doc' 'texlive-biblatex-juradiss' 'texlive-biblatex-juradiss-doc' 'texlive-biblatex-lni' 'texlive-biblatex-lni-doc' 'texlive-biblatex-luh-ipw' 'texlive-biblatex-luh-ipw-doc' 'texlive-biblatex-manuscripts-philology' 'texlive-biblatex-manuscripts-philology-doc' 'texlive-biblatex-mla' 'texlive-biblatex-mla-doc' 'texlive-biblatex-morenames' 'texlive-biblatex-morenames-doc' 'texlive-biblatex-multiple-dm' 'texlive-biblatex-multiple-dm-doc' 'texlive-biblatex-musuos' 'texlive-biblatex-musuos-doc' 'texlive-biblatex-nature' 'texlive-biblatex-nature-doc' 'texlive-biblatex-nejm' 'texlive-biblatex-nejm-doc' 'texlive-biblatex-nottsclassic' 'texlive-biblatex-nottsclassic-doc' 'texlive-biblatex-opcit-booktitle' 'texlive-biblatex-opcit-booktitle-doc' 'texlive-biblatex-oxref' 'texlive-biblatex-oxref-doc' 'texlive-biblatex-philosophy' 'texlive-biblatex-philosophy-doc' 'texlive-biblatex-phys' 'texlive-biblatex-phys-doc' 'texlive-biblatex-publist' 'texlive-biblatex-publist-doc' 'texlive-biblatex-realauthor' 'texlive-biblatex-realauthor-doc' 'texlive-biblatex-sbl' 'texlive-biblatex-sbl-doc' 'texlive-biblatex-science' 'texlive-biblatex-science-doc' 'texlive-biblatex-shortfields' 'texlive-biblatex-shortfields-doc' 'texlive-biblatex-socialscienceshuberlin' 'texlive-biblatex-socialscienceshuberlin-doc' 'texlive-biblatex-source-division' 'texlive-biblatex-source-division-doc' 'texlive-biblatex-subseries' 'texlive-biblatex-subseries-doc' 'texlive-biblatex-swiss-legal' 'texlive-biblatex-swiss-legal-doc' 'texlive-biblatex-trad' 'texlive-biblatex-trad-doc' 'texlive-biblatex-true-citepages-omit' 'texlive-biblatex-true-citepages-omit-doc' 'texlive-bibleref' 'texlive-bibleref-doc' 'texlive-bibleref-french' 'texlive-bibleref-french-doc' 'texlive-bibleref-german' 'texlive-bibleref-german-doc' 'texlive-bibleref-lds' 'texlive-bibleref-lds-doc' 'texlive-bibleref-mouth' 'texlive-bibleref-mouth-doc' 'texlive-bibleref-parse' 'texlive-bibleref-parse-doc' 'texlive-bibletext' 'texlive-bibletext-doc' 'texlive-biblist' 'texlive-biblist-doc' 'texlive-bibtex' 'texlive-bibtex-bin' 'texlive-bibtex-doc' 'texlive-bibtex8' 'texlive-bibtex8-bin' 'texlive-bibtex8-doc' 'texlive-bibtexperllibs' 'texlive-bibtexperllibs-doc' 'texlive-bibtexu' 'texlive-bibtexu-bin' 'texlive-bibtopic' 'texlive-bibtopic-doc' 'texlive-bibtopicprefix' 'texlive-bibtopicprefix-doc' 'texlive-bibunits' 'texlive-bibunits-doc' 'texlive-bidi' 'texlive-bidi-atbegshi' 'texlive-bidi-atbegshi-doc' 'texlive-bidi-doc' 'texlive-bidicontour' 'texlive-bidicontour-doc' 'texlive-bidihl' 'texlive-bidihl-doc' 'texlive-bidipagegrid' 'texlive-bidipagegrid-doc' 'texlive-bidipresentation' 'texlive-bidipresentation-doc' 'texlive-bidishadowtext' 'texlive-bidishadowtext-doc' 'texlive-bigfoot' 'texlive-bigfoot-doc' 'texlive-bigints' 'texlive-bigints-doc' 'texlive-bin-devel' 'texlive-binarytree' 'texlive-binarytree-doc' 'texlive-binomexp' 'texlive-binomexp-doc' 'texlive-biochemistry-colors' 'texlive-biochemistry-colors-doc' 'texlive-biocon' 'texlive-biocon-doc' 'texlive-biolett-bst' 'texlive-biolett-bst-doc' 'texlive-bitelist' 'texlive-bitelist-doc' 'texlive-bitpattern' 'texlive-bitpattern-doc' 'texlive-bizcard' 'texlive-bizcard-doc' 'texlive-blacklettert1' 'texlive-blacklettert1-doc' 'texlive-blindtext' 'texlive-blindtext-doc' 'texlive-blkarray' 'texlive-blkarray-doc' 'texlive-blochsphere' 'texlive-blochsphere-doc' 'texlive-block' 'texlive-block-doc' 'texlive-blockdraw_mp' 'texlive-blockdraw_mp-doc' 'texlive-bloques' 'texlive-bloques-doc' 'texlive-blowup' 'texlive-blowup-doc' 'texlive-blox' 'texlive-blox-doc' 'texlive-bnumexpr' 'texlive-bnumexpr-doc' 'texlive-bodegraph' 'texlive-bodegraph-doc' 'texlive-bohr' 'texlive-bohr-doc' 'texlive-boisik' 'texlive-boisik-doc' 'texlive-boites' 'texlive-boites-doc' 'texlive-bold-extra' 'texlive-bold-extra-doc' 'texlive-boldtensors' 'texlive-boldtensors-doc' 'texlive-bondgraph' 'texlive-bondgraph-doc' 'texlive-bondgraphs' 'texlive-bondgraphs-doc' 'texlive-bookcover' 'texlive-bookcover-doc' 'texlive-bookdb' 'texlive-bookdb-doc' 'texlive-bookest' 'texlive-bookest-doc' 'texlive-bookhands' 'texlive-bookhands-doc' 'texlive-bookhands-fonts' 'texlive-booklet' 'texlive-booklet-doc' 'texlive-bookman' 'texlive-bookman-fonts' 'texlive-booktabs' 'texlive-booktabs-de' 'texlive-booktabs-doc' 'texlive-booktabs-fr' 'texlive-boolexpr' 'texlive-boolexpr-doc' 'texlive-boondox' 'texlive-boondox-doc' 'texlive-boondox-fonts' 'texlive-bophook' 'texlive-bophook-doc' 'texlive-borceux' 'texlive-borceux-doc' 'texlive-bosisio' 'texlive-bosisio-doc' 'texlive-boxedminipage' 'texlive-boxedminipage-doc' 'texlive-boxedminipage2e' 'texlive-boxedminipage2e-doc' 'texlive-boxhandler' 'texlive-boxhandler-doc' 'texlive-bpchem' 'texlive-bpchem-doc' 'texlive-bpolynomial' 'texlive-bpolynomial-doc' 'texlive-br-lex' 'texlive-br-lex-doc' 'texlive-bracketkey' 'texlive-bracketkey-doc' 'texlive-braids' 'texlive-braids-doc' 'texlive-braille' 'texlive-braille-doc' 'texlive-braket' 'texlive-braket-doc' 'texlive-brandeis-dissertation' 'texlive-brandeis-dissertation-doc' 'texlive-brandeis-problemset' 'texlive-brandeis-problemset-doc' 'texlive-breakcites' 'texlive-breakcites-doc' 'texlive-breakurl' 'texlive-breakurl-doc' 'texlive-bredzenie' 'texlive-bredzenie-doc' 'texlive-breqn' 'texlive-breqn-doc' 'texlive-bropd' 'texlive-bropd-doc' 'texlive-brushscr' 'texlive-brushscr-doc' 'texlive-brushscr-fonts' 'texlive-bullcntr' 'texlive-bullcntr-doc' 'texlive-bundledoc' 'texlive-bundledoc-bin' 'texlive-bundledoc-doc' 'texlive-burmese' 'texlive-burmese-doc' 'texlive-burmese-fonts' 'texlive-businesscard-qrcode' 'texlive-businesscard-qrcode-doc' 'texlive-bussproofs' 'texlive-bussproofs-doc' 'texlive-bussproofs-extra' 'texlive-bussproofs-extra-doc' 'texlive-bxbase' 'texlive-bxbase-doc' 'texlive-bxcalc' 'texlive-bxcalc-doc' 'texlive-bxcjkjatype' 'texlive-bxcjkjatype-doc' 'texlive-bxdpx-beamer' 'texlive-bxdpx-beamer-doc' 'texlive-bxdvidriver' 'texlive-bxdvidriver-doc' 'texlive-bxeepic' 'texlive-bxeepic-doc' 'texlive-bxenclose' 'texlive-bxenclose-doc' 'texlive-bxjaholiday' 'texlive-bxjaholiday-doc' 'texlive-bxjalipsum' 'texlive-bxjalipsum-doc' 'texlive-bxjaprnind' 'texlive-bxjaprnind-doc' 'texlive-bxjscls' 'texlive-bxjscls-doc' 'texlive-bxnewfont' 'texlive-bxnewfont-doc' 'texlive-bxorigcapt' 'texlive-bxorigcapt-doc' 'texlive-bxpapersize' 'texlive-bxpapersize-doc' 'texlive-bxpdfver' 'texlive-bxpdfver-doc' 'texlive-bxtexlogo' 'texlive-bxtexlogo-doc' 'texlive-bxwareki' 'texlive-bxwareki-doc' 'texlive-bytefield' 'texlive-bytefield-doc' 'texlive-c-pascal' 'texlive-c-pascal-doc' 'texlive-c90' 'texlive-c90-doc' 'texlive-cabin' 'texlive-cabin-doc' 'texlive-cabin-fonts' 'texlive-cachepic' 'texlive-cachepic-bin' 'texlive-cachepic-doc' 'texlive-caladea' 'texlive-caladea-doc' 'texlive-caladea-fonts' 'texlive-calcage' 'texlive-calcage-doc' 'texlive-calctab' 'texlive-calctab-doc' 'texlive-calculation' 'texlive-calculation-doc' 'texlive-calculator' 'texlive-calculator-doc' 'texlive-calligra' 'texlive-calligra-doc' 'texlive-calligra-type1' 'texlive-calligra-type1-doc' 'texlive-calligra-type1-fonts' 'texlive-callouts' 'texlive-callouts-doc' 'texlive-calrsfs' 'texlive-calrsfs-doc' 'texlive-cals' 'texlive-cals-doc' 'texlive-calxxxx-yyyy' 'texlive-calxxxx-yyyy-doc' 'texlive-cancel' 'texlive-cancel-doc' 'texlive-canoniclayout' 'texlive-canoniclayout-doc' 'texlive-cantarell' 'texlive-cantarell-doc' 'texlive-cantarell-fonts' 'texlive-capt-of' 'texlive-capt-of-doc' 'texlive-captcont' 'texlive-captcont-doc' 'texlive-captdef' 'texlive-captdef-doc' 'texlive-caption' 'texlive-caption-doc' 'texlive-carbohydrates' 'texlive-carbohydrates-doc' 'texlive-carlisle' 'texlive-carlisle-doc' 'texlive-carlito' 'texlive-carlito-doc' 'texlive-carlito-fonts' 'texlive-carolmin-ps' 'texlive-carolmin-ps-doc' 'texlive-carolmin-ps-fonts' 'texlive-cascade' 'texlive-cascade-doc' 'texlive-cascadilla' 'texlive-cascadilla-doc' 'texlive-cases' 'texlive-cases-doc' 'texlive-casyl' 'texlive-casyl-doc' 'texlive-catchfilebetweentags' 'texlive-catchfilebetweentags-doc' 'texlive-catcodes' 'texlive-catcodes-doc' 'texlive-catechis' 'texlive-catechis-doc' 'texlive-catoptions' 'texlive-catoptions-doc' 'texlive-cbcoptic' 'texlive-cbcoptic-doc' 'texlive-cbcoptic-fonts' 'texlive-cbfonts' 'texlive-cbfonts-doc' 'texlive-cbfonts-fd' 'texlive-cbfonts-fd-doc' 'texlive-cbfonts-fonts' 'texlive-cc-pl' 'texlive-cc-pl-doc' 'texlive-cc-pl-fonts' 'texlive-ccaption' 'texlive-ccaption-doc' 'texlive-ccfonts' 'texlive-ccfonts-doc' 'texlive-ccicons' 'texlive-ccicons-doc' 'texlive-ccicons-fonts' 'texlive-cclicenses' 'texlive-cclicenses-doc' 'texlive-cd' 'texlive-cd-cover' 'texlive-cd-cover-doc' 'texlive-cd-doc' 'texlive-cdpbundl' 'texlive-cdpbundl-doc' 'texlive-cell' 'texlive-cell-doc' 'texlive-cellprops' 'texlive-cellprops-doc' 'texlive-cellspace' 'texlive-cellspace-doc' 'texlive-celtic' 'texlive-celtic-doc' 'texlive-censor' 'texlive-censor-doc' 'texlive-cesenaexam' 'texlive-cesenaexam-doc' 'texlive-cfr-initials' 'texlive-cfr-initials-doc' 'texlive-cfr-lm' 'texlive-cfr-lm-doc' 'texlive-changebar' 'texlive-changebar-doc' 'texlive-changelayout' 'texlive-changelayout-doc' 'texlive-changelog' 'texlive-changelog-doc' 'texlive-changepage' 'texlive-changepage-doc' 'texlive-changes' 'texlive-changes-doc' 'texlive-chappg' 'texlive-chappg-doc' 'texlive-chapterfolder' 'texlive-chapterfolder-doc' 'texlive-charter' 'texlive-charter-doc' 'texlive-charter-fonts' 'texlive-chbibref' 'texlive-chbibref-doc' 'texlive-cheatsheet' 'texlive-cheatsheet-doc' 'texlive-checkcites' 'texlive-checkcites-bin' 'texlive-checkcites-doc' 'texlive-checklistings' 'texlive-checklistings-bin' 'texlive-checklistings-doc' 'texlive-chem-journal' 'texlive-chemarrow' 'texlive-chemarrow-doc' 'texlive-chemarrow-fonts' 'texlive-chembst' 'texlive-chembst-doc' 'texlive-chemcompounds' 'texlive-chemcompounds-doc' 'texlive-chemcono' 'texlive-chemcono-doc' 'texlive-chemexec' 'texlive-chemexec-doc' 'texlive-chemfig' 'texlive-chemfig-doc' 'texlive-chemformula' 'texlive-chemformula-doc' 'texlive-chemgreek' 'texlive-chemgreek-doc' 'texlive-chemmacros' 'texlive-chemmacros-doc' 'texlive-chemnum' 'texlive-chemnum-doc' 'texlive-chemschemex' 'texlive-chemschemex-doc' 'texlive-chemsec' 'texlive-chemsec-doc' 'texlive-chemstyle' 'texlive-chemstyle-doc' 'texlive-cherokee' 'texlive-cherokee-doc' 'texlive-chess' 'texlive-chess-doc' 'texlive-chess-problem-diagrams' 'texlive-chess-problem-diagrams-doc' 'texlive-chessboard' 'texlive-chessboard-doc' 'texlive-chessfss' 'texlive-chessfss-doc' 'texlive-chet' 'texlive-chet-doc' 'texlive-chextras' 'texlive-chextras-doc' 'texlive-chicago' 'texlive-chicago-annote' 'texlive-chicago-annote-doc' 'texlive-chickenize' 'texlive-chickenize-doc' 'texlive-childdoc' 'texlive-childdoc-doc' 'texlive-chivo' 'texlive-chivo-doc' 'texlive-chivo-fonts' 'texlive-chkfloat' 'texlive-chkfloat-doc' 'texlive-chktex' 'texlive-chktex-bin' 'texlive-chktex-doc' 'texlive-chletter' 'texlive-chletter-doc' 'texlive-chngcntr' 'texlive-chngcntr-doc' 'texlive-chordbars' 'texlive-chordbars-doc' 'texlive-chronology' 'texlive-chronology-doc' 'texlive-chronosys' 'texlive-chronosys-doc' 'texlive-chs-physics-report' 'texlive-chs-physics-report-doc' 'texlive-chscite' 'texlive-chscite-doc' 'texlive-churchslavonic' 'texlive-churchslavonic-doc' 'texlive-cinzel' 'texlive-cinzel-doc' 'texlive-cinzel-fonts' 'texlive-circ' 'texlive-circ-doc' 'texlive-circuitikz' 'texlive-circuitikz-doc' 'texlive-cite' 'texlive-cite-doc' 'texlive-citeall' 'texlive-citeall-doc' 'texlive-citeref' 'texlive-citeref-doc' 'texlive-cje' 'texlive-cje-doc' 'texlive-cjhebrew' 'texlive-cjhebrew-doc' 'texlive-cjhebrew-fonts' 'texlive-cjk' 'texlive-cjk-doc' 'texlive-cjk-gs-integrate' 'texlive-cjk-gs-integrate-bin' 'texlive-cjk-gs-integrate-doc' 'texlive-cjk-ko' 'texlive-cjk-ko-doc' 'texlive-cjk-latex-extras' 'texlive-cjkpunct' 'texlive-cjkpunct-doc' 'texlive-cjkutils' 'texlive-cjkutils-bin' 'texlive-cjkutils-doc' 'texlive-classics' 'texlive-classics-doc' 'texlive-classicthesis' 'texlive-classicthesis-doc' 'texlive-classpack' 'texlive-classpack-doc' 'texlive-cleanthesis' 'texlive-cleanthesis-doc' 'texlive-clearsans' 'texlive-clearsans-doc' 'texlive-clearsans-fonts' 'texlive-clefval' 'texlive-clefval-doc' 'texlive-cleveref' 'texlive-cleveref-doc' 'texlive-clipboard' 'texlive-clipboard-doc' 'texlive-clock' 'texlive-clock-doc' 'texlive-cloze' 'texlive-cloze-doc' 'texlive-clrdblpg' 'texlive-clrdblpg-doc' 'texlive-clrscode' 'texlive-clrscode-doc' 'texlive-clrscode3e' 'texlive-clrscode3e-doc' 'texlive-clrstrip' 'texlive-clrstrip-doc' 'texlive-cluttex' 'texlive-cluttex-bin' 'texlive-cluttex-doc' 'texlive-cm' 'texlive-cm-doc' 'texlive-cm-lgc' 'texlive-cm-lgc-doc' 'texlive-cm-lgc-fonts' 'texlive-cm-mf-extra-bold' 'texlive-cm-super' 'texlive-cm-super-doc' 'texlive-cm-super-fonts' 'texlive-cm-unicode' 'texlive-cm-unicode-doc' 'texlive-cm-unicode-fonts' 'texlive-cmap' 'texlive-cmap-doc' 'texlive-cmarrows' 'texlive-cmarrows-doc' 'texlive-cmbright' 'texlive-cmbright-doc' 'texlive-cmcyr' 'texlive-cmcyr-doc' 'texlive-cmcyr-fonts' 'texlive-cmdstring' 'texlive-cmdstring-doc' 'texlive-cmdtrack' 'texlive-cmdtrack-doc' 'texlive-cmexb' 'texlive-cmexb-doc' 'texlive-cmexb-fonts' 'texlive-cmextra' 'texlive-cmll' 'texlive-cmll-doc' 'texlive-cmll-fonts' 'texlive-cmpica' 'texlive-cmpica-doc' 'texlive-cmpj' 'texlive-cmpj-doc' 'texlive-cmsd' 'texlive-cmsd-doc' 'texlive-cmsrb' 'texlive-cmsrb-doc' 'texlive-cmsrb-fonts' 'texlive-cmtiup' 'texlive-cmtiup-doc' 'texlive-cnbwp' 'texlive-cnbwp-doc' 'texlive-cnltx' 'texlive-cnltx-doc' 'texlive-cns' 'texlive-cns-doc' 'texlive-cntformats' 'texlive-cntformats-doc' 'texlive-cntperchap' 'texlive-cntperchap-doc' 'texlive-cochineal' 'texlive-cochineal-doc' 'texlive-cochineal-fonts' 'texlive-codedoc' 'texlive-codedoc-doc' 'texlive-codepage' 'texlive-codepage-doc' 'texlive-codesection' 'texlive-codesection-doc' 'texlive-codicefiscaleitaliano' 'texlive-codicefiscaleitaliano-doc' 'texlive-coelacanth' 'texlive-coelacanth-doc' 'texlive-coelacanth-fonts' 'texlive-collcell' 'texlive-collcell-doc' 'texlive-collectbox' 'texlive-collectbox-doc' 'texlive-collection-basic' 'texlive-collection-bibtexextra' 'texlive-collection-binextra' 'texlive-collection-context' 'texlive-collection-fontsextra' 'texlive-collection-fontsrecommended' 'texlive-collection-fontutils' 'texlive-collection-formatsextra' 'texlive-collection-games' 'texlive-collection-humanities' 'texlive-collection-langarabic' 'texlive-collection-langchinese' 'texlive-collection-langcjk' 'texlive-collection-langcyrillic' 'texlive-collection-langczechslovak' 'texlive-collection-langenglish' 'texlive-collection-langeuropean' 'texlive-collection-langfrench' 'texlive-collection-langgerman' 'texlive-collection-langgreek' 'texlive-collection-langitalian' 'texlive-collection-langjapanese' 'texlive-collection-langkorean' 'texlive-collection-langother' 'texlive-collection-langpolish' 'texlive-collection-langportuguese' 'texlive-collection-langspanish' 'texlive-collection-latex' 'texlive-collection-latexextra' 'texlive-collection-latexrecommended' 'texlive-collection-luatex' 'texlive-collection-mathscience' 'texlive-collection-metapost' 'texlive-collection-music' 'texlive-collection-pictures' 'texlive-collection-plaingeneric' 'texlive-collection-pstricks' 'texlive-collection-publishers' 'texlive-collection-xetex' 'texlive-collref' 'texlive-collref-doc' 'texlive-colophon' 'texlive-colophon-doc' 'texlive-colordoc' 'texlive-colordoc-doc' 'texlive-colorinfo' 'texlive-colorinfo-doc' 'texlive-coloring' 'texlive-coloring-doc' 'texlive-colorprofiles' 'texlive-colorprofiles-doc' 'texlive-colorsep' 'texlive-colorspace' 'texlive-colorspace-doc' 'texlive-colortab' 'texlive-colortab-doc' 'texlive-colortbl' 'texlive-colortbl-doc' 'texlive-colorwav' 'texlive-colorwav-doc' 'texlive-colorweb' 'texlive-colorweb-doc' 'texlive-colourchange' 'texlive-colourchange-doc' 'texlive-combelow' 'texlive-combelow-doc' 'texlive-combine' 'texlive-combine-doc' 'texlive-combinedgraphics' 'texlive-combinedgraphics-doc' 'texlive-combofont' 'texlive-combofont-doc' 'texlive-comfortaa' 'texlive-comfortaa-doc' 'texlive-comfortaa-fonts' 'texlive-comicneue' 'texlive-comicneue-doc' 'texlive-comicneue-fonts' 'texlive-comma' 'texlive-comma-doc' 'texlive-commado' 'texlive-commado-doc' 'texlive-commath' 'texlive-commath-doc' 'texlive-commedit' 'texlive-commedit-doc' 'texlive-comment' 'texlive-comment-doc' 'texlive-compactbib' 'texlive-competences' 'texlive-competences-doc' 'texlive-complexity' 'texlive-complexity-doc' 'texlive-components-of-TeX' 'texlive-comprehensive' 'texlive-computational-complexity' 'texlive-computational-complexity-doc' 'texlive-concepts' 'texlive-concepts-doc' 'texlive-concmath' 'texlive-concmath-doc' 'texlive-concmath-fonts' 'texlive-concmath-fonts-doc' 'texlive-concprog' 'texlive-concprog-doc' 'texlive-concrete' 'texlive-concrete-doc' 'texlive-confproc' 'texlive-confproc-doc' 'texlive-constants' 'texlive-constants-doc' 'texlive-conteq' 'texlive-conteq-doc' 'texlive-context' 'texlive-context-account' 'texlive-context-account-doc' 'texlive-context-algorithmic' 'texlive-context-algorithmic-doc' 'texlive-context-animation' 'texlive-context-animation-doc' 'texlive-context-annotation' 'texlive-context-annotation-doc' 'texlive-context-bin' 'texlive-context-bnf' 'texlive-context-bnf-doc' 'texlive-context-chromato' 'texlive-context-chromato-doc' 'texlive-context-cmscbf' 'texlive-context-cmscbf-doc' 'texlive-context-cmttbf' 'texlive-context-cmttbf-doc' 'texlive-context-construction-plan' 'texlive-context-construction-plan-doc' 'texlive-context-cyrillicnumbers' 'texlive-context-cyrillicnumbers-doc' 'texlive-context-degrade' 'texlive-context-degrade-doc' 'texlive-context-doc' 'texlive-context-fancybreak' 'texlive-context-fancybreak-doc' 'texlive-context-filter' 'texlive-context-filter-doc' 'texlive-context-fonts' 'texlive-context-french' 'texlive-context-french-doc' 'texlive-context-fullpage' 'texlive-context-fullpage-doc' 'texlive-context-gantt' 'texlive-context-gantt-doc' 'texlive-context-gnuplot' 'texlive-context-gnuplot-doc' 'texlive-context-handlecsv' 'texlive-context-handlecsv-doc' 'texlive-context-inifile' 'texlive-context-inifile-doc' 'texlive-context-layout' 'texlive-context-layout-doc' 'texlive-context-letter' 'texlive-context-letter-doc' 'texlive-context-lettrine' 'texlive-context-lettrine-doc' 'texlive-context-mathsets' 'texlive-context-mathsets-doc' 'texlive-context-notes-zh-cn' 'texlive-context-rst' 'texlive-context-rst-doc' 'texlive-context-ruby' 'texlive-context-ruby-doc' 'texlive-context-simplefonts' 'texlive-context-simplefonts-doc' 'texlive-context-simpleslides' 'texlive-context-simpleslides-doc' 'texlive-context-title' 'texlive-context-title-doc' 'texlive-context-transliterator' 'texlive-context-transliterator-doc' 'texlive-context-typearea' 'texlive-context-typearea-doc' 'texlive-context-typescripts' 'texlive-context-typescripts-doc' 'texlive-context-vim' 'texlive-context-vim-doc' 'texlive-context-visualcounter' 'texlive-context-visualcounter-doc' 'texlive-continue' 'texlive-continue-doc' 'texlive-contour' 'texlive-contour-doc' 'texlive-contracard' 'texlive-contracard-doc' 'texlive-conv-xkv' 'texlive-conv-xkv-doc' 'texlive-convbkmk' 'texlive-convbkmk-bin' 'texlive-convbkmk-doc' 'texlive-cooking' 'texlive-cooking-doc' 'texlive-cooking-units' 'texlive-cooking-units-doc' 'texlive-cookingsymbols' 'texlive-cookingsymbols-doc' 'texlive-cool' 'texlive-cool-doc' 'texlive-coollist' 'texlive-coollist-doc' 'texlive-coolstr' 'texlive-coolstr-doc' 'texlive-coolthms' 'texlive-coolthms-doc' 'texlive-cooltooltips' 'texlive-cooltooltips-doc' 'texlive-coordsys' 'texlive-coordsys-doc' 'texlive-copyedit' 'texlive-copyedit-doc' 'texlive-copyrightbox' 'texlive-copyrightbox-doc' 'texlive-cormorantgaramond' 'texlive-cormorantgaramond-doc' 'texlive-cormorantgaramond-fonts' 'texlive-correctmathalign' 'texlive-correctmathalign-doc' 'texlive-coseoul' 'texlive-coseoul-doc' 'texlive-countriesofeurope' 'texlive-countriesofeurope-doc' 'texlive-countriesofeurope-fonts' 'texlive-counttexruns' 'texlive-counttexruns-doc' 'texlive-courier' 'texlive-courier-fonts' 'texlive-courier-scaled' 'texlive-courier-scaled-doc' 'texlive-courseoutline' 'texlive-courseoutline-doc' 'texlive-coursepaper' 'texlive-coursepaper-doc' 'texlive-coverpage' 'texlive-coverpage-doc' 'texlive-covington' 'texlive-covington-doc' 'texlive-cprotect' 'texlive-cprotect-doc' 'texlive-cqubeamer' 'texlive-cqubeamer-doc' 'texlive-cquthesis' 'texlive-cquthesis-doc' 'texlive-crbox' 'texlive-crbox-doc' 'texlive-crimson' 'texlive-crimson-doc' 'texlive-crimson-fonts' 'texlive-crimsonpro' 'texlive-crimsonpro-doc' 'texlive-crimsonpro-fonts' 'texlive-crop' 'texlive-crop-doc' 'texlive-crossreference' 'texlive-crossreference-doc' 'texlive-crossreftools' 'texlive-crossreftools-doc' 'texlive-crossrefware' 'texlive-crossrefware-bin' 'texlive-crossrefware-doc' 'texlive-crossword' 'texlive-crossword-doc' 'texlive-crosswrd' 'texlive-crosswrd-doc' 'texlive-cryptocode' 'texlive-cryptocode-doc' 'texlive-cryst' 'texlive-cryst-doc' 'texlive-cryst-fonts' 'texlive-cs' 'texlive-cs-fonts' 'texlive-csbulletin' 'texlive-csbulletin-doc' 'texlive-cslatex' 'texlive-cslatex-bin' 'texlive-cslatex-doc' 'texlive-csplain' 'texlive-csplain-bin' 'texlive-csquotes' 'texlive-csquotes-de' 'texlive-csquotes-doc' 'texlive-css-colors' 'texlive-css-colors-doc' 'texlive-cstex' 'texlive-cstypo' 'texlive-cstypo-doc' 'texlive-csvsimple' 'texlive-csvsimple-doc' 'texlive-ctable' 'texlive-ctable-doc' 'texlive-ctablestack' 'texlive-ctablestack-doc' 'texlive-ctan-o-mat' 'texlive-ctan-o-mat-bin' 'texlive-ctan-o-mat-doc' 'texlive-ctan_chk' 'texlive-ctanbib' 'texlive-ctanbib-bin' 'texlive-ctanbib-doc' 'texlive-ctanify' 'texlive-ctanify-bin' 'texlive-ctanify-doc' 'texlive-ctanupload' 'texlive-ctanupload-bin' 'texlive-ctanupload-doc' 'texlive-ctex' 'texlive-ctex-doc' 'texlive-ctex-faq' 'texlive-ctib' 'texlive-ctib-doc' 'texlive-ctie' 'texlive-ctie-bin' 'texlive-cuisine' 'texlive-cuisine-doc' 'texlive-cuprum' 'texlive-cuprum-doc' 'texlive-cuprum-fonts' 'texlive-currency' 'texlive-currency-doc' 'texlive-currfile' 'texlive-currfile-doc' 'texlive-currvita' 'texlive-currvita-doc' 'texlive-cursolatex' 'texlive-curve' 'texlive-curve-doc' 'texlive-curve2e' 'texlive-curve2e-doc' 'texlive-curves' 'texlive-curves-doc' 'texlive-custom-bib' 'texlive-custom-bib-doc' 'texlive-cutwin' 'texlive-cutwin-doc' 'texlive-cv' 'texlive-cv-doc' 'texlive-cv4tw' 'texlive-cv4tw-doc' 'texlive-cweb' 'texlive-cweb-bin' 'texlive-cweb-doc' 'texlive-cweb-latex' 'texlive-cweb-latex-doc' 'texlive-cweb-old' 'texlive-cyber' 'texlive-cyber-doc' 'texlive-cybercic' 'texlive-cybercic-doc' 'texlive-cyklop' 'texlive-cyklop-doc' 'texlive-cyklop-fonts' 'texlive-cyrillic' 'texlive-cyrillic-bin' 'texlive-cyrillic-bin-bin' 'texlive-cyrillic-bin-doc' 'texlive-cyrillic-doc' 'texlive-cyrplain' 'texlive-dad' 'texlive-dad-doc' 'texlive-dad-fonts' 'texlive-dancers' 'texlive-dantelogo' 'texlive-dantelogo-doc' 'texlive-dantelogo-fonts' 'texlive-dashbox' 'texlive-dashbox-doc' 'texlive-dashrule' 'texlive-dashrule-doc' 'texlive-dashundergaps' 'texlive-dashundergaps-doc' 'texlive-dataref' 'texlive-dataref-doc' 'texlive-datatool' 'texlive-datatool-doc' 'texlive-dateiliste' 'texlive-dateiliste-doc' 'texlive-datenumber' 'texlive-datenumber-doc' 'texlive-datetime' 'texlive-datetime-doc' 'texlive-datetime2' 'texlive-datetime2-bahasai' 'texlive-datetime2-bahasai-doc' 'texlive-datetime2-basque' 'texlive-datetime2-basque-doc' 'texlive-datetime2-breton' 'texlive-datetime2-breton-doc' 'texlive-datetime2-bulgarian' 'texlive-datetime2-bulgarian-doc' 'texlive-datetime2-catalan' 'texlive-datetime2-catalan-doc' 'texlive-datetime2-croatian' 'texlive-datetime2-croatian-doc' 'texlive-datetime2-czech' 'texlive-datetime2-czech-doc' 'texlive-datetime2-danish' 'texlive-datetime2-danish-doc' 'texlive-datetime2-doc' 'texlive-datetime2-dutch' 'texlive-datetime2-dutch-doc' 'texlive-datetime2-en-fulltext' 'texlive-datetime2-en-fulltext-doc' 'texlive-datetime2-english' 'texlive-datetime2-english-doc' 'texlive-datetime2-esperanto' 'texlive-datetime2-esperanto-doc' 'texlive-datetime2-estonian' 'texlive-datetime2-estonian-doc' 'texlive-datetime2-finnish' 'texlive-datetime2-finnish-doc' 'texlive-datetime2-french' 'texlive-datetime2-french-doc' 'texlive-datetime2-galician' 'texlive-datetime2-galician-doc' 'texlive-datetime2-german' 'texlive-datetime2-german-doc' 'texlive-datetime2-greek' 'texlive-datetime2-greek-doc' 'texlive-datetime2-hebrew' 'texlive-datetime2-hebrew-doc' 'texlive-datetime2-icelandic' 'texlive-datetime2-icelandic-doc' 'texlive-datetime2-irish' 'texlive-datetime2-irish-doc' 'texlive-datetime2-it-fulltext' 'texlive-datetime2-it-fulltext-doc' 'texlive-datetime2-italian' 'texlive-datetime2-italian-doc' 'texlive-datetime2-latin' 'texlive-datetime2-latin-doc' 'texlive-datetime2-lsorbian' 'texlive-datetime2-lsorbian-doc' 'texlive-datetime2-magyar' 'texlive-datetime2-magyar-doc' 'texlive-datetime2-norsk' 'texlive-datetime2-norsk-doc' 'texlive-datetime2-polish' 'texlive-datetime2-polish-doc' 'texlive-datetime2-portuges' 'texlive-datetime2-portuges-doc' 'texlive-datetime2-romanian' 'texlive-datetime2-romanian-doc' 'texlive-datetime2-russian' 'texlive-datetime2-russian-doc' 'texlive-datetime2-samin' 'texlive-datetime2-samin-doc' 'texlive-datetime2-scottish' 'texlive-datetime2-scottish-doc' 'texlive-datetime2-serbian' 'texlive-datetime2-serbian-doc' 'texlive-datetime2-slovak' 'texlive-datetime2-slovak-doc' 'texlive-datetime2-slovene' 'texlive-datetime2-slovene-doc' 'texlive-datetime2-spanish' 'texlive-datetime2-spanish-doc' 'texlive-datetime2-swedish' 'texlive-datetime2-swedish-doc' 'texlive-datetime2-turkish' 'texlive-datetime2-turkish-doc' 'texlive-datetime2-ukrainian' 'texlive-datetime2-ukrainian-doc' 'texlive-datetime2-usorbian' 'texlive-datetime2-usorbian-doc' 'texlive-datetime2-welsh' 'texlive-datetime2-welsh-doc' 'texlive-dblfloatfix' 'texlive-dblfloatfix-doc' 'texlive-dccpaper' 'texlive-dccpaper-doc' 'texlive-dcpic' 'texlive-dcpic-doc' 'texlive-de-macro' 'texlive-de-macro-bin' 'texlive-de-macro-doc' 'texlive-decimal' 'texlive-decimal-doc' 'texlive-decorule' 'texlive-decorule-doc' 'texlive-dehyph' 'texlive-dehyph-exptl' 'texlive-dehyph-exptl-doc' 'texlive-dejavu' 'texlive-dejavu-doc' 'texlive-dejavu-fonts' 'texlive-dejavu-otf' 'texlive-dejavu-otf-doc' 'texlive-delim' 'texlive-delim-doc' 'texlive-delimseasy' 'texlive-delimseasy-doc' 'texlive-delimset' 'texlive-delimset-doc' 'texlive-delimtxt' 'texlive-delimtxt-doc' 'texlive-denisbdoc' 'texlive-denisbdoc-doc' 'texlive-detex' 'texlive-detex-bin' 'texlive-devel' 'texlive-dhua' 'texlive-dhua-doc' 'texlive-diadia' 'texlive-diadia-bin' 'texlive-diadia-doc' 'texlive-diagbox' 'texlive-diagbox-doc' 'texlive-diagmac2' 'texlive-diagmac2-doc' 'texlive-diagnose' 'texlive-diagnose-doc' 'texlive-dialogl' 'texlive-dialogl-doc' 'texlive-dice' 'texlive-dice-doc' 'texlive-dichokey' 'texlive-dichokey-doc' 'texlive-dickimaw' 'texlive-dictsym' 'texlive-dictsym-doc' 'texlive-dictsym-fonts' 'texlive-diffcoeff' 'texlive-diffcoeff-doc' 'texlive-digiconfigs' 'texlive-digiconfigs-doc' 'texlive-dijkstra' 'texlive-dijkstra-doc' 'texlive-din1505' 'texlive-din1505-doc' 'texlive-dinat' 'texlive-dinat-doc' 'texlive-dinbrief' 'texlive-dinbrief-doc' 'texlive-dingbat' 'texlive-dingbat-doc' 'texlive-directory' 'texlive-directory-doc' 'texlive-dirtree' 'texlive-dirtree-doc' 'texlive-dirtytalk' 'texlive-dirtytalk-doc' 'texlive-disser' 'texlive-disser-doc' 'texlive-ditaa' 'texlive-ditaa-doc' 'texlive-dithesis' 'texlive-dithesis-doc' 'texlive-dk-bib' 'texlive-dk-bib-doc' 'texlive-dlfltxb' 'texlive-dlfltxb-doc' 'texlive-dnaseq' 'texlive-dnaseq-doc' 'texlive-dnp' 'texlive-doc-pictex' 'texlive-docbytex' 'texlive-docbytex-doc' 'texlive-doclicense' 'texlive-doclicense-doc' 'texlive-docmfp' 'texlive-docmfp-doc' 'texlive-docmute' 'texlive-docmute-doc' 'texlive-docsurvey' 'texlive-doctools' 'texlive-doctools-doc' 'texlive-documentation' 'texlive-documentation-doc' 'texlive-doi' 'texlive-doi-doc' 'texlive-doipubmed' 'texlive-doipubmed-doc' 'texlive-dosepsbin' 'texlive-dosepsbin-bin' 'texlive-dosepsbin-doc' 'texlive-dot2texi' 'texlive-dot2texi-doc' 'texlive-dotarrow' 'texlive-dotarrow-doc' 'texlive-dotseqn' 'texlive-dotseqn-doc' 'texlive-dottex' 'texlive-dottex-doc' 'texlive-doublestroke' 'texlive-doublestroke-doc' 'texlive-doublestroke-fonts' 'texlive-dowith' 'texlive-dowith-doc' 'texlive-download' 'texlive-download-doc' 'texlive-dox' 'texlive-dox-doc' 'texlive-dozenal' 'texlive-dozenal-doc' 'texlive-dozenal-fonts' 'texlive-dpfloat' 'texlive-dpfloat-doc' 'texlive-dprogress' 'texlive-dprogress-doc' 'texlive-drac' 'texlive-drac-doc' 'texlive-draftcopy' 'texlive-draftcopy-doc' 'texlive-draftfigure' 'texlive-draftfigure-doc' 'texlive-draftwatermark' 'texlive-draftwatermark-doc' 'texlive-dramatist' 'texlive-dramatist-doc' 'texlive-dratex' 'texlive-dratex-doc' 'texlive-drawmatrix' 'texlive-drawmatrix-doc' 'texlive-drawstack' 'texlive-drawstack-doc' 'texlive-drm' 'texlive-drm-doc' 'texlive-drm-fonts' 'texlive-droid' 'texlive-droid-doc' 'texlive-droid-fonts' 'texlive-droit-fr' 'texlive-droit-fr-doc' 'texlive-drs' 'texlive-drs-doc' 'texlive-drv' 'texlive-drv-doc' 'texlive-dsptricks' 'texlive-dsptricks-doc' 'texlive-dsserif' 'texlive-dsserif-doc' 'texlive-dsserif-fonts' 'texlive-dtk' 'texlive-dtk-doc' 'texlive-dtl' 'texlive-dtl-bin' 'texlive-dtxdescribe' 'texlive-dtxdescribe-doc' 'texlive-dtxgallery' 'texlive-dtxgen' 'texlive-dtxgen-bin' 'texlive-dtxgen-doc' 'texlive-dtxtut' 'texlive-ducksay' 'texlive-ducksay-doc' 'texlive-duckuments' 'texlive-duckuments-doc' 'texlive-duerer' 'texlive-duerer-doc' 'texlive-duerer-latex' 'texlive-duerer-latex-doc' 'texlive-duotenzor' 'texlive-duotenzor-doc' 'texlive-dutchcal' 'texlive-dutchcal-doc' 'texlive-dutchcal-fonts' 'texlive-dvdcoll' 'texlive-dvdcoll-doc' 'texlive-dvgloss' 'texlive-dvgloss-doc' 'texlive-dviasm' 'texlive-dviasm-bin' 'texlive-dviasm-doc' 'texlive-dvicopy' 'texlive-dvicopy-bin' 'texlive-dvidvi' 'texlive-dvidvi-bin' 'texlive-dviincl' 'texlive-dviincl-doc' 'texlive-dviinfox' 'texlive-dviinfox-bin' 'texlive-dviinfox-doc' 'texlive-dviljk' 'texlive-dviljk-bin' 'texlive-dviout-util' 'texlive-dviout-util-bin' 'texlive-dvipdfmx' 'texlive-dvipdfmx-bin' 'texlive-dvipdfmx-doc' 'texlive-dvipng' 'texlive-dvipng-bin' 'texlive-dvipos' 'texlive-dvipos-bin' 'texlive-dvips' 'texlive-dvips-bin' 'texlive-dvips-doc' 'texlive-dvipsconfig' 'texlive-dvisvgm' 'texlive-dvisvgm-bin' 'texlive-dynamicnumber' 'texlive-dynamicnumber-doc' 'texlive-dynblocks' 'texlive-dynblocks-doc' 'texlive-dynkin-diagrams' 'texlive-dynkin-diagrams-doc' 'texlive-dyntree' 'texlive-dyntree-doc' 'texlive-e-french' 'texlive-e-french-doc' 'texlive-ean' 'texlive-ean-doc' 'texlive-ean13isbn' 'texlive-ean13isbn-doc' 'texlive-easy' 'texlive-easy-doc' 'texlive-easy-todo' 'texlive-easy-todo-doc' 'texlive-easyfig' 'texlive-easyfig-doc' 'texlive-easyformat' 'texlive-easyformat-doc' 'texlive-easylist' 'texlive-easylist-doc' 'texlive-easyreview' 'texlive-easyreview-doc' 'texlive-ebezier' 'texlive-ebezier-doc' 'texlive-ebgaramond' 'texlive-ebgaramond-doc' 'texlive-ebgaramond-fonts' 'texlive-ebgaramond-maths' 'texlive-ebgaramond-maths-doc' 'texlive-ebong' 'texlive-ebong-bin' 'texlive-ebong-doc' 'texlive-ebook' 'texlive-ebook-doc' 'texlive-ebproof' 'texlive-ebproof-doc' 'texlive-ebsthesis' 'texlive-ebsthesis-doc' 'texlive-ec' 'texlive-ec-doc' 'texlive-ecc' 'texlive-ecc-doc' 'texlive-ecclesiastic' 'texlive-ecclesiastic-doc' 'texlive-ecgdraw' 'texlive-ecgdraw-doc' 'texlive-ecltree' 'texlive-ecltree-doc' 'texlive-eco' 'texlive-eco-doc' 'texlive-ecobiblatex' 'texlive-ecobiblatex-doc' 'texlive-econ-bst' 'texlive-econ-bst-doc' 'texlive-econometrics' 'texlive-econometrics-doc' 'texlive-economic' 'texlive-economic-doc' 'texlive-ecothesis' 'texlive-ecv' 'texlive-ecv-doc' 'texlive-ed' 'texlive-ed-doc' 'texlive-edfnotes' 'texlive-edfnotes-doc' 'texlive-edmac' 'texlive-edmac-doc' 'texlive-edmargin' 'texlive-edmargin-doc' 'texlive-ednotes' 'texlive-ednotes-doc' 'texlive-eemeir' 'texlive-eemeir-doc' 'texlive-eepic' 'texlive-eepic-doc' 'texlive-efbox' 'texlive-efbox-doc' 'texlive-egameps' 'texlive-egameps-doc' 'texlive-egplot' 'texlive-egplot-doc' 'texlive-eiad' 'texlive-eiad-doc' 'texlive-eiad-ltx' 'texlive-eiad-ltx-doc' 'texlive-eijkhout' 'texlive-einfuehrung' 'texlive-einfuehrung2' 'texlive-ejpecp' 'texlive-ejpecp-doc' 'texlive-ekaia' 'texlive-ekaia-doc' 'texlive-elbioimp' 'texlive-elbioimp-doc' 'texlive-electrum' 'texlive-electrum-doc' 'texlive-electrum-fonts' 'texlive-eledform' 'texlive-eledform-doc' 'texlive-eledmac' 'texlive-eledmac-doc' 'texlive-elegantbook' 'texlive-elegantbook-doc' 'texlive-elegantnote' 'texlive-elegantnote-doc' 'texlive-elegantpaper' 'texlive-elegantpaper-doc' 'texlive-elements' 'texlive-elements-doc' 'texlive-ellipse' 'texlive-ellipse-doc' 'texlive-ellipsis' 'texlive-ellipsis-doc' 'texlive-elmath' 'texlive-elmath-doc' 'texlive-elocalloc' 'texlive-elocalloc-doc' 'texlive-elpres' 'texlive-elpres-doc' 'texlive-els-cas-templates' 'texlive-els-cas-templates-doc' 'texlive-elsarticle' 'texlive-elsarticle-doc' 'texlive-elteikthesis' 'texlive-elteikthesis-doc' 'texlive-eltex' 'texlive-eltex-doc' 'texlive-elvish' 'texlive-elvish-doc' 'texlive-elzcards' 'texlive-elzcards-doc' 'texlive-emarks' 'texlive-emarks-doc' 'texlive-embedall' 'texlive-embedall-doc' 'texlive-embrac' 'texlive-embrac-doc' 'texlive-emf' 'texlive-emf-doc' 'texlive-emisa' 'texlive-emisa-doc' 'texlive-emp' 'texlive-emp-doc' 'texlive-emptypage' 'texlive-emptypage-doc' 'texlive-emulateapj' 'texlive-emulateapj-doc' 'texlive-enctex' 'texlive-enctex-doc' 'texlive-encxvlna' 'texlive-encxvlna-doc' 'texlive-endfloat' 'texlive-endfloat-doc' 'texlive-endheads' 'texlive-endheads-doc' 'texlive-endiagram' 'texlive-endiagram-doc' 'texlive-endnotes' 'texlive-endnotes-doc' 'texlive-endnotesj' 'texlive-endnotesj-doc' 'texlive-endofproofwd' 'texlive-endofproofwd-doc' 'texlive-engpron' 'texlive-engpron-doc' 'texlive-engrec' 'texlive-engrec-doc' 'texlive-engtlc' 'texlive-engtlc-doc' 'texlive-enigma' 'texlive-enigma-doc' 'texlive-enotez' 'texlive-enotez-doc' 'texlive-enumitem' 'texlive-enumitem-doc' 'texlive-enumitem-zref' 'texlive-enumitem-zref-doc' 'texlive-envbig' 'texlive-envbig-doc' 'texlive-environ' 'texlive-environ-doc' 'texlive-envlab' 'texlive-envlab-doc' 'texlive-epigrafica' 'texlive-epigrafica-doc' 'texlive-epigrafica-fonts' 'texlive-epigram' 'texlive-epigraph' 'texlive-epigraph-doc' 'texlive-epiolmec' 'texlive-epiolmec-doc' 'texlive-epiolmec-fonts' 'texlive-eplain' 'texlive-eplain-bin' 'texlive-eplain-doc' 'texlive-epsdice' 'texlive-epsdice-doc' 'texlive-epsf' 'texlive-epsf-doc' 'texlive-epsf-dvipdfmx' 'texlive-epsf-dvipdfmx-doc' 'texlive-epsincl' 'texlive-epsincl-doc' 'texlive-epslatex-fr' 'texlive-epspdf' 'texlive-epspdf-bin' 'texlive-epspdf-doc' 'texlive-epspdfconversion' 'texlive-epspdfconversion-doc' 'texlive-epstopdf' 'texlive-epstopdf-bin' 'texlive-epstopdf-doc' 'texlive-eqell' 'texlive-eqell-doc' 'texlive-eqexpl' 'texlive-eqexpl-doc' 'texlive-eqlist' 'texlive-eqlist-doc' 'texlive-eqnalign' 'texlive-eqnalign-doc' 'texlive-eqname' 'texlive-eqnarray' 'texlive-eqnarray-doc' 'texlive-eqnnumwarn' 'texlive-eqnnumwarn-doc' 'texlive-eqparbox' 'texlive-eqparbox-doc' 'texlive-erdc' 'texlive-erdc-doc' 'texlive-erewhon' 'texlive-erewhon-doc' 'texlive-erewhon-fonts' 'texlive-errata' 'texlive-errata-doc' 'texlive-erw-l3' 'texlive-erw-l3-doc' 'texlive-es-tex-faq' 'texlive-esami' 'texlive-esami-doc' 'texlive-esdiff' 'texlive-esdiff-doc' 'texlive-esint' 'texlive-esint-doc' 'texlive-esint-type1' 'texlive-esint-type1-doc' 'texlive-esint-type1-fonts' 'texlive-esk' 'texlive-esk-doc' 'texlive-eskd' 'texlive-eskd-doc' 'texlive-eskdx' 'texlive-eskdx-doc' 'texlive-eso-pic' 'texlive-eso-pic-doc' 'texlive-esrelation' 'texlive-esrelation-doc' 'texlive-esrelation-fonts' 'texlive-esstix' 'texlive-esstix-doc' 'texlive-esstix-fonts' 'texlive-estcpmm' 'texlive-estcpmm-doc' 'texlive-esvect' 'texlive-esvect-doc' 'texlive-esvect-fonts' 'texlive-etaremune' 'texlive-etaremune-doc' 'texlive-etdipa' 'texlive-etex' 'texlive-etex-doc' 'texlive-etex-pkg' 'texlive-etex-pkg-doc' 'texlive-etextools' 'texlive-etextools-doc' 'texlive-ethiop' 'texlive-ethiop-doc' 'texlive-ethiop-t1' 'texlive-ethiop-t1-doc' 'texlive-ethiop-t1-fonts' 'texlive-etoc' 'texlive-etoc-doc' 'texlive-etoolbox' 'texlive-etoolbox-de' 'texlive-etoolbox-doc' 'texlive-etsvthor' 'texlive-etsvthor-doc' 'texlive-euenc' 'texlive-euenc-doc' 'texlive-euflag' 'texlive-euflag-doc' 'texlive-eukdate' 'texlive-eukdate-doc' 'texlive-euler' 'texlive-euler-doc' 'texlive-eulerpx' 'texlive-eulerpx-doc' 'texlive-eulervm' 'texlive-eulervm-doc' 'texlive-euro' 'texlive-euro-ce' 'texlive-euro-ce-doc' 'texlive-euro-doc' 'texlive-europasscv' 'texlive-europasscv-doc' 'texlive-europecv' 'texlive-europecv-doc' 'texlive-eurosym' 'texlive-eurosym-doc' 'texlive-eurosym-fonts' 'texlive-euxm' 'texlive-everyhook' 'texlive-everyhook-doc' 'texlive-everypage' 'texlive-everypage-doc' 'texlive-exam' 'texlive-exam-doc' 'texlive-exam-n' 'texlive-exam-n-doc' 'texlive-exam-randomizechoices' 'texlive-exam-randomizechoices-doc' 'texlive-examdesign' 'texlive-examdesign-doc' 'texlive-example' 'texlive-examplep' 'texlive-examplep-doc' 'texlive-exceltex' 'texlive-exceltex-bin' 'texlive-exceltex-doc' 'texlive-excludeonly' 'texlive-excludeonly-doc' 'texlive-exercise' 'texlive-exercise-doc' 'texlive-exercisebank' 'texlive-exercisebank-doc' 'texlive-exercisepoints' 'texlive-exercisepoints-doc' 'texlive-exercises' 'texlive-exercises-doc' 'texlive-exframe' 'texlive-exframe-doc' 'texlive-exp-testopt' 'texlive-exp-testopt-doc' 'texlive-expdlist' 'texlive-expdlist-doc' 'texlive-expex' 'texlive-expex-doc' 'texlive-export' 'texlive-export-doc' 'texlive-expressg' 'texlive-expressg-doc' 'texlive-exsheets' 'texlive-exsheets-doc' 'texlive-exsol' 'texlive-exsol-doc' 'texlive-extarrows' 'texlive-extarrows-doc' 'texlive-exteps' 'texlive-exteps-doc' 'texlive-extpfeil' 'texlive-extpfeil-doc' 'texlive-extract' 'texlive-extract-doc' 'texlive-extratools' 'texlive-extsizes' 'texlive-extsizes-doc' 'texlive-facsimile' 'texlive-facsimile-doc' 'texlive-factura' 'texlive-factura-doc' 'texlive-facture' 'texlive-facture-belge-simple-sans-tva' 'texlive-facture-belge-simple-sans-tva-doc' 'texlive-facture-doc' 'texlive-faktor' 'texlive-faktor-doc' 'texlive-fancybox' 'texlive-fancybox-doc' 'texlive-fancyhandout' 'texlive-fancyhandout-doc' 'texlive-fancyhdr' 'texlive-fancyhdr-doc' 'texlive-fancyhdr-it' 'texlive-fancylabel' 'texlive-fancylabel-doc' 'texlive-fancynum' 'texlive-fancynum-doc' 'texlive-fancypar' 'texlive-fancypar-doc' 'texlive-fancyref' 'texlive-fancyref-doc' 'texlive-fancyslides' 'texlive-fancyslides-doc' 'texlive-fancytabs' 'texlive-fancytabs-doc' 'texlive-fancytooltips' 'texlive-fancytooltips-doc' 'texlive-fancyvrb' 'texlive-fancyvrb-doc' 'texlive-fandol' 'texlive-fandol-doc' 'texlive-fandol-fonts' 'texlive-fascicules' 'texlive-fascicules-doc' 'texlive-fast-diagram' 'texlive-fast-diagram-doc' 'texlive-fbb' 'texlive-fbb-doc' 'texlive-fbb-fonts' 'texlive-fbithesis' 'texlive-fbithesis-doc' 'texlive-fbox' 'texlive-fbox-doc' 'texlive-fbs' 'texlive-fc' 'texlive-fc-doc' 'texlive-fcavtex' 'texlive-fcavtex-doc' 'texlive-fcltxdoc' 'texlive-fcltxdoc-doc' 'texlive-fcolumn' 'texlive-fcolumn-doc' 'texlive-fdsymbol' 'texlive-fdsymbol-doc' 'texlive-fdsymbol-fonts' 'texlive-fduthesis' 'texlive-fduthesis-doc' 'texlive-featpost' 'texlive-featpost-doc' 'texlive-fei' 'texlive-fei-doc' 'texlive-fenixpar' 'texlive-fenixpar-doc' 'texlive-fetamont' 'texlive-fetamont-doc' 'texlive-fetamont-fonts' 'texlive-fetchcls' 'texlive-fetchcls-doc' 'texlive-feupphdteses' 'texlive-feupphdteses-doc' 'texlive-feyn' 'texlive-feyn-doc' 'texlive-feynmf' 'texlive-feynmf-doc' 'texlive-feynmp-auto' 'texlive-feynmp-auto-doc' 'texlive-ffslides' 'texlive-ffslides-doc' 'texlive-fge' 'texlive-fge-doc' 'texlive-fge-fonts' 'texlive-fgruler' 'texlive-fgruler-doc' 'texlive-fibeamer' 'texlive-fibeamer-doc' 'texlive-fifinddo-info' 'texlive-fifinddo-info-doc' 'texlive-fifo-stack' 'texlive-fifo-stack-doc' 'texlive-fig4latex' 'texlive-fig4latex-bin' 'texlive-fig4latex-doc' 'texlive-figbas' 'texlive-figbas-doc' 'texlive-figbas-fonts' 'texlive-figbib' 'texlive-figbib-doc' 'texlive-figflow' 'texlive-figflow-doc' 'texlive-figsize' 'texlive-figsize-doc' 'texlive-filecontents' 'texlive-filecontents-doc' 'texlive-filecontentsdef' 'texlive-filecontentsdef-doc' 'texlive-filedate' 'texlive-filedate-doc' 'texlive-filehook' 'texlive-filehook-doc' 'texlive-fileinfo' 'texlive-fileinfo-doc' 'texlive-filemod' 'texlive-filemod-doc' 'texlive-filesystem' 'texlive-finbib' 'texlive-findhyph' 'texlive-findhyph-bin' 'texlive-findhyph-doc' 'texlive-fink' 'texlive-fink-doc' 'texlive-finstrut' 'texlive-finstrut-doc' 'texlive-fira' 'texlive-fira-doc' 'texlive-fira-fonts' 'texlive-firamath' 'texlive-firamath-doc' 'texlive-firamath-fonts' 'texlive-firamath-otf' 'texlive-firamath-otf-doc' 'texlive-first-latex-doc' 'texlive-fitbox' 'texlive-fitbox-doc' 'texlive-fithesis' 'texlive-fithesis-doc' 'texlive-fix2col' 'texlive-fix2col-doc' 'texlive-fixcmex' 'texlive-fixcmex-doc' 'texlive-fixfoot' 'texlive-fixfoot-doc' 'texlive-fixjfm' 'texlive-fixjfm-doc' 'texlive-fixlatvian' 'texlive-fixlatvian-doc' 'texlive-fixltxhyph' 'texlive-fixltxhyph-doc' 'texlive-fixme' 'texlive-fixme-doc' 'texlive-fixmetodonotes' 'texlive-fixmetodonotes-doc' 'texlive-fixpdfmag' 'texlive-fiziko' 'texlive-fiziko-doc' 'texlive-fjodor' 'texlive-fjodor-doc' 'texlive-flabels' 'texlive-flabels-doc' 'texlive-flacards' 'texlive-flacards-doc' 'texlive-flagderiv' 'texlive-flagderiv-doc' 'texlive-flashcards' 'texlive-flashcards-doc' 'texlive-flashmovie' 'texlive-flashmovie-doc' 'texlive-flipbook' 'texlive-flipbook-doc' 'texlive-flippdf' 'texlive-flippdf-doc' 'texlive-float' 'texlive-float-doc' 'texlive-floatrow' 'texlive-floatrow-doc' 'texlive-flowchart' 'texlive-flowchart-doc' 'texlive-flowfram' 'texlive-flowfram-doc' 'texlive-fltpoint' 'texlive-fltpoint-doc' 'texlive-fmp' 'texlive-fmp-doc' 'texlive-fmtcount' 'texlive-fmtcount-doc' 'texlive-fn2end' 'texlive-fn2end-doc' 'texlive-fnbreak' 'texlive-fnbreak-doc' 'texlive-fncychap' 'texlive-fncychap-doc' 'texlive-fncylab' 'texlive-fncylab-doc' 'texlive-fnpara' 'texlive-fnpara-doc' 'texlive-fnpct' 'texlive-fnpct-doc' 'texlive-fnspe' 'texlive-fnspe-doc' 'texlive-fntproof' 'texlive-fntproof-doc' 'texlive-fnumprint' 'texlive-fnumprint-doc' 'texlive-foekfont' 'texlive-foekfont-doc' 'texlive-foekfont-fonts' 'texlive-foilhtml' 'texlive-foilhtml-doc' 'texlive-fonetika' 'texlive-fonetika-doc' 'texlive-fonetika-fonts' 'texlive-font-change' 'texlive-font-change-doc' 'texlive-font-change-xetex' 'texlive-font-change-xetex-doc' 'texlive-fontawesome' 'texlive-fontawesome-doc' 'texlive-fontawesome-fonts' 'texlive-fontawesome5' 'texlive-fontawesome5-doc' 'texlive-fontawesome5-fonts' 'texlive-fontaxes' 'texlive-fontaxes-doc' 'texlive-fontbook' 'texlive-fontbook-doc' 'texlive-fontch' 'texlive-fontch-doc' 'texlive-fontinst' 'texlive-fontinst-bin' 'texlive-fontinst-doc' 'texlive-fontmfizz' 'texlive-fontmfizz-doc' 'texlive-fontmfizz-fonts' 'texlive-fontname' 'texlive-fontname-doc' 'texlive-fontools' 'texlive-fontools-bin' 'texlive-fontools-doc' 'texlive-fonts-churchslavonic' 'texlive-fonts-churchslavonic-doc' 'texlive-fonts-churchslavonic-fonts' 'texlive-fonts-tlwg' 'texlive-fonts-tlwg-doc' 'texlive-fonts-tlwg-fonts' 'texlive-fontspec' 'texlive-fontspec-doc' 'texlive-fonttable' 'texlive-fonttable-doc' 'texlive-fontware' 'texlive-fontware-bin' 'texlive-fontwrap' 'texlive-fontwrap-doc' 'texlive-footbib' 'texlive-footbib-doc' 'texlive-footmisc' 'texlive-footmisc-doc' 'texlive-footmisx' 'texlive-footmisx-doc' 'texlive-footnotebackref' 'texlive-footnotebackref-doc' 'texlive-footnotehyper' 'texlive-footnotehyper-doc' 'texlive-footnoterange' 'texlive-footnoterange-doc' 'texlive-footnpag' 'texlive-footnpag-doc' 'texlive-forarray' 'texlive-forarray-doc' 'texlive-foreign' 'texlive-foreign-doc' 'texlive-forest' 'texlive-forest-doc' 'texlive-forest-quickstart' 'texlive-forloop' 'texlive-forloop-doc' 'texlive-formation-latex-ul' 'texlive-formation-latex-ul-doc' 'texlive-formlett' 'texlive-formlett-doc' 'texlive-forms16be' 'texlive-forms16be-doc' 'texlive-formular' 'texlive-formular-doc' 'texlive-fouridx' 'texlive-fouridx-doc' 'texlive-fourier' 'texlive-fourier-doc' 'texlive-fourier-fonts' 'texlive-fouriernc' 'texlive-fouriernc-doc' 'texlive-fp' 'texlive-fp-doc' 'texlive-fpl' 'texlive-fpl-doc' 'texlive-fpl-fonts' 'texlive-fragmaster' 'texlive-fragmaster-bin' 'texlive-fragmaster-doc' 'texlive-fragments' 'texlive-fragments-doc' 'texlive-frame' 'texlive-frame-doc' 'texlive-framed' 'texlive-framed-doc' 'texlive-francais-bst' 'texlive-francais-bst-doc' 'texlive-frankenstein' 'texlive-frankenstein-doc' 'texlive-frcursive' 'texlive-frcursive-doc' 'texlive-frcursive-fonts' 'texlive-frederika2016' 'texlive-frederika2016-doc' 'texlive-frederika2016-fonts' 'texlive-frege' 'texlive-frege-doc' 'texlive-frenchmath' 'texlive-frenchmath-doc' 'texlive-frletter' 'texlive-frletter-doc' 'texlive-frontespizio' 'texlive-frontespizio-doc' 'texlive-ftc-notebook' 'texlive-ftc-notebook-doc' 'texlive-ftcap' 'texlive-ftcap-doc' 'texlive-ftnxtra' 'texlive-ftnxtra-doc' 'texlive-fullblck' 'texlive-fullblck-doc' 'texlive-fullminipage' 'texlive-fullminipage-doc' 'texlive-fullwidth' 'texlive-fullwidth-doc' 'texlive-functan' 'texlive-functan-doc' 'texlive-fundus-calligra' 'texlive-fundus-calligra-doc' 'texlive-fundus-cyr' 'texlive-fundus-sueterlin' 'texlive-fundus-sueterlin-doc' 'texlive-fvextra' 'texlive-fvextra-doc' 'texlive-fwlw' 'texlive-fwlw-doc' 'texlive-g-brief' 'texlive-g-brief-doc' 'texlive-gaceta' 'texlive-gaceta-doc' 'texlive-galois' 'texlive-galois-doc' 'texlive-gamebook' 'texlive-gamebook-doc' 'texlive-gammas' 'texlive-gammas-doc' 'texlive-garamond-math' 'texlive-garamond-math-doc' 'texlive-garamond-math-fonts' 'texlive-garrigues' 'texlive-garrigues-doc' 'texlive-garuda-c90' 'texlive-gastex' 'texlive-gastex-doc' 'texlive-gatech-thesis' 'texlive-gatech-thesis-doc' 'texlive-gates' 'texlive-gates-doc' 'texlive-gatherenum' 'texlive-gatherenum-doc' 'texlive-gauss' 'texlive-gauss-doc' 'texlive-gb4e' 'texlive-gb4e-doc' 'texlive-gbt7714' 'texlive-gbt7714-doc' 'texlive-gcard' 'texlive-gcard-doc' 'texlive-gchords' 'texlive-gchords-doc' 'texlive-gcite' 'texlive-gcite-doc' 'texlive-gender' 'texlive-gender-doc' 'texlive-gene-logic' 'texlive-gene-logic-doc' 'texlive-genealogy' 'texlive-genealogy-doc' 'texlive-genealogytree' 'texlive-genealogytree-doc' 'texlive-genmisc' 'texlive-genmpage' 'texlive-genmpage-doc' 'texlive-gentium-tug' 'texlive-gentium-tug-doc' 'texlive-gentium-tug-fonts' 'texlive-gentle' 'texlive-gentombow' 'texlive-gentombow-doc' 'texlive-geometry' 'texlive-geometry-de' 'texlive-geometry-doc' 'texlive-german' 'texlive-german-doc' 'texlive-germbib' 'texlive-germbib-doc' 'texlive-germkorr' 'texlive-germkorr-doc' 'texlive-geschichtsfrkl' 'texlive-geschichtsfrkl-doc' 'texlive-getfiledate' 'texlive-getfiledate-doc' 'texlive-getitems' 'texlive-getitems-doc' 'texlive-getmap' 'texlive-getmap-bin' 'texlive-getmap-doc' 'texlive-getoptk' 'texlive-getoptk-doc' 'texlive-gfnotation' 'texlive-gfnotation-doc' 'texlive-gfsartemisia' 'texlive-gfsartemisia-doc' 'texlive-gfsartemisia-fonts' 'texlive-gfsbaskerville' 'texlive-gfsbaskerville-doc' 'texlive-gfsbaskerville-fonts' 'texlive-gfsbodoni' 'texlive-gfsbodoni-doc' 'texlive-gfsbodoni-fonts' 'texlive-gfscomplutum' 'texlive-gfscomplutum-doc' 'texlive-gfscomplutum-fonts' 'texlive-gfsdidot' 'texlive-gfsdidot-doc' 'texlive-gfsdidot-fonts' 'texlive-gfsneohellenic' 'texlive-gfsneohellenic-doc' 'texlive-gfsneohellenic-fonts' 'texlive-gfsneohellenicmath' 'texlive-gfsneohellenicmath-doc' 'texlive-gfsneohellenicmath-fonts' 'texlive-gfsporson' 'texlive-gfsporson-doc' 'texlive-gfsporson-fonts' 'texlive-gfssolomos' 'texlive-gfssolomos-doc' 'texlive-gfssolomos-fonts' 'texlive-ghab' 'texlive-ghab-doc' 'texlive-ghsystem' 'texlive-ghsystem-doc' 'texlive-gillcm' 'texlive-gillcm-doc' 'texlive-gillius' 'texlive-gillius-doc' 'texlive-gillius-fonts' 'texlive-gincltex' 'texlive-gincltex-doc' 'texlive-ginpenc' 'texlive-ginpenc-doc' 'texlive-gitfile-info' 'texlive-gitfile-info-doc' 'texlive-gitinfo' 'texlive-gitinfo-doc' 'texlive-gitinfo2' 'texlive-gitinfo2-doc' 'texlive-gitlog' 'texlive-gitlog-doc' 'texlive-gitver' 'texlive-gitver-doc' 'texlive-globalvals' 'texlive-globalvals-doc' 'texlive-gloss' 'texlive-gloss-doc' 'texlive-gloss-occitan' 'texlive-gloss-occitan-doc' 'texlive-glossaries' 'texlive-glossaries-bin' 'texlive-glossaries-danish' 'texlive-glossaries-danish-doc' 'texlive-glossaries-doc' 'texlive-glossaries-dutch' 'texlive-glossaries-dutch-doc' 'texlive-glossaries-english' 'texlive-glossaries-english-doc' 'texlive-glossaries-estonian' 'texlive-glossaries-estonian-doc' 'texlive-glossaries-extra' 'texlive-glossaries-extra-doc' 'texlive-glossaries-finnish' 'texlive-glossaries-finnish-doc' 'texlive-glossaries-french' 'texlive-glossaries-french-doc' 'texlive-glossaries-german' 'texlive-glossaries-german-doc' 'texlive-glossaries-irish' 'texlive-glossaries-irish-doc' 'texlive-glossaries-italian' 'texlive-glossaries-italian-doc' 'texlive-glossaries-magyar' 'texlive-glossaries-magyar-doc' 'texlive-glossaries-polish' 'texlive-glossaries-polish-doc' 'texlive-glossaries-portuges' 'texlive-glossaries-portuges-doc' 'texlive-glossaries-serbian' 'texlive-glossaries-serbian-doc' 'texlive-glossaries-spanish' 'texlive-glossaries-spanish-doc' 'texlive-glyphlist' 'texlive-gmdoc' 'texlive-gmdoc-doc' 'texlive-gmdoc-enhance' 'texlive-gmdoc-enhance-doc' 'texlive-gmiflink' 'texlive-gmiflink-doc' 'texlive-gmp' 'texlive-gmp-doc' 'texlive-gmutils' 'texlive-gmutils-doc' 'texlive-gmverb' 'texlive-gmverb-doc' 'texlive-gmverse' 'texlive-gmverse-doc' 'texlive-gnu-freefont' 'texlive-gnu-freefont-doc' 'texlive-gnu-freefont-fonts' 'texlive-gnuplottex' 'texlive-gnuplottex-doc' 'texlive-go' 'texlive-go-doc' 'texlive-gobble' 'texlive-gobble-doc' 'texlive-gofonts' 'texlive-gofonts-doc' 'texlive-gofonts-fonts' 'texlive-gost' 'texlive-gost-doc' 'texlive-gothic' 'texlive-gothic-doc' 'texlive-gotoh' 'texlive-gotoh-doc' 'texlive-grabbox' 'texlive-grabbox-doc' 'texlive-gradientframe' 'texlive-gradientframe-doc' 'texlive-gradstudentresume' 'texlive-gradstudentresume-doc' 'texlive-grafcet' 'texlive-grafcet-doc' 'texlive-grant' 'texlive-grant-doc' 'texlive-graph35' 'texlive-graph35-doc' 'texlive-graphbox' 'texlive-graphbox-doc' 'texlive-graphics' 'texlive-graphics-cfg' 'texlive-graphics-cfg-doc' 'texlive-graphics-def' 'texlive-graphics-def-doc' 'texlive-graphics-doc' 'texlive-graphics-pln' 'texlive-graphics-pln-doc' 'texlive-graphicx-psmin' 'texlive-graphicx-psmin-doc' 'texlive-graphicxbox' 'texlive-graphicxbox-doc' 'texlive-graphicxpsd' 'texlive-graphicxpsd-doc' 'texlive-graphviz' 'texlive-graphviz-doc' 'texlive-grayhints' 'texlive-grayhints-doc' 'texlive-greek-fontenc' 'texlive-greek-fontenc-doc' 'texlive-greek-inputenc' 'texlive-greek-inputenc-doc' 'texlive-greekdates' 'texlive-greekdates-doc' 'texlive-greektex' 'texlive-greektex-doc' 'texlive-greektonoi' 'texlive-greektonoi-doc' 'texlive-greenpoint' 'texlive-greenpoint-doc' 'texlive-gregoriotex' 'texlive-gregoriotex-bin' 'texlive-gregoriotex-doc' 'texlive-gregoriotex-fonts' 'texlive-grfpaste' 'texlive-grfpaste-doc' 'texlive-grid' 'texlive-grid-doc' 'texlive-grid-system' 'texlive-grid-system-doc' 'texlive-gridset' 'texlive-gridset-doc' 'texlive-gridslides' 'texlive-gridslides-doc' 'texlive-grotesq' 'texlive-grotesq-doc' 'texlive-grotesq-fonts' 'texlive-grundgesetze' 'texlive-grundgesetze-doc' 'texlive-gsemthesis' 'texlive-gsemthesis-doc' 'texlive-gsftopk' 'texlive-gsftopk-bin' 'texlive-gsftopk-doc' 'texlive-gtl' 'texlive-gtl-doc' 'texlive-gtrcrd' 'texlive-gtrcrd-doc' 'texlive-gtrlib-largetrees' 'texlive-gtrlib-largetrees-doc' 'texlive-gu' 'texlive-gu-doc' 'texlive-guide-latex-fr' 'texlive-guide-to-latex' 'texlive-guitar' 'texlive-guitar-doc' 'texlive-guitarchordschemes' 'texlive-guitarchordschemes-doc' 'texlive-guitartabs' 'texlive-guitartabs-doc' 'texlive-guitlogo' 'texlive-guitlogo-doc' 'texlive-gustlib' 'texlive-gustlib-doc' 'texlive-gustprog' 'texlive-gzt' 'texlive-gzt-doc' 'texlive-h2020proposal' 'texlive-h2020proposal-doc' 'texlive-hackthefootline' 'texlive-hackthefootline-doc' 'texlive-hacm' 'texlive-hacm-doc' 'texlive-hacm-fonts' 'texlive-hagenberg-thesis' 'texlive-hagenberg-thesis-doc' 'texlive-halloweenmath' 'texlive-halloweenmath-doc' 'texlive-handin' 'texlive-handin-doc' 'texlive-handout' 'texlive-handout-doc' 'texlive-hands' 'texlive-hang' 'texlive-hang-doc' 'texlive-hanging' 'texlive-hanging-doc' 'texlive-hanoi' 'texlive-happy4th' 'texlive-har2nat' 'texlive-har2nat-doc' 'texlive-hardwrap' 'texlive-hardwrap-doc' 'texlive-harmony' 'texlive-harmony-doc' 'texlive-harnon-cv' 'texlive-harnon-cv-doc' 'texlive-harpoon' 'texlive-harpoon-doc' 'texlive-harvard' 'texlive-harvard-doc' 'texlive-harveyballs' 'texlive-harveyballs-doc' 'texlive-harvmac' 'texlive-harvmac-doc' 'texlive-hatching' 'texlive-hatching-doc' 'texlive-hausarbeit-jura' 'texlive-hausarbeit-jura-doc' 'texlive-havannah' 'texlive-havannah-doc' 'texlive-hc' 'texlive-hc-doc' 'texlive-he-she' 'texlive-he-she-doc' 'texlive-hecthese' 'texlive-hecthese-doc' 'texlive-helvetic' 'texlive-helvetic-fonts' 'texlive-hep' 'texlive-hep-doc' 'texlive-hepnames' 'texlive-hepnames-doc' 'texlive-hepparticles' 'texlive-hepparticles-doc' 'texlive-hepthesis' 'texlive-hepthesis-doc' 'texlive-hepunits' 'texlive-hepunits-doc' 'texlive-here' 'texlive-here-doc' 'texlive-heuristica' 'texlive-heuristica-doc' 'texlive-heuristica-fonts' 'texlive-hexgame' 'texlive-hexgame-doc' 'texlive-hf-tikz' 'texlive-hf-tikz-doc' 'texlive-hfbright' 'texlive-hfbright-doc' 'texlive-hfbright-fonts' 'texlive-hfoldsty' 'texlive-hfoldsty-doc' 'texlive-hhtensor' 'texlive-hhtensor-doc' 'texlive-histogr' 'texlive-histogr-doc' 'texlive-historische-zeitschrift' 'texlive-historische-zeitschrift-doc' 'texlive-hitec' 'texlive-hitec-doc' 'texlive-hithesis' 'texlive-hithesis-doc' 'texlive-hletter' 'texlive-hletter-doc' 'texlive-hlist' 'texlive-hlist-doc' 'texlive-hobby' 'texlive-hobby-doc' 'texlive-hobete' 'texlive-hobete-doc' 'texlive-hook-pre-commit-pkg' 'texlive-horoscop' 'texlive-horoscop-doc' 'texlive-hpsdiss' 'texlive-hpsdiss-doc' 'texlive-hrefhide' 'texlive-hrefhide-doc' 'texlive-hrlatex' 'texlive-hrlatex-doc' 'texlive-hulipsum' 'texlive-hulipsum-doc' 'texlive-hustthesis' 'texlive-hustthesis-doc' 'texlive-hvfloat' 'texlive-hvfloat-doc' 'texlive-hvindex' 'texlive-hvindex-doc' 'texlive-hypdvips' 'texlive-hypdvips-doc' 'texlive-hyper' 'texlive-hyper-doc' 'texlive-hyperbar' 'texlive-hyperbar-doc' 'texlive-hypernat' 'texlive-hypernat-doc' 'texlive-hyperref' 'texlive-hyperref-doc' 'texlive-hyperxmp' 'texlive-hyperxmp-doc' 'texlive-hyph-utf8' 'texlive-hyph-utf8-doc' 'texlive-hyphen-afrikaans' 'texlive-hyphen-ancientgreek' 'texlive-hyphen-arabic' 'texlive-hyphen-armenian' 'texlive-hyphen-base' 'texlive-hyphen-basque' 'texlive-hyphen-belarusian' 'texlive-hyphen-bulgarian' 'texlive-hyphen-catalan' 'texlive-hyphen-chinese' 'texlive-hyphen-churchslavonic' 'texlive-hyphen-coptic' 'texlive-hyphen-croatian' 'texlive-hyphen-czech' 'texlive-hyphen-danish' 'texlive-hyphen-dutch' 'texlive-hyphen-english' 'texlive-hyphen-esperanto' 'texlive-hyphen-estonian' 'texlive-hyphen-ethiopic' 'texlive-hyphen-farsi' 'texlive-hyphen-finnish' 'texlive-hyphen-french' 'texlive-hyphen-friulan' 'texlive-hyphen-galician' 'texlive-hyphen-georgian' 'texlive-hyphen-german' 'texlive-hyphen-greek' 'texlive-hyphen-greek-doc' 'texlive-hyphen-hungarian' 'texlive-hyphen-hungarian-doc' 'texlive-hyphen-icelandic' 'texlive-hyphen-indic' 'texlive-hyphen-indonesian' 'texlive-hyphen-interlingua' 'texlive-hyphen-irish' 'texlive-hyphen-italian' 'texlive-hyphen-kurmanji' 'texlive-hyphen-latin' 'texlive-hyphen-latvian' 'texlive-hyphen-lithuanian' 'texlive-hyphen-mongolian' 'texlive-hyphen-norwegian' 'texlive-hyphen-occitan' 'texlive-hyphen-piedmontese' 'texlive-hyphen-polish' 'texlive-hyphen-portuguese' 'texlive-hyphen-romanian' 'texlive-hyphen-romansh' 'texlive-hyphen-russian' 'texlive-hyphen-sanskrit' 'texlive-hyphen-sanskrit-doc' 'texlive-hyphen-serbian' 'texlive-hyphen-slovak' 'texlive-hyphen-slovenian' 'texlive-hyphen-spanish' 'texlive-hyphen-spanish-doc' 'texlive-hyphen-swedish' 'texlive-hyphen-thai' 'texlive-hyphen-turkish' 'texlive-hyphen-turkmen' 'texlive-hyphen-ukrainian' 'texlive-hyphen-uppersorbian' 'texlive-hyphen-welsh' 'texlive-hyphenat' 'texlive-hyphenat-doc' 'texlive-hyphenex' 'texlive-hyplain' 'texlive-hyplain-doc' 'texlive-ibycus-babel' 'texlive-ibycus-babel-doc' 'texlive-ibygrk' 'texlive-ibygrk-doc' 'texlive-ibygrk-fonts' 'texlive-icite' 'texlive-icite-doc' 'texlive-icsv' 'texlive-icsv-doc' 'texlive-identkey' 'texlive-identkey-doc' 'texlive-idxcmds' 'texlive-idxcmds-doc' 'texlive-idxlayout' 'texlive-idxlayout-doc' 'texlive-ieeepes' 'texlive-ieeepes-doc' 'texlive-ietfbibs' 'texlive-ifetex' 'texlive-ifetex-doc' 'texlive-iffont' 'texlive-iffont-doc' 'texlive-ifluatex' 'texlive-ifluatex-doc' 'texlive-ifmslide' 'texlive-ifmslide-doc' 'texlive-ifmtarg' 'texlive-ifmtarg-doc' 'texlive-ifnextok' 'texlive-ifnextok-doc' 'texlive-ifoddpage' 'texlive-ifoddpage-doc' 'texlive-ifplatform' 'texlive-ifplatform-doc' 'texlive-ifptex' 'texlive-ifptex-doc' 'texlive-ifsym' 'texlive-ifsym-doc' 'texlive-iftex' 'texlive-iftex-doc' 'texlive-ifthenx' 'texlive-ifthenx-doc' 'texlive-ifxetex' 'texlive-ifxetex-doc' 'texlive-ifxptex' 'texlive-ifxptex-doc' 'texlive-iitem' 'texlive-iitem-doc' 'texlive-ijmart' 'texlive-ijmart-doc' 'texlive-ijqc' 'texlive-ijqc-doc' 'texlive-ijsra' 'texlive-ijsra-doc' 'texlive-imac' 'texlive-imac-doc' 'texlive-image-gallery' 'texlive-image-gallery-doc' 'texlive-imakeidx' 'texlive-imakeidx-doc' 'texlive-imfellenglish' 'texlive-imfellenglish-doc' 'texlive-imfellenglish-fonts' 'texlive-impatient' 'texlive-impatient-cn' 'texlive-impatient-fr' 'texlive-impnattypo' 'texlive-impnattypo-doc' 'texlive-import' 'texlive-import-doc' 'texlive-imsproc' 'texlive-imsproc-doc' 'texlive-imtekda' 'texlive-imtekda-doc' 'texlive-incgraph' 'texlive-incgraph-doc' 'texlive-includernw' 'texlive-includernw-doc' 'texlive-inconsolata' 'texlive-inconsolata-doc' 'texlive-inconsolata-fonts' 'texlive-index' 'texlive-index-doc' 'texlive-indextools' 'texlive-indextools-doc' 'texlive-initials' 'texlive-initials-doc' 'texlive-initials-fonts' 'texlive-inline-images' 'texlive-inline-images-doc' 'texlive-inlinebib' 'texlive-inlinebib-doc' 'texlive-inlinedef' 'texlive-inlinedef-doc' 'texlive-inputtrc' 'texlive-inputtrc-doc' 'texlive-inriafonts' 'texlive-inriafonts-doc' 'texlive-inriafonts-fonts' 'texlive-insbox' 'texlive-insbox-doc' 'texlive-interactiveworkbook' 'texlive-interactiveworkbook-doc' 'texlive-interchar' 'texlive-interchar-doc' 'texlive-interfaces' 'texlive-interfaces-doc' 'texlive-interpreter' 'texlive-interpreter-doc' 'texlive-interval' 'texlive-interval-doc' 'texlive-intopdf' 'texlive-intopdf-doc' 'texlive-intro-scientific' 'texlive-inversepath' 'texlive-inversepath-doc' 'texlive-invoice' 'texlive-invoice-class' 'texlive-invoice-class-doc' 'texlive-invoice-doc' 'texlive-invoice2' 'texlive-invoice2-doc' 'texlive-iodhbwm' 'texlive-iodhbwm-doc' 'texlive-ionumbers' 'texlive-ionumbers-doc' 'texlive-iopart-num' 'texlive-iopart-num-doc' 'texlive-ipaex' 'texlive-ipaex-doc' 'texlive-ipaex-fonts' 'texlive-ipaex-type1' 'texlive-ipaex-type1-doc' 'texlive-ipaex-type1-fonts' 'texlive-iscram' 'texlive-iscram-doc' 'texlive-iso' 'texlive-iso-doc' 'texlive-iso10303' 'texlive-iso10303-doc' 'texlive-isodate' 'texlive-isodate-doc' 'texlive-isodoc' 'texlive-isodoc-doc' 'texlive-isomath' 'texlive-isomath-doc' 'texlive-isonums' 'texlive-isonums-doc' 'texlive-isopt' 'texlive-isopt-doc' 'texlive-isorot' 'texlive-isorot-doc' 'texlive-isotope' 'texlive-isotope-doc' 'texlive-issuulinks' 'texlive-issuulinks-doc' 'texlive-istgame' 'texlive-istgame-doc' 'texlive-itnumpar' 'texlive-itnumpar-doc' 'texlive-iwhdp' 'texlive-iwhdp-doc' 'texlive-iwona' 'texlive-iwona-doc' 'texlive-iwona-fonts' 'texlive-jablantile' 'texlive-jablantile-doc' 'texlive-jacow' 'texlive-jacow-doc' 'texlive-jadetex' 'texlive-jadetex-bin' 'texlive-jadetex-doc' 'texlive-jamtimes' 'texlive-jamtimes-doc' 'texlive-japanese-otf' 'texlive-japanese-otf-doc' 'texlive-japanese-otf-uptex' 'texlive-japanese-otf-uptex-doc' 'texlive-jfmutil' 'texlive-jfmutil-bin' 'texlive-jfmutil-doc' 'texlive-jigsaw' 'texlive-jigsaw-doc' 'texlive-jkmath' 'texlive-jkmath-doc' 'texlive-jknapltx' 'texlive-jknapltx-doc' 'texlive-jlabels' 'texlive-jlabels-doc' 'texlive-jlreq' 'texlive-jlreq-doc' 'texlive-jmlr' 'texlive-jmlr-doc' 'texlive-jmn' 'texlive-jmn-fonts' 'texlive-jneurosci' 'texlive-jneurosci-doc' 'texlive-jnuexam' 'texlive-jnuexam-doc' 'texlive-jpsj' 'texlive-jpsj-doc' 'texlive-js-misc' 'texlive-js-misc-doc' 'texlive-jsclasses' 'texlive-jsclasses-doc' 'texlive-jslectureplanner' 'texlive-jslectureplanner-doc' 'texlive-jumplines' 'texlive-jumplines-doc' 'texlive-junicode' 'texlive-junicode-doc' 'texlive-junicode-fonts' 'texlive-jura' 'texlive-jura-doc' 'texlive-juraabbrev' 'texlive-juraabbrev-doc' 'texlive-jurabib' 'texlive-jurabib-doc' 'texlive-juramisc' 'texlive-juramisc-doc' 'texlive-jurarsp' 'texlive-jurarsp-doc' 'texlive-jvlisting' 'texlive-jvlisting-doc' 'texlive-kalendarium' 'texlive-kalendarium-doc' 'texlive-kanaparser' 'texlive-kanaparser-doc' 'texlive-kantlipsum' 'texlive-kantlipsum-doc' 'texlive-karnaugh' 'texlive-karnaugh-doc' 'texlive-karnaugh-map' 'texlive-karnaugh-map-doc' 'texlive-karnaughmap' 'texlive-karnaughmap-doc' 'texlive-kastrup' 'texlive-kastrup-doc' 'texlive-kdgdocs' 'texlive-kdgdocs-doc' 'texlive-kerkis' 'texlive-kerkis-doc' 'texlive-kerkis-fonts' 'texlive-kerntest' 'texlive-kerntest-doc' 'texlive-ketcindy' 'texlive-ketcindy-bin' 'texlive-ketcindy-doc' 'texlive-keycommand' 'texlive-keycommand-doc' 'texlive-keyfloat' 'texlive-keyfloat-doc' 'texlive-keyindex' 'texlive-keyindex-doc' 'texlive-keyreader' 'texlive-keyreader-doc' 'texlive-keystroke' 'texlive-keystroke-doc' 'texlive-keyval2e' 'texlive-keyval2e-doc' 'texlive-keyvaltable' 'texlive-keyvaltable-doc' 'texlive-kix' 'texlive-kix-doc' 'texlive-kixfont' 'texlive-kixfont-doc' 'texlive-kluwer' 'texlive-kluwer-doc' 'texlive-knitting' 'texlive-knitting-doc' 'texlive-knitting-fonts' 'texlive-knittingpattern' 'texlive-knittingpattern-doc' 'texlive-knowledge' 'texlive-knowledge-doc' 'texlive-knuth' 'texlive-knuth-doc' 'texlive-knuth-lib' 'texlive-knuth-local' 'texlive-koma-moderncvclassic' 'texlive-koma-moderncvclassic-doc' 'texlive-koma-script' 'texlive-koma-script-doc' 'texlive-koma-script-examples' 'texlive-koma-script-sfs' 'texlive-koma-script-sfs-doc' 'texlive-komacv' 'texlive-komacv-doc' 'texlive-komacv-rg' 'texlive-komacv-rg-doc' 'texlive-kotex-oblivoir' 'texlive-kotex-oblivoir-doc' 'texlive-kotex-plain' 'texlive-kotex-plain-doc' 'texlive-kotex-utf' 'texlive-kotex-utf-doc' 'texlive-kotex-utils' 'texlive-kotex-utils-bin' 'texlive-kotex-utils-doc' 'texlive-kpathsea' 'texlive-kpathsea-bin' 'texlive-kpathsea-devel' 'texlive-kpathsea-doc' 'texlive-kpfonts' 'texlive-kpfonts-doc' 'texlive-kpfonts-fonts' 'texlive-ksfh_nat' 'texlive-ksp-thesis' 'texlive-ksp-thesis-doc' 'texlive-ktv-texdata' 'texlive-ktv-texdata-doc' 'texlive-ku-template' 'texlive-ku-template-doc' 'texlive-kurdishlipsum' 'texlive-kurdishlipsum-doc' 'texlive-kurier' 'texlive-kurier-doc' 'texlive-kurier-fonts' 'texlive-kvmap' 'texlive-kvmap-doc' 'texlive-l2picfaq' 'texlive-l2tabu' 'texlive-l2tabu-english' 'texlive-l2tabu-french' 'texlive-l2tabu-italian' 'texlive-l2tabu-spanish' 'texlive-l3build' 'texlive-l3build-bin' 'texlive-l3build-doc' 'texlive-l3experimental' 'texlive-l3experimental-doc' 'texlive-l3kernel' 'texlive-l3kernel-doc' 'texlive-l3packages' 'texlive-l3packages-doc' 'texlive-labbook' 'texlive-labbook-doc' 'texlive-labels' 'texlive-labels-doc' 'texlive-labelschanged' 'texlive-labelschanged-doc' 'texlive-labyrinth' 'texlive-labyrinth-doc' 'texlive-lacheck' 'texlive-lacheck-bin' 'texlive-ladder' 'texlive-ladder-doc' 'texlive-lambda' 'texlive-lambda-lists' 'texlive-lambda-lists-doc' 'texlive-langcode' 'texlive-langcode-doc' 'texlive-langsci' 'texlive-langsci-doc' 'texlive-lapdf' 'texlive-lapdf-doc' 'texlive-lastpackage' 'texlive-lastpackage-doc' 'texlive-lastpage' 'texlive-lastpage-doc' 'texlive-latex' 'texlive-latex-bib-ex' 'texlive-latex-bib2-ex' 'texlive-latex-bin' 'texlive-latex-bin-bin' 'texlive-latex-brochure' 'texlive-latex-course' 'texlive-latex-doc' 'texlive-latex-doc-ptr' 'texlive-latex-fonts' 'texlive-latex-fonts-doc' 'texlive-latex-git-log' 'texlive-latex-git-log-bin' 'texlive-latex-git-log-doc' 'texlive-latex-graphics-companion' 'texlive-latex-make' 'texlive-latex-make-doc' 'texlive-latex-mr' 'texlive-latex-notes-zh-cn' 'texlive-latex-papersize' 'texlive-latex-papersize-bin' 'texlive-latex-papersize-doc' 'texlive-latex-referenz' 'texlive-latex-refsheet' 'texlive-latex-tabellen' 'texlive-latex-tds' 'texlive-latex-tds-doc' 'texlive-latex-uni8' 'texlive-latex-uni8-doc' 'texlive-latex-veryshortguide' 'texlive-latex-via-exemplos' 'texlive-latex-web-companion' 'texlive-latex2e-help-texinfo' 'texlive-latex2e-help-texinfo-fr' 'texlive-latex2e-help-texinfo-spanish' 'texlive-latex2man' 'texlive-latex2man-bin' 'texlive-latex2man-doc' 'texlive-latex2nemeth' 'texlive-latex2nemeth-bin' 'texlive-latex2nemeth-doc' 'texlive-latex4musicians' 'texlive-latex4wp' 'texlive-latex4wp-it' 'texlive-latexbangla' 'texlive-latexbangla-doc' 'texlive-latexbug' 'texlive-latexbug-doc' 'texlive-latexcheat' 'texlive-latexcheat-de' 'texlive-latexcheat-esmx' 'texlive-latexcheat-ptbr' 'texlive-latexcolors' 'texlive-latexcolors-doc' 'texlive-latexconfig' 'texlive-latexcourse-rug' 'texlive-latexdemo' 'texlive-latexdemo-doc' 'texlive-latexdiff' 'texlive-latexdiff-bin' 'texlive-latexdiff-doc' 'texlive-latexfileinfo-pkgs' 'texlive-latexfileinfo-pkgs-doc' 'texlive-latexfileversion' 'texlive-latexfileversion-bin' 'texlive-latexfileversion-doc' 'texlive-latexgit' 'texlive-latexgit-doc' 'texlive-latexindent' 'texlive-latexindent-bin' 'texlive-latexindent-doc' 'texlive-latexmk' 'texlive-latexmk-bin' 'texlive-latexmk-doc' 'texlive-latexmp' 'texlive-latexmp-doc' 'texlive-latexpand' 'texlive-latexpand-bin' 'texlive-latexpand-doc' 'texlive-lato' 'texlive-lato-doc' 'texlive-lato-fonts' 'texlive-layaureo' 'texlive-layaureo-doc' 'texlive-layouts' 'texlive-layouts-doc' 'texlive-lazylist' 'texlive-lazylist-doc' 'texlive-lccaps' 'texlive-lccaps-doc' 'texlive-lcd' 'texlive-lcd-doc' 'texlive-lcdftypetools' 'texlive-lcdftypetools-bin' 'texlive-lcg' 'texlive-lcg-doc' 'texlive-lcyw' 'texlive-lcyw-doc' 'texlive-leading' 'texlive-leading-doc' 'texlive-leadsheets' 'texlive-leadsheets-doc' 'texlive-leaflet' 'texlive-leaflet-doc' 'texlive-lecturer' 'texlive-lecturer-doc' 'texlive-lectures' 'texlive-lectures-doc' 'texlive-ledmac' 'texlive-ledmac-doc' 'texlive-leftidx' 'texlive-leftidx-doc' 'texlive-leipzig' 'texlive-leipzig-doc' 'texlive-lengthconvert' 'texlive-lengthconvert-doc' 'texlive-lettre' 'texlive-lettre-doc' 'texlive-lettrine' 'texlive-lettrine-doc' 'texlive-levy' 'texlive-levy-doc' 'texlive-lewis' 'texlive-lewis-doc' 'texlive-lexikon' 'texlive-lexikon-doc' 'texlive-lexref' 'texlive-lexref-doc' 'texlive-lfb' 'texlive-lfb-doc' 'texlive-lgreek' 'texlive-lgreek-doc' 'texlive-lh' 'texlive-lh-doc' 'texlive-lhcyr' 'texlive-lhelp' 'texlive-lhelp-doc' 'texlive-libertine' 'texlive-libertine-doc' 'texlive-libertine-fonts' 'texlive-libertinegc' 'texlive-libertinegc-doc' 'texlive-libertinus' 'texlive-libertinus-doc' 'texlive-libertinus-fonts' 'texlive-libertinus-fonts-doc' 'texlive-libertinus-fonts-fonts' 'texlive-libertinus-otf' 'texlive-libertinus-otf-doc' 'texlive-libertinus-otf-fonts' 'texlive-libertinus-type1' 'texlive-libertinus-type1-doc' 'texlive-libertinus-type1-fonts' 'texlive-libertinust1math' 'texlive-libertinust1math-doc' 'texlive-libertinust1math-fonts' 'texlive-libgreek' 'texlive-libgreek-doc' 'texlive-librarian' 'texlive-librarian-doc' 'texlive-librebaskerville' 'texlive-librebaskerville-doc' 'texlive-librebaskerville-fonts' 'texlive-librebodoni' 'texlive-librebodoni-doc' 'texlive-librebodoni-fonts' 'texlive-librecaslon' 'texlive-librecaslon-doc' 'texlive-librecaslon-fonts' 'texlive-libris' 'texlive-libris-doc' 'texlive-libris-fonts' 'texlive-lilyglyphs' 'texlive-lilyglyphs-bin' 'texlive-lilyglyphs-doc' 'texlive-lilyglyphs-fonts' 'texlive-limap' 'texlive-limap-doc' 'texlive-limecv' 'texlive-limecv-doc' 'texlive-linearA' 'texlive-linearA-doc' 'texlive-linearA-fonts' 'texlive-linegoal' 'texlive-linegoal-doc' 'texlive-lineno' 'texlive-lineno-doc' 'texlive-ling-macros' 'texlive-ling-macros-doc' 'texlive-linguex' 'texlive-linguex-doc' 'texlive-linop' 'texlive-linop-doc' 'texlive-lion-msc' 'texlive-lion-msc-doc' 'texlive-lipsum' 'texlive-lipsum-doc' 'texlive-lisp-on-tex' 'texlive-lisp-on-tex-doc' 'texlive-listbib' 'texlive-listbib-bin' 'texlive-listbib-doc' 'texlive-listing' 'texlive-listing-doc' 'texlive-listings' 'texlive-listings-doc' 'texlive-listings-ext' 'texlive-listings-ext-bin' 'texlive-listings-ext-doc' 'texlive-listlbls' 'texlive-listlbls-doc' 'texlive-listliketab' 'texlive-listliketab-doc' 'texlive-listofitems' 'texlive-listofitems-doc' 'texlive-listofsymbols' 'texlive-listofsymbols-doc' 'texlive-lithuanian' 'texlive-lithuanian-doc' 'texlive-liturg' 'texlive-liturg-doc' 'texlive-lkproof' 'texlive-lkproof-doc' 'texlive-llncsconf' 'texlive-llncsconf-doc' 'texlive-lm' 'texlive-lm-doc' 'texlive-lm-fonts' 'texlive-lm-math' 'texlive-lm-math-doc' 'texlive-lm-math-fonts' 'texlive-lmake' 'texlive-lmake-doc' 'texlive-lni' 'texlive-lni-doc' 'texlive-lobster2' 'texlive-lobster2-doc' 'texlive-lobster2-fonts' 'texlive-locality' 'texlive-locality-doc' 'texlive-localloc' 'texlive-localloc-doc' 'texlive-logbox' 'texlive-logbox-doc' 'texlive-logical-markup-utils' 'texlive-logical-markup-utils-doc' 'texlive-logicproof' 'texlive-logicproof-doc' 'texlive-logicpuzzle' 'texlive-logicpuzzle-doc' 'texlive-logpap' 'texlive-logpap-doc' 'texlive-logreq' 'texlive-logreq-doc' 'texlive-lollipop' 'texlive-lollipop-bin' 'texlive-lollipop-doc' 'texlive-longdivision' 'texlive-longdivision-doc' 'texlive-longfbox' 'texlive-longfbox-doc' 'texlive-longfigure' 'texlive-longfigure-doc' 'texlive-longnamefilelist' 'texlive-longnamefilelist-doc' 'texlive-loops' 'texlive-loops-doc' 'texlive-lpform' 'texlive-lpform-doc' 'texlive-lpic' 'texlive-lpic-doc' 'texlive-lplfitch' 'texlive-lplfitch-doc' 'texlive-lps' 'texlive-lps-doc' 'texlive-lroundrect' 'texlive-lroundrect-doc' 'texlive-lsc' 'texlive-lsc-doc' 'texlive-lshort-bulgarian' 'texlive-lshort-chinese' 'texlive-lshort-czech' 'texlive-lshort-dutch' 'texlive-lshort-english' 'texlive-lshort-estonian' 'texlive-lshort-finnish' 'texlive-lshort-french' 'texlive-lshort-german' 'texlive-lshort-italian' 'texlive-lshort-japanese' 'texlive-lshort-korean' 'texlive-lshort-mongol' 'texlive-lshort-persian' 'texlive-lshort-polish' 'texlive-lshort-portuguese' 'texlive-lshort-russian' 'texlive-lshort-slovak' 'texlive-lshort-slovenian' 'texlive-lshort-spanish' 'texlive-lshort-thai' 'texlive-lshort-turkish' 'texlive-lshort-ukr' 'texlive-lshort-vietnamese' 'texlive-lstaddons' 'texlive-lstaddons-doc' 'texlive-lstbayes' 'texlive-lstbayes-doc' 'texlive-lstfiracode' 'texlive-lstfiracode-doc' 'texlive-lt3graph' 'texlive-lt3graph-doc' 'texlive-ltablex' 'texlive-ltablex-doc' 'texlive-ltabptch' 'texlive-ltabptch-doc' 'texlive-ltb2bib' 'texlive-ltb2bib-doc' 'texlive-ltxdockit' 'texlive-ltxdockit-doc' 'texlive-ltxfileinfo' 'texlive-ltxfileinfo-bin' 'texlive-ltxfileinfo-doc' 'texlive-ltxguidex' 'texlive-ltxguidex-doc' 'texlive-ltximg' 'texlive-ltximg-bin' 'texlive-ltximg-doc' 'texlive-ltxindex' 'texlive-ltxindex-doc' 'texlive-ltxkeys' 'texlive-ltxkeys-doc' 'texlive-ltxmisc' 'texlive-ltxnew' 'texlive-ltxnew-doc' 'texlive-ltxtools' 'texlive-ltxtools-doc' 'texlive-lua-alt-getopt' 'texlive-lua-alt-getopt-doc' 'texlive-lua-check-hyphen' 'texlive-lua-check-hyphen-doc' 'texlive-lua-visual-debug' 'texlive-lua-visual-debug-doc' 'texlive-lua2dox' 'texlive-lua2dox-bin' 'texlive-lua2dox-doc' 'texlive-luabibentry' 'texlive-luabibentry-doc' 'texlive-luabidi' 'texlive-luabidi-doc' 'texlive-luacode' 'texlive-luacode-doc' 'texlive-luahyphenrules' 'texlive-luahyphenrules-doc' 'texlive-luaimageembed' 'texlive-luaimageembed-doc' 'texlive-luaindex' 'texlive-luaindex-doc' 'texlive-luainputenc' 'texlive-luainputenc-doc' 'texlive-luaintro' 'texlive-lualatex-doc' 'texlive-lualatex-doc-de' 'texlive-lualatex-math' 'texlive-lualatex-math-doc' 'texlive-lualatex-truncate' 'texlive-lualatex-truncate-doc' 'texlive-lualibs' 'texlive-lualibs-doc' 'texlive-luamesh' 'texlive-luamesh-doc' 'texlive-luamplib' 'texlive-luamplib-doc' 'texlive-luaotfload' 'texlive-luaotfload-bin' 'texlive-luaotfload-doc' 'texlive-luapackageloader' 'texlive-luapackageloader-doc' 'texlive-luarandom' 'texlive-luarandom-doc' 'texlive-luasseq' 'texlive-luasseq-doc' 'texlive-luatex' 'texlive-luatex-bin' 'texlive-luatex-doc' 'texlive-luatex85' 'texlive-luatex85-doc' 'texlive-luatexbase' 'texlive-luatexbase-doc' 'texlive-luatexja' 'texlive-luatexja-doc' 'texlive-luatexko' 'texlive-luatexko-doc' 'texlive-luatextra' 'texlive-luatextra-doc' 'texlive-luatodonotes' 'texlive-luatodonotes-doc' 'texlive-luavlna' 'texlive-luavlna-doc' 'texlive-luaxml' 'texlive-luaxml-doc' 'texlive-lwarp' 'texlive-lwarp-bin' 'texlive-lwarp-doc' 'texlive-lxfonts' 'texlive-lxfonts-doc' 'texlive-lxfonts-fonts' 'texlive-ly1' 'texlive-ly1-doc' 'texlive-lyluatex' 'texlive-lyluatex-doc' 'texlive-m-tx' 'texlive-m-tx-bin' 'texlive-m-tx-doc' 'texlive-macros2e' 'texlive-macros2e-doc' 'texlive-macroswap' 'texlive-macroswap-doc' 'texlive-mafr' 'texlive-mafr-doc' 'texlive-magaz' 'texlive-magaz-doc' 'texlive-mailing' 'texlive-mailing-doc' 'texlive-mailmerge' 'texlive-mailmerge-doc' 'texlive-make4ht' 'texlive-make4ht-bin' 'texlive-make4ht-doc' 'texlive-makebarcode' 'texlive-makebarcode-doc' 'texlive-makebase' 'texlive-makebase-doc' 'texlive-makebox' 'texlive-makebox-doc' 'texlive-makecell' 'texlive-makecell-doc' 'texlive-makecirc' 'texlive-makecirc-doc' 'texlive-makecmds' 'texlive-makecmds-doc' 'texlive-makecookbook' 'texlive-makedtx' 'texlive-makedtx-bin' 'texlive-makedtx-doc' 'texlive-makeglos' 'texlive-makeglos-doc' 'texlive-makeindex' 'texlive-makeindex-bin' 'texlive-makeindex-doc' 'texlive-makeplot' 'texlive-makeplot-doc' 'texlive-maker' 'texlive-maker-doc' 'texlive-makeshape' 'texlive-makeshape-doc' 'texlive-mandi' 'texlive-mandi-doc' 'texlive-manfnt' 'texlive-manfnt-font' 'texlive-manfnt-font-fonts' 'texlive-manuscript' 'texlive-manuscript-doc' 'texlive-manyind' 'texlive-manyind-doc' 'texlive-margbib' 'texlive-margbib-doc' 'texlive-marginfit' 'texlive-marginfit-doc' 'texlive-marginfix' 'texlive-marginfix-doc' 'texlive-marginnote' 'texlive-marginnote-doc' 'texlive-markdown' 'texlive-markdown-doc' 'texlive-marvosym' 'texlive-marvosym-doc' 'texlive-marvosym-fonts' 'texlive-matc3' 'texlive-matc3-doc' 'texlive-matc3mem' 'texlive-matc3mem-doc' 'texlive-match_parens' 'texlive-match_parens-bin' 'texlive-match_parens-doc' 'texlive-math-e' 'texlive-math-into-latex-4' 'texlive-mathabx' 'texlive-mathabx-doc' 'texlive-mathabx-type1' 'texlive-mathabx-type1-doc' 'texlive-mathabx-type1-fonts' 'texlive-mathalfa' 'texlive-mathalfa-doc' 'texlive-mathastext' 'texlive-mathastext-doc' 'texlive-mathcomp' 'texlive-mathcomp-doc' 'texlive-mathdesign' 'texlive-mathdesign-doc' 'texlive-mathdesign-fonts' 'texlive-mathdots' 'texlive-mathdots-doc' 'texlive-mathexam' 'texlive-mathexam-doc' 'texlive-mathfam256' 'texlive-mathfam256-doc' 'texlive-mathfixs' 'texlive-mathfixs-doc' 'texlive-mathfont' 'texlive-mathfont-doc' 'texlive-mathpartir' 'texlive-mathpartir-doc' 'texlive-mathpazo' 'texlive-mathpazo-doc' 'texlive-mathpazo-fonts' 'texlive-mathpunctspace' 'texlive-mathpunctspace-doc' 'texlive-maths-symbols' 'texlive-mathspec' 'texlive-mathspec-doc' 'texlive-mathspic' 'texlive-mathspic-bin' 'texlive-mathspic-doc' 'texlive-mathtools' 'texlive-mathtools-doc' 'texlive-matlab-prettifier' 'texlive-matlab-prettifier-doc' 'texlive-mattens' 'texlive-mattens-doc' 'texlive-maybemath' 'texlive-maybemath-doc' 'texlive-mcaption' 'texlive-mcaption-doc' 'texlive-mceinleger' 'texlive-mceinleger-doc' 'texlive-mcexam' 'texlive-mcexam-doc' 'texlive-mcf2graph' 'texlive-mcf2graph-doc' 'texlive-mcite' 'texlive-mcite-doc' 'texlive-mciteplus' 'texlive-mciteplus-doc' 'texlive-mcmthesis' 'texlive-mcmthesis-doc' 'texlive-mdframed' 'texlive-mdframed-doc' 'texlive-mdputu' 'texlive-mdputu-doc' 'texlive-mdsymbol' 'texlive-mdsymbol-doc' 'texlive-mdsymbol-fonts' 'texlive-mdwtools' 'texlive-mdwtools-doc' 'texlive-media9' 'texlive-media9-doc' 'texlive-medstarbeamer' 'texlive-medstarbeamer-doc' 'texlive-meetingmins' 'texlive-meetingmins-doc' 'texlive-memdesign' 'texlive-memexsupp' 'texlive-memexsupp-doc' 'texlive-memoir' 'texlive-memoir-doc' 'texlive-memory' 'texlive-memory-doc' 'texlive-memorygraphs' 'texlive-memorygraphs-doc' 'texlive-mendex-doc' 'texlive-mendex-doc-doc' 'texlive-mensa-tex' 'texlive-mensa-tex-doc' 'texlive-mentis' 'texlive-mentis-doc' 'texlive-menu' 'texlive-menu-doc' 'texlive-menukeys' 'texlive-menukeys-doc' 'texlive-merriweather' 'texlive-merriweather-doc' 'texlive-merriweather-fonts' 'texlive-metafont' 'texlive-metafont-beginners' 'texlive-metafont-bin' 'texlive-metafont-doc' 'texlive-metago' 'texlive-metago-doc' 'texlive-metalogo' 'texlive-metalogo-doc' 'texlive-metalogox' 'texlive-metalogox-doc' 'texlive-metaobj' 'texlive-metaobj-doc' 'texlive-metaplot' 'texlive-metaplot-doc' 'texlive-metapost' 'texlive-metapost-bin' 'texlive-metapost-colorbrewer' 'texlive-metapost-colorbrewer-doc' 'texlive-metapost-doc' 'texlive-metapost-examples' 'texlive-metapost-fonts' 'texlive-metatex' 'texlive-metatex-doc' 'texlive-metatype1' 'texlive-metauml' 'texlive-metauml-doc' 'texlive-method' 'texlive-method-doc' 'texlive-metre' 'texlive-metre-doc' 'texlive-metrix' 'texlive-metrix-doc' 'texlive-mex' 'texlive-mex-bin' 'texlive-mex-doc' 'texlive-mf2pt1' 'texlive-mf2pt1-bin' 'texlive-mf2pt1-doc' 'texlive-mfirstuc' 'texlive-mfirstuc-doc' 'texlive-mflogo' 'texlive-mflogo-doc' 'texlive-mflogo-font' 'texlive-mflogo-font-doc' 'texlive-mflogo-font-fonts' 'texlive-mflua' 'texlive-mflua-bin' 'texlive-mfnfss' 'texlive-mfnfss-doc' 'texlive-mfpic' 'texlive-mfpic-doc' 'texlive-mfpic4ode' 'texlive-mfpic4ode-doc' 'texlive-mftinc' 'texlive-mftinc-doc' 'texlive-mfware' 'texlive-mfware-bin' 'texlive-mfware-doc' 'texlive-mgltex' 'texlive-mgltex-doc' 'texlive-mhchem' 'texlive-mhchem-doc' 'texlive-mhequ' 'texlive-mhequ-doc' 'texlive-mi-solns' 'texlive-mi-solns-doc' 'texlive-miama' 'texlive-miama-doc' 'texlive-miama-fonts' 'texlive-microtype' 'texlive-microtype-de' 'texlive-microtype-doc' 'texlive-midnight' 'texlive-midnight-doc' 'texlive-midpage' 'texlive-midpage-doc' 'texlive-miller' 'texlive-miller-doc' 'texlive-milog' 'texlive-milog-doc' 'texlive-milsymb' 'texlive-milsymb-doc' 'texlive-minibox' 'texlive-minibox-doc' 'texlive-minidocument' 'texlive-minidocument-doc' 'texlive-minifp' 'texlive-minifp-doc' 'texlive-minipage-marginpar' 'texlive-minipage-marginpar-doc' 'texlive-miniplot' 'texlive-miniplot-doc' 'texlive-minitoc' 'texlive-minitoc-doc' 'texlive-minorrevision' 'texlive-minorrevision-doc' 'texlive-minted' 'texlive-minted-doc' 'texlive-mintspirit' 'texlive-mintspirit-doc' 'texlive-mintspirit-fonts' 'texlive-minutes' 'texlive-minutes-doc' 'texlive-missaali' 'texlive-missaali-doc' 'texlive-missaali-fonts' 'texlive-mkgrkindex' 'texlive-mkgrkindex-bin' 'texlive-mkgrkindex-doc' 'texlive-mkjobtexmf' 'texlive-mkjobtexmf-bin' 'texlive-mkjobtexmf-doc' 'texlive-mkpattern' 'texlive-mkpattern-doc' 'texlive-mkpic' 'texlive-mkpic-bin' 'texlive-mkpic-doc' 'texlive-mla-paper' 'texlive-mla-paper-doc' 'texlive-mlist' 'texlive-mlist-doc' 'texlive-mltex' 'texlive-mltex-bin' 'texlive-mltex-doc' 'texlive-mmap' 'texlive-mmap-doc' 'texlive-mnotes' 'texlive-mnotes-doc' 'texlive-mnras' 'texlive-mnras-doc' 'texlive-mnsymbol' 'texlive-mnsymbol-doc' 'texlive-mnsymbol-fonts' 'texlive-modeles-factures-belges-assocs' 'texlive-modeles-factures-belges-assocs-doc' 'texlive-moderncv' 'texlive-moderncv-doc' 'texlive-modernposter' 'texlive-modernposter-doc' 'texlive-moderntimeline' 'texlive-moderntimeline-doc' 'texlive-modiagram' 'texlive-modiagram-doc' 'texlive-modref' 'texlive-modref-doc' 'texlive-modroman' 'texlive-modroman-doc' 'texlive-modular' 'texlive-modular-doc' 'texlive-modulus' 'texlive-modulus-doc' 'texlive-mongolian-babel' 'texlive-mongolian-babel-doc' 'texlive-monofill' 'texlive-monofill-doc' 'texlive-montex' 'texlive-montex-doc' 'texlive-montex-fonts' 'texlive-montserrat' 'texlive-montserrat-doc' 'texlive-montserrat-fonts' 'texlive-moodle' 'texlive-moodle-doc' 'texlive-moreenum' 'texlive-moreenum-doc' 'texlive-morefloats' 'texlive-morefloats-doc' 'texlive-morehype' 'texlive-morehype-doc' 'texlive-moresize' 'texlive-moresize-doc' 'texlive-moreverb' 'texlive-moreverb-doc' 'texlive-morewrites' 'texlive-morewrites-doc' 'texlive-morisawa' 'texlive-morisawa-doc' 'texlive-movie15' 'texlive-movie15-doc' 'texlive-mp3d' 'texlive-mp3d-doc' 'texlive-mparhack' 'texlive-mparhack-doc' 'texlive-mparrows' 'texlive-mparrows-doc' 'texlive-mpattern' 'texlive-mpattern-doc' 'texlive-mpcolornames' 'texlive-mpcolornames-doc' 'texlive-mpgraphics' 'texlive-mpgraphics-doc' 'texlive-mpman-ru' 'texlive-mpostinl' 'texlive-mpostinl-doc' 'texlive-mptopdf' 'texlive-mptopdf-bin' 'texlive-mptopdf-doc' 'texlive-mptrees' 'texlive-mptrees-doc' 'texlive-ms' 'texlive-ms-doc' 'texlive-msc' 'texlive-msc-doc' 'texlive-msg' 'texlive-msg-doc' 'texlive-mslapa' 'texlive-mslapa-doc' 'texlive-msu-thesis' 'texlive-msu-thesis-doc' 'texlive-mtgreek' 'texlive-mtgreek-doc' 'texlive-mucproc' 'texlive-mucproc-doc' 'texlive-mugsthesis' 'texlive-mugsthesis-doc' 'texlive-multenum' 'texlive-multenum-doc' 'texlive-multiaudience' 'texlive-multiaudience-doc' 'texlive-multibbl' 'texlive-multibbl-doc' 'texlive-multibib' 'texlive-multibib-doc' 'texlive-multibibliography' 'texlive-multibibliography-bin' 'texlive-multibibliography-doc' 'texlive-multicap' 'texlive-multicap-doc' 'texlive-multicolrule' 'texlive-multicolrule-doc' 'texlive-multidef' 'texlive-multidef-doc' 'texlive-multido' 'texlive-multido-doc' 'texlive-multienv' 'texlive-multienv-doc' 'texlive-multiexpand' 'texlive-multiexpand-doc' 'texlive-multilang' 'texlive-multilang-doc' 'texlive-multiobjective' 'texlive-multiobjective-doc' 'texlive-multirow' 'texlive-multirow-doc' 'texlive-munich' 'texlive-munich-doc' 'texlive-musicography' 'texlive-musicography-doc' 'texlive-musikui' 'texlive-musikui-doc' 'texlive-musixguit' 'texlive-musixguit-doc' 'texlive-musixtex' 'texlive-musixtex-bin' 'texlive-musixtex-doc' 'texlive-musixtex-fonts' 'texlive-musixtex-fonts-doc' 'texlive-musixtex-fonts-fonts' 'texlive-musixtnt' 'texlive-musixtnt-bin' 'texlive-musixtnt-doc' 'texlive-musuos' 'texlive-musuos-doc' 'texlive-muthesis' 'texlive-muthesis-doc' 'texlive-mversion' 'texlive-mversion-doc' 'texlive-mwcls' 'texlive-mwcls-doc' 'texlive-mwe' 'texlive-mwe-doc' 'texlive-mweights' 'texlive-mweights-doc' 'texlive-mxedruli' 'texlive-mxedruli-doc' 'texlive-mxedruli-fonts' 'texlive-mychemistry' 'texlive-mychemistry-doc' 'texlive-mycv' 'texlive-mycv-doc' 'texlive-mylatexformat' 'texlive-mylatexformat-doc' 'texlive-mynsfc' 'texlive-mynsfc-doc' 'texlive-na-box' 'texlive-na-box-doc' 'texlive-na-position' 'texlive-na-position-doc' 'texlive-nag' 'texlive-nag-doc' 'texlive-nameauth' 'texlive-nameauth-doc' 'texlive-namespc' 'texlive-namespc-doc' 'texlive-nanumtype1' 'texlive-nanumtype1-doc' 'texlive-nanumtype1-fonts' 'texlive-nar' 'texlive-natbib' 'texlive-natbib-doc' 'texlive-natded' 'texlive-natded-doc' 'texlive-nath' 'texlive-nath-doc' 'texlive-nature' 'texlive-nature-doc' 'texlive-navigator' 'texlive-navigator-doc' 'texlive-navydocs' 'texlive-navydocs-doc' 'texlive-ncclatex' 'texlive-ncclatex-doc' 'texlive-ncctools' 'texlive-ncctools-doc' 'texlive-ncntrsbk' 'texlive-ncntrsbk-fonts' 'texlive-nddiss' 'texlive-nddiss-doc' 'texlive-ndsu-thesis' 'texlive-ndsu-thesis-doc' 'texlive-needspace' 'texlive-needspace-doc' 'texlive-nestquot' 'texlive-neuralnetwork' 'texlive-neuralnetwork-doc' 'texlive-nevelok' 'texlive-nevelok-doc' 'texlive-newcommand' 'texlive-newenviron' 'texlive-newenviron-doc' 'texlive-newfile' 'texlive-newfile-doc' 'texlive-newlfm' 'texlive-newlfm-doc' 'texlive-newpx' 'texlive-newpx-doc' 'texlive-newpx-fonts' 'texlive-newsletr' 'texlive-newsletr-doc' 'texlive-newspaper' 'texlive-newspaper-doc' 'texlive-newtx' 'texlive-newtx-doc' 'texlive-newtx-fonts' 'texlive-newtxsf' 'texlive-newtxsf-doc' 'texlive-newtxsf-fonts' 'texlive-newtxtt' 'texlive-newtxtt-doc' 'texlive-newtxtt-fonts' 'texlive-newunicodechar' 'texlive-newunicodechar-doc' 'texlive-newvbtm' 'texlive-newvbtm-doc' 'texlive-newverbs' 'texlive-newverbs-doc' 'texlive-nextpage' 'texlive-nfssext-cfr' 'texlive-nfssext-cfr-doc' 'texlive-nicefilelist' 'texlive-nicefilelist-doc' 'texlive-niceframe' 'texlive-niceframe-doc' 'texlive-niceframe-type1' 'texlive-niceframe-type1-doc' 'texlive-niceframe-type1-fonts' 'texlive-nicematrix' 'texlive-nicematrix-doc' 'texlive-nicetext' 'texlive-nicetext-doc' 'texlive-nidanfloat' 'texlive-nidanfloat-doc' 'texlive-nih' 'texlive-nih-doc' 'texlive-nihbiosketch' 'texlive-nihbiosketch-doc' 'texlive-nimbus15' 'texlive-nimbus15-doc' 'texlive-nimbus15-fonts' 'texlive-njurepo' 'texlive-njurepo-doc' 'texlive-nkarta' 'texlive-nkarta-doc' 'texlive-nlctdoc' 'texlive-nlctdoc-doc' 'texlive-nmbib' 'texlive-nmbib-doc' 'texlive-noconflict' 'texlive-noconflict-doc' 'texlive-nodetree' 'texlive-nodetree-doc' 'texlive-noindentafter' 'texlive-noindentafter-doc' 'texlive-noitcrul' 'texlive-noitcrul-doc' 'texlive-nolbreaks' 'texlive-nolbreaks-doc' 'texlive-nomencl' 'texlive-nomencl-doc' 'texlive-nomentbl' 'texlive-nomentbl-doc' 'texlive-nonfloat' 'texlive-nonfloat-doc' 'texlive-nonumonpart' 'texlive-nonumonpart-doc' 'texlive-nopageno' 'texlive-nopageno-doc' 'texlive-norasi-c90' 'texlive-normalcolor' 'texlive-normalcolor-doc' 'texlive-nostarch' 'texlive-nostarch-doc' 'texlive-notes' 'texlive-notes-doc' 'texlive-notes2bib' 'texlive-notes2bib-doc' 'texlive-notespages' 'texlive-notespages-doc' 'texlive-notestex' 'texlive-notestex-doc' 'texlive-notex-bst' 'texlive-noto' 'texlive-noto-doc' 'texlive-noto-fonts' 'texlive-notoccite' 'texlive-notoccite-doc' 'texlive-novel' 'texlive-novel-doc' 'texlive-novel-fonts' 'texlive-nowidow' 'texlive-nowidow-doc' 'texlive-nox' 'texlive-nox-doc' 'texlive-npp-for-context' 'texlive-nrc' 'texlive-nrc-doc' 'texlive-ntgclass' 'texlive-ntgclass-doc' 'texlive-ntheorem' 'texlive-ntheorem-doc' 'texlive-ntheorem-vn' 'texlive-nuc' 'texlive-nuc-doc' 'texlive-nucleardata' 'texlive-nucleardata-doc' 'texlive-numberedblock' 'texlive-numberedblock-doc' 'texlive-numericplots' 'texlive-numericplots-doc' 'texlive-numname' 'texlive-numname-doc' 'texlive-numnameru' 'texlive-numnameru-doc' 'texlive-numprint' 'texlive-numprint-doc' 'texlive-numspell' 'texlive-numspell-doc' 'texlive-nwejm' 'texlive-nwejm-doc' 'texlive-oberdiek' 'texlive-oberdiek-doc' 'texlive-objectz' 'texlive-objectz-doc' 'texlive-obnov' 'texlive-obnov-doc' 'texlive-ocg-p' 'texlive-ocg-p-doc' 'texlive-ocgx' 'texlive-ocgx-doc' 'texlive-ocgx2' 'texlive-ocgx2-doc' 'texlive-ocherokee' 'texlive-ocherokee-doc' 'texlive-ocherokee-fonts' 'texlive-ocr-b' 'texlive-ocr-b-doc' 'texlive-ocr-b-outline' 'texlive-ocr-b-outline-doc' 'texlive-ocr-b-outline-fonts' 'texlive-ocr-latex' 'texlive-ocr-latex-doc' 'texlive-octave' 'texlive-octave-doc' 'texlive-octavo' 'texlive-octavo-doc' 'texlive-odsfile' 'texlive-odsfile-doc' 'texlive-ofs' 'texlive-ofs-doc' 'texlive-ogham' 'texlive-ogham-doc' 'texlive-oinuit' 'texlive-oinuit-doc' 'texlive-oinuit-fonts' 'texlive-old-arrows' 'texlive-old-arrows-doc' 'texlive-old-arrows-fonts' 'texlive-oldlatin' 'texlive-oldlatin-doc' 'texlive-oldstandard' 'texlive-oldstandard-doc' 'texlive-oldstandard-fonts' 'texlive-oldstyle' 'texlive-oldstyle-doc' 'texlive-olsak-misc' 'texlive-olsak-misc-doc' 'texlive-omega' 'texlive-omega-doc' 'texlive-omega-fonts' 'texlive-omegaware' 'texlive-omegaware-bin' 'texlive-onedown' 'texlive-onedown-doc' 'texlive-onlyamsmath' 'texlive-onlyamsmath-doc' 'texlive-onrannual' 'texlive-onrannual-doc' 'texlive-opcit' 'texlive-opcit-doc' 'texlive-opensans' 'texlive-opensans-doc' 'texlive-opensans-fonts' 'texlive-oplotsymbl' 'texlive-oplotsymbl-doc' 'texlive-opteng' 'texlive-opteng-doc' 'texlive-optidef' 'texlive-optidef-doc' 'texlive-optional' 'texlive-optional-doc' 'texlive-options' 'texlive-options-doc' 'texlive-ordinalpt' 'texlive-ordinalpt-doc' 'texlive-orkhun' 'texlive-orkhun-doc' 'texlive-oscola' 'texlive-oscola-doc' 'texlive-ot-tableau' 'texlive-ot-tableau-doc' 'texlive-othello' 'texlive-othello-doc' 'texlive-othelloboard' 'texlive-othelloboard-doc' 'texlive-otibet' 'texlive-otibet-doc' 'texlive-oubraces' 'texlive-oubraces-doc' 'texlive-outline' 'texlive-outline-doc' 'texlive-outliner' 'texlive-outliner-doc' 'texlive-outlines' 'texlive-outlines-doc' 'texlive-outlining' 'texlive-outlining-doc' 'texlive-overlays' 'texlive-overlays-doc' 'texlive-overlock' 'texlive-overlock-doc' 'texlive-overlock-fonts' 'texlive-overpic' 'texlive-overpic-doc' 'texlive-pacioli' 'texlive-pacioli-doc' 'texlive-padauk' 'texlive-padauk-doc' 'texlive-padauk-fonts' 'texlive-padcount' 'texlive-padcount-doc' 'texlive-pagecolor' 'texlive-pagecolor-doc' 'texlive-pagecont' 'texlive-pagecont-doc' 'texlive-pagenote' 'texlive-pagenote-doc' 'texlive-pagerange' 'texlive-pagerange-doc' 'texlive-pageslts' 'texlive-pageslts-doc' 'texlive-palatino' 'texlive-palatino-fonts' 'texlive-paper' 'texlive-paper-doc' 'texlive-papercdcase' 'texlive-papercdcase-doc' 'texlive-papermas' 'texlive-papermas-doc' 'texlive-papertex' 'texlive-papertex-doc' 'texlive-paracol' 'texlive-paracol-doc' 'texlive-parades' 'texlive-parades-doc' 'texlive-paralist' 'texlive-paralist-doc' 'texlive-parallel' 'texlive-parallel-doc' 'texlive-paratype' 'texlive-paratype-doc' 'texlive-paratype-fonts' 'texlive-paresse' 'texlive-paresse-doc' 'texlive-parnotes' 'texlive-parnotes-doc' 'texlive-parrun' 'texlive-parrun-doc' 'texlive-parselines' 'texlive-parselines-doc' 'texlive-parskip' 'texlive-parskip-doc' 'texlive-pas-cours' 'texlive-pas-cours-doc' 'texlive-pas-crosswords' 'texlive-pas-crosswords-doc' 'texlive-pas-cv' 'texlive-pas-cv-doc' 'texlive-pas-tableur' 'texlive-pas-tableur-doc' 'texlive-passivetex' 'texlive-patch' 'texlive-patchcmd' 'texlive-patchcmd-doc' 'texlive-patgen' 'texlive-patgen-bin' 'texlive-patgen2-tutorial' 'texlive-path' 'texlive-path-doc' 'texlive-pauldoc' 'texlive-pauldoc-doc' 'texlive-pawpict' 'texlive-pawpict-doc' 'texlive-pax' 'texlive-pax-bin' 'texlive-pax-doc' 'texlive-pb-diagram' 'texlive-pb-diagram-doc' 'texlive-pbibtex-base' 'texlive-pbibtex-base-doc' 'texlive-pbox' 'texlive-pbox-doc' 'texlive-pbsheet' 'texlive-pbsheet-doc' 'texlive-pdf-trans' 'texlive-pdf-trans-doc' 'texlive-pdf14' 'texlive-pdf14-doc' 'texlive-pdfbook2' 'texlive-pdfbook2-bin' 'texlive-pdfbook2-doc' 'texlive-pdfcomment' 'texlive-pdfcomment-doc' 'texlive-pdfcprot' 'texlive-pdfcprot-doc' 'texlive-pdfcrop' 'texlive-pdfcrop-bin' 'texlive-pdfcrop-doc' 'texlive-pdfjam' 'texlive-pdfjam-bin' 'texlive-pdfjam-doc' 'texlive-pdflatexpicscale' 'texlive-pdflatexpicscale-bin' 'texlive-pdflatexpicscale-doc' 'texlive-pdfmarginpar' 'texlive-pdfmarginpar-doc' 'texlive-pdfoverlay' 'texlive-pdfoverlay-doc' 'texlive-pdfpagediff' 'texlive-pdfpagediff-doc' 'texlive-pdfpages' 'texlive-pdfpages-doc' 'texlive-pdfpc-movie' 'texlive-pdfpc-movie-doc' 'texlive-pdfprivacy' 'texlive-pdfprivacy-doc' 'texlive-pdfreview' 'texlive-pdfreview-doc' 'texlive-pdfscreen' 'texlive-pdfscreen-doc' 'texlive-pdfslide' 'texlive-pdfslide-doc' 'texlive-pdfsync' 'texlive-pdfsync-doc' 'texlive-pdftex' 'texlive-pdftex-bin' 'texlive-pdftex-doc' 'texlive-pdftex-fonts' 'texlive-pdftex-quiet' 'texlive-pdftex-quiet-bin' 'texlive-pdftex-quiet-doc' 'texlive-pdftools' 'texlive-pdftools-bin' 'texlive-pdftools-doc' 'texlive-pdftricks' 'texlive-pdftricks-doc' 'texlive-pdftricks2' 'texlive-pdftricks2-doc' 'texlive-pdfwin' 'texlive-pdfwin-doc' 'texlive-pdfx' 'texlive-pdfx-doc' 'texlive-pdfxup' 'texlive-pdfxup-bin' 'texlive-pdfxup-doc' 'texlive-pecha' 'texlive-pecha-doc' 'texlive-pedigree-perl' 'texlive-pedigree-perl-bin' 'texlive-pedigree-perl-doc' 'texlive-penrose' 'texlive-penrose-doc' 'texlive-perception' 'texlive-perception-doc' 'texlive-perfectcut' 'texlive-perfectcut-doc' 'texlive-perltex' 'texlive-perltex-bin' 'texlive-perltex-doc' 'texlive-permute' 'texlive-permute-doc' 'texlive-persian-bib' 'texlive-persian-bib-doc' 'texlive-petiteannonce' 'texlive-petiteannonce-doc' 'texlive-petri-nets' 'texlive-petri-nets-bin' 'texlive-petri-nets-doc' 'texlive-pfarrei' 'texlive-pfarrei-bin' 'texlive-pfarrei-doc' 'texlive-pgf' 'texlive-pgf-blur' 'texlive-pgf-blur-doc' 'texlive-pgf-cmykshadings' 'texlive-pgf-cmykshadings-doc' 'texlive-pgf-doc' 'texlive-pgf-soroban' 'texlive-pgf-soroban-doc' 'texlive-pgf-spectra' 'texlive-pgf-spectra-doc' 'texlive-pgf-umlcd' 'texlive-pgf-umlcd-doc' 'texlive-pgf-umlsd' 'texlive-pgf-umlsd-doc' 'texlive-pgfgantt' 'texlive-pgfgantt-doc' 'texlive-pgfkeyx' 'texlive-pgfkeyx-doc' 'texlive-pgfmolbio' 'texlive-pgfmolbio-doc' 'texlive-pgfopts' 'texlive-pgfopts-doc' 'texlive-pgfornament' 'texlive-pgfornament-doc' 'texlive-pgfornament-han' 'texlive-pgfornament-han-doc' 'texlive-pgfplots' 'texlive-pgfplots-doc' 'texlive-phaistos' 'texlive-phaistos-doc' 'texlive-phaistos-fonts' 'texlive-phffullpagefigure' 'texlive-phffullpagefigure-doc' 'texlive-phfnote' 'texlive-phfnote-doc' 'texlive-phfparen' 'texlive-phfparen-doc' 'texlive-phfqit' 'texlive-phfqit-doc' 'texlive-phfquotetext' 'texlive-phfquotetext-doc' 'texlive-phfsvnwatermark' 'texlive-phfsvnwatermark-doc' 'texlive-phfthm' 'texlive-phfthm-doc' 'texlive-philex' 'texlive-philex-doc' 'texlive-philokalia' 'texlive-philokalia-doc' 'texlive-philokalia-fonts' 'texlive-philosophersimprint' 'texlive-philosophersimprint-doc' 'texlive-phonenumbers' 'texlive-phonenumbers-doc' 'texlive-phonetic' 'texlive-phonetic-doc' 'texlive-phonrule' 'texlive-phonrule-doc' 'texlive-photo' 'texlive-photo-doc' 'texlive-physics' 'texlive-physics-doc' 'texlive-piano' 'texlive-piano-doc' 'texlive-picinpar' 'texlive-picinpar-doc' 'texlive-pict2e' 'texlive-pict2e-doc' 'texlive-pictex' 'texlive-pictex-doc' 'texlive-pictex2' 'texlive-pictexsum' 'texlive-piechartmp' 'texlive-piechartmp-doc' 'texlive-piff' 'texlive-piff-doc' 'texlive-pigpen' 'texlive-pigpen-doc' 'texlive-pigpen-fonts' 'texlive-pinlabel' 'texlive-pinlabel-doc' 'texlive-pitex' 'texlive-pitex-doc' 'texlive-pittetd' 'texlive-pittetd-doc' 'texlive-pixelart' 'texlive-pixelart-doc' 'texlive-pkfix' 'texlive-pkfix-bin' 'texlive-pkfix-doc' 'texlive-pkfix-helper' 'texlive-pkfix-helper-bin' 'texlive-pkfix-helper-doc' 'texlive-pkgloader' 'texlive-pkgloader-doc' 'texlive-pkuthss' 'texlive-pkuthss-doc' 'texlive-pl' 'texlive-pl-doc' 'texlive-pl-fonts' 'texlive-placeat' 'texlive-placeat-doc' 'texlive-placeins' 'texlive-placeins-doc' 'texlive-placeins-plain' 'texlive-plain' 'texlive-plain-doc' 'texlive-plainpkg' 'texlive-plainpkg-doc' 'texlive-plantslabels' 'texlive-plantslabels-doc' 'texlive-plantuml' 'texlive-plantuml-doc' 'texlive-plari' 'texlive-plari-doc' 'texlive-plates' 'texlive-plates-doc' 'texlive-platex' 'texlive-platex-bin' 'texlive-platex-doc' 'texlive-platex-tools' 'texlive-platex-tools-doc' 'texlive-platexcheat' 'texlive-plautopatch' 'texlive-plautopatch-doc' 'texlive-play' 'texlive-play-doc' 'texlive-playfair' 'texlive-playfair-doc' 'texlive-playfair-fonts' 'texlive-plex' 'texlive-plex-doc' 'texlive-plex-fonts' 'texlive-plex-otf' 'texlive-plex-otf-doc' 'texlive-plipsum' 'texlive-plipsum-doc' 'texlive-plnfss' 'texlive-plnfss-doc' 'texlive-plstmary' 'texlive-plstmary-doc' 'texlive-plweb' 'texlive-plweb-doc' 'texlive-pm-isomath' 'texlive-pm-isomath-doc' 'texlive-pmgraph' 'texlive-pmgraph-doc' 'texlive-pmx' 'texlive-pmx-bin' 'texlive-pmx-doc' 'texlive-pmxchords' 'texlive-pmxchords-bin' 'texlive-pmxchords-doc' 'texlive-pnas2009' 'texlive-poemscol' 'texlive-poemscol-doc' 'texlive-poetry' 'texlive-poetry-doc' 'texlive-poetrytex' 'texlive-poetrytex-doc' 'texlive-polexpr' 'texlive-polexpr-doc' 'texlive-polski' 'texlive-polski-doc' 'texlive-poltawski' 'texlive-poltawski-doc' 'texlive-poltawski-fonts' 'texlive-polyglossia' 'texlive-polyglossia-doc' 'texlive-polynom' 'texlive-polynom-doc' 'texlive-polynomial' 'texlive-polynomial-doc' 'texlive-polytable' 'texlive-polytable-doc' 'texlive-poormanlog' 'texlive-poormanlog-doc' 'texlive-postage' 'texlive-postage-doc' 'texlive-postcards' 'texlive-postcards-doc' 'texlive-poster-mac' 'texlive-poster-mac-doc' 'texlive-powerdot' 'texlive-powerdot-FUBerlin' 'texlive-powerdot-FUBerlin-doc' 'texlive-powerdot-doc' 'texlive-powerdot-tuliplab' 'texlive-powerdot-tuliplab-doc' 'texlive-ppr-prv' 'texlive-ppr-prv-doc' 'texlive-pracjourn' 'texlive-pracjourn-doc' 'texlive-preprint' 'texlive-preprint-doc' 'texlive-prerex' 'texlive-prerex-doc' 'texlive-present' 'texlive-present-doc' 'texlive-presentations' 'texlive-presentations-en' 'texlive-pressrelease' 'texlive-pressrelease-doc' 'texlive-prettyref' 'texlive-prettyref-doc' 'texlive-preview' 'texlive-preview-doc' 'texlive-prftree' 'texlive-prftree-doc' 'texlive-printlen' 'texlive-printlen-doc' 'texlive-proba' 'texlive-proba-doc' 'texlive-probsoln' 'texlive-probsoln-doc' 'texlive-procIAGssymp' 'texlive-procIAGssymp-doc' 'texlive-prodint' 'texlive-prodint-doc' 'texlive-prodint-fonts' 'texlive-productbox' 'texlive-productbox-doc' 'texlive-program' 'texlive-program-doc' 'texlive-progress' 'texlive-progress-doc' 'texlive-progressbar' 'texlive-progressbar-doc' 'texlive-proofread' 'texlive-proofread-doc' 'texlive-prooftrees' 'texlive-prooftrees-doc' 'texlive-properties' 'texlive-properties-doc' 'texlive-proposal' 'texlive-proposal-doc' 'texlive-prosper' 'texlive-prosper-doc' 'texlive-protex' 'texlive-protex-doc' 'texlive-protocol' 'texlive-protocol-doc' 'texlive-przechlewski-book' 'texlive-przechlewski-book-doc' 'texlive-ps2pk' 'texlive-ps2pk-bin' 'texlive-psbao' 'texlive-psbao-doc' 'texlive-pseudocode' 'texlive-pseudocode-doc' 'texlive-psfrag' 'texlive-psfrag-doc' 'texlive-psfrag-italian' 'texlive-psfragx' 'texlive-psfragx-doc' 'texlive-psgo' 'texlive-psgo-doc' 'texlive-psizzl' 'texlive-psizzl-doc' 'texlive-pslatex' 'texlive-psnfss' 'texlive-psnfss-doc' 'texlive-pspicture' 'texlive-pspicture-doc' 'texlive-pst-2dplot' 'texlive-pst-2dplot-doc' 'texlive-pst-3d' 'texlive-pst-3d-doc' 'texlive-pst-3dplot' 'texlive-pst-3dplot-doc' 'texlive-pst-abspos' 'texlive-pst-abspos-doc' 'texlive-pst-am' 'texlive-pst-am-doc' 'texlive-pst-antiprism' 'texlive-pst-antiprism-doc' 'texlive-pst-arrow' 'texlive-pst-arrow-doc' 'texlive-pst-asr' 'texlive-pst-asr-doc' 'texlive-pst-bar' 'texlive-pst-bar-doc' 'texlive-pst-barcode' 'texlive-pst-barcode-doc' 'texlive-pst-bezier' 'texlive-pst-bezier-doc' 'texlive-pst-blur' 'texlive-pst-blur-doc' 'texlive-pst-bspline' 'texlive-pst-bspline-doc' 'texlive-pst-calculate' 'texlive-pst-calculate-doc' 'texlive-pst-calendar' 'texlive-pst-calendar-doc' 'texlive-pst-cie' 'texlive-pst-cie-doc' 'texlive-pst-circ' 'texlive-pst-circ-doc' 'texlive-pst-coil' 'texlive-pst-coil-doc' 'texlive-pst-contourplot' 'texlive-pst-contourplot-doc' 'texlive-pst-cox' 'texlive-pst-cox-doc' 'texlive-pst-dart' 'texlive-pst-dart-doc' 'texlive-pst-dbicons' 'texlive-pst-dbicons-doc' 'texlive-pst-diffraction' 'texlive-pst-diffraction-doc' 'texlive-pst-electricfield' 'texlive-pst-electricfield-doc' 'texlive-pst-eps' 'texlive-pst-eps-doc' 'texlive-pst-eucl' 'texlive-pst-eucl-doc' 'texlive-pst-eucl-translation-bg' 'texlive-pst-exa' 'texlive-pst-exa-doc' 'texlive-pst-feyn' 'texlive-pst-feyn-doc' 'texlive-pst-fill' 'texlive-pst-fill-doc' 'texlive-pst-fit' 'texlive-pst-fit-doc' 'texlive-pst-fr3d' 'texlive-pst-fr3d-doc' 'texlive-pst-fractal' 'texlive-pst-fractal-doc' 'texlive-pst-fun' 'texlive-pst-fun-doc' 'texlive-pst-func' 'texlive-pst-func-doc' 'texlive-pst-gantt' 'texlive-pst-gantt-doc' 'texlive-pst-geo' 'texlive-pst-geo-doc' 'texlive-pst-geometrictools' 'texlive-pst-geometrictools-doc' 'texlive-pst-ghsb' 'texlive-pst-ghsb-doc' 'texlive-pst-gr3d' 'texlive-pst-gr3d-doc' 'texlive-pst-grad' 'texlive-pst-grad-doc' 'texlive-pst-graphicx' 'texlive-pst-graphicx-doc' 'texlive-pst-infixplot' 'texlive-pst-infixplot-doc' 'texlive-pst-intersect' 'texlive-pst-intersect-doc' 'texlive-pst-jtree' 'texlive-pst-jtree-doc' 'texlive-pst-knot' 'texlive-pst-knot-doc' 'texlive-pst-labo' 'texlive-pst-labo-doc' 'texlive-pst-layout' 'texlive-pst-layout-doc' 'texlive-pst-lens' 'texlive-pst-lens-doc' 'texlive-pst-light3d' 'texlive-pst-light3d-doc' 'texlive-pst-lsystem' 'texlive-pst-lsystem-doc' 'texlive-pst-magneticfield' 'texlive-pst-magneticfield-doc' 'texlive-pst-marble' 'texlive-pst-marble-doc' 'texlive-pst-math' 'texlive-pst-math-doc' 'texlive-pst-mirror' 'texlive-pst-mirror-doc' 'texlive-pst-moire' 'texlive-pst-moire-doc' 'texlive-pst-node' 'texlive-pst-node-doc' 'texlive-pst-ob3d' 'texlive-pst-ob3d-doc' 'texlive-pst-ode' 'texlive-pst-ode-doc' 'texlive-pst-optexp' 'texlive-pst-optexp-doc' 'texlive-pst-optic' 'texlive-pst-optic-doc' 'texlive-pst-osci' 'texlive-pst-osci-doc' 'texlive-pst-ovl' 'texlive-pst-ovl-doc' 'texlive-pst-pad' 'texlive-pst-pad-doc' 'texlive-pst-pdf' 'texlive-pst-pdf-bin' 'texlive-pst-pdf-doc' 'texlive-pst-pdgr' 'texlive-pst-pdgr-doc' 'texlive-pst-perspective' 'texlive-pst-perspective-doc' 'texlive-pst-platon' 'texlive-pst-platon-doc' 'texlive-pst-plot' 'texlive-pst-plot-doc' 'texlive-pst-poker' 'texlive-pst-poker-doc' 'texlive-pst-poly' 'texlive-pst-poly-doc' 'texlive-pst-pulley' 'texlive-pst-pulley-doc' 'texlive-pst-qtree' 'texlive-pst-qtree-doc' 'texlive-pst-rputover' 'texlive-pst-rputover-doc' 'texlive-pst-rubans' 'texlive-pst-rubans-doc' 'texlive-pst-shell' 'texlive-pst-shell-doc' 'texlive-pst-sigsys' 'texlive-pst-sigsys-doc' 'texlive-pst-slpe' 'texlive-pst-slpe-doc' 'texlive-pst-solarsystem' 'texlive-pst-solarsystem-doc' 'texlive-pst-solides3d' 'texlive-pst-solides3d-doc' 'texlive-pst-soroban' 'texlive-pst-soroban-doc' 'texlive-pst-spectra' 'texlive-pst-spectra-doc' 'texlive-pst-spinner' 'texlive-pst-spinner-doc' 'texlive-pst-spirograph' 'texlive-pst-spirograph-doc' 'texlive-pst-stru' 'texlive-pst-stru-doc' 'texlive-pst-support' 'texlive-pst-text' 'texlive-pst-text-doc' 'texlive-pst-thick' 'texlive-pst-thick-doc' 'texlive-pst-tools' 'texlive-pst-tools-doc' 'texlive-pst-tree' 'texlive-pst-tree-doc' 'texlive-pst-tvz' 'texlive-pst-tvz-doc' 'texlive-pst-uml' 'texlive-pst-uml-doc' 'texlive-pst-vectorian' 'texlive-pst-vectorian-doc' 'texlive-pst-vehicle' 'texlive-pst-vehicle-doc' 'texlive-pst-venn' 'texlive-pst-venn-doc' 'texlive-pst-vowel' 'texlive-pst-vowel-doc' 'texlive-pst-vue3d' 'texlive-pst-vue3d-doc' 'texlive-pst2pdf' 'texlive-pst2pdf-bin' 'texlive-pst2pdf-doc' 'texlive-pstool' 'texlive-pstool-doc' 'texlive-pstools' 'texlive-pstools-bin' 'texlive-pstools-doc' 'texlive-pstricks' 'texlive-pstricks-add' 'texlive-pstricks-add-doc' 'texlive-pstricks-doc' 'texlive-pstricks_calcnotes' 'texlive-pstring' 'texlive-pstring-doc' 'texlive-ptex' 'texlive-ptex-base' 'texlive-ptex-base-doc' 'texlive-ptex-bin' 'texlive-ptex-fontmaps' 'texlive-ptex-fontmaps-bin' 'texlive-ptex-fontmaps-doc' 'texlive-ptex-fonts' 'texlive-ptex-fonts-doc' 'texlive-ptex-manual' 'texlive-ptex-manual-doc' 'texlive-ptex2pdf' 'texlive-ptex2pdf-bin' 'texlive-ptex2pdf-doc' 'texlive-ptexenc-devel' 'texlive-ptext' 'texlive-ptext-doc' 'texlive-ptolemaicastronomy' 'texlive-ptolemaicastronomy-doc' 'texlive-ptptex' 'texlive-ptptex-doc' 'texlive-punk' 'texlive-punk-doc' 'texlive-punk-latex' 'texlive-punk-latex-doc' 'texlive-punknova' 'texlive-punknova-doc' 'texlive-punknova-fonts' 'texlive-purifyeps' 'texlive-purifyeps-bin' 'texlive-purifyeps-doc' 'texlive-pxbase' 'texlive-pxbase-doc' 'texlive-pxchfon' 'texlive-pxchfon-doc' 'texlive-pxcjkcat' 'texlive-pxcjkcat-doc' 'texlive-pxfonts' 'texlive-pxfonts-doc' 'texlive-pxfonts-fonts' 'texlive-pxgreeks' 'texlive-pxgreeks-doc' 'texlive-pxjahyper' 'texlive-pxjahyper-doc' 'texlive-pxjodel' 'texlive-pxjodel-doc' 'texlive-pxpgfmark' 'texlive-pxpgfmark-doc' 'texlive-pxrubrica' 'texlive-pxrubrica-doc' 'texlive-pxtatescale' 'texlive-pxtatescale-doc' 'texlive-pxtxalfa' 'texlive-pxtxalfa-doc' 'texlive-pxufont' 'texlive-pxufont-doc' 'texlive-pygmentex' 'texlive-pygmentex-bin' 'texlive-pygmentex-doc' 'texlive-python' 'texlive-python-doc' 'texlive-pythonhighlight' 'texlive-pythonhighlight-doc' 'texlive-pythontex' 'texlive-pythontex-bin' 'texlive-pythontex-doc' 'texlive-qcircuit' 'texlive-qcircuit-doc' 'texlive-qcm' 'texlive-qcm-doc' 'texlive-qobitree' 'texlive-qobitree-doc' 'texlive-qpxqtx' 'texlive-qpxqtx-doc' 'texlive-qrcode' 'texlive-qrcode-doc' 'texlive-qsharp' 'texlive-qsharp-doc' 'texlive-qstest' 'texlive-qstest-doc' 'texlive-qsymbols' 'texlive-qsymbols-doc' 'texlive-qtree' 'texlive-qtree-doc' 'texlive-quantikz' 'texlive-quantikz-doc' 'texlive-quattrocento' 'texlive-quattrocento-doc' 'texlive-quattrocento-fonts' 'texlive-quicktype' 'texlive-quicktype-doc' 'texlive-quotchap' 'texlive-quotchap-doc' 'texlive-quoting' 'texlive-quoting-doc' 'texlive-quotmark' 'texlive-quotmark-doc' 'texlive-quran' 'texlive-quran-de' 'texlive-quran-de-doc' 'texlive-quran-doc' 'texlive-r_und_s' 'texlive-r_und_s-doc' 'texlive-raleway' 'texlive-raleway-doc' 'texlive-raleway-fonts' 'texlive-ran_toks' 'texlive-ran_toks-doc' 'texlive-randbild' 'texlive-randbild-doc' 'texlive-randomlist' 'texlive-randomlist-doc' 'texlive-randomwalk' 'texlive-randomwalk-doc' 'texlive-randtext' 'texlive-randtext-doc' 'texlive-rank-2-roots' 'texlive-rank-2-roots-doc' 'texlive-rccol' 'texlive-rccol-doc' 'texlive-rcs' 'texlive-rcs-doc' 'texlive-rcs-multi' 'texlive-rcs-multi-doc' 'texlive-rcsinfo' 'texlive-rcsinfo-doc' 'texlive-readarray' 'texlive-readarray-doc' 'texlive-realboxes' 'texlive-realboxes-doc' 'texlive-realhats' 'texlive-realhats-doc' 'texlive-realscripts' 'texlive-realscripts-doc' 'texlive-rec-thy' 'texlive-rec-thy-doc' 'texlive-recipe' 'texlive-recipe-doc' 'texlive-recipebook' 'texlive-recipebook-doc' 'texlive-recipecard' 'texlive-recipecard-doc' 'texlive-rectopma' 'texlive-rectopma-doc' 'texlive-recycle' 'texlive-recycle-doc' 'texlive-recycle-fonts' 'texlive-refcheck' 'texlive-refcheck-doc' 'texlive-refenums' 'texlive-refenums-doc' 'texlive-reflectgraphics' 'texlive-reflectgraphics-doc' 'texlive-refman' 'texlive-refman-doc' 'texlive-refstyle' 'texlive-refstyle-doc' 'texlive-regcount' 'texlive-regcount-doc' 'texlive-regexpatch' 'texlive-regexpatch-doc' 'texlive-register' 'texlive-register-doc' 'texlive-regstats' 'texlive-regstats-doc' 'texlive-reledmac' 'texlive-reledmac-doc' 'texlive-relenc' 'texlive-relenc-doc' 'texlive-relsize' 'texlive-relsize-doc' 'texlive-reotex' 'texlive-reotex-doc' 'texlive-repeatindex' 'texlive-repeatindex-doc' 'texlive-repere' 'texlive-repere-doc' 'texlive-repltext' 'texlive-repltext-doc' 'texlive-resphilosophica' 'texlive-resphilosophica-doc' 'texlive-resumecls' 'texlive-resumecls-doc' 'texlive-resumemac' 'texlive-resumemac-doc' 'texlive-returntogrid' 'texlive-returntogrid-doc' 'texlive-reverxii' 'texlive-revquantum' 'texlive-revquantum-doc' 'texlive-revtex' 'texlive-revtex-doc' 'texlive-revtex4' 'texlive-revtex4-doc' 'texlive-rgltxdoc' 'texlive-rgltxdoc-doc' 'texlive-ribbonproofs' 'texlive-ribbonproofs-doc' 'texlive-rjlparshap' 'texlive-rjlparshap-doc' 'texlive-rlepsf' 'texlive-rlepsf-doc' 'texlive-rmathbr' 'texlive-rmathbr-doc' 'texlive-rmpage' 'texlive-rmpage-doc' 'texlive-roboto' 'texlive-roboto-doc' 'texlive-roboto-fonts' 'texlive-robustcommand' 'texlive-robustcommand-doc' 'texlive-robustindex' 'texlive-robustindex-doc' 'texlive-roex' 'texlive-romanbar' 'texlive-romanbar-doc' 'texlive-romanbarpagenumber' 'texlive-romanbarpagenumber-doc' 'texlive-romande' 'texlive-romande-doc' 'texlive-romande-fonts' 'texlive-romanneg' 'texlive-romanneg-doc' 'texlive-romannum' 'texlive-romannum-doc' 'texlive-rosario' 'texlive-rosario-doc' 'texlive-rosario-fonts' 'texlive-rotfloat' 'texlive-rotfloat-doc' 'texlive-rotpages' 'texlive-rotpages-doc' 'texlive-roundbox' 'texlive-roundbox-doc' 'texlive-roundrect' 'texlive-roundrect-doc' 'texlive-rrgtrees' 'texlive-rrgtrees-doc' 'texlive-rsc' 'texlive-rsc-doc' 'texlive-rsfs' 'texlive-rsfs-doc' 'texlive-rsfs-fonts' 'texlive-rsfso' 'texlive-rsfso-doc' 'texlive-rterface' 'texlive-rterface-doc' 'texlive-rtkinenc' 'texlive-rtkinenc-doc' 'texlive-rtklage' 'texlive-rtklage-doc' 'texlive-rubik' 'texlive-rubik-bin' 'texlive-rubik-doc' 'texlive-ruhyphen' 'texlive-rulercompass' 'texlive-rulercompass-doc' 'texlive-russ' 'texlive-russ-doc' 'texlive-rutitlepage' 'texlive-rutitlepage-doc' 'texlive-rviewport' 'texlive-rviewport-doc' 'texlive-rvwrite' 'texlive-rvwrite-doc' 'texlive-ryersonsgsthesis' 'texlive-ryersonsgsthesis-doc' 'texlive-ryethesis' 'texlive-ryethesis-doc' 'texlive-sa-tikz' 'texlive-sa-tikz-doc' 'texlive-sageep' 'texlive-sageep-doc' 'texlive-sanitize-umlaut' 'texlive-sanitize-umlaut-doc' 'texlive-sanskrit' 'texlive-sanskrit-doc' 'texlive-sanskrit-t1' 'texlive-sanskrit-t1-doc' 'texlive-sanskrit-t1-fonts' 'texlive-sansmath' 'texlive-sansmath-doc' 'texlive-sansmathaccent' 'texlive-sansmathaccent-doc' 'texlive-sansmathfonts' 'texlive-sansmathfonts-doc' 'texlive-sansmathfonts-fonts' 'texlive-sapthesis' 'texlive-sapthesis-doc' 'texlive-sasnrdisplay' 'texlive-sasnrdisplay-doc' 'texlive-sauerj' 'texlive-sauerj-doc' 'texlive-sauter' 'texlive-sauterfonts' 'texlive-sauterfonts-doc' 'texlive-savefnmark' 'texlive-savefnmark-doc' 'texlive-savesym' 'texlive-savetrees' 'texlive-savetrees-doc' 'texlive-scale' 'texlive-scale-doc' 'texlive-scalebar' 'texlive-scalebar-doc' 'texlive-scalerel' 'texlive-scalerel-doc' 'texlive-scanpages' 'texlive-scanpages-doc' 'texlive-scanpages-fonts' 'texlive-schemabloc' 'texlive-schemabloc-doc' 'texlive-schemata' 'texlive-schemata-doc' 'texlive-scheme-basic' 'texlive-scheme-context' 'texlive-scheme-full' 'texlive-scheme-gust' 'texlive-scheme-infraonly' 'texlive-scheme-medium' 'texlive-scheme-minimal' 'texlive-scheme-small' 'texlive-scheme-tetex' 'texlive-schule' 'texlive-schule-doc' 'texlive-schulschriften' 'texlive-schulschriften-doc' 'texlive-schwalbe-chess' 'texlive-schwalbe-chess-doc' 'texlive-scientific-thesis-cover' 'texlive-scientific-thesis-cover-doc' 'texlive-sciposter' 'texlive-sciposter-doc' 'texlive-sclang-prettifier' 'texlive-sclang-prettifier-doc' 'texlive-scratch' 'texlive-scratch-doc' 'texlive-scratch3' 'texlive-scratch3-doc' 'texlive-scratchx' 'texlive-scratchx-doc' 'texlive-screenplay' 'texlive-screenplay-doc' 'texlive-screenplay-pkg' 'texlive-screenplay-pkg-doc' 'texlive-scrjrnl' 'texlive-scrjrnl-doc' 'texlive-scrlttr2copy' 'texlive-scrlttr2copy-doc' 'texlive-scsnowman' 'texlive-scsnowman-doc' 'texlive-sdrt' 'texlive-sdrt-doc' 'texlive-sduthesis' 'texlive-sduthesis-doc' 'texlive-secdot' 'texlive-secdot-doc' 'texlive-section' 'texlive-section-doc' 'texlive-sectionbox' 'texlive-sectionbox-doc' 'texlive-sectionbreak' 'texlive-sectionbreak-doc' 'texlive-sectsty' 'texlive-sectsty-doc' 'texlive-seealso' 'texlive-seealso-doc' 'texlive-seetexk' 'texlive-seetexk-bin' 'texlive-selectp' 'texlive-selectp-doc' 'texlive-selnolig' 'texlive-selnolig-doc' 'texlive-semantic' 'texlive-semantic-doc' 'texlive-semantic-markup' 'texlive-semantic-markup-doc' 'texlive-semaphor' 'texlive-semaphor-doc' 'texlive-semaphor-fonts' 'texlive-seminar' 'texlive-seminar-doc' 'texlive-semioneside' 'texlive-semioneside-doc' 'texlive-semproc' 'texlive-semproc-doc' 'texlive-sepfootnotes' 'texlive-sepfootnotes-doc' 'texlive-sepnum' 'texlive-sepnum-doc' 'texlive-seqsplit' 'texlive-seqsplit-doc' 'texlive-serbian-apostrophe' 'texlive-serbian-apostrophe-doc' 'texlive-serbian-date-lat' 'texlive-serbian-date-lat-doc' 'texlive-serbian-def-cyr' 'texlive-serbian-def-cyr-doc' 'texlive-serbian-lig' 'texlive-serbian-lig-doc' 'texlive-sesamanuel' 'texlive-sesamanuel-doc' 'texlive-sesstime' 'texlive-sesstime-doc' 'texlive-setdeck' 'texlive-setdeck-doc' 'texlive-setspace' 'texlive-setspace-doc' 'texlive-seuthesis' 'texlive-seuthesis-doc' 'texlive-seuthesix' 'texlive-seuthesix-doc' 'texlive-sexam' 'texlive-sexam-doc' 'texlive-sf298' 'texlive-sf298-doc' 'texlive-sffms' 'texlive-sffms-doc' 'texlive-sfg' 'texlive-sfg-doc' 'texlive-sfmath' 'texlive-sgame' 'texlive-sgame-doc' 'texlive-shade' 'texlive-shade-doc' 'texlive-shadethm' 'texlive-shadethm-doc' 'texlive-shadow' 'texlive-shadow-doc' 'texlive-shadowtext' 'texlive-shadowtext-doc' 'texlive-shapepar' 'texlive-shapepar-doc' 'texlive-shapes' 'texlive-shapes-doc' 'texlive-shdoc' 'texlive-shdoc-doc' 'texlive-shipunov' 'texlive-shipunov-doc' 'texlive-shobhika' 'texlive-shobhika-doc' 'texlive-shobhika-fonts' 'texlive-short-math-guide' 'texlive-shorttoc' 'texlive-shorttoc-doc' 'texlive-show2e' 'texlive-show2e-doc' 'texlive-showcharinbox' 'texlive-showcharinbox-doc' 'texlive-showdim' 'texlive-showdim-doc' 'texlive-showexpl' 'texlive-showexpl-doc' 'texlive-showhyphens' 'texlive-showhyphens-doc' 'texlive-showlabels' 'texlive-showlabels-doc' 'texlive-showtags' 'texlive-showtags-doc' 'texlive-shuffle' 'texlive-shuffle-doc' 'texlive-sidecap' 'texlive-sidecap-doc' 'texlive-sidenotes' 'texlive-sidenotes-doc' 'texlive-sides' 'texlive-sides-doc' 'texlive-signchart' 'texlive-signchart-doc' 'texlive-silence' 'texlive-silence-doc' 'texlive-simple-resume-cv' 'texlive-simple-resume-cv-doc' 'texlive-simple-thesis-dissertation' 'texlive-simple-thesis-dissertation-doc' 'texlive-simplecd' 'texlive-simplecd-doc' 'texlive-simplecv' 'texlive-simplecv-doc' 'texlive-simpleinvoice' 'texlive-simpleinvoice-doc' 'texlive-simplekv' 'texlive-simplekv-doc' 'texlive-simpler-wick' 'texlive-simpler-wick-doc' 'texlive-simplewick' 'texlive-simplewick-doc' 'texlive-simplified-latex' 'texlive-simurgh' 'texlive-simurgh-doc' 'texlive-sitem' 'texlive-sitem-doc' 'texlive-siunitx' 'texlive-siunitx-doc' 'texlive-skak' 'texlive-skak-doc' 'texlive-skaknew' 'texlive-skaknew-doc' 'texlive-skaknew-fonts' 'texlive-skb' 'texlive-skb-doc' 'texlive-skdoc' 'texlive-skdoc-doc' 'texlive-skeycommand' 'texlive-skeycommand-doc' 'texlive-skeyval' 'texlive-skeyval-doc' 'texlive-skmath' 'texlive-skmath-doc' 'texlive-skrapport' 'texlive-skrapport-doc' 'texlive-skull' 'texlive-slantsc' 'texlive-slantsc-doc' 'texlive-slideshow' 'texlive-slideshow-doc' 'texlive-smalltableof' 'texlive-smalltableof-doc' 'texlive-smartdiagram' 'texlive-smartdiagram-doc' 'texlive-smartref' 'texlive-smartref-doc' 'texlive-smartunits' 'texlive-smartunits-doc' 'texlive-snapshot' 'texlive-snapshot-doc' 'texlive-snotez' 'texlive-snotez-doc' 'texlive-songbook' 'texlive-songbook-doc' 'texlive-songs' 'texlive-songs-doc' 'texlive-sort-by-letters' 'texlive-sort-by-letters-doc' 'texlive-soton' 'texlive-soton-doc' 'texlive-soul' 'texlive-soul-doc' 'texlive-soup' 'texlive-soup-doc' 'texlive-sourcecodepro' 'texlive-sourcecodepro-doc' 'texlive-sourcecodepro-fonts' 'texlive-sourcesanspro' 'texlive-sourcesanspro-doc' 'texlive-sourcesanspro-fonts' 'texlive-sourceserifpro' 'texlive-sourceserifpro-doc' 'texlive-sourceserifpro-fonts' 'texlive-spalign' 'texlive-spalign-doc' 'texlive-spanish-mx' 'texlive-spanish-mx-doc' 'texlive-spark-otf' 'texlive-spark-otf-doc' 'texlive-sparklines' 'texlive-sparklines-doc' 'texlive-spath3' 'texlive-spath3-doc' 'texlive-spectralsequences' 'texlive-spectralsequences-doc' 'texlive-spelling' 'texlive-spelling-doc' 'texlive-sphdthesis' 'texlive-sphdthesis-doc' 'texlive-spie' 'texlive-spie-doc' 'texlive-splines' 'texlive-splines-doc' 'texlive-splitbib' 'texlive-splitbib-doc' 'texlive-splitindex' 'texlive-splitindex-bin' 'texlive-splitindex-doc' 'texlive-spot' 'texlive-spot-doc' 'texlive-spotcolor' 'texlive-spotcolor-doc' 'texlive-spreadtab' 'texlive-spreadtab-doc' 'texlive-spverbatim' 'texlive-spverbatim-doc' 'texlive-sr-vorl' 'texlive-sr-vorl-doc' 'texlive-srbook-mem' 'texlive-srbook-mem-doc' 'texlive-srcltx' 'texlive-srcltx-doc' 'texlive-srcredact' 'texlive-srcredact-bin' 'texlive-srcredact-doc' 'texlive-srdp-mathematik' 'texlive-srdp-mathematik-doc' 'texlive-sseq' 'texlive-sseq-doc' 'texlive-sslides' 'texlive-sslides-doc' 'texlive-stack' 'texlive-stackengine' 'texlive-stackengine-doc' 'texlive-stage' 'texlive-stage-doc' 'texlive-standalone' 'texlive-standalone-doc' 'texlive-stanli' 'texlive-stanli-doc' 'texlive-starfont' 'texlive-starfont-doc' 'texlive-starfont-fonts' 'texlive-startex' 'texlive-startex-doc' 'texlive-statex' 'texlive-statex-doc' 'texlive-statex2' 'texlive-statex2-doc' 'texlive-statistics' 'texlive-statistics-doc' 'texlive-statistik' 'texlive-statistik-doc' 'texlive-statmath' 'texlive-statmath-doc' 'texlive-staves' 'texlive-staves-doc' 'texlive-staves-fonts' 'texlive-stdclsdv' 'texlive-stdclsdv-doc' 'texlive-stdpage' 'texlive-stdpage-doc' 'texlive-stealcaps' 'texlive-stealcaps-doc' 'texlive-steinmetz' 'texlive-steinmetz-doc' 'texlive-stellenbosch' 'texlive-stellenbosch-doc' 'texlive-stex' 'texlive-stex-doc' 'texlive-stickstoo' 'texlive-stickstoo-doc' 'texlive-stickstoo-fonts' 'texlive-stix' 'texlive-stix-doc' 'texlive-stix-fonts' 'texlive-stix2-otf' 'texlive-stix2-otf-doc' 'texlive-stix2-otf-fonts' 'texlive-stix2-type1' 'texlive-stix2-type1-doc' 'texlive-stix2-type1-fonts' 'texlive-stmaryrd' 'texlive-stmaryrd-doc' 'texlive-stmaryrd-fonts' 'texlive-storebox' 'texlive-storebox-doc' 'texlive-storecmd' 'texlive-storecmd-doc' 'texlive-stringstrings' 'texlive-stringstrings-doc' 'texlive-structmech' 'texlive-struktex' 'texlive-struktex-doc' 'texlive-sttools' 'texlive-sttools-doc' 'texlive-stubs' 'texlive-stubs-doc' 'texlive-studenthandouts' 'texlive-studenthandouts-doc' 'texlive-sty2dtx' 'texlive-sty2dtx-bin' 'texlive-sty2dtx-doc' 'texlive-suanpan' 'texlive-suanpan-doc' 'texlive-subdepth' 'texlive-subdepth-doc' 'texlive-subeqn' 'texlive-subeqn-doc' 'texlive-subeqnarray' 'texlive-subeqnarray-doc' 'texlive-subfig' 'texlive-subfig-doc' 'texlive-subfigmat' 'texlive-subfigmat-doc' 'texlive-subfigure' 'texlive-subfigure-doc' 'texlive-subfiles' 'texlive-subfiles-doc' 'texlive-subfloat' 'texlive-subfloat-doc' 'texlive-substances' 'texlive-substances-doc' 'texlive-substitutefont' 'texlive-substitutefont-doc' 'texlive-substr' 'texlive-substr-doc' 'texlive-subsupscripts' 'texlive-subsupscripts-doc' 'texlive-sudoku' 'texlive-sudoku-doc' 'texlive-sudokubundle' 'texlive-sudokubundle-doc' 'texlive-suftesi' 'texlive-suftesi-doc' 'texlive-sugconf' 'texlive-sugconf-doc' 'texlive-superiors' 'texlive-superiors-doc' 'texlive-superiors-fonts' 'texlive-supertabular' 'texlive-supertabular-doc' 'texlive-susy' 'texlive-susy-doc' 'texlive-svg' 'texlive-svg-doc' 'texlive-svg-inkscape' 'texlive-svgcolor' 'texlive-svgcolor-doc' 'texlive-svn' 'texlive-svn-doc' 'texlive-svn-multi' 'texlive-svn-multi-bin' 'texlive-svn-multi-doc' 'texlive-svn-prov' 'texlive-svn-prov-doc' 'texlive-svninfo' 'texlive-svninfo-doc' 'texlive-svrsymbols' 'texlive-svrsymbols-doc' 'texlive-svrsymbols-fonts' 'texlive-swebib' 'texlive-swebib-doc' 'texlive-swimgraf' 'texlive-swimgraf-doc' 'texlive-syllogism' 'texlive-syllogism-doc' 'texlive-symbol' 'texlive-symbol-fonts' 'texlive-sympytexpackage' 'texlive-sympytexpackage-doc' 'texlive-synctex' 'texlive-synctex-bin' 'texlive-synctex-devel' 'texlive-synproof' 'texlive-synproof-doc' 'texlive-syntax' 'texlive-syntax-doc' 'texlive-syntrace' 'texlive-syntrace-doc' 'texlive-synttree' 'texlive-synttree-doc' 'texlive-systeme' 'texlive-systeme-doc' 'texlive-t-angles' 'texlive-t-angles-doc' 'texlive-t2' 'texlive-t2-doc' 'texlive-tabfigures' 'texlive-tabfigures-doc' 'texlive-table-fct' 'texlive-table-fct-doc' 'texlive-tableaux' 'texlive-tableaux-doc' 'texlive-tablefootnote' 'texlive-tablefootnote-doc' 'texlive-tableof' 'texlive-tableof-doc' 'texlive-tablestyles' 'texlive-tablestyles-doc' 'texlive-tablists' 'texlive-tablists-doc' 'texlive-tablor' 'texlive-tablor-doc' 'texlive-tabls' 'texlive-tabls-doc' 'texlive-tablvar' 'texlive-tablvar-doc' 'texlive-tabriz-thesis' 'texlive-tabriz-thesis-doc' 'texlive-tabstackengine' 'texlive-tabstackengine-doc' 'texlive-tabto-generic' 'texlive-tabto-ltx' 'texlive-tabto-ltx-doc' 'texlive-tabu' 'texlive-tabu-doc' 'texlive-tabularborder' 'texlive-tabularborder-doc' 'texlive-tabularcalc' 'texlive-tabularcalc-doc' 'texlive-tabularew' 'texlive-tabularew-doc' 'texlive-tabulars-e' 'texlive-tabulary' 'texlive-tabulary-doc' 'texlive-tabvar' 'texlive-tabvar-doc' 'texlive-tabvar-fonts' 'texlive-tagging' 'texlive-tagging-doc' 'texlive-tagpair' 'texlive-tagpair-doc' 'texlive-tagpdf' 'texlive-tagpdf-doc' 'texlive-talk' 'texlive-talk-doc' 'texlive-tamefloats' 'texlive-tamefloats-doc' 'texlive-tamethebeast' 'texlive-tap' 'texlive-tap-doc' 'texlive-tapir' 'texlive-tapir-doc' 'texlive-tapir-fonts' 'texlive-tasks' 'texlive-tasks-doc' 'texlive-tcldoc' 'texlive-tcldoc-doc' 'texlive-tcolorbox' 'texlive-tcolorbox-doc' 'texlive-tdclock' 'texlive-tdclock-doc' 'texlive-tds' 'texlive-tdsfrmath' 'texlive-tdsfrmath-doc' 'texlive-technics' 'texlive-technics-doc' 'texlive-technion-thesis-template' 'texlive-technion-thesis-template-doc' 'texlive-ted' 'texlive-ted-doc' 'texlive-templates-fenn' 'texlive-templates-sommer' 'texlive-templatetools' 'texlive-templatetools-doc' 'texlive-tempora' 'texlive-tempora-doc' 'texlive-tempora-fonts' 'texlive-tengwarscript' 'texlive-tengwarscript-doc' 'texlive-tensor' 'texlive-tensor-doc' 'texlive-termcal' 'texlive-termcal-de' 'texlive-termcal-de-doc' 'texlive-termcal-doc' 'texlive-termlist' 'texlive-termlist-doc' 'texlive-termmenu' 'texlive-termmenu-doc' 'texlive-testhyphens' 'texlive-testhyphens-doc' 'texlive-testidx' 'texlive-testidx-doc' 'texlive-tetex' 'texlive-tetex-bin' 'texlive-tetex-doc' 'texlive-tetragonos' 'texlive-tetragonos-doc' 'texlive-teubner' 'texlive-teubner-doc' 'texlive-tex' 'texlive-tex-bin' 'texlive-tex-ewd' 'texlive-tex-ewd-doc' 'texlive-tex-font-errors-cheatsheet' 'texlive-tex-gyre' 'texlive-tex-gyre-doc' 'texlive-tex-gyre-fonts' 'texlive-tex-gyre-math' 'texlive-tex-gyre-math-doc' 'texlive-tex-gyre-math-fonts' 'texlive-tex-ini-files' 'texlive-tex-ini-files-doc' 'texlive-tex-label' 'texlive-tex-label-doc' 'texlive-tex-locale' 'texlive-tex-locale-doc' 'texlive-tex-overview' 'texlive-tex-ps' 'texlive-tex-ps-doc' 'texlive-tex-refs' 'texlive-tex-virtual-academy-pl' 'texlive-tex4ebook' 'texlive-tex4ebook-bin' 'texlive-tex4ebook-doc' 'texlive-tex4ht' 'texlive-tex4ht-bin' 'texlive-tex4ht-doc' 'texlive-texapi' 'texlive-texapi-doc' 'texlive-texbytopic' 'texlive-texcount' 'texlive-texcount-bin' 'texlive-texcount-doc' 'texlive-texdate' 'texlive-texdate-doc' 'texlive-texdef' 'texlive-texdef-bin' 'texlive-texdef-doc' 'texlive-texdiff' 'texlive-texdiff-bin' 'texlive-texdiff-doc' 'texlive-texdirflatten' 'texlive-texdirflatten-bin' 'texlive-texdirflatten-doc' 'texlive-texdoc' 'texlive-texdoc-bin' 'texlive-texdoc-doc' 'texlive-texdoctk' 'texlive-texdoctk-bin' 'texlive-texdoctk-doc' 'texlive-texdraw' 'texlive-texdraw-doc' 'texlive-texfot' 'texlive-texfot-bin' 'texlive-texfot-doc' 'texlive-texilikechaps' 'texlive-texilikecover' 'texlive-texinfo' 'texlive-texlive-common' 'texlive-texlive-cz' 'texlive-texlive-de' 'texlive-texlive-en' 'texlive-texlive-es' 'texlive-texlive-fr' 'texlive-texlive-it' 'texlive-texlive-pl' 'texlive-texlive-ru' 'texlive-texlive-sr' 'texlive-texlive-zh-cn' 'texlive-texlive.infra' 'texlive-texlive.infra-doc' 'texlive-texliveonfly' 'texlive-texliveonfly-bin' 'texlive-texliveonfly-doc' 'texlive-texloganalyser' 'texlive-texloganalyser-bin' 'texlive-texloganalyser-doc' 'texlive-texlogos' 'texlive-texlua-devel' 'texlive-texluajit-devel' 'texlive-texmate' 'texlive-texmate-doc' 'texlive-texments' 'texlive-texments-doc' 'texlive-texosquery' 'texlive-texosquery-bin' 'texlive-texosquery-doc' 'texlive-texpower' 'texlive-texpower-doc' 'texlive-texproposal' 'texlive-texshade' 'texlive-texshade-doc' 'texlive-texsis' 'texlive-texsis-bin' 'texlive-texsis-doc' 'texlive-textcase' 'texlive-textcase-doc' 'texlive-textfit' 'texlive-textfit-doc' 'texlive-textglos' 'texlive-textglos-doc' 'texlive-textgreek' 'texlive-textgreek-doc' 'texlive-textmerg' 'texlive-textmerg-doc' 'texlive-textopo' 'texlive-textopo-doc' 'texlive-textpath' 'texlive-textpath-doc' 'texlive-textpos' 'texlive-textpos-doc' 'texlive-textualicomma' 'texlive-textualicomma-doc' 'texlive-texvc' 'texlive-texvc-doc' 'texlive-texware' 'texlive-texware-bin' 'texlive-tfrupee' 'texlive-tfrupee-doc' 'texlive-tfrupee-fonts' 'texlive-thaienum' 'texlive-thaienum-doc' 'texlive-thaispec' 'texlive-thaispec-doc' 'texlive-thalie' 'texlive-thalie-doc' 'texlive-theatre' 'texlive-theoremref' 'texlive-theoremref-doc' 'texlive-thesis-ekf' 'texlive-thesis-ekf-doc' 'texlive-thesis-gwu' 'texlive-thesis-gwu-doc' 'texlive-thesis-qom' 'texlive-thesis-qom-doc' 'texlive-thesis-titlepage-fhac' 'texlive-thesis-titlepage-fhac-doc' 'texlive-thinsp' 'texlive-thinsp-doc' 'texlive-thmbox' 'texlive-thmbox-doc' 'texlive-thmtools' 'texlive-thmtools-doc' 'texlive-threadcol' 'texlive-threadcol-doc' 'texlive-threeddice' 'texlive-threeddice-doc' 'texlive-threeparttable' 'texlive-threeparttable-doc' 'texlive-threeparttablex' 'texlive-threeparttablex-doc' 'texlive-thucoursework' 'texlive-thucoursework-doc' 'texlive-thumb' 'texlive-thumb-doc' 'texlive-thumbpdf' 'texlive-thumbpdf-bin' 'texlive-thumbpdf-doc' 'texlive-thumbs' 'texlive-thumbs-doc' 'texlive-thumby' 'texlive-thumby-doc' 'texlive-thuthesis' 'texlive-thuthesis-doc' 'texlive-ticket' 'texlive-ticket-doc' 'texlive-ticollege' 'texlive-ticollege-doc' 'texlive-tie' 'texlive-tie-bin' 'texlive-tikz-3dplot' 'texlive-tikz-3dplot-doc' 'texlive-tikz-bayesnet' 'texlive-tikz-bayesnet-doc' 'texlive-tikz-cd' 'texlive-tikz-cd-doc' 'texlive-tikz-dependency' 'texlive-tikz-dependency-doc' 'texlive-tikz-dimline' 'texlive-tikz-dimline-doc' 'texlive-tikz-feynhand' 'texlive-tikz-feynhand-doc' 'texlive-tikz-feynman' 'texlive-tikz-feynman-doc' 'texlive-tikz-imagelabels' 'texlive-tikz-imagelabels-doc' 'texlive-tikz-inet' 'texlive-tikz-inet-doc' 'texlive-tikz-kalender' 'texlive-tikz-kalender-doc' 'texlive-tikz-karnaugh' 'texlive-tikz-karnaugh-doc' 'texlive-tikz-ladder' 'texlive-tikz-ladder-doc' 'texlive-tikz-layers' 'texlive-tikz-layers-doc' 'texlive-tikz-nef' 'texlive-tikz-nef-doc' 'texlive-tikz-network' 'texlive-tikz-network-doc' 'texlive-tikz-opm' 'texlive-tikz-opm-doc' 'texlive-tikz-optics' 'texlive-tikz-optics-doc' 'texlive-tikz-page' 'texlive-tikz-page-doc' 'texlive-tikz-palattice' 'texlive-tikz-palattice-doc' 'texlive-tikz-qtree' 'texlive-tikz-qtree-doc' 'texlive-tikz-relay' 'texlive-tikz-sfc' 'texlive-tikz-sfc-doc' 'texlive-tikz-timing' 'texlive-tikz-timing-doc' 'texlive-tikz-truchet' 'texlive-tikz-truchet-doc' 'texlive-tikzcodeblocks' 'texlive-tikzcodeblocks-doc' 'texlive-tikzducks' 'texlive-tikzducks-doc' 'texlive-tikzinclude' 'texlive-tikzinclude-doc' 'texlive-tikzlings' 'texlive-tikzlings-doc' 'texlive-tikzmark' 'texlive-tikzmark-doc' 'texlive-tikzmarmots' 'texlive-tikzmarmots-doc' 'texlive-tikzorbital' 'texlive-tikzorbital-doc' 'texlive-tikzpagenodes' 'texlive-tikzpagenodes-doc' 'texlive-tikzpeople' 'texlive-tikzpeople-doc' 'texlive-tikzpfeile' 'texlive-tikzpfeile-doc' 'texlive-tikzposter' 'texlive-tikzposter-doc' 'texlive-tikzscale' 'texlive-tikzscale-doc' 'texlive-tikzsymbols' 'texlive-tikzsymbols-doc' 'texlive-timbreicmc' 'texlive-timbreicmc-doc' 'texlive-times' 'texlive-times-fonts' 'texlive-timetable' 'texlive-timing-diagrams' 'texlive-timing-diagrams-doc' 'texlive-tinos' 'texlive-tinos-doc' 'texlive-tinos-fonts' 'texlive-tipa' 'texlive-tipa-de' 'texlive-tipa-doc' 'texlive-tipa-fonts' 'texlive-tipfr' 'texlive-tipfr-doc' 'texlive-titlecaps' 'texlive-titlecaps-doc' 'texlive-titlefoot' 'texlive-titlepages' 'texlive-titlepic' 'texlive-titlepic-doc' 'texlive-titleref' 'texlive-titleref-doc' 'texlive-titlesec' 'texlive-titlesec-doc' 'texlive-titling' 'texlive-titling-doc' 'texlive-tkz-base' 'texlive-tkz-base-doc' 'texlive-tkz-berge' 'texlive-tkz-berge-doc' 'texlive-tkz-doc' 'texlive-tkz-doc-doc' 'texlive-tkz-euclide' 'texlive-tkz-euclide-doc' 'texlive-tkz-fct' 'texlive-tkz-fct-doc' 'texlive-tkz-graph' 'texlive-tkz-graph-doc' 'texlive-tkz-kiviat' 'texlive-tkz-kiviat-doc' 'texlive-tkz-linknodes' 'texlive-tkz-linknodes-doc' 'texlive-tkz-orm' 'texlive-tkz-orm-doc' 'texlive-tkz-tab' 'texlive-tkz-tab-doc' 'texlive-tlc-article' 'texlive-tlc-article-doc' 'texlive-tlc2' 'texlive-tlcockpit' 'texlive-tlcockpit-bin' 'texlive-tlcockpit-doc' 'texlive-tlshell' 'texlive-tlshell-bin' 'texlive-tlshell-doc' 'texlive-tocbibind' 'texlive-tocbibind-doc' 'texlive-tocdata' 'texlive-tocdata-doc' 'texlive-tocloft' 'texlive-tocloft-doc' 'texlive-tocvsec2' 'texlive-tocvsec2-doc' 'texlive-todo' 'texlive-todo-doc' 'texlive-todonotes' 'texlive-todonotes-doc' 'texlive-tokenizer' 'texlive-tokenizer-doc' 'texlive-toolbox' 'texlive-toolbox-doc' 'texlive-tools' 'texlive-tools-doc' 'texlive-topfloat' 'texlive-topfloat-doc' 'texlive-topiclongtable' 'texlive-topiclongtable-doc' 'texlive-topletter' 'texlive-topletter-doc' 'texlive-toptesi' 'texlive-toptesi-doc' 'texlive-totcount' 'texlive-totcount-doc' 'texlive-totpages' 'texlive-totpages-doc' 'texlive-tpic2pdftex' 'texlive-tpic2pdftex-bin' 'texlive-tpslifonts' 'texlive-tpslifonts-doc' 'texlive-tqft' 'texlive-tqft-doc' 'texlive-tracklang' 'texlive-tracklang-doc' 'texlive-trajan' 'texlive-trajan-doc' 'texlive-trajan-fonts' 'texlive-tram' 'texlive-tram-doc' 'texlive-translation-array-fr' 'texlive-translation-arsclassica-de' 'texlive-translation-biblatex-de' 'texlive-translation-chemsym-de' 'texlive-translation-dcolumn-fr' 'texlive-translation-ecv-de' 'texlive-translation-enumitem-de' 'texlive-translation-europecv-de' 'texlive-translation-filecontents-de' 'texlive-translation-moreverb-de' 'texlive-translation-natbib-fr' 'texlive-translation-tabbing-fr' 'texlive-translations' 'texlive-translations-doc' 'texlive-translator' 'texlive-translator-doc' 'texlive-tree-dvips' 'texlive-tree-dvips-doc' 'texlive-treetex' 'texlive-treetex-doc' 'texlive-trfsigns' 'texlive-trfsigns-doc' 'texlive-trigonometry' 'texlive-trigonometry-doc' 'texlive-trimspaces' 'texlive-trimspaces-doc' 'texlive-trivfloat' 'texlive-trivfloat-doc' 'texlive-trsym' 'texlive-trsym-doc' 'texlive-truncate' 'texlive-truncate-doc' 'texlive-tsemlines' 'texlive-ttfutils' 'texlive-ttfutils-bin' 'texlive-ttfutils-doc' 'texlive-tucv' 'texlive-tucv-doc' 'texlive-tudscr' 'texlive-tudscr-doc' 'texlive-tufte-latex' 'texlive-tufte-latex-doc' 'texlive-tugboat' 'texlive-tugboat-doc' 'texlive-tugboat-plain' 'texlive-tugboat-plain-doc' 'texlive-tui' 'texlive-tui-doc' 'texlive-turabian' 'texlive-turabian-doc' 'texlive-turabian-formatting' 'texlive-turabian-formatting-doc' 'texlive-turkmen' 'texlive-turkmen-doc' 'texlive-turnstile' 'texlive-turnstile-doc' 'texlive-turnthepage' 'texlive-turnthepage-doc' 'texlive-twoinone' 'texlive-twoinone-doc' 'texlive-twoup' 'texlive-twoup-doc' 'texlive-txfonts' 'texlive-txfonts-doc' 'texlive-txfonts-fonts' 'texlive-txfontsb' 'texlive-txfontsb-doc' 'texlive-txfontsb-fonts' 'texlive-txgreeks' 'texlive-txgreeks-doc' 'texlive-txuprcal' 'texlive-txuprcal-doc' 'texlive-txuprcal-fonts' 'texlive-type1cm' 'texlive-type1cm-doc' 'texlive-typed-checklist' 'texlive-typed-checklist-doc' 'texlive-typeface' 'texlive-typeface-doc' 'texlive-typehtml' 'texlive-typehtml-doc' 'texlive-typeoutfileinfo' 'texlive-typeoutfileinfo-bin' 'texlive-typeoutfileinfo-doc' 'texlive-typewriter' 'texlive-typewriter-doc' 'texlive-typicons' 'texlive-typicons-doc' 'texlive-typicons-fonts' 'texlive-typoaid' 'texlive-typoaid-doc' 'texlive-typogrid' 'texlive-typogrid-doc' 'texlive-uaclasses' 'texlive-uaclasses-doc' 'texlive-uafthesis' 'texlive-uafthesis-doc' 'texlive-uantwerpendocs' 'texlive-uantwerpendocs-doc' 'texlive-uassign' 'texlive-uassign-doc' 'texlive-ucalgmthesis' 'texlive-ucalgmthesis-doc' 'texlive-ucbthesis' 'texlive-ucbthesis-doc' 'texlive-ucdavisthesis' 'texlive-ucdavisthesis-doc' 'texlive-ucharcat' 'texlive-ucharcat-doc' 'texlive-ucharclasses' 'texlive-ucharclasses-doc' 'texlive-ucs' 'texlive-ucs-doc' 'texlive-ucsmonograph' 'texlive-ucsmonograph-doc' 'texlive-ucthesis' 'texlive-ucthesis-doc' 'texlive-udesoftec' 'texlive-udesoftec-doc' 'texlive-uebungsblatt' 'texlive-uebungsblatt-doc' 'texlive-uestcthesis' 'texlive-uestcthesis-doc' 'texlive-uhc' 'texlive-uhc-doc' 'texlive-uhc-fonts' 'texlive-uhhassignment' 'texlive-uhhassignment-doc' 'texlive-uhrzeit' 'texlive-uhrzeit-doc' 'texlive-uiucredborder' 'texlive-uiucredborder-doc' 'texlive-uiucthesis' 'texlive-uiucthesis-doc' 'texlive-ukrhyph' 'texlive-ukrhyph-doc' 'texlive-ulem' 'texlive-ulem-doc' 'texlive-ulqda' 'texlive-ulqda-bin' 'texlive-ulqda-doc' 'texlive-ulthese' 'texlive-ulthese-doc' 'texlive-umbclegislation' 'texlive-umbclegislation-doc' 'texlive-umich-thesis' 'texlive-umich-thesis-doc' 'texlive-uml' 'texlive-uml-doc' 'texlive-umlaute' 'texlive-umlaute-doc' 'texlive-umoline' 'texlive-umoline-doc' 'texlive-umthesis' 'texlive-umthesis-doc' 'texlive-umtypewriter' 'texlive-umtypewriter-fonts' 'texlive-unamth-template' 'texlive-unamthesis' 'texlive-unamthesis-doc' 'texlive-undergradmath' 'texlive-underlin' 'texlive-underlin-doc' 'texlive-underoverlap' 'texlive-underoverlap-doc' 'texlive-underscore' 'texlive-underscore-doc' 'texlive-undolabl' 'texlive-undolabl-doc' 'texlive-unfonts-core' 'texlive-unfonts-core-doc' 'texlive-unfonts-core-fonts' 'texlive-unfonts-extra' 'texlive-unfonts-extra-doc' 'texlive-unfonts-extra-fonts' 'texlive-uni-wtal-ger' 'texlive-uni-wtal-ger-doc' 'texlive-uni-wtal-lin' 'texlive-uni-wtal-lin-doc' 'texlive-unicode-bidi' 'texlive-unicode-bidi-doc' 'texlive-unicode-data' 'texlive-unicode-data-doc' 'texlive-unicode-math' 'texlive-unicode-math-doc' 'texlive-unisugar' 'texlive-unisugar-doc' 'texlive-unitn-bimrep' 'texlive-unitn-bimrep-doc' 'texlive-units' 'texlive-units-doc' 'texlive-unitsdef' 'texlive-unitsdef-doc' 'texlive-universa' 'texlive-universa-doc' 'texlive-universalis' 'texlive-universalis-doc' 'texlive-universalis-fonts' 'texlive-univie-ling' 'texlive-univie-ling-doc' 'texlive-unravel' 'texlive-unravel-doc' 'texlive-unswcover' 'texlive-unswcover-doc' 'texlive-uothesis' 'texlive-uothesis-doc' 'texlive-uowthesis' 'texlive-uowthesis-doc' 'texlive-uowthesistitlepage' 'texlive-uowthesistitlepage-doc' 'texlive-upca' 'texlive-upca-doc' 'texlive-updmap-map' 'texlive-uplatex' 'texlive-uplatex-bin' 'texlive-uplatex-doc' 'texlive-upmethodology' 'texlive-upmethodology-doc' 'texlive-uppunctlm' 'texlive-uppunctlm-doc' 'texlive-upquote' 'texlive-upquote-doc' 'texlive-uptex' 'texlive-uptex-base' 'texlive-uptex-base-doc' 'texlive-uptex-bin' 'texlive-uptex-fonts' 'texlive-uptex-fonts-doc' 'texlive-upzhkinsoku' 'texlive-upzhkinsoku-doc' 'texlive-urcls' 'texlive-urcls-doc' 'texlive-uri' 'texlive-uri-doc' 'texlive-url' 'texlive-url-doc' 'texlive-urlbst' 'texlive-urlbst-bin' 'texlive-urlbst-doc' 'texlive-urwchancal' 'texlive-urwchancal-doc' 'texlive-usebib' 'texlive-usebib-doc' 'texlive-ushort' 'texlive-ushort-doc' 'texlive-uspace' 'texlive-uspace-doc' 'texlive-uspatent' 'texlive-uspatent-doc' 'texlive-ut-thesis' 'texlive-ut-thesis-doc' 'texlive-utexasthesis' 'texlive-utexasthesis-doc' 'texlive-utf8mex' 'texlive-utf8mex-doc' 'texlive-utopia' 'texlive-utopia-doc' 'texlive-utopia-fonts' 'texlive-uwmslide' 'texlive-uwmslide-doc' 'texlive-uwthesis' 'texlive-uwthesis-doc' 'texlive-vak' 'texlive-vak-doc' 'texlive-vancouver' 'texlive-vancouver-doc' 'texlive-variablelm' 'texlive-variablelm-doc' 'texlive-variations' 'texlive-variations-doc' 'texlive-varindex' 'texlive-varindex-doc' 'texlive-varisize' 'texlive-varisize-doc' 'texlive-varsfromjobname' 'texlive-varsfromjobname-doc' 'texlive-varwidth' 'texlive-varwidth-doc' 'texlive-vaucanson-g' 'texlive-vaucanson-g-doc' 'texlive-vdmlisting' 'texlive-vdmlisting-doc' 'texlive-velthuis' 'texlive-velthuis-bin' 'texlive-velthuis-doc' 'texlive-velthuis-fonts' 'texlive-venn' 'texlive-venn-doc' 'texlive-venndiagram' 'texlive-venndiagram-doc' 'texlive-venturisadf' 'texlive-venturisadf-doc' 'texlive-venturisadf-fonts' 'texlive-verbasef' 'texlive-verbasef-doc' 'texlive-verbatimbox' 'texlive-verbatimbox-doc' 'texlive-verbatimcopy' 'texlive-verbatimcopy-doc' 'texlive-verbdef' 'texlive-verbdef-doc' 'texlive-verbments' 'texlive-verbments-doc' 'texlive-verse' 'texlive-verse-doc' 'texlive-version' 'texlive-version-doc' 'texlive-versions' 'texlive-versions-doc' 'texlive-versonotes' 'texlive-versonotes-doc' 'texlive-vertbars' 'texlive-vertbars-doc' 'texlive-vgrid' 'texlive-vgrid-doc' 'texlive-vhistory' 'texlive-vhistory-doc' 'texlive-visualfaq' 'texlive-visualpstricks' 'texlive-visualtikz' 'texlive-vlna' 'texlive-vlna-bin' 'texlive-vmargin' 'texlive-vmargin-doc' 'texlive-vntex' 'texlive-vntex-doc' 'texlive-vntex-fonts' 'texlive-vocaltract' 'texlive-vocaltract-doc' 'texlive-volumes' 'texlive-volumes-doc' 'texlive-voss-mathcol' 'texlive-vpe' 'texlive-vpe-bin' 'texlive-vpe-doc' 'texlive-vruler' 'texlive-vruler-doc' 'texlive-vwcol' 'texlive-vwcol-doc' 'texlive-wadalab' 'texlive-wadalab-doc' 'texlive-wadalab-fonts' 'texlive-wallcalendar' 'texlive-wallcalendar-doc' 'texlive-wallpaper' 'texlive-wallpaper-doc' 'texlive-warning' 'texlive-warning-doc' 'texlive-warpcol' 'texlive-warpcol-doc' 'texlive-was' 'texlive-was-doc' 'texlive-wasy' 'texlive-wasy-doc' 'texlive-wasy2-ps' 'texlive-wasy2-ps-doc' 'texlive-wasy2-ps-fonts' 'texlive-wasysym' 'texlive-wasysym-doc' 'texlive-web' 'texlive-web-bin' 'texlive-webguide' 'texlive-webquiz' 'texlive-webquiz-bin' 'texlive-webquiz-doc' 'texlive-widetable' 'texlive-widetable-doc' 'texlive-widows-and-orphans' 'texlive-widows-and-orphans-doc' 'texlive-williams' 'texlive-williams-doc' 'texlive-windycity' 'texlive-windycity-doc' 'texlive-withargs' 'texlive-withargs-doc' 'texlive-witharrows' 'texlive-witharrows-doc' 'texlive-wnri' 'texlive-wnri-doc' 'texlive-wnri-latex' 'texlive-wnri-latex-doc' 'texlive-wordcount' 'texlive-wordcount-bin' 'texlive-wordcount-doc' 'texlive-wordlike' 'texlive-wordlike-doc' 'texlive-worksheet' 'texlive-worksheet-doc' 'texlive-wrapfig' 'texlive-wrapfig-doc' 'texlive-wsemclassic' 'texlive-wsemclassic-doc' 'texlive-wsuipa' 'texlive-wsuipa-doc' 'texlive-wtref' 'texlive-wtref-doc' 'texlive-xargs' 'texlive-xargs-doc' 'texlive-xassoccnt' 'texlive-xassoccnt-doc' 'texlive-xbmks' 'texlive-xbmks-doc' 'texlive-xcharter' 'texlive-xcharter-doc' 'texlive-xcharter-fonts' 'texlive-xcite' 'texlive-xcite-doc' 'texlive-xcjk2uni' 'texlive-xcjk2uni-doc' 'texlive-xcntperchap' 'texlive-xcntperchap-doc' 'texlive-xcolor' 'texlive-xcolor-doc' 'texlive-xcolor-material' 'texlive-xcolor-material-doc' 'texlive-xcolor-solarized' 'texlive-xcolor-solarized-doc' 'texlive-xcomment' 'texlive-xcomment-doc' 'texlive-xcookybooky' 'texlive-xcookybooky-doc' 'texlive-xcpdftips' 'texlive-xcpdftips-doc' 'texlive-xdoc' 'texlive-xdoc-doc' 'texlive-xduthesis' 'texlive-xduthesis-doc' 'texlive-xdvi' 'texlive-xdvi-bin' 'texlive-xdvi-doc' 'texlive-xebaposter' 'texlive-xebaposter-doc' 'texlive-xechangebar' 'texlive-xechangebar-doc' 'texlive-xecjk' 'texlive-xecjk-doc' 'texlive-xecolor' 'texlive-xecolor-doc' 'texlive-xecyr' 'texlive-xecyr-doc' 'texlive-xeindex' 'texlive-xeindex-doc' 'texlive-xellipsis' 'texlive-xellipsis-doc' 'texlive-xepersian' 'texlive-xepersian-doc' 'texlive-xesearch' 'texlive-xesearch-doc' 'texlive-xespotcolor' 'texlive-xespotcolor-doc' 'texlive-xetex' 'texlive-xetex-bin' 'texlive-xetex-devanagari' 'texlive-xetex-devanagari-doc' 'texlive-xetex-doc' 'texlive-xetex-itrans' 'texlive-xetex-itrans-doc' 'texlive-xetex-pstricks' 'texlive-xetex-pstricks-doc' 'texlive-xetex-tibetan' 'texlive-xetex-tibetan-doc' 'texlive-xetexconfig' 'texlive-xetexfontinfo' 'texlive-xetexfontinfo-doc' 'texlive-xetexko' 'texlive-xetexko-doc' 'texlive-xetexref' 'texlive-xevlna' 'texlive-xevlna-doc' 'texlive-xfakebold' 'texlive-xfakebold-doc' 'texlive-xfor' 'texlive-xfor-doc' 'texlive-xgreek' 'texlive-xgreek-doc' 'texlive-xhfill' 'texlive-xhfill-doc' 'texlive-xifthen' 'texlive-xifthen-doc' 'texlive-xii' 'texlive-xii-lat' 'texlive-xindex' 'texlive-xindex-bin' 'texlive-xindex-doc' 'texlive-xint' 'texlive-xint-doc' 'texlive-xits' 'texlive-xits-doc' 'texlive-xits-fonts' 'texlive-xkeyval' 'texlive-xkeyval-doc' 'texlive-xlop' 'texlive-xlop-doc' 'texlive-xltabular' 'texlive-xltabular-doc' 'texlive-xltxtra' 'texlive-xltxtra-doc' 'texlive-xmltex' 'texlive-xmltex-bin' 'texlive-xmltex-doc' 'texlive-xmltexconfig' 'texlive-xmpincl' 'texlive-xmpincl-doc' 'texlive-xnewcommand' 'texlive-xnewcommand-doc' 'texlive-xoptarg' 'texlive-xoptarg-doc' 'texlive-xpatch' 'texlive-xpatch-doc' 'texlive-xpeek' 'texlive-xpeek-doc' 'texlive-xpiano' 'texlive-xpiano-doc' 'texlive-xpicture' 'texlive-xpicture-doc' 'texlive-xpinyin' 'texlive-xpinyin-doc' 'texlive-xprintlen' 'texlive-xprintlen-doc' 'texlive-xpunctuate' 'texlive-xpunctuate-doc' 'texlive-xq' 'texlive-xq-doc' 'texlive-xsavebox' 'texlive-xsavebox-doc' 'texlive-xsim' 'texlive-xsim-doc' 'texlive-xskak' 'texlive-xskak-doc' 'texlive-xstring' 'texlive-xstring-doc' 'texlive-xtab' 'texlive-xtab-doc' 'texlive-xtuthesis' 'texlive-xtuthesis-doc' 'texlive-xunicode' 'texlive-xunicode-doc' 'texlive-xurl' 'texlive-xurl-doc' 'texlive-xwatermark' 'texlive-xwatermark-doc' 'texlive-xyling' 'texlive-xyling-doc' 'texlive-xymtex' 'texlive-xymtex-doc' 'texlive-xypic' 'texlive-xypic-doc' 'texlive-xypic-fonts' 'texlive-xypic-tut-pt' 'texlive-xytree' 'texlive-xytree-doc' 'texlive-yafoot' 'texlive-yafoot-doc' 'texlive-yagusylo' 'texlive-yagusylo-doc' 'texlive-yaletter' 'texlive-yaletter-doc' 'texlive-yannisgr' 'texlive-yannisgr-doc' 'texlive-yathesis' 'texlive-yathesis-doc' 'texlive-yax' 'texlive-yax-doc' 'texlive-ycbook' 'texlive-ycbook-doc' 'texlive-ydoc' 'texlive-ydoc-doc' 'texlive-yfonts' 'texlive-yfonts-doc' 'texlive-yfonts-t1' 'texlive-yfonts-t1-doc' 'texlive-yfonts-t1-fonts' 'texlive-yhmath' 'texlive-yhmath-doc' 'texlive-yhmath-fonts' 'texlive-yinit-otf' 'texlive-yinit-otf-doc' 'texlive-yinit-otf-fonts' 'texlive-york-thesis' 'texlive-york-thesis-doc' 'texlive-youngtab' 'texlive-youngtab-doc' 'texlive-yplan' 'texlive-yplan-bin' 'texlive-yplan-doc' 'texlive-ytableau' 'texlive-ytableau-doc' 'texlive-zapfchan' 'texlive-zapfchan-fonts' 'texlive-zapfding' 'texlive-zapfding-fonts' 'texlive-zebra-goodies' 'texlive-zebra-goodies-doc' 'texlive-zed-csp' 'texlive-zed-csp-doc' 'texlive-zhlineskip' 'texlive-zhlineskip-doc' 'texlive-zhlipsum' 'texlive-zhlipsum-doc' 'texlive-zhmetrics' 'texlive-zhmetrics-doc' 'texlive-zhmetrics-uptex' 'texlive-zhmetrics-uptex-doc' 'texlive-zhnumber' 'texlive-zhnumber-doc' 'texlive-zhspacing' 'texlive-zhspacing-doc' 'texlive-ziffer' 'texlive-ziffer-doc' 'texlive-zlmtt' 'texlive-zlmtt-doc' 'texlive-zootaxa-bst' 'texlive-zootaxa-bst-doc' 'texlive-zwgetfdate' 'texlive-zwgetfdate-doc' 'texlive-zwpagelayout' 'texlive-zwpagelayout-doc' 'texlive-zxjafbfont' 'texlive-zxjafbfont-doc' 'texlive-zxjafont' 'texlive-zxjafont-doc' 'texlive-zxjatype' 'texlive-zxjatype-doc' 'texmaker' 'texmath' 'texstudio' 'texworks' 'texworks-plugin-lua' 'texworks-plugin-python' 'tftp' 'tftpboot-installation-common' 'tftpboot-installation-openSUSE-Kubic-x86_64' 'tftpboot-installation-openSUSE-MicroOS-x86_64' 'tftpboot-installation-openSUSE-Tumbleweed-i586' 'tftpboot-installation-openSUSE-Tumbleweed-x86_64' 'tgt' 'thai-fonts' 'the_silver_searcher' 'thermald' 'thessalonica-oldstandard-otf-fonts' 'thessalonica-oldstandard-ttf-fonts' 'thessalonica-tempora-lgc-otf-fonts' 'thessalonica-tempora-lgc-ttf-fonts' 'thessalonica-theano-otf-fonts' 'thessalonica-theano-ttf-fonts' 'thin-provisioning-tools' 'threadweaver-devel' 'threadweaver-devel-32bit' 'thrift' 'thryomanes-fonts' 'thttpd' 'thunar' 'thunar-devel' 'thunar-lang' 'thunar-plugin-archive' 'thunar-plugin-archive-lang' 'thunar-plugin-media-tags' 'thunar-plugin-media-tags-lang' 'thunar-plugin-shares' 'thunar-plugin-shares-lang' 'thunar-plugin-vcs' 'thunar-plugin-vcs-lang' 'thunar-sendto-blueman' 'thunar-sendto-clamtk' 'thunar-volman' 'thunar-volman-branding-openSUSE' 'thunar-volman-branding-upstream' 'thunar-volman-lang' 'thunarx-python' 'thunarx-python-doc' 'thunderbolt-user-space' 'tibetan-machine-uni-fonts' 'tidy' 'tidy-doc' 'tidyp' 'tiff' 'tig' 'tiger-types' 'tiger-types-javadoc' 'tigervnc' 'tigervnc-x11vnc' 'tilda' 'tilda-lang' 'tilde' 'tiled' 'tilix' 'tilix-lang' 'time' 'time-api' 'time-api-javadoc' 'timezone' 'timezone-java' 'timidity' 'tinc' 'tini' 'tini-static' 'tint' 'tint2' 'tint2-lang' 'tintii' 'tinyb-devel' 'tinyca2' 'tinyfecvpn' 'tinygettext-devel' 'tinyobjloader-devel' 'tinyproxy' 'tinyssh' 'tinyxml-devel' 'tinyxml-docs' 'tinyxml2-devel' 'tiobench' 'tipcutils' 'tix' 'tj' 'tk' 'tk-32bit' 'tk-devel' 'tkdiff' 'tkfont' 'tkimg' 'tkimg-devel' 'tkinfo' 'tkirc' 'tktable' 'tkxcd' 'tlp' 'tlp-rdw' 'tls' 'tlswrap' 'tmate' 'tmon' 'tmpwatch' 'tmux' 'tmux-powerline' 'tmxtools' 'tn5250' 'tn5250-devel' 'tnef' 'tnftp' 'tntdb-doc' 'tntdb-mysql' 'tntdb-postgresql' 'tntdb-replicate' 'tntdb-sqlite' 'tntnet' 'tntnet' 'tntnet-debuginfo' 'tntnet-debugsource' 'tog-pegasus' 'tog-pegasus-devel' 'tog-pegasus-libs' 'tog-pegasus-test' 'togaII-131' 'togaII-131' 'togaII-131-debuginfo' 'togaII-134' 'togaII-134' 'togaII-134-debuginfo' 'togaII-141' 'togaII-141' 'togaII-142' 'togaII-142' 'togaII-142-debuginfo' 'tolua' 'toluapp-5.1' 'toluapp-5.3' 'tomatoes' 'tomboy' 'tomboy-lang' 'tomcat' 'tomcat-admin-webapps' 'tomcat-docs-webapp' 'tomcat-el-3_0-api' 'tomcat-embed' 'tomcat-javadoc' 'tomcat-jsp-2_3-api' 'tomcat-jsvc' 'tomcat-lib' 'tomcat-servlet-4_0-api' 'tomcat-webapps' 'tomoe' 'tomoe-devel' 'tomoe-doc' 'tomoe-gtk' 'tomoe-gtk-devel' 'tomoe-gtk-doc' 'tomoe-gtk-lang' 'tomoyo-tools' 'topal' 'topal' 'tor' 'torbrowser-apparmor-profile' 'torbrowser-launcher' 'torbrowser-launcher-lang' 'torrentinfo' 'torsocks' 'totem' 'totem-devel' 'totem-lang' 'totem-pl-parser' 'totem-pl-parser-devel' 'totem-pl-parser-lang' 'totem-plugin-brasero' 'totem-plugin-gnome-dvb-daemon' 'totem-plugins' 'touchegg' 'touchegg-gui' 'tovid' 'tovid' 'tpm-quote-tools' 'tpm-tools' 'tpm-tools-devel' 'tpm-tools-pkcs11' 'tpm2-0-tss' 'tpm2-0-tss-devel' 'tpm2-tss-engine' 'tpm2-tss-engine-bash-completion' 'tpm2-tss-engine-devel' 'tpm2.0-abrmd' 'tpm2.0-abrmd-devel' 'tpm2.0-tools' 'trace-cmd' 'traceroute' 'trackballs' 'tracker' 'tracker-devel' 'tracker-lang' 'tracker-miner-files' 'tracker-miner-rss' 'tracker-miners' 'tracker-miners-lang' 'trader' 'trader-lang' 'tragtor' 'tragtor' 'trang' 'transactional-update' 'transactional-update-zypp-config' 'transcode' 'transcode' 'transcode-debuginfo' 'transcode-debugsource' 'transconnect' 'transfig' 'transifex-client' 'translate-shell' 'translate-toolkit' 'translate-toolkit-devel-doc' 'translation-update' 'translation-update-bg' 'translation-update-ca' 'translation-update-cs' 'translation-update-da' 'translation-update-de' 'translation-update-dz' 'translation-update-el' 'translation-update-en_CA' 'translation-update-en_GB' 'translation-update-es' 'translation-update-et' 'translation-update-eu' 'translation-update-fi' 'translation-update-fr' 'translation-update-ga' 'translation-update-gl' 'translation-update-hr' 'translation-update-hu' 'translation-update-it' 'translation-update-ja' 'translation-update-ko' 'translation-update-lt' 'translation-update-lv' 'translation-update-ml' 'translation-update-nb' 'translation-update-ne' 'translation-update-nl' 'translation-update-pa' 'translation-update-pl' 'translation-update-pt' 'translation-update-pt_BR' 'translation-update-ro' 'translation-update-ru' 'translation-update-sk' 'translation-update-sl' 'translation-update-sr' 'translation-update-sv' 'translation-update-tr' 'translation-update-uk' 'translation-update-upstream' 'translation-update-vi' 'translation-update-zh_CN' 'translation-update-zh_TW' 'translator' 'translator-lang' 'transmageddon' 'transmageddon-lang' 'transmission' 'transmission-common' 'transmission-daemon' 'transmission-gtk' 'transmission-gtk-lang' 'transmission-qt' 'transmission-qt-lang' 'transporter' 'transporter-lang' 'transset' 'tre' 'tre-devel' 'tre-lang' 'tree' 'treeline' 'trello-full-backup' 'trigger-rally' 'trigger-rally-data' 'trilead-ssh2' 'trilead-ssh2-javadoc' 'trilinos' 'trilinos-devel' 'trilinos-doc' 'trilinos-gnu-mpich-hpc' 'trilinos-gnu-mpich-hpc-devel' 'trilinos-gnu-mvapich2-hpc' 'trilinos-gnu-mvapich2-hpc-devel' 'trilinos-gnu-openmpi2-hpc' 'trilinos-gnu-openmpi2-hpc-devel' 'trilinos-hpc-doc' 'trilinos-openmpi2' 'trilinos-openmpi2-devel' 'trilinos_12_10_1-gnu-mpich-hpc' 'trilinos_12_10_1-gnu-mpich-hpc-devel' 'trilinos_12_10_1-gnu-mvapich2-hpc' 'trilinos_12_10_1-gnu-mvapich2-hpc-devel' 'trilinos_12_10_1-gnu-openmpi2-hpc' 'trilinos_12_10_1-gnu-openmpi2-hpc-devel' 'trilinos_12_10_1-hpc-doc' 'trinity' 'tripwire' 'trojita' 'trousers' 'trousers-devel' 'trustedgrub' 'trustedgrub2' 'trustedgrub2-i386-pc' 'truth' 'truth-javadoc' 'tryton' 'trytond' 'trytond_account' 'trytond_account_invoice' 'trytond_account_invoice_stock' 'trytond_account_product' 'trytond_company' 'trytond_country' 'trytond_currency' 'trytond_party' 'trytond_product' 'trytond_purchase' 'trytond_purchase_request' 'trytond_stock' 'trytond_stock_lot' 'trytond_stock_supply' 'tslib' 'tslib-devel' 'tslib-devel-32bit' 'tslib-plugins' 'tsung' 'ttaenc' 'ttaenc' 'ttaenc-debuginfo' 'ttf2pt1' 'tudu' 'tuladha-jejeg-fonts' 'tumbler' 'tumbler-devel' 'tumbler-doc' 'tumbler-lang' 'tumbleweed-cli' 'tunapie' 'tunapie' 'tunctl' 'tuned' 'tuned-gtk' 'tuned-profiles-atomic' 'tuned-profiles-nfv' 'tuned-profiles-oracle' 'tuned-profiles-realtime' 'tuned-profiles-sap' 'tuned-profiles-sap-hana' 'tuned-utils' 'tuned-utils-systemtap' 'tup' 'tup-doc' 'tupitube' 'tupitube-plugins' 'turing' 'turing' 'turing-debuginfo' 'turing-debugsource' 'turing-devel' 'tuxcursors' 'tuxguitar' 'tuxpaint' 'tuxpaint-config' 'tuxpaint-config-lang' 'tuxpaint-devel' 'tuxpaint-stamps' 'tuxpaint-stamps-animals' 'tuxpaint-stamps-clothes' 'tuxpaint-stamps-food' 'tuxpaint-stamps-hobbies' 'tuxpaint-stamps-household' 'tuxpaint-stamps-medical' 'tuxpaint-stamps-military' 'tuxpaint-stamps-naturalforces' 'tuxpaint-stamps-people' 'tuxpaint-stamps-plants' 'tuxpaint-stamps-seasonal' 'tuxpaint-stamps-space' 'tuxpaint-stamps-sports' 'tuxpaint-stamps-symbols' 'tuxpaint-stamps-town' 'tuxpaint-stamps-vehicles' 'tv-common' 'tv-fonts' 'tvbrowser' 'tvheadend' 'tvnamer' 'tvnamer' 'tvtime' 'tvtime-lang' 'twemoji-color-font' 'twilio-utils' 'twind' 'twinkle' 'twm' 'twolame' 'txt2man' 'txt2tags' 'typelib-1_0-Accounts-1_0' 'typelib-1_0-AccountsService-1_0' 'typelib-1_0-Amtk-5' 'typelib-1_0-Anjuta-3_0' 'typelib-1_0-AppIndicator-0_1' 'typelib-1_0-AppIndicator3-0_1' 'typelib-1_0-AppStream-1.0' 'typelib-1_0-AppStreamGlib-1_0' 'typelib-1_0-Atk-1_0' 'typelib-1_0-AtrilDocument-1_5_0' 'typelib-1_0-AtrilView-1_5_0' 'typelib-1_0-Atspi-2_0' 'typelib-1_0-Avahi-0_6' 'typelib-1_0-AyatanaAppIndicator-0_1' 'typelib-1_0-AyatanaAppIndicator3-0_1' 'typelib-1_0-AyatanaIdo3-0_4' 'typelib-1_0-Babl-0_1' 'typelib-1_0-Bamf-3_0' 'typelib-1_0-BlockDev-2_0' 'typelib-1_0-BraseroBurn-3_2_0' 'typelib-1_0-BraseroMedia-3_2_0' 'typelib-1_0-BuzztraxCore-1_1' 'typelib-1_0-BuzztraxCore-1_1-32bit' 'typelib-1_0-BuzztraxIc-1_1' 'typelib-1_0-BuzztraxIc-1_1-32bit' 'typelib-1_0-CMenu-3_0' 'typelib-1_0-Caja-2_0' 'typelib-1_0-Camel-1_2' 'typelib-1_0-Caribou-1_0' 'typelib-1_0-Champlain-0_12' 'typelib-1_0-Cheese-3_0' 'typelib-1_0-CinnamonDesktop-3_0' 'typelib-1_0-CjsPrivate-1_0' 'typelib-1_0-Clutter-1_0' 'typelib-1_0-ClutterGst-3_0' 'typelib-1_0-Cogl-1_0' 'typelib-1_0-Cogl-2_0' 'typelib-1_0-CoglPango-1_0' 'typelib-1_0-CoglPango-2_0' 'typelib-1_0-Colord-1_0' 'typelib-1_0-ColordGtk-1_0' 'typelib-1_0-Colorhug-1_0' 'typelib-1_0-CryptUI-0_0' 'typelib-1_0-Cvc-1_0' 'typelib-1_0-Dbusmenu-0_4' 'typelib-1_0-DbusmenuGtk-0_4' 'typelib-1_0-DbusmenuGtk3-0_4' 'typelib-1_0-Dee-1_0' 'typelib-1_0-Devhelp-3_0' 'typelib-1_0-EBook-1_2' 'typelib-1_0-EBookContacts-1_2' 'typelib-1_0-EDataServer-1_2' 'typelib-1_0-EDataServerUI-1_2' 'typelib-1_0-Eek-0_90' 'typelib-1_0-Entangle-0_1' 'typelib-1_0-Eom-1_0' 'typelib-1_0-EvinceDocument-3_0' 'typelib-1_0-EvinceView-3_0' 'typelib-1_0-Farstream-0_2' 'typelib-1_0-Fcitx-1_0' 'typelib-1_0-Flatpak-1_0' 'typelib-1_0-Folks-0_6' 'typelib-1_0-FolksEds-0_6' 'typelib-1_0-FolksTelepathy-0_6' 'typelib-1_0-FolksTracker-0_6' 'typelib-1_0-Fwupd-2_0' 'typelib-1_0-GCab-1_0' 'typelib-1_0-GData-0_0' 'typelib-1_0-GES-1_0' 'typelib-1_0-GExiv2-0_10' 'typelib-1_0-GFBGraph-0_2' 'typelib-1_0-GMenu-3_0' 'typelib-1_0-GMime-2_6' 'typelib-1_0-GMime-3_0' 'typelib-1_0-GOffice-0_10' 'typelib-1_0-GPaste-1_0' 'typelib-1_0-GSSDP-1_0' 'typelib-1_0-GSound-1_0' 'typelib-1_0-GTop-2_0' 'typelib-1_0-GUPnP-1_0' 'typelib-1_0-GUPnPAV-1_0' 'typelib-1_0-GUPnPDLNA-2_0' 'typelib-1_0-GUPnPDLNAGst-2_0' 'typelib-1_0-GUPnPIgd-1_0' 'typelib-1_0-GUdev-1_0' 'typelib-1_0-GUsb-1_0' 'typelib-1_0-GVnc-1_0' 'typelib-1_0-GVncPulse-1_0' 'typelib-1_0-GWeather-3_0' 'typelib-1_0-GXPS-0_1' 'typelib-1_0-Gck-1' 'typelib-1_0-Gcr-3' 'typelib-1_0-GcrUi-3' 'typelib-1_0-Gda-5_0' 'typelib-1_0-Gdaui-5_0' 'typelib-1_0-GdkPixbuf-2_0' 'typelib-1_0-GdkPixdata-2_0' 'typelib-1_0-Gdl-3' 'typelib-1_0-Gdm-1_0' 'typelib-1_0-Gee-0_8' 'typelib-1_0-Gee-1_0' 'typelib-1_0-Gegl-0_4' 'typelib-1_0-Geoclue-2_0' 'typelib-1_0-GeocodeGlib-1_0' 'typelib-1_0-Gepub-0_6' 'typelib-1_0-Ggit-1_0' 'typelib-1_0-Gitg-1_0' 'typelib-1_0-GitgExt-1_0' 'typelib-1_0-GjsPrivate-1_0' 'typelib-1_0-Gkbd-3_0' 'typelib-1_0-Gladeui-2_0' 'typelib-1_0-GnomeAutoar-0_1' 'typelib-1_0-GnomeAutoarGtk-0_1' 'typelib-1_0-GnomeBluetooth-1_0' 'typelib-1_0-GnomeDesktop-3_0' 'typelib-1_0-GnomeKeyring-1_0' 'typelib-1_0-GoVirt-1_0' 'typelib-1_0-Goa-1_0' 'typelib-1_0-Gom-1_0' 'typelib-1_0-GooCanvas-2_0' 'typelib-1_0-Govf-0_1' 'typelib-1_0-Granite-1_0' 'typelib-1_0-Graphene-1_0' 'typelib-1_0-Grl-0_3' 'typelib-1_0-GrlNet-0_3' 'typelib-1_0-GrlPls-0_3' 'typelib-1_0-Grss-0_7' 'typelib-1_0-Gsf-1' 'typelib-1_0-Gspell-1' 'typelib-1_0-Gst-1_0' 'typelib-1_0-GstAllocators-1_0' 'typelib-1_0-GstApp-1_0' 'typelib-1_0-GstAudio-1_0' 'typelib-1_0-GstGL-1_0' 'typelib-1_0-GstInsertBin-1_0' 'typelib-1_0-GstMpegts-1_0' 'typelib-1_0-GstPbutils-1_0' 'typelib-1_0-GstPlayer-1_0' 'typelib-1_0-GstRtp-1_0' 'typelib-1_0-GstRtsp-1_0' 'typelib-1_0-GstRtspServer-1_0' 'typelib-1_0-GstSdp-1_0' 'typelib-1_0-GstTag-1_0' 'typelib-1_0-GstTranscoder-1_0' 'typelib-1_0-GstValidate-1_0' 'typelib-1_0-GstVideo-1_0' 'typelib-1_0-GstWebRTC-1_0' 'typelib-1_0-Gtd-1_0' 'typelib-1_0-Gtk-2_0' 'typelib-1_0-Gtk-3_0' 'typelib-1_0-Gtk-4_0' 'typelib-1_0-GtkClutter-1_0' 'typelib-1_0-GtkFrdp-0_1' 'typelib-1_0-GtkSource-3_0' 'typelib-1_0-GtkSource-4' 'typelib-1_0-GtkSpell-3_0' 'typelib-1_0-GtkVnc-2_0' 'typelib-1_0-Gucharmap-2_90' 'typelib-1_0-Handy-0_0' 'typelib-1_0-HarfBuzz-0_0' 'typelib-1_0-Hinawa-2_0' 'typelib-1_0-IBus-1_0' 'typelib-1_0-Ido3-0_1' 'typelib-1_0-JavaScriptCore-4_0' 'typelib-1_0-Json-1_0' 'typelib-1_0-Jsonrpc-1_0' 'typelib-1_0-Keybinder-0_0' 'typelib-1_0-Keybinder-3_0' 'typelib-1_0-Libmsi-1_0' 'typelib-1_0-Libosinfo-1_0' 'typelib-1_0-LibvirtGConfig-1_0' 'typelib-1_0-LibvirtGLib-1_0' 'typelib-1_0-LibvirtGObject-1_0' 'typelib-1_0-LibvirtSandbox-1_0' 'typelib-1_0-LightDM-1' 'typelib-1_0-Manette-0_2-0' 'typelib-1_0-MateDesktop-2_0' 'typelib-1_0-MateMenu-2_0' 'typelib-1_0-MatePanelApplet-4_0' 'typelib-1_0-Matekbd-1_0' 'typelib-1_0-MediaArt-2_0' 'typelib-1_0-Memphis-0_2' 'typelib-1_0-Midori-0_6' 'typelib-1_0-ModemManager-1_0' 'typelib-1_0-Modulemd-1_0' 'typelib-1_0-Modulemd-2_0' 'typelib-1_0-Muffin-0_0' 'typelib-1_0-NM-1_0' 'typelib-1_0-NMA-1_0' 'typelib-1_0-NMClient-1_0' 'typelib-1_0-Nautilus-3_0' 'typelib-1_0-Nemo-3_0' 'typelib-1_0-NetworkManager-1_0' 'typelib-1_0-Notify-0_7' 'typelib-1_0-OSTree-1_0' 'typelib-1_0-OsmGpsMap-1_0' 'typelib-1_0-PackageKitGlib-1_0' 'typelib-1_0-Pango-1_0' 'typelib-1_0-Peas-1_0' 'typelib-1_0-PeasGtk-1_0' 'typelib-1_0-Playerctl-2_0_1' 'typelib-1_0-Pluma-1_0' 'typelib-1_0-Polari-1_0' 'typelib-1_0-Polkit-1_0' 'typelib-1_0-Poppler-0_18' 'typelib-1_0-Rest-0_7' 'typelib-1_0-Retro-0_14-0' 'typelib-1_0-Rsvg-2_0' 'typelib-1_0-RygelCore-2_6' 'typelib-1_0-RygelRenderer-2_6' 'typelib-1_0-RygelRendererGst-2_6' 'typelib-1_0-RygelServer-2_6' 'typelib-1_0-Secret-1' 'typelib-1_0-Signon-1_0' 'typelib-1_0-Skk-1_0' 'typelib-1_0-Soup-2_4' 'typelib-1_0-SpiceClientGlib-2_0' 'typelib-1_0-SpiceClientGtk-3_0' 'typelib-1_0-TelepathyFarstream-0_6' 'typelib-1_0-TelepathyGlib-0_12' 'typelib-1_0-TelepathyLogger-0_2' 'typelib-1_0-Template-1_0' 'typelib-1_0-Tepl-4' 'typelib-1_0-Thunarx-3_0' 'typelib-1_0-TotemPlParser-1_0' 'typelib-1_0-Tracker-2_0' 'typelib-1_0-TrackerControl-2_0' 'typelib-1_0-TrackerMiner-2_0' 'typelib-1_0-UDisks-2_0' 'typelib-1_0-Uhm-0_0' 'typelib-1_0-Unique-1_0' 'typelib-1_0-Unity-7_0' 'typelib-1_0-UnityExtras-7_0' 'typelib-1_0-UpowerGlib-1_0' 'typelib-1_0-Urfkill-0_0' 'typelib-1_0-Vips-8_5' 'typelib-1_0-Vte-2.91' 'typelib-1_0-WebKit2-4_0' 'typelib-1_0-WebKit2WebExtension-4_0' 'typelib-1_0-Wnck-1_0' 'typelib-1_0-Wnck-3_0' 'typelib-1_0-Workrave-1_0' 'typelib-1_0-XApp-1_0' 'typelib-1_0-Xkl-1_0' 'typelib-1_0-Xmlb-1_0' 'typelib-1_0-XplayerPlParser-1_0' 'typelib-1_0-XreaderDocument-1_5' 'typelib-1_0-XreaderView-1_5' 'typelib-1_0-Zeitgeist-2_0' 'typelib-1_0-Zpj-0_0' 'typelib-1_0-kkc-1_0' 'typelib-1_0-libdazzle-1_0' 'typelib-1_0-libmirage-3_2' 'typelib-1_0-libxfce4util-1_0' 'typesafe-config' 'typesafe-config-javadoc' 'typescript' 'tzdb' 'u-boot-tools' 'u2f-host' 'u2f-server' 'u3-tool' 'uae' 'uae' 'uae-debuginfo' 'uae-debugsource' 'ubuntu-fonts' 'ubuntu-mate-icon-theme' 'ubuntu-mate-wallpapers' 'ubuntu-mono-icon-theme' 'uchardet' 'ucl-devel' 'ucm' 'ucode-amd' 'ucode-intel' 'ucommon' 'ucommon-devel' 'ucpp' 'ucpp-devel' 'udav' 'udev' 'udev-browse' 'udev-configure-printer' 'udev-persistent-ifnames' 'udftools' 'udhcp' 'udiskie' 'udiskie-lang' 'udisks2' 'udisks2-lang' 'udns' 'udns-devel' 'udp2raw-tunnel' 'udpspeeder' 'udtrace' 'ufiformat' 'ufraw' 'ufraw-lang' 'uftpd' 'ufw' 'ufw-lang' 'uget' 'uget-integrator' 'uget-lang' 'uhd-devel' 'uhd-doc' 'uhd-firmware' 'uhd-udev' 'uhttpmock-devel' 'uhubctl' 'uid_wrapper' 'uim' 'uim-32bit' 'uim-devel' 'uim-gtk2' 'uim-gtk2-32bit' 'uim-gtk3' 'uim-gtk3-32bit' 'uim-qt5' 'uim-qt5-32bit' 'uisp' 'ulfius-devel' 'ullae-veliyae' 'ulogd' 'ulogd-mysql' 'ulogd-pcap' 'ulogd-pgsql' 'ulogd-sqlite3' 'ultimatestunts' 'ultimatestunts-data' 'ultrastar-deluxe' 'umbrello' 'umbrello-lang' 'umoci' 'un-fonts' 'unar' 'unbound' 'unbound-anchor' 'unbound-devel' 'unbound-munin' 'unclutter' 'uncrustify' 'unetbootin' 'unibilium-devel' 'unicode-blocks' 'unicode-emoji' 'unicode-ucd' 'unicode-ucd-unihan' 'unifdef' 'unifraktur-fonts' 'unionfs-fuse' 'uniraum' 'uniraum' 'uniraum-debuginfo' 'uniraum-debugsource' 'uniraum-devel' 'unison' 'units' 'unittest-cpp-devel' 'unity-gtk-module-common' 'unity-gtk2-module' 'unity-gtk3-module' 'universal-ctags' 'univocity-parsers' 'univocity-parsers-javadoc' 'unixODBC' 'unixODBC-32bit' 'unixODBC-devel' 'unixbench' 'unknown-horizons' 'unknown-horizons-lang' 'unmass' 'unoconv' 'unpaper' 'unrar' 'unrar_wrapper' 'unsermake' 'unshield' 'unshield-devel' 'unzip' 'unzip-doc' 'unzip-rcc' 'unzix' 'update-alternatives' 'update-bootloader-rpm-macros' 'update-checker' 'update-desktop-files' 'update-test-32bit-pkg' 'update-test-32bit-pkg' 'update-test-32bit-pkg-32bit' 'update-test-affects-package-manager' 'update-test-affects-package-manager' 'update-test-broken' 'update-test-feature' 'update-test-feature' 'update-test-interactive' 'update-test-optional' 'update-test-optional' 'update-test-reboot-needed' 'update-test-reboot-needed' 'update-test-relogin-suggested' 'update-test-relogin-suggested' 'update-test-security' 'update-test-security' 'update-test-trivial' 'update-test-trivial' 'update-test-trivial' 'update_test' 'uperf' 'upm-devel' 'upower' 'upower-lang' 'upsm' 'upx' 'uranium' 'uranium-firmware-lulzbot' 'uranium-lulzbot' 'urbanlightscape' 'urfkill' 'urh' 'uriparser' 'uriparser-devel' 'uriparser-doc' 'urlscan' 'urlview' 'urlwatch' 'urxvt-font-size' 'urxvt-perls' 'us428control' 'usb_modeswitch' 'usb_modeswitch-data' 'usbauth' 'usbauth-notifier' 'usbguard' 'usbguard-applet-qt' 'usbguard-devel' 'usbguard-tools' 'usbmuxd' 'usbprog' 'usbprog-devel' 'usbprog-gui' 'usbredir' 'usbredir-devel' 'usbtop' 'usbutils' 'usbview' 'usnic_tools' 'usrp-firmware' 'usrp-tools' 'usx2yloader' 'utempter-devel' 'utempter-devel-32bit' 'utf8proc-devel' 'utfcpp-devel' 'uthash-devel' 'util-linux' 'util-linux-lang' 'util-linux-systemd' 'util-macros-devel' 'utils-libnfs' 'utox' 'uucp' 'uucp-xinetd' 'uudeview' 'uuid-devel' 'uuidd' 'uvcdynctrl' 'uwac0-0-devel' 'uwsc' 'uwsgi' 'uwsgi-emperor_pg' 'uwsgi-emperor_zeromq' 'uwsgi-geoip' 'uwsgi-gevent' 'uwsgi-glusterfs' 'uwsgi-greenlet' 'uwsgi-jvm' 'uwsgi-ldap' 'uwsgi-libffi' 'uwsgi-logzmq' 'uwsgi-lua' 'uwsgi-pam' 'uwsgi-php7' 'uwsgi-psgi' 'uwsgi-pypy' 'uwsgi-python' 'uwsgi-python3' 'uwsgi-sqlite3' 'uwsgi-xslt' 'v4l-conf' 'v4l-tools' 'v4l-utils' 'v4l-utils-devel-tools' 'v4l-utils-lang' 'v4l2loopback-kmp-default' 'v4l2loopback-kmp-pae' 'v4l2loopback-utils' 'vacation' 'vacuum-im' 'vacuum-im-devel' 'vacuum-im-lang' 'vacuum-im-plugins-dbusnotifications' 'vacuum-im-plugins-gmailnotify' 'vacuum-im-plugins-spellchecker' 'vacuum-im-plugins-statistics' 'vacuum-im-plugins-usermood' 'vacuum-im-plugins-usertune' 'vagrant' 'vagrant-bash-completion' 'vagrant-doc' 'vagrant-emacs' 'vagrant-libvirt' 'vagrant-libvirt-doc' 'vagrant-vim' 'vala' 'vala-panel' 'vala-panel-appmenu-lang' 'vala-panel-devel' 'vala-panel-extras-battery' 'vala-panel-extras-gtop' 'vala-panel-extras-lang' 'vala-panel-extras-volume' 'vala-panel-extras-weather' 'vala-panel-extras-xkb' 'vala-panel-extras-xkb-flags' 'vala-panel-lang' 'vala-panel-plugin-appmenu' 'vala-panel-plugin-sntray' 'vala-panel-plugin-sntray-lang' 'vala-panel-plugins-base' 'vala-panel-plugins-wnck' 'vala-panel-runner' 'valadoc' 'valadoc-doclet-devhelp' 'valadoc-doclet-gtkdoc' 'valadoc-doclet-html' 'valgrind' 'valgrind-32bit' 'valgrind-devel' 'vamp-aubio-plugins' 'vamp-aubio-plugins' 'vamp-aubio-plugins-debuginfo' 'vamp-libxtract-plugins' 'vamp-libxtract-plugins' 'vamp-libxtract-plugins-debuginfo' 'vamp-match-plugin' 'vamp-match-plugin' 'vamp-match-plugin-debuginfo' 'vamp-match-plugin-debugsource' 'vamp-mazurka-plugins' 'vamp-mazurka-plugins' 'vamp-mazurka-plugins-debuginfo' 'vamp-mazurka-plugins-debugsource' 'vamp-plugin-sdk' 'vamp-plugin-sdk-devel' 'vamp-plugin-tester' 'vamp-plugin-tester' 'vamp-plugin-tester-debuginfo' 'vamp-plugin-tester-debugsource' 'vamp-qm-plugins' 'vamp-qm-plugins' 'vamp-qm-plugins-debuginfo' 'vamps' 'vamps' 'vapoursynth-devel' 'vapoursynth-plugin-eedi3' 'vapoursynth-plugin-imwri' 'vapoursynth-plugin-miscfilters' 'vapoursynth-plugin-morpho' 'vapoursynth-plugin-ocr' 'vapoursynth-plugin-removegrain' 'vapoursynth-plugin-subtext' 'vapoursynth-plugin-vinverse' 'vapoursynth-plugin-vivtc' 'vapoursynth-tools' 'variety' 'varnish' 'varnish-devel' 'vboot' 'vbrfix' 'vcdimager' 'vcdimager-devel' 'vclt-tools' 'vclt-tools' 'vcron' 'vcsh' 'vcsh-zsh-completion' 'vde2' 'vde2-cryptcab' 'vde2-slirp' 'vdr-plugin-mcli' 'vdr-plugin-mcli' 'vdr-plugin-mcli-debuginfo' 'vdr-plugin-mcli-debugsource' 'ved' 'vegastrike' 'vegastrike-data' 'vegastrike-extra' 'vegastrike-music' 'vegastrike-speech' 'velocity' 'velocity-demo' 'velocity-javadoc' 'velocity-manual' 'velum' 'velum-branding' 'verilator' 'verilator-devel' 'verilator-doc' 'verilator-doc-pdf' 'verilator-examples' 'veusz' 'vgrep' 'vhba-kmp-default' 'vhba-kmp-pae' 'vhostmd' 'vidcutter' 'videoporama' 'videoporama' 'vido' 'vido-lang' 'viewnior' 'viewnior-lang' 'viewres' 'viewvc' 'vifm' 'vifm-colors' 'vigra-devel' 'vim' 'vim-bootstrap' 'vim-completion-golang' 'vim-data' 'vim-data-common' 'vim-fzf' 'vim-icinga2' 'vim-plugin-NERDcommenter' 'vim-plugin-NERDtree' 'vim-plugin-a' 'vim-plugin-ack' 'vim-plugin-align' 'vim-plugin-bufexplorer' 'vim-plugin-calendar' 'vim-plugin-colorschemes' 'vim-plugin-colorsel' 'vim-plugin-conky' 'vim-plugin-devhelp' 'vim-plugin-diffchanges' 'vim-plugin-editorconfig' 'vim-plugin-fugitive' 'vim-plugin-gitdiff' 'vim-plugin-gnupg' 'vim-plugin-latex' 'vim-plugin-locateopen' 'vim-plugin-matrix' 'vim-plugin-minibufexpl' 'vim-plugin-multiplesearch' 'vim-plugin-neomutt' 'vim-plugin-nginx' 'vim-plugin-powerline' 'vim-plugin-project' 'vim-plugin-quilt' 'vim-plugin-rails' 'vim-plugin-searchcomplete' 'vim-plugin-showmarks' 'vim-plugin-snipmate' 'vim-plugin-supertab' 'vim-plugin-taglist' 'vim-plugin-tlib' 'vim-plugin-tregisters' 'vim-plugin-tselectbuffer' 'vim-plugin-tselectfiles' 'vim-plugin-utl' 'vim-plugin-vimwiki' 'vim-plugin-zoomwin' 'vimb' 'vimpc' 'vimpc' 'vimpc-debuginfo' 'vimpc-debugsource' 'vinagre' 'vinagre-lang' 'vino' 'vino-lang' 'vips-doc' 'vips-tools' 'virglrenderer-devel' 'virglrenderer-test-server' 'virt-install' 'virt-manager' 'virt-manager-common' 'virt-sandbox' 'virt-top' 'virt-v2v' 'virt-viewer' 'virt-what' 'virtualbox' 'virtualbox-devel' 'virtualbox-guest-desktop-icons' 'virtualbox-guest-source' 'virtualbox-guest-tools' 'virtualbox-guest-x11' 'virtualbox-host-source' 'virtualbox-kmp-default' 'virtualbox-qt' 'virtualbox-vnc' 'virtualbox-websrv' 'viruskiller' 'visio2svg-conv' 'visualjackm' 'vit' 'vitetris' 'vivaldi' 'vivaldi' 'vkd3d-devel' 'vkd3d-devel-32bit' 'vkeybd' 'vkmark' 'vkquake' 'vlan' 'vlc' 'vlc' 'vlc-beta' 'vlc-beta' 'vlc-beta-debuginfo' 'vlc-beta-debugsource' 'vlc-beta-devel' 'vlc-beta-noX' 'vlc-beta-noX-debuginfo' 'vlc-beta-noX-lang' 'vlc-beta-qt' 'vlc-beta-qt-debuginfo' 'vlc-codec-gstreamer' 'vlc-codec-gstreamer-debuginfo' 'vlc-codecs' 'vlc-codecs-debuginfo' 'vlc-debuginfo' 'vlc-debugsource' 'vlc-devel' 'vlc-jack' 'vlc-jack-debuginfo' 'vlc-lang' 'vlc-noX' 'vlc-noX-debuginfo' 'vlc-qt' 'vlc-qt-debuginfo' 'vlc-vdpau' 'vlc-vdpau-debuginfo' 'vlgothic-fonts' 'vlmc' 'vlmc' 'vlmc-debuginfo' 'vlmc-debugsource' 'vm-dump-metrics' 'vm-install' 'vmmlib' 'vmmlib-devel' 'vmmlib-doc' 'vms-empire' 'vmtouch' 'vncmanager' 'vncmanager-controller' 'vncmanager-controller-gnome' 'vncmanager-greeter' 'vnote' 'vnstat' 'vnstat-cgi' 'vo-aacenc' 'vo-aacenc-debugsource' 'vo-amrwbenc' 'vo-amrwbenc-debugsource' 'vobcopy' 'vobcopy' 'vobcopy-debuginfo' 'vobcopy-debugsource' 'vocal' 'vocal-lang' 'vodovod' 'voikkospell' 'vokoscreen' 'vollkorn-fonts' 'vorbis-tools' 'vorbis-tools-lang' 'vorbisgain' 'voro++' 'voro++-devel' 'vorta' 'votca-csg' 'votca-csg-bash' 'votca-csg-common' 'votca-csg-devel' 'votca-csg-doc' 'votca-csg-tutorials' 'votca-csgapps' 'votca-ctp' 'votca-ctp-common' 'votca-ctp-devel' 'votca-ctp-doc' 'votca-tools' 'votca-tools-devel' 'votca-xtp' 'votca-xtp-common' 'votca-xtp-devel' 'votca-xtp-doc' 'voxelands' 'vpcs' 'vpnc' 'vpp' 'vpp-api-lua' 'vpp-api-python' 'vpp-devel' 'vpp-plugins' 'vpx-tools' 'vsftpd' 'vsqlite++-devel' 'vtable-dumper' 'vtcl' 'vte-devel' 'vte-lang' 'vte-tools' 'vtk-devel' 'vtk-devel-doc' 'vtk-examples' 'vtk-java' 'vtk-openmpi-devel' 'vtk-openmpi-devel-doc' 'vtk-openmpi-java' 'vtk-openmpi-qt' 'vtk-openmpi2-devel' 'vtk-openmpi2-devel-doc' 'vtk-openmpi2-java' 'vtk-openmpi2-qt' 'vtk-qt' 'vtkdata' 'vulkan-devel' 'vulkan-headers' 'vulkan-tools' 'vulkan-validationlayers' 'vusb-analyzer' 'vym' 'w3c-markup-validator' 'w3c-markup-validator-libs' 'w3m' 'w3m-inline-image' 'w3mir' 'w_scan' 'wadptr' 'waffle' 'waffle-devel' 'wallpaper-branding-openSUSE' 'wallpapers-openSUSE-extra' 'wallstreet' 'wammu' 'wammu-lang' 'wang-fonts' 'warewulf-cluster' 'warewulf-common' 'warewulf-doc' 'warewulf-provision' 'warewulf-provision-i386-initramfs' 'warewulf-provision-ipxe-images' 'warewulf-provision-server' 'warewulf-provision-x86_64-initramfs' 'warewulf-vnfs' 'warzone2100' 'warzone2100-data' 'watchman' 'watchman-python' 'wavemon' 'wavpack' 'wavpack-devel' 'way-cooler' 'waybar' 'wayland-devel' 'wayland-devel-32bit' 'wayland-protocols-devel' 'waylandpp' 'waylandpp-devel' 'wbxml2-tools' 'wcd' 'wcslib-devel' 'wcslib-doc' 'wcslib-tools' 'wdiff' 'wdiff-lang' 'wdm' 'weather-wallpaper' 'weather-wallpaper-lang' 'weave-k8s-yaml' 'weave-kube' 'weave-npc' 'webalizer' 'webalizer-flags' 'webcamoid' 'webcamoid-devel' 'webdot' 'webenginepart' 'webkit-jsc-4' 'webkit2gtk-4_0-injected-bundles' 'webkit2gtk3-devel' 'webkit2gtk3-minibrowser' 'webkit2gtk3-plugin-process-gtk2' 'websocketpp-devel' 'webvfx' 'webvfx-devel' 'webvfx-module' 'weechat' 'weechat-aspell' 'weechat-devel' 'weechat-lang' 'weechat-lua' 'weechat-perl' 'weechat-python' 'weechat-ruby' 'weechat-tcl' 'weld-parent' 'werken-xpath' 'werken-xpath-javadoc' 'wesnoth' 'wesnoth-campaign-server' 'wesnoth-data' 'wesnoth-fslayout' 'wesnoth-server' 'weston' 'weston-devel' 'wget' 'wgetpaste' 'when-command' 'when-command-lang' 'whfc' 'which' 'whohas' 'whois' 'wicked' 'wicked-service' 'widelands' 'widelands-data' 'widelands-debug' 'wiggle' 'wiiuse-devel' 'wimlib-devel' 'wimtools' 'wine' 'wine-32bit' 'wine-devel' 'wine-devel-32bit' 'wine-gecko' 'wine-mono' 'wine-nine-standalone' 'wine-nine-standalone-32bit' 'wine-staging' 'wine-staging-32bit' 'wine-staging-devel' 'wine-staging-devel-32bit' 'wineasio' 'wineasio' 'wineasio-32bit' 'wineasio-32bit-debuginfo' 'wineasio-debuginfo' 'wineasio-debugsource' 'winetricks' 'winff' 'winff' 'winff-debuginfo' 'winff-debugsource' 'winff-lang' 'winpr2-devel' 'winrs' 'wipe' 'wireguard-tools' 'wireless-regdb' 'wireless-tools' 'wireshark' 'wireshark-devel' 'wireshark-plugin-libvirt' 'wireshark-ui-qt' 'withlock' 'wizznic' 'wkhtmltopdf' 'wkhtmltopdf-devel' 'wlc-devel' 'wlroots-devel' 'wm-icons' 'wmakerconf' 'wmctrl' 'wmgui' 'wminput' 'wmpomme' 'wmutils' 'wnck-sharp' 'woff2-devel' 'wol' 'wol-lang' 'wol-udev-rules' 'wondershaper' 'woodstox-core' 'woodstox-core-javadoc' 'wordcut' 'wordcut-devel' 'wordnet' 'wordnet-devel' 'words' 'words-british' 'words-canadian' 'workrave' 'workrave-devel' 'wpa_supplicant' 'wpa_supplicant-gui' 'wpan-tools' 'wput' 'wput' 'wput-debuginfo' 'wput-debugsource' 'wput-lang' 'wqy-bitmap-fonts' 'wqy-microhei-fonts' 'wqy-zenhei-fonts' 'wrapsix' 'writerperfect' 'wrk' 'ws-jaxme' 'ws-jaxme-javadoc' 'ws-jaxme-manual' 'wsdl4j' 'wsdl4j-javadoc' 'wslay' 'wslay-devel' 'wsmancli' 'wt' 'wt-devel' 'wumpus' 'wv' 'wv-devel' 'wv2-devel' 'wxEDID' 'wxEphe' 'wxGTK3-3_2-devel' 'wxMaxima' 'wxQt-3_2-devel' 'wxWidgets-3_0-devel' 'wxWidgets-3_0-devel-32bit' 'wxWidgets-3_0-docs' 'wxWidgets-3_0-nostl-devel' 'wxWidgets-3_0-plugin-sound_sdlu-3_0' 'wxWidgets-3_0-plugin-sound_sdlu-3_0-32bit' 'wxWidgets-3_2-devel' 'wxWidgets-3_2-plugin-sound_sdlu-3_2' 'wxWidgets-docs' 'wxWidgets-lang' 'wxWidgets-wxcontainer' 'wxWidgets-wxcontainer-compat-lib-config' 'wxWidgets-wxcontainer-debugsource' 'wxWidgets-wxcontainer-devel' 'wxWidgets-wxcontainer-devel-debuginfo' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-32bit' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-32bit-debuginfo' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-debuginfo' 'wxcam' 'wxcam' 'wxcam-debuginfo' 'wxcam-debugsource' 'wxhexeditor' 'wxhexeditor-lang' 'wxlua' 'wxlua-devel' 'wxmp3gain' 'wxmp3gain-lang' 'wxsqlite3-devel' 'wxstedit' 'wxstedit-devel' 'wxsvg' 'wyrd' 'wyrmgus' 'wyrmgus-devel' 'wyrmsun' 'x11' 'x11-japanese-bitmap-fonts' 'x11-tools' 'x11-video-nvidiaG04' 'x11-video-nvidiaG05' 'x11perf' 'x11vnc' 'x11vnc-frontend' 'x264' 'x264-debuginfo' 'x265' 'x265' 'x265-debuginfo' 'x265-debugsource' 'x2x' 'x3270' 'x86info' 'xalan-c' 'xalan-j2' 'xalan-j2-demo' 'xalan-j2-manual' 'xalan-j2-xsltc' 'xano-mincho-fonts' 'xaos' 'xaos-lang' 'xapian-core' 'xapian-core-doc' 'xapian-core-examples' 'xapps-common' 'xapps-common-lang' 'xar' 'xauth' 'xautolock' 'xautomation' 'xaw3dd' 'xawtv' 'xbacklight' 'xbanish' 'xbase' 'xbase-devel' 'xbase-doc' 'xbean' 'xbean-javadoc' 'xbench' 'xbiff' 'xbindkeys' 'xbitmaps' 'xbitmaps-devel' 'xboard' 'xboard' 'xboard-debuginfo' 'xboard-debugsource' 'xbomb' 'xboxdrv' 'xbrlapi' 'xbrz-devel' 'xbsql' 'xbsql-devel' 'xcalc' 'xcalib' 'xcalib-profiles' 'xcb' 'xcb-proto-devel' 'xcb-util-cursor-devel' 'xcb-util-cursor-devel-32bit' 'xcb-util-devel' 'xcb-util-devel-32bit' 'xcb-util-errors-devel' 'xcb-util-image-devel' 'xcb-util-image-devel-32bit' 'xcb-util-keysyms-devel' 'xcb-util-keysyms-devel-32bit' 'xcb-util-renderutil-devel' 'xcb-util-renderutil-devel-32bit' 'xcb-util-wm-devel' 'xcb-util-wm-devel-32bit' 'xcb-util-xrm-devel' 'xcfa' 'xcfa' 'xcfa-debuginfo' 'xcfa-lang' 'xclass' 'xclass-devel' 'xclip' 'xclipboard' 'xclock' 'xcm' 'xcmsdb' 'xcolors' 'xcompmgr' 'xconsole' 'xcoral' 'xcowsay' 'xcursor-themes' 'xcursorgen' 'xdbedizzy' 'xdelta3' 'xdg-dbus-proxy' 'xdg-desktop-portal' 'xdg-desktop-portal-devel' 'xdg-desktop-portal-gtk' 'xdg-desktop-portal-gtk-lang' 'xdg-desktop-portal-kde' 'xdg-desktop-portal-kde-lang' 'xdg-desktop-portal-lang' 'xdg-menu' 'xdg-user-dirs' 'xdg-user-dirs-gtk' 'xdg-user-dirs-gtk-lang' 'xdg-user-dirs-lang' 'xdg-utils' 'xdiskusage' 'xditview' 'xdm' 'xdm-xsession' 'xdmbgrd' 'xdmsc' 'xdotool' 'xdotool-devel' 'xdpyinfo' 'xdriinfo' 'xed' 'xed-devel' 'xed-lang' 'xedit' 'xemacs' 'xemacs-el' 'xemacs-info' 'xemacs-packages' 'xemacs-packages-el' 'xemacs-packages-info' 'xembedsniproxy' 'xen' 'xen-devel' 'xen-doc-html' 'xen-libs' 'xen-libs-32bit' 'xen-tools' 'xen-tools-domU' 'xen_server' 'xen_tools' 'xengine' 'xerces-c' 'xerces-c-doc' 'xerces-j2' 'xerces-j2-demo' 'xerces-j2-javadoc' 'xev' 'xeyes' 'xf86-input-evdev' 'xf86-input-evdev-devel' 'xf86-input-joystick' 'xf86-input-joystick-devel' 'xf86-input-keyboard' 'xf86-input-libinput' 'xf86-input-libinput-devel' 'xf86-input-mouse' 'xf86-input-mouse-devel' 'xf86-input-synaptics' 'xf86-input-synaptics-devel' 'xf86-input-vmmouse' 'xf86-input-void' 'xf86-input-wacom' 'xf86-input-wacom-devel' 'xf86-video-amdgpu' 'xf86-video-ark' 'xf86-video-ast' 'xf86-video-ati' 'xf86-video-chips' 'xf86-video-cirrus' 'xf86-video-dummy' 'xf86-video-fbdev' 'xf86-video-fbturbo' 'xf86-video-fbturbo-live' 'xf86-video-glint' 'xf86-video-i128' 'xf86-video-intel' 'xf86-video-intel-32bit' 'xf86-video-mach64' 'xf86-video-mga' 'xf86-video-neomagic' 'xf86-video-nouveau' 'xf86-video-nv' 'xf86-video-openchrome' 'xf86-video-qxl' 'xf86-video-r128' 'xf86-video-savage' 'xf86-video-siliconmotion' 'xf86-video-sis' 'xf86-video-sisusb' 'xf86-video-tdfx' 'xf86-video-tga' 'xf86-video-trident' 'xf86-video-v4l' 'xf86-video-vesa' 'xf86-video-vmware' 'xf86-video-voodoo' 'xf86dga' 'xfburn' 'xfburn-lang' 'xfce' 'xfce4-appfinder' 'xfce4-appfinder-lang' 'xfce4-battery-plugin' 'xfce4-battery-plugin-lang' 'xfce4-calculator-plugin' 'xfce4-calculator-plugin-lang' 'xfce4-clipman-plugin' 'xfce4-clipman-plugin-lang' 'xfce4-cpufreq-plugin' 'xfce4-cpufreq-plugin-lang' 'xfce4-cpugraph-plugin' 'xfce4-cpugraph-plugin-lang' 'xfce4-datetime-plugin' 'xfce4-datetime-plugin-lang' 'xfce4-dev-tools' 'xfce4-dict' 'xfce4-dict-lang' 'xfce4-diskperf-plugin' 'xfce4-diskperf-plugin-lang' 'xfce4-eyes-plugin' 'xfce4-eyes-plugin-lang' 'xfce4-fsguard-plugin' 'xfce4-fsguard-plugin-lang' 'xfce4-genmon-plugin' 'xfce4-genmon-plugin-lang' 'xfce4-icon-theme' 'xfce4-mailwatch-plugin' 'xfce4-mailwatch-plugin-lang' 'xfce4-mixer' 'xfce4-mixer-lang' 'xfce4-mixer-plugin' 'xfce4-mount-plugin' 'xfce4-mount-plugin-lang' 'xfce4-mpc-plugin' 'xfce4-mpc-plugin-lang' 'xfce4-multiload-nandhp-plugin' 'xfce4-netload-plugin' 'xfce4-netload-plugin-lang' 'xfce4-netspeed-plugin' 'xfce4-notes-plugin' 'xfce4-notes-plugin-lang' 'xfce4-notifyd' 'xfce4-notifyd-branding-openSUSE' 'xfce4-notifyd-branding-upstream' 'xfce4-notifyd-lang' 'xfce4-notifyd-theme-adapta' 'xfce4-notifyd-theme-plata' 'xfce4-panel' 'xfce4-panel-branding-openSUSE' 'xfce4-panel-branding-upstream' 'xfce4-panel-devel' 'xfce4-panel-lang' 'xfce4-panel-plugin-appmenu' 'xfce4-panel-plugin-battery' 'xfce4-panel-plugin-battery-lang' 'xfce4-panel-plugin-calculator' 'xfce4-panel-plugin-calculator-lang' 'xfce4-panel-plugin-clipman' 'xfce4-panel-plugin-clipman-lang' 'xfce4-panel-plugin-cpufreq' 'xfce4-panel-plugin-cpufreq-lang' 'xfce4-panel-plugin-cpugraph' 'xfce4-panel-plugin-cpugraph-lang' 'xfce4-panel-plugin-datetime' 'xfce4-panel-plugin-datetime-lang' 'xfce4-panel-plugin-dict' 'xfce4-panel-plugin-diskperf' 'xfce4-panel-plugin-diskperf-lang' 'xfce4-panel-plugin-eyes' 'xfce4-panel-plugin-eyes-lang' 'xfce4-panel-plugin-fsguard' 'xfce4-panel-plugin-fsguard-lang' 'xfce4-panel-plugin-genmon' 'xfce4-panel-plugin-genmon-lang' 'xfce4-panel-plugin-mailwatch' 'xfce4-panel-plugin-mailwatch-lang' 'xfce4-panel-plugin-mount' 'xfce4-panel-plugin-mount-lang' 'xfce4-panel-plugin-mpc' 'xfce4-panel-plugin-mpc-lang' 'xfce4-panel-plugin-multiload-nandhp' 'xfce4-panel-plugin-netload' 'xfce4-panel-plugin-netload-lang' 'xfce4-panel-plugin-netspeed' 'xfce4-panel-plugin-notes' 'xfce4-panel-plugin-notes-lang' 'xfce4-panel-plugin-places' 'xfce4-panel-plugin-places-lang' 'xfce4-panel-plugin-pulseaudio' 'xfce4-panel-plugin-pulseaudio-lang' 'xfce4-panel-plugin-sensors' 'xfce4-panel-plugin-sensors-devel' 'xfce4-panel-plugin-sensors-lang' 'xfce4-panel-plugin-smartbookmark' 'xfce4-panel-plugin-smartbookmark-lang' 'xfce4-panel-plugin-sntray' 'xfce4-panel-plugin-statusnotifier' 'xfce4-panel-plugin-statusnotifier-lang' 'xfce4-panel-plugin-systemload' 'xfce4-panel-plugin-systemload-lang' 'xfce4-panel-plugin-timeout' 'xfce4-panel-plugin-timeout-lang' 'xfce4-panel-plugin-timer' 'xfce4-panel-plugin-timer-lang' 'xfce4-panel-plugin-verve' 'xfce4-panel-plugin-verve-lang' 'xfce4-panel-plugin-wavelan' 'xfce4-panel-plugin-wavelan-lang' 'xfce4-panel-plugin-weather' 'xfce4-panel-plugin-weather-lang' 'xfce4-panel-plugin-whiskermenu' 'xfce4-panel-plugin-whiskermenu-lang' 'xfce4-panel-plugin-xkb' 'xfce4-panel-plugin-xkb-lang' 'xfce4-panel-profiles' 'xfce4-panel-restore-defaults' 'xfce4-places-plugin' 'xfce4-places-plugin-lang' 'xfce4-power-manager' 'xfce4-power-manager-branding-openSUSE' 'xfce4-power-manager-branding-upstream' 'xfce4-power-manager-lang' 'xfce4-power-manager-plugin' 'xfce4-pulseaudio-plugin' 'xfce4-pulseaudio-plugin-lang' 'xfce4-screensaver' 'xfce4-screenshooter' 'xfce4-screenshooter-lang' 'xfce4-screenshooter-plugin' 'xfce4-sensors-plugin' 'xfce4-sensors-plugin-devel' 'xfce4-sensors-plugin-lang' 'xfce4-session' 'xfce4-session-branding-openSUSE' 'xfce4-session-branding-upstream' 'xfce4-session-lang' 'xfce4-settings' 'xfce4-settings-branding-openSUSE' 'xfce4-settings-branding-upstream' 'xfce4-settings-lang' 'xfce4-smartbookmark-plugin' 'xfce4-smartbookmark-plugin-lang' 'xfce4-splash-branding-openSUSE' 'xfce4-statusnotifier-plugin' 'xfce4-statusnotifier-plugin-lang' 'xfce4-stopwatch-plugin' 'xfce4-stopwatch-plugin-lang' 'xfce4-systemload-plugin' 'xfce4-systemload-plugin-lang' 'xfce4-taskmanager' 'xfce4-taskmanager-lang' 'xfce4-terminal' 'xfce4-terminal-lang' 'xfce4-time-out-plugin' 'xfce4-time-out-plugin-lang' 'xfce4-timer-plugin' 'xfce4-timer-plugin-lang' 'xfce4-vala' 'xfce4-verve-plugin' 'xfce4-verve-plugin-lang' 'xfce4-volumed' 'xfce4-volumed-pulse' 'xfce4-wavelan-plugin' 'xfce4-wavelan-plugin-lang' 'xfce4-weather-plugin' 'xfce4-weather-plugin-lang' 'xfce4-whiskermenu-plugin' 'xfce4-whiskermenu-plugin-lang' 'xfce4-xkb-plugin' 'xfce4-xkb-plugin-lang' 'xfconf' 'xfconf-lang' 'xfd' 'xfdashboard' 'xfdashboard-devel' 'xfdashboard-lang' 'xfdashboard-themes' 'xfdesktop' 'xfdesktop-branding-openSUSE' 'xfdesktop-branding-upstream' 'xfdesktop-lang' 'xfig' 'xfishtank' 'xfmpc' 'xfmpc-lang' 'xfontsel' 'xfs' 'xfsdump' 'xfsinfo' 'xfsprogs' 'xfsprogs-devel' 'xfwm4' 'xfwm4-branding-openSUSE' 'xfwm4-branding-upstream' 'xfwm4-lang' 'xfwm4-theme-adapta' 'xfwm4-theme-plata' 'xfwm4-themes' 'xfwpcnm' 'xfwpcnm' 'xfwpcnm-debuginfo' 'xgalaga++' 'xgalaga-sdl' 'xgamma' 'xgc' 'xgnokii' 'xgrabsc' 'xhfsutil' 'xhost' 'xhtml-dtd' 'xiccd' 'xindy' 'xindy-doc' 'xindy-rules' 'xine-browser-plugin' 'xine-browser-plugin' 'xine-browser-plugin-debuginfo' 'xine-browser-plugin-debugsource' 'xine-lib' 'xine-lib-debugsource' 'xine-skins' 'xine-skins' 'xine-ui' 'xine-ui' 'xine-ui-32bit' 'xine-ui-32bit-debuginfo' 'xine-ui-debuginfo' 'xine-ui-debugsource' 'xinetd' 'xinit' 'xinput' 'xiphos' 'xiphos-lang' 'xiterm' 'xjadeo' 'xkbcomp' 'xkbcomp-devel' 'xkbevd' 'xkbprint' 'xkbutils' 'xkeyboard-config' 'xkeyboard-config-lang' 'xkeycaps' 'xkill' 'xl2tpd' 'xlatencytop' 'xless' 'xli' 'xload' 'xlockmore' 'xlogin' 'xlogo' 'xls2csv' 'xlsatoms' 'xlsclients' 'xlsfonts' 'xmag' 'xmahjongg' 'xman' 'xmanja' 'xmessage' 'xmgrace' 'xmgrace-devel' 'xmh' 'xmined' 'xml-commons-apis' 'xml-commons-apis-bootstrap' 'xml-commons-apis-javadoc' 'xml-commons-apis-manual' 'xml-commons-resolver' 'xml-commons-resolver-bootstrap' 'xml-commons-resolver-javadoc' 'xml-commons-which-bootstrap' 'xml-im-exporter' 'xml-im-exporter-javadoc' 'xml-security-c-bin' 'xml2po' 'xml2po-devel' 'xmlb-tool' 'xmlbeans' 'xmlbeans-mini' 'xmlbeans-scripts' 'xmlbird-devel' 'xmlcharent' 'xmldb-api' 'xmldb-api-javadoc' 'xmldb-api-sdk' 'xmldb-common' 'xmlformat' 'xmlgraphics-batik' 'xmlgraphics-batik-css' 'xmlgraphics-batik-demo' 'xmlgraphics-batik-javadoc' 'xmlgraphics-batik-rasterizer' 'xmlgraphics-batik-slideshow' 'xmlgraphics-batik-squiggle' 'xmlgraphics-batik-svgpp' 'xmlgraphics-batik-ttf2svg' 'xmlgraphics-commons' 'xmlgraphics-commons-javadoc' 'xmlgraphics-fop' 'xmlrpc-c-devel' 'xmlsec1' 'xmlsec1-devel' 'xmlsec1-gcrypt-devel' 'xmlsec1-gnutls-devel' 'xmlsec1-nss-devel' 'xmlsec1-openssl-devel' 'xmlstarlet' 'xmlto' 'xmltoman' 'xmltooling-schemas' 'xmltv' 'xmltv' 'xmltv-grabbers' 'xmlunit' 'xmlunit-javadoc' 'xmms2' 'xmms2-devel' 'xmms2-docs' 'xmms2-perl' 'xmms2-plugin-airplay' 'xmms2-plugin-ao' 'xmms2-plugin-apefile' 'xmms2-plugin-asf' 'xmms2-plugin-asx' 'xmms2-plugin-base' 'xmms2-plugin-cdda' 'xmms2-plugin-cue' 'xmms2-plugin-curl' 'xmms2-plugin-daap' 'xmms2-plugin-flac' 'xmms2-plugin-flv' 'xmms2-plugin-gme' 'xmms2-plugin-gvfs' 'xmms2-plugin-html' 'xmms2-plugin-ices' 'xmms2-plugin-icymetaint' 'xmms2-plugin-id3v2' 'xmms2-plugin-jack' 'xmms2-plugin-karaoke' 'xmms2-plugin-m3u' 'xmms2-plugin-modplug' 'xmms2-plugin-mp4' 'xmms2-plugin-musepack' 'xmms2-plugin-normalize' 'xmms2-plugin-ofa' 'xmms2-plugin-pulse' 'xmms2-plugin-samba' 'xmms2-plugin-sndfile' 'xmms2-plugin-speex' 'xmms2-plugin-tta' 'xmms2-plugin-vocoder' 'xmms2-plugin-wave' 'xmms2-plugin-wavpack' 'xmms2-ruby' 'xmobar' 'xmodmap' 'xmonad' 'xmoontool' 'xmore' 'xmorph' 'xmorph-devel' 'xmoto' 'xmoto-data' 'xmp' 'xmvn' 'xmvn-api' 'xmvn-bisect' 'xmvn-connector-aether' 'xmvn-connector-aether-javadoc' 'xmvn-connector-ivy' 'xmvn-connector-ivy-javadoc' 'xmvn-core' 'xmvn-install' 'xmvn-minimal' 'xmvn-mojo' 'xmvn-mojo-javadoc' 'xmvn-parent' 'xmvn-resolve' 'xmvn-subst' 'xnoise' 'xnoise-lang' 'xom' 'xonotic' 'xonotic-data' 'xonotic-server' 'xonsh' 'xonsh-doc' 'xorg-cf-files' 'xorg-docs' 'xorg-scripts' 'xorg-sgml-doctools' 'xorg-x11' 'xorg-x11-Xvnc' 'xorg-x11-Xvnc-java' 'xorg-x11-Xvnc-module' 'xorg-x11-Xvnc-novnc' 'xorg-x11-devel' 'xorg-x11-driver-input' 'xorg-x11-driver-video' 'xorg-x11-essentials' 'xorg-x11-fonts' 'xorg-x11-fonts-core' 'xorg-x11-libX11-ccache' 'xorg-x11-libs' 'xorg-x11-server' 'xorg-x11-server-Xspice' 'xorg-x11-server-extra' 'xorg-x11-server-sdk' 'xorg-x11-server-source' 'xorg-x11-server-wayland' 'xorg-x11-util-devel' 'xorgproto-devel' 'xorgxrdp' 'xorriso' 'xorriso-tcltk' 'xortool' 'xosd' 'xosd-devel' 'xosview' 'xournal' 'xournalpp' 'xournalpp-lang' 'xpaint' 'xpaint' 'xpaint-debuginfo' 'xpaint-debugsource' 'xpaint-devel' 'xpenguins' 'xpinguin' 'xplanet' 'xplatproviders' 'xplayer' 'xplayer-devel' 'xplayer-lang' 'xplayer-plparser' 'xplayer-plparser-devel' 'xplayer-plparser-lang' 'xplayer-plugin-zeitgeist' 'xplayer-plugins' 'xplsprinters' 'xpp2' 'xpp2-demo' 'xpp2-javadoc' 'xpp2-manual' 'xpp3' 'xpp3-javadoc' 'xpp3-minimal' 'xpr' 'xpra' 'xpra-html5' 'xprehashprinterlist' 'xprintidle' 'xprompt' 'xprop' 'xquarto' 'xrandr' 'xrdb' 'xrdp' 'xrdp-devel' 'xreader' 'xreader-devel' 'xreader-lang' 'xreader-plugin-epubdocument' 'xreader-plugin-pdfdocument' 'xreader-plugin-psdocument' 'xreader-plugin-tiffdocument' 'xreader-plugin-xpsdocument' 'xrefresh' 'xrestop' 'xroach' 'xrootd-cl' 'xrootd-cl-devel' 'xrootd-client' 'xrootd-client-devel' 'xrootd-fuse' 'xrootd-libs' 'xrootd-libs-devel' 'xrootd-private-devel' 'xrootd-server' 'xrootd-server-devel' 'xsane' 'xscope' 'xscreensaver' 'xscreensaver-data' 'xscreensaver-data-extra' 'xscreensaver-lang' 'xsd' 'xsd-doc' 'xsel' 'xselection' 'xsession' 'xset' 'xsetmode' 'xsetpointer' 'xsetroot' 'xsettingsd' 'xslide' 'xsm' 'xsp' 'xstdcmap' 'xstereograph' 'xstream' 'xstream-benchmark' 'xstream-javadoc' 'xstream-parent' 'xstroke' 'xsynth-dssi' 'xsys' 'xsys' 'xsys-debuginfo' 'xsys-debugsource' 'xt7-player-mpv' 'xt7-player-mpv' 'xtables-addons' 'xtables-addons-kmp-default' 'xtables-addons-kmp-pae' 'xtables-geoip' 'xtables-plugins' 'xteddy' 'xterm' 'xterm-bin' 'xtermset' 'xtexit' 'xtrabackup' 'xtrabackup-test' 'xtrans' 'xtrx-tools' 'xtrx-usb-udev' 'xtrx_lms7002m-devel' 'xtrxdsp-tests' 'xtrxll-tools' 'xv' 'xvfb-run' 'xvid4conf' 'xvid4conf' 'xvid4conf-debuginfo' 'xvid4conf-debugsource' 'xvidcap' 'xvidcap' 'xvidcap-debuginfo' 'xvidcap-debugsource' 'xvidcore' 'xvidcore' 'xvidcore-debugsource' 'xvidenc' 'xvidenc' 'xvidtune' 'xviewer' 'xviewer-devel' 'xviewer-lang' 'xviewer-plugin-exif-display' 'xviewer-plugin-export-to-folder' 'xviewer-plugin-fit-to-width' 'xviewer-plugin-light-theme' 'xviewer-plugin-map' 'xviewer-plugin-postasa' 'xviewer-plugin-pythonconsole' 'xviewer-plugin-send-by-mail' 'xviewer-plugin-slideshowshuffle' 'xviewer-plugins' 'xviewer-plugins-data' 'xviewer-plugins-lang' 'xvinfo' 'xvkbd' 'xwd' 'xwininfo' 'xwmfs' 'xwud' 'xxhash' 'xxhash-devel' 'xxkb' 'xyconv' 'xyconvert' 'xylib-devel' 'xyscan' 'xyscan-doc' 'xz' 'xz-devel' 'xz-devel-32bit' 'xz-java' 'xz-java-javadoc' 'xz-lang' 'xz-static-devel' 'xzgv' 'yad' 'yad' 'yad-debuginfo' 'yad-debugsource' 'yafc' 'yaics' 'yajl' 'yakuake' 'yakuake-lang' 'yamagi-quake2' 'yamagi-quake2-ctf' 'yamdi' 'yamdi' 'yamdi-debuginfo' 'yamdi-debugsource' 'yaml-cpp-devel' 'yang-tools' 'yank' 'yara' 'yara-doc' 'yaru-icon-theme' 'yasm' 'yasm-devel' 'yast2' 'yast2-adcommon-python' 'yast2-add-on' 'yast2-adsi' 'yast2-aduc' 'yast2-alternatives' 'yast2-apparmor' 'yast2-audit-laf' 'yast2-auth-client' 'yast2-auth-server' 'yast2-boot-server' 'yast2-bootloader' 'yast2-buildtools' 'yast2-caasp' 'yast2-cluster' 'yast2-configuration-management' 'yast2-control-center' 'yast2-control-center-qt' 'yast2-core' 'yast2-core-devel' 'yast2-country' 'yast2-country-data' 'yast2-devtools' 'yast2-dhcp-server' 'yast2-dns-manager' 'yast2-dns-server' 'yast2-docker' 'yast2-drbd' 'yast2-fcoe-client' 'yast2-firewall' 'yast2-firstboot' 'yast2-fonts' 'yast2-ftp-server' 'yast2-geo-cluster' 'yast2-gpmc' 'yast2-hardware-detection' 'yast2-http-server' 'yast2-installation' 'yast2-installation-control' 'yast2-instserver' 'yast2-iplb' 'yast2-iscsi-client' 'yast2-iscsi-lio-server' 'yast2-isns' 'yast2-journal' 'yast2-kdump' 'yast2-ldap' 'yast2-logs' 'yast2-mail' 'yast2-metapackage-handler' 'yast2-multipath' 'yast2-network' 'yast2-nfs-client' 'yast2-nfs-common' 'yast2-nfs-server' 'yast2-nis-client' 'yast2-nis-server' 'yast2-ntp-client' 'yast2-online-update' 'yast2-online-update-configuration' 'yast2-online-update-frontend' 'yast2-packager' 'yast2-pam' 'yast2-perl-bindings' 'yast2-pkg-bindings' 'yast2-pkg-bindings-devel-doc' 'yast2-printer' 'yast2-proxy' 'yast2-python-bindings' 'yast2-python3-bindings' 'yast2-qt-branding-openSUSE' 'yast2-rdp' 'yast2-rear' 'yast2-rmt' 'yast2-ruby-bindings' 'yast2-samba-client' 'yast2-samba-provision' 'yast2-samba-server' 'yast2-scanner' 'yast2-schema' 'yast2-security' 'yast2-services-manager' 'yast2-slp' 'yast2-slp-server' 'yast2-snapper' 'yast2-sound' 'yast2-squid' 'yast2-storage-ng' 'yast2-sudo' 'yast2-support' 'yast2-sysconfig' 'yast2-testsuite' 'yast2-tftp-server' 'yast2-theme' 'yast2-theme-breeze' 'yast2-theme-oxygen' 'yast2-trans' 'yast2-trans-af' 'yast2-trans-allpacks' 'yast2-trans-ar' 'yast2-trans-ast' 'yast2-trans-bg' 'yast2-trans-bn' 'yast2-trans-bs' 'yast2-trans-ca' 'yast2-trans-cs' 'yast2-trans-cy' 'yast2-trans-da' 'yast2-trans-de' 'yast2-trans-el' 'yast2-trans-en' 'yast2-trans-en_GB' 'yast2-trans-en_US' 'yast2-trans-eo' 'yast2-trans-es' 'yast2-trans-es_AR' 'yast2-trans-et' 'yast2-trans-eu' 'yast2-trans-fa' 'yast2-trans-fi' 'yast2-trans-fr' 'yast2-trans-gl' 'yast2-trans-gu' 'yast2-trans-he' 'yast2-trans-hi' 'yast2-trans-hr' 'yast2-trans-hu' 'yast2-trans-id' 'yast2-trans-it' 'yast2-trans-ja' 'yast2-trans-jv' 'yast2-trans-ka' 'yast2-trans-kab' 'yast2-trans-km' 'yast2-trans-kn' 'yast2-trans-ko' 'yast2-trans-ku' 'yast2-trans-lo' 'yast2-trans-lt' 'yast2-trans-lv' 'yast2-trans-mk' 'yast2-trans-mr' 'yast2-trans-nb' 'yast2-trans-nds' 'yast2-trans-ne' 'yast2-trans-nl' 'yast2-trans-nn' 'yast2-trans-pa' 'yast2-trans-pl' 'yast2-trans-ps' 'yast2-trans-pt' 'yast2-trans-pt_BR' 'yast2-trans-ro' 'yast2-trans-ru' 'yast2-trans-si' 'yast2-trans-sk' 'yast2-trans-sl' 'yast2-trans-sq' 'yast2-trans-sr' 'yast2-trans-sr-latin' 'yast2-trans-stats' 'yast2-trans-sv' 'yast2-trans-sw' 'yast2-trans-ta' 'yast2-trans-tg' 'yast2-trans-th' 'yast2-trans-tr' 'yast2-trans-uk' 'yast2-trans-vi' 'yast2-trans-wa' 'yast2-trans-xh' 'yast2-trans-zh_CN' 'yast2-trans-zh_TW' 'yast2-trans-zu' 'yast2-transfer' 'yast2-tune' 'yast2-update' 'yast2-update-FACTORY' 'yast2-usbauth' 'yast2-users' 'yast2-vm' 'yast2-vpn' 'yast2-x11' 'yast2-xml' 'yast2-ycp-ui-bindings' 'yast2-ycp-ui-bindings-devel' 'yast2_basis' 'yate' 'yate' 'yate-bts' 'yate-debuginfo' 'yate-debugsource' 'yate-devel' 'yate-scripts' 'yate-with-amrnb' 'yaz' 'yaz-doc' 'yder-devel' 'yelp' 'yelp-devel' 'yelp-lang' 'yelp-tools' 'yelp-xsl' 'yishu' 'yishu-lang' 'ykclient' 'ykpers' 'yodl' 'yomi-formula' 'you-get' 'you-get-bash-completion' 'you-get-fish-completion' 'you-get-zsh-completion' 'youtube-dl' 'youtube-dl' 'youtube-dl-bash-completion' 'youtube-dl-fish-completion' 'youtube-dl-gui' 'youtube-dl-gui-lang' 'youtube-dl-zsh-completion' 'yp-tools' 'ypbind' 'ypserv' 'ytalk' 'yubico-piv-tool' 'yubikey-manager' 'yubikey-manager-qt' 'yubikey-personalization-gui' 'yubioath-desktop' 'yudit' 'yum' 'yum-aliases' 'yum-allowdowngrade' 'yum-basearchonly' 'yum-changelog' 'yum-downloadonly' 'yum-fastestmirror' 'yum-filter-data' 'yum-lang' 'yum-list-data' 'yum-merge-conf' 'yum-metadata-parser' 'yum-priorities' 'yum-protect-packages' 'yum-protectbase' 'yum-refresh-updatesd' 'yum-tmprepo' 'yum-tsflags' 'yum-updatesd' 'yum-upgrade-helper' 'yum-utils' 'yum-verify' 'yum-versionlock' 'z' 'z3' 'z3-devel' 'zabbix-agent' 'zabbix-bash-completion' 'zabbix-java-gateway' 'zabbix-phpfrontend' 'zabbix-proxy' 'zabbix-proxy-mysql' 'zabbix-proxy-postgresql' 'zabbix-proxy-sqlite' 'zabbix-server' 'zabbix-server-mysql' 'zabbix-server-postgresql' 'zabbix-server-sqlite' 'zam-plugins' 'zanshin' 'zanshin-lang' 'zathura' 'zathura-bash-completion' 'zathura-devel' 'zathura-lang' 'zathura-plugin-cb' 'zathura-plugin-djvu' 'zathura-plugin-pdf-poppler' 'zathura-plugin-ps' 'zathura-zsh-completion' 'zaz' 'zbar' 'zbuild' 'zbuild' 'zchunk' 'zd1211-firmware' 'zdbsp' 'zdoom' 'zdoom' 'zeal' 'zeitgeist' 'zeitgeist-devel' 'zelda-roth-se' 'zelda-roth-se' 'zelda-xd2-mercuris-chess' 'zelda-xd2-mercuris-chess' 'zenity' 'zenity-lang' 'zerobranestudio' 'zerofree' 'zeroinstall-injector' 'zeromq-devel' 'zeromq-tools' 'zhu3d' 'zile' 'zile-doc' 'zim' 'zim-lang' 'zimg-devel' 'zinnia' 'zinnia-devel' 'zinnia-tomoe' 'zip' 'zipkin-cpp-opentracing-devel' 'zipkin-cpp-opentracing-devel-static' 'zisofs-tools' 'zita-convolver-devel' 'zlib-devel' 'zlib-devel-32bit' 'zlib-devel-static' 'zlib-devel-static-32bit' 'zlibrary-data' 'zlibrary-devel' 'zlibrary0_99' 'zn_poly-devel' 'znc' 'znc-devel' 'znc-lang' 'znc-perl' 'znc-python3' 'znc-tcl' 'zod' 'zod' 'zod-data' 'zod-debuginfo' 'zoo' 'zopfli' 'zp' 'zpaq' 'zramcfg' 'zsdx' 'zsdx' 'zsh' 'zsh-htmldoc' 'zstd' 'zsync' 'zsync-devel' 'zutils' 'zvbi' 'zvbi-devel' 'zvbi-devel-32bit' 'zvbi-lang' 'zxing-cpp-devel' 'zynaddsubfx' 'zynaddsubfx-common' 'zynaddsubfx-dssi' 'zynaddsubfx-lv2' 'zynaddsubfx-vst' 'zypper' 'zypper-aptitude' 'zypper-docker' 'zypper-lifecycle-plugin' 'zypper-log' 'zypper-migration-plugin' 'zypper-needs-restarting' 'zziplib-devel' 'zziplib-devel-32bit'
+EO:_zypp_all
+)}"} )
+_zypp_not_installed=( ${(Q)"${(z)$(<<\EO:_zypp_not_installed
+'0ad' '0ad-data' '2048-cli' '2ManDVD' '2ManDVD' '2ManDVD-debuginfo' '2ManDVD-debugsource' '2ping' '32bit' '389-ds' '389-ds-devel' '389-ds-snmp' '3dsconv' '3dsconv' '3gpwiz' '3gpwiz' '3omns' '4pane' '4pane-lang' '4store' '4ti2' '4ti2-devel' '6tunnel' '7kaa' '7kaa-music' 'ASL' 'ASL-devel' 'ASL-doc' 'AdobeICCProfiles' 'AppCSXCAD' 'AppStream-devel' 'AppStream-doc' 'AtomicParsley' 'AtomicParsley' 'AtomicParsley-debuginfo' 'AtomicParsley-debugsource' 'Bear' 'BitTorrent' 'BitTorrent' 'BitTorrent-curses' 'BitTorrent-gtk' 'Botan' 'Botan-doc' 'Box2D-doc' 'CSXCAD-devel' 'CSXCAD-matlab' 'CharLS-devel' 'Coin-devel' 'ColPack-devel' 'ColPack-devel-32bit' 'ColorFull-devel' 'CorsixTH' 'Crystalcursors' 'DVDStyler' 'DVDStyler-lang' 'DeepLearningToga-1.5.21a' 'DeepLearningToga-1.5.21a' 'DeepLearningToga-1.5.21a-debuginfo' 'DevIL-devel' 'DisplayCAL' 'DisplayCluster' 'DisplayCluster' 'DisplayCluster-debuginfo' 'DisplayCluster-debugsource' 'DisplayCluster-devel' 'DisplayCluster-doc' 'ETL' 'ETL-devel' 'FAudio-devel' 'FAudio-devel-32bit' 'FastCGI' 'FastCGI-devel' 'Field3D' 'Field3D' 'Field3D-debuginfo' 'Field3D-debugsource' 'Field3D-devel' 'FirmwareUpdateKit' 'FlightGear' 'FlightGear-data' 'FlightGear-docs' 'FreeCAD' 'GeneralUser' 'GeneralUser' 'GraphicsMagick' 'GraphicsMagick-devel' 'HSAIL-Tools' 'HepMC-devel' 'HepMC2-devel' 'Herwig-devel' 'Herwig-libs' 'IccXML' 'ImageMagick-config-7-upstream' 'ImageMagick-devel' 'ImageMagick-devel-32bit' 'ImageMagick-doc' 'ImageMagick-extra' 'J7Z' 'J7Z-kf5' 'Jamulus' 'KEALib-devel' 'LHAPDF-devel' 'LiE' 'LiE-doc' 'LiVES' 'LiVES' 'LiVES-debuginfo' 'LiVES-debugsource' 'LiVES-lang' 'LibVNCServer-devel' 'Lunchbox' 'Lunchbox-debugsource' 'Lunchbox-devel' 'Lunchbox-doc' 'MLDonkey' 'MLDonkey' 'MLDonkey-debuginfo' 'MLDonkey-debugsource' 'MLDonkey-gui' 'MLDonkey-gui-debuginfo' 'MP4Tools' 'MP4Tools' 'MP4Tools-debuginfo' 'MP4Tools-debugsource' 'MP4Tools-lang' 'MPlayer' 'MPlayer' 'MPlayer-debuginfo' 'MPlayer-debugsource' 'MPlayer-doc' 'Mesa-KHR-devel' 'Mesa-demo' 'Mesa-devel' 'Mesa-dri-devel' 'Mesa-dri-nouveau-32bit' 'Mesa-libEGL-devel' 'Mesa-libEGL1-32bit' 'Mesa-libGL-devel' 'Mesa-libGLESv1_CM-devel' 'Mesa-libGLESv2-devel' 'Mesa-libGLESv3-devel' 'Mesa-libOpenCL' 'Mesa-libVulkan-devel' 'Mesa-libd3d' 'Mesa-libd3d-32bit' 'Mesa-libd3d-devel' 'Mesa-libd3d-devel-32bit' 'Mesa-libglapi-devel' 'Mesa-libglapi-devel-32bit' 'ModemManager-devel' 'Modules' 'Modules-doc' 'MotionBox' 'MozillaFirefox-branding-upstream' 'MozillaFirefox-buildsymbols' 'MozillaFirefox-devel' 'MozillaFirefox-translations-common' 'MozillaFirefox-translations-other' 'MozillaThunderbird-buildsymbols' 'MozillaThunderbird-translations-common' 'MozillaThunderbird-translations-other' 'MultiMarkdown-6' 'MyGUI' 'MyGUI-demo' 'MyGUI-devel' 'MyGUI-devel-doc' 'NetworkManager-applet' 'NetworkManager-applet-lang' 'NetworkManager-branding-upstream' 'NetworkManager-connection-editor' 'NetworkManager-devel' 'NetworkManager-devel-32bit' 'NetworkManager-fortisslvpn' 'NetworkManager-fortisslvpn-gnome' 'NetworkManager-fortisslvpn-lang' 'NetworkManager-iodine' 'NetworkManager-iodine-gnome' 'NetworkManager-iodine-lang' 'NetworkManager-l2tp-gnome' 'NetworkManager-libreswan' 'NetworkManager-libreswan-gnome' 'NetworkManager-libreswan-lang' 'NetworkManager-openconnect-gnome' 'NetworkManager-openvpn-gnome' 'NetworkManager-pptp-gnome' 'NetworkManager-strongswan' 'NetworkManager-strongswan-gnome' 'NetworkManager-strongswan-lang' 'NetworkManager-vpnc' 'NetworkManager-vpnc-gnome' 'NetworkManager-vpnc-lang' 'OOKiedokie' 'OpenColorIO' 'OpenColorIO-devel' 'OpenColorIO-doc' 'OpenIPMI' 'OpenIPMI-devel' 'OpenIPMI-python' 'OpenImageIO' 'OpenImageIO-devel' 'OpenLP' 'OpenOctaveMidi' 'OpenOctaveMidi' 'OpenOctaveMidi-debuginfo' 'OpenOctaveMidi-lang' 'OpenOctaveMidi-unstable' 'OpenOctaveMidi-unstable' 'OpenOctaveMidi-unstable-debuginfo' 'OpenOctaveMidi-unstable-debugsource' 'OpenOctaveMidi-unstable-lang' 'OpenPrintingPPDs' 'OpenPrintingPPDs-ghostscript' 'OpenPrintingPPDs-hpijs' 'OpenPrintingPPDs-postscript' 'OpenSceneGraph' 'OpenSceneGraph-examples' 'OpenSceneGraph-plugins' 'OpenSceneGraph34' 'OpenSceneGraph34-examples' 'OpenSceneGraph34-plugins' 'OpenShadingLanguage' 'OpenShadingLanguage-MaterialX-shaders-source' 'OpenShadingLanguage-common-headers' 'OpenShadingLanguage-devel' 'OpenShadingLanguage-doc' 'OpenShadingLanguage-example-shaders-source' 'Osmo4' 'Osmo4-debuginfo' 'PackageKit-Qt-devel' 'PackageKit-branding-upstream' 'PackageKit-devel' 'PgTcl' 'Photini' 'PlayOnLinux' 'Printrun' 'Printrun-common' 'ProjectX' 'ProjectX' 'PyGreSQL' 'PythonQt-devel' 'QCSXCAD-devel' 'QGnomePlatform' 'QGnomePlatform-32bit' 'QMPlay2' 'QMPlay2-devel' 'QtAV' 'QtAV-devel' 'QtAV-players' 'QtAV-qml' 'QtDMM' 'R-BH' 'R-KernSmooth' 'R-MASS' 'R-Matrix' 'R-Matrix-devel' 'R-PKI' 'R-R6' 'R-RCurl' 'R-RJSONIO' 'R-Rcpp' 'R-Rcpp-devel' 'R-Rcpp-doc' 'R-base' 'R-base-devel' 'R-base64enc' 'R-bitops' 'R-boot' 'R-class' 'R-cluster' 'R-codetools' 'R-compiler' 'R-core' 'R-core-devel' 'R-core-doc' 'R-core-libs' 'R-core-packages' 'R-crayon' 'R-curl' 'R-datasets' 'R-digest' 'R-digest-devel' 'R-foreign' 'R-grDevices' 'R-graphics' 'R-grid' 'R-httpuv' 'R-jsonlite' 'R-later' 'R-lattice' 'R-magrittr' 'R-methods' 'R-mgcv' 'R-nlme' 'R-nnet' 'R-openssl' 'R-openssl-doc' 'R-packrat' 'R-parallel' 'R-plumber' 'R-praise' 'R-promises' 'R-recommended-packages' 'R-rlang' 'R-rpart' 'R-rsconnect' 'R-rstudioapi' 'R-spatial' 'R-splines' 'R-stats' 'R-stats4' 'R-stringi' 'R-stringi-devel' 'R-survival' 'R-tcltk' 'R-tools' 'R-utils' 'R-yaml' 'Reaction' 'Reaction-data' 'Regina-REXX' 'Regina-REXX-devel' 'Regina-REXX-doc' 'RemoteBox' 'Rivet-devel' 'Rivet-plugins' 'RobboLito0085' 'RobboLito0085' 'RobboLito0085-debuginfo' 'SHERPA-MC-devel' 'SUSEConnect' 'SampleICC' 'ShellCheck' 'SimGear-devel' 'SoQt-devel' 'SoQt-doc' 'Supybot' 'THE' 'THE-doc' 'ThePEG-devel' 'ThePEG-libs' 'UEFITool' 'VFlib3' 'VFlib3-devel' 'Vc-devel' 'Vc-devel-doc' 'Vc-devel-static' 'ViTables' 'VirtualGL' 'VirtualGL-32bit' 'VirtualGL-devel' 'WindowMaker' 'WindowMaker-applets' 'WindowMaker-devel' 'WindowMaker-themes' 'WoeUSB' 'XyGrib' 'YODA-devel' 'a2jmidid' 'a2jmidid' 'a2jmidid-debuginfo' 'a2jmidid-debugsource' 'a2ps' 'a2ps-devel' 'a2ps-h' 'a52dec' 'aMule' 'aMule' 'aMule-debuginfo' 'aMule-debugsource' 'aMule-kde4' 'aMule-kde4-debuginfo' 'aaa_base-malloccheck' 'aaa_base-wsl' 'aacsupdater' 'aacsupdater' 'aacsupdater-debuginfo' 'aacsupdater-debugsource' 'aalib' 'aalib-devel' 'aalib-devel-32bit' 'abcde' 'abcm2ps' 'abi-compliance-checker' 'abi-dumper' 'abi-monitor' 'abi-tracker' 'abiword' 'abiword-docs' 'abook' 'abook-lang' 'abootimg' 'abseil-cpp-devel' 'abxtest' 'acars-examples' 'acarsdec' 'accerciser' 'accerciser-lang' 'accerciser-plugin-IPython' 'accountsservice-devel' 'acct' 'ack' 'acpi' 'acpid' 'actkbd' 'adaptec-firmware' 'adaptx' 'adaptx-doc' 'adaptx-javadoc' 'adcli' 'adcli-doc' 'addrwatch' 'ade-devel' 'adinatha-fonts' 'adlmidi' 'adlmidi-tools' 'adminer' 'adminer-designs' 'adminer-editor' 'adminer-firebird' 'adminer-mysql' 'adminer-pgsql' 'adminer-sqlite' 'adms' 'adms-devel' 'adns' 'adobe-sourcehansans-cn-fonts' 'adobe-sourcehansans-hk-fonts' 'adobe-sourcehansans-jp-fonts' 'adobe-sourcehansans-kr-fonts' 'adobe-sourcehansans-tw-fonts' 'adobe-sourcehanserif-cn-fonts' 'adobe-sourcehanserif-jp-fonts' 'adobe-sourcehanserif-kr-fonts' 'adobe-sourcehanserif-tw-fonts' 'adolc-devel' 'adolc-devel-32bit' 'adolc-doc' 'ads' 'adwaita-qt5' 'aegisub' 'aelfred' 'aelfred-javadoc' 'aer-inject' 'aespipe' 'afl' 'aften' 'aften' 'aften-debuginfo' 'agenda' 'agenda-lang' 'agrep' 'aha' 'aide' 'aide-test' 'aircrack-ng' 'aircrack-ng' 'aircrack-ng-debuginfo' 'aircrack-ng-debugsource' 'airspy' 'airspy-devel' 'airspy-udev' 'airspyhf-devel' 'airspyhf-udev' 'aisleriot' 'aisleriot-lang' 'aisleriot-themes' 'akonadi-calendar-devel' 'akonadi-contact-devel' 'akonadi-import-wizard-devel' 'akonadi-mime-devel' 'akonadi-notes-devel' 'akonadi-search-devel' 'akonadi-server-devel' 'akonadi-server-sqlite' 'akonadiconsole' 'alac' 'alac-devel' 'alac_decoder' 'alac_decoder' 'alac_decoder-debuginfo' 'alac_decoder-debugsource' 'alacarte' 'alacarte-lang' 'alacritty-fish-completion' 'albert' 'aldusleaf-crimson-text-fonts' 'alee-fonts' 'alevt' 'alevtd' 'alex' 'almanah' 'almanah-lang' 'alpine' 'alpine-branding-openSUSE' 'alsa-docs' 'alsa-firmware' 'alsa-plugins-a52' 'alsa-plugins-aaf' 'alsa-plugins-dca' 'alsa-plugins-dca-debuginfo' 'alsa-plugins-jack' 'alsa-plugins-lavrate' 'alsa-plugins-maemo' 'alsa-plugins-maemo-32bit' 'alsa-plugins-samplerate' 'alsa-plugins-samplerate-32bit' 'alsa-plugins-speex' 'alsabat' 'alsaequal' 'alttab' 'amanda' 'amarok' 'amarok-lang' 'amavisd-new' 'amavisd-new-docs' 'amazon-ecs-init' 'amazon-ssm-agent' 'amrnb' 'amrnb' 'amrnb-debuginfo' 'amrnb-debugsource' 'amrwb' 'amrwb' 'amrwb-debuginfo' 'amrwb-debugsource' 'amsynth' 'amsynth-lang' 'amsynth-plugin-dssi' 'amsynth-plugin-lv2' 'amsynth-plugin-vst' 'amtk-5-lang' 'amtk-devel' 'amtterm' 'amtterm-gtk' 'amtu' 'analitza' 'analitza-devel' 'analitza-lang' 'analyzeMFT' 'angelscript' 'angelscript-devel' 'anjuta' 'anjuta-devel' 'anjuta-extras' 'anjuta-extras-lang' 'anjuta-lang' 'ansible' 'ansible-runner' 'ansifilter' 'ansifilter-gui' 'ant' 'ant-antlr' 'ant-apache-bcel' 'ant-apache-bsf' 'ant-apache-log4j' 'ant-apache-oro' 'ant-apache-regexp' 'ant-apache-resolver' 'ant-apache-xalan2' 'ant-commons-logging' 'ant-commons-net' 'ant-contrib' 'ant-contrib-javadoc' 'ant-contrib-manual' 'ant-findbugs' 'ant-javamail' 'ant-jdepend' 'ant-jmf' 'ant-jsch' 'ant-junit' 'ant-junit5' 'ant-manual' 'ant-phone' 'ant-scala' 'ant-scala-bootstrap' 'ant-scripts' 'ant-swing' 'ant-testutil' 'anthy' 'anthy-devel' 'antimicro' 'antlr' 'antlr-devel' 'antlr-java' 'antlr-manual' 'antlr-maven-plugin' 'antlr-maven-plugin-javadoc' 'antlr3c-devel' 'antlr4' 'aom-tools' 'aop' 'aopalliance' 'aopalliance-javadoc' 'apache-commons-beanutils' 'apache-commons-beanutils-javadoc' 'apache-commons-chain' 'apache-commons-chain-javadoc' 'apache-commons-cli' 'apache-commons-cli-javadoc' 'apache-commons-codec' 'apache-commons-codec-javadoc' 'apache-commons-collections' 'apache-commons-collections-javadoc' 'apache-commons-collections-testframework' 'apache-commons-collections4' 'apache-commons-collections4-javadoc' 'apache-commons-compress' 'apache-commons-compress-javadoc' 'apache-commons-configuration' 'apache-commons-configuration-javadoc' 'apache-commons-csv' 'apache-commons-csv-javadoc' 'apache-commons-daemon' 'apache-commons-daemon-javadoc' 'apache-commons-daemon-jsvc' 'apache-commons-dbcp' 'apache-commons-dbcp-javadoc' 'apache-commons-dbcp1' 'apache-commons-dbcp1-javadoc' 'apache-commons-digester' 'apache-commons-digester-javadoc' 'apache-commons-el' 'apache-commons-el-javadoc' 'apache-commons-email' 'apache-commons-email-javadoc' 'apache-commons-exec' 'apache-commons-exec-javadoc' 'apache-commons-fileupload' 'apache-commons-fileupload-javadoc' 'apache-commons-httpclient' 'apache-commons-httpclient-demo' 'apache-commons-httpclient-javadoc' 'apache-commons-httpclient-manual' 'apache-commons-io' 'apache-commons-io-javadoc' 'apache-commons-jexl' 'apache-commons-jexl-javadoc' 'apache-commons-jxpath' 'apache-commons-jxpath-javadoc' 'apache-commons-lang' 'apache-commons-lang-javadoc' 'apache-commons-lang3' 'apache-commons-lang3-javadoc' 'apache-commons-math' 'apache-commons-math-javadoc' 'apache-commons-net' 'apache-commons-net-javadoc' 'apache-commons-parent' 'apache-commons-pool' 'apache-commons-pool-javadoc' 'apache-commons-pool2' 'apache-commons-pool2-javadoc' 'apache-commons-text' 'apache-commons-text-javadoc' 'apache-commons-validator' 'apache-commons-validator-javadoc' 'apache-commons-vfs2' 'apache-commons-vfs2-ant' 'apache-commons-vfs2-examples' 'apache-commons-vfs2-javadoc' 'apache-ivy' 'apache-ivy-javadoc' 'apache-pdfbox' 'apache-pdfbox-javadoc' 'apache-portlet-1_0-api' 'apache-portlet-1_0-api-javadoc' 'apache-rex' 'apache-rpm-macros' 'apache-rpm-macros-control' 'apache2' 'apache2-devel' 'apache2-doc' 'apache2-event' 'apache2-example-pages' 'apache2-icons-oxygen' 'apache2-mod_apparmor' 'apache2-mod_auth_openidc' 'apache2-mod_authn_otp' 'apache2-mod_dnssd' 'apache2-mod_encoding' 'apache2-mod_evasive' 'apache2-mod_fcgid' 'apache2-mod_jk' 'apache2-mod_maxminddb' 'apache2-mod_mono' 'apache2-mod_musicindex' 'apache2-mod_musicindex' 'apache2-mod_musicindex-debuginfo' 'apache2-mod_musicindex-debugsource' 'apache2-mod_nss' 'apache2-mod_perl' 'apache2-mod_perl-devel' 'apache2-mod_php7' 'apache2-mod_security2' 'apache2-mod_uwsgi' 'apache2-mod_wsgi' 'apache2-mod_wsgi-python3' 'apache2-prefork' 'apache2-utils' 'apache2-worker' 'apcupsd' 'apcupsd-cgi' 'apcupsd-gui' 'apetag' 'apetag' 'apetag-debuginfo' 'apetag-debugsource' 'apfel-devel' 'apfel-doc' 'apg' 'apiguardian' 'apiguardian-javadoc' 'apparmor-rpm-macros' 'appeditor' 'appeditor-lang' 'appframework' 'appframework-javadoc' 'appimaged' 'appindicator-sharp' 'appindicator-sharp-devel' 'applet-window-appmenu' 'applet-window-buttons' 'appmenu-gtk-module-common' 'appmenu-gtk2-module' 'appmenu-gtk3-module' 'appmenu-qt' 'appmenu-registrar' 'appres' 'appstream-glib-devel' 'apr-devel' 'apr-util-devel' 'apt-cacher-ng' 'apulse' 'apulse-32bit' 'aqbanking' 'aqbanking-devel' 'aqbanking-doc' 'aqbanking-ebics' 'aqbanking-lang' 'aqbanking-ofx' 'aqute-bnd' 'aqute-bnd-javadoc' 'aqute-bndlib' 'arabic-ae-fonts' 'arabic-amiri-fonts' 'arabic-bitmap-fonts' 'arabic-fonts' 'arabic-kacst-fonts' 'arabic-kacstone-fonts' 'arabic-naqsh-fonts' 'aranym' 'arc' 'arc-icon-theme' 'archivemail' 'archivemount' 'argon2' 'argon2-devel' 'argon2-doc' 'args4j' 'args4j-javadoc' 'argus' 'argus-client' 'argus-server' 'argyllcms' 'argyllcms-doc' 'aria2' 'aria2-devel' 'aria2-lang' 'arj' 'armadillo-devel' 'armadillo-devel-32bit' 'armadillo-doc' 'armagetron' 'arp-scan' 'arpack-ng-devel' 'arpack-ng-devel-32bit' 'arphic-bkai00mp-fonts' 'arphic-bsmi00lp-fonts' 'arphic-fonts' 'arphic-gbsn00lp-fonts' 'arphic-gkai00mp-fonts' 'arphic-ukai-fonts' 'arphic-uming-fonts' 'arping2' 'arprec-devel' 'arptables' 'arpwatch' 'arpwatch-ethercodes' 'arpwatch-ethercodes-build' 'art-sharp2' 'artha' 'artifacts' 'artifacts-validator' 'artikulate' 'artikulate-lang' 'arts' 'arts' 'arts-32bit' 'arts-32bit-debuginfo' 'arts-debuginfo' 'arts-debugsource' 'arts-devel' 'arts-devel-debuginfo' 'arts-gmcop' 'arts-gmcop-debuginfo' 'as10k1' 'asciidoc' 'asciidoc-examples' 'asciinema' 'asclock' 'asco' 'asco-doc' 'aseqview' 'asio-devel' 'asl' 'asm3' 'asm3-examples' 'asm3-javadoc' 'asm5' 'asm5-examples' 'asm5-javadoc' 'asn1c' 'aspell' 'aspell-af' 'aspell-agal' 'aspell-am' 'aspell-ar' 'aspell-ast' 'aspell-az' 'aspell-be' 'aspell-bg' 'aspell-bn' 'aspell-br' 'aspell-ca' 'aspell-cs' 'aspell-csb' 'aspell-cy' 'aspell-da' 'aspell-de' 'aspell-devel' 'aspell-el' 'aspell-en' 'aspell-eo' 'aspell-es' 'aspell-et' 'aspell-fa' 'aspell-fi' 'aspell-fo' 'aspell-fr' 'aspell-fy' 'aspell-ga' 'aspell-gd' 'aspell-gl' 'aspell-grc' 'aspell-gu' 'aspell-gv' 'aspell-he' 'aspell-hi' 'aspell-hil' 'aspell-hr' 'aspell-hsb' 'aspell-hu' 'aspell-hus' 'aspell-hy' 'aspell-ia' 'aspell-id' 'aspell-is' 'aspell-ispell' 'aspell-it' 'aspell-kn' 'aspell-ku' 'aspell-ky' 'aspell-la' 'aspell-lt' 'aspell-lv' 'aspell-mg' 'aspell-mi' 'aspell-mk' 'aspell-ml' 'aspell-mn' 'aspell-mr' 'aspell-ms' 'aspell-mt' 'aspell-nb' 'aspell-nds' 'aspell-nl' 'aspell-nn' 'aspell-ny' 'aspell-or' 'aspell-pa' 'aspell-pl' 'aspell-pt_BR' 'aspell-pt_PT' 'aspell-qu' 'aspell-ro' 'aspell-ru' 'aspell-rw' 'aspell-sc' 'aspell-sk' 'aspell-sl' 'aspell-spell' 'aspell-sr' 'aspell-sv' 'aspell-sw' 'aspell-ta' 'aspell-te' 'aspell-tet' 'aspell-tk' 'aspell-tl' 'aspell-tn' 'aspell-tr' 'aspell-uk' 'aspell-uz' 'aspell-vi' 'aspell-wa' 'aspell-yi' 'aspell-zu' 'assertj-core' 'assertj-core-javadoc' 'assimp-devel' 'asterisk-sounds-devel' 'asteroid' 'asteroids3D' 'astyle' 'asunder' 'asunder' 'asunder-debuginfo' 'asunder-debugsource' 'asunder-lang' 'asusfan' 'at' 'at-spi-sharp' 'at-spi-sharp-devel' 'at-spi2-atk-devel' 'at-spi2-core-devel' 'at-spi2-core-devel-32bit' 'atftp' 'atheme' 'atheme-devel' 'atinject' 'atinject-javadoc' 'atinject-tck' 'atinout' 'atk-devel' 'atk-devel-32bit' 'atk-doc' 'atkmm-devel' 'atkmm-devel-32bit' 'atkmm-doc' 'atkmm1_6-devel' 'atkmm1_6-devel-32bit' 'atkmm1_6-doc' 'atlascpp-devel' 'atmel-firmware' 'atomiks' 'atomix' 'atomix-lang' 'atool' 'atop' 'atop-daemon' 'atril' 'atril-backends' 'atril-devel' 'atril-lang' 'atril-thumbnailer' 'attica-qt5-devel' 'attica-qt5-devel-32bit' 'attractmode' 'aubio-tools' 'audacious' 'audacious-devel' 'audacious-lang' 'audacious-plugins' 'audacious-plugins' 'audacious-plugins-debuginfo' 'audacious-plugins-debugsource' 'audacious-plugins-extra' 'audacious-plugins-extra-debuginfo' 'audacious-plugins-lang' 'audacity' 'audacity-lang' 'audaspace' 'audaspace-devel' 'audaspace-doc' 'audaspace-plugins' 'audenc' 'audenc' 'audio-recorder' 'audio-recorder-lang' 'audiofile' 'audiofile-devel' 'audiofile-devel-32bit' 'audiofile-doc' 'audiotools' 'audiotools' 'audiotools-debuginfo' 'audiotools-debugsource' 'audit-audispd-plugins' 'audit-devel' 'audit-devel-32bit' 'audit-visualize' 'augeas-devel' 'augeas-devel-32bit' 'augeas-lense-tests' 'authbind' 'auto' 'auto-common' 'auto-factory' 'auto-javadoc' 'auto-service' 'auto-value' 'autobench' 'autobuild' 'autoconf' 'autoconf-archive' 'autoconf-el' 'autoconf213' 'autocutsel' 'autofdo' 'autogen' 'autojump' 'automake' 'automoc4' 'autonym-fonts' 'autoopts' 'autopano-sift-C' 'autopano-sift-C' 'autopano-sift-C-debuginfo' 'autopano-sift-C-debugsource' 'autossh' 'autotrace' 'autotrace-devel' 'autotrash' 'avahi-autoipd' 'avahi-compat-howl-devel' 'avahi-compat-mDNSResponder-devel' 'avahi-mono' 'avahi-utils' 'avahi-utils-gtk' 'avalon-framework' 'avalon-framework-javadoc' 'avalon-logkit' 'avalon-logkit-javadoc' 'avesta-fonts' 'avfs' 'avfs-devel' 'avgtime' 'avidemux' 'avidemux' 'avidemux-debuginfo' 'avidemux-debugsource' 'avidemux-gtk' 'avidemux-gtk-debuginfo' 'avidemux-lang' 'avidemux-plugin-arts' 'avidemux-plugin-arts-debuginfo' 'avidemux-qt' 'avidemux-qt-debuginfo' 'avidemux3' 'avidemux3' 'avidemux3-cli' 'avidemux3-cli-debuginfo' 'avidemux3-debuginfo' 'avidemux3-debugsource' 'avidemux3-qt5' 'avidemux3-qt5-debuginfo' 'avidemux3-qt5-lang' 'avifile' 'avifile' 'avifile-data' 'avifile-debuginfo' 'avifile-debugsource' 'avifile-win32' 'avocado-common' 'avocado-examples' 'avocado-vt-common' 'avogadrolibs' 'avogadrolibs-devel' 'avr-libc' 'avrdude' 'avrdude-devel' 'avxsynth' 'avxsynth' 'avxsynth-debuginfo' 'avxsynth-debugsource' 'avxsynth-devel' 'avxsynth-plugins' 'avxsynth-plugins-debuginfo' 'awesfx' 'awesome' 'awesome-branding-openSUSE' 'awesome-branding-upstream' 'awesome-freedesktop' 'awesome-shifty' 'awesome-vicious' 'aws-cli' 'aws-efs-utils' 'ax25-tools' 'axel' 'axis' 'axis-manual' 'ayatana-appindicator-sharp' 'ayatana-appindicator-sharp-devel' 'ayatana-ido-devel' 'aytests-tests' 'azove' 'azure-cli' 'azure-cli-acr' 'azure-cli-acs' 'azure-cli-advisor' 'azure-cli-ams' 'azure-cli-appservice' 'azure-cli-backup' 'azure-cli-batch' 'azure-cli-batchai' 'azure-cli-billing' 'azure-cli-botservice' 'azure-cli-cdn' 'azure-cli-cloud' 'azure-cli-cognitiveservices' 'azure-cli-command-modules-nspkg' 'azure-cli-component' 'azure-cli-configure' 'azure-cli-consumption' 'azure-cli-container' 'azure-cli-core' 'azure-cli-cosmosdb' 'azure-cli-dla' 'azure-cli-dls' 'azure-cli-dms' 'azure-cli-eventgrid' 'azure-cli-eventhubs' 'azure-cli-extension' 'azure-cli-feedback' 'azure-cli-find' 'azure-cli-hdinsight' 'azure-cli-interactive' 'azure-cli-iot' 'azure-cli-iotcentral' 'azure-cli-keyvault' 'azure-cli-kusto' 'azure-cli-lab' 'azure-cli-maps' 'azure-cli-monitor' 'azure-cli-network' 'azure-cli-nspkg' 'azure-cli-policyinsights' 'azure-cli-profile' 'azure-cli-rdbms' 'azure-cli-redis' 'azure-cli-relay' 'azure-cli-reservations' 'azure-cli-resource' 'azure-cli-role' 'azure-cli-search' 'azure-cli-security' 'azure-cli-servicebus' 'azure-cli-servicefabric' 'azure-cli-signalr' 'azure-cli-sql' 'azure-cli-sqlvm' 'azure-cli-storage' 'azure-cli-taskhelp' 'azure-cli-telemetry' 'azure-cli-test' 'azure-cli-vm' 'b43-fwcutter' 'b43legacy-firmware' 'b43legacy-firmware' 'b5i2iso' 'b5i2iso' 'b5i2iso-debuginfo' 'babe' 'babelstone-han-fonts' 'babelstone-marchen-fonts' 'babelstone-modern-fonts' 'babelstone-ogham-fonts' 'babelstone-phags-pa-fonts' 'babelstone-runic-fonts' 'babeltrace' 'babeltrace-devel' 'babl-devel' 'backintime' 'backintime-lang' 'backintime-qt' 'backward-cpp' 'backward-cpp-devel' 'baekmuk-bitmap-fonts' 'baekmuk-ttf-fonts' 'baka-mplayer' 'ballerburg' 'baloo5-devel' 'baloo5-widgets-devel' 'balsa' 'balsa-lang' 'bam' 'bamf-daemon' 'bamf-devel' 'bamf-doc' 'bandwidth' 'baobab' 'baobab-lang' 'barbie_seahorse_adventures' 'barcode' 'barcode-devel' 'bareftp' 'base64coder' 'base64coder-javadoc' 'bash-completion-devel' 'bash-completion-doc' 'bash-devel' 'bash-loadables' 'basic_desktop' 'bat' 'batctl' 'bats' 'bazel' 'bazel-gazelle' 'bazel-gazelle-source' 'bazel-rules-foreign-cc-source' 'bazel-rules-go-source' 'bazel-rules-proto-source' 'bazel-skylib-source' 'bazel-toolchains-source' 'bazel0.19' 'bazel0.24' 'bazel0.25' 'bazel0.26' 'bb' 'bbe' 'bbswitch' 'bbswitch-kmp-default' 'bbswitch-kmp-pae' 'bc' 'bcache-tools' 'bcal' 'bcc-devel' 'bcc-docs' 'bcc-examples' 'bcc-lua' 'bcc-tools' 'bcel' 'bcel5_3' 'bcel5_3-javadoc' 'bcg729-devel' 'bchunk' 'bcm20702a1-firmware' 'bcm43xx-firmware' 'bcmatroska2-devel' 'bctoolbox-devel' 'bcunit-devel' 'bcunit-doc' 'bdfresize' 'bdftopcf' 'bea-stax' 'bea-stax-api' 'beansbinding' 'beansbinding-javadoc' 'beaver' 'beforelight' 'beignet' 'beignet-devel' 'belcard-devel' 'belle-sip-devel' 'belr-devel' 'bemenu' 'bemenu-devel' 'benchmark-devel' 'benji' 'bento4' 'bento4' 'bento4-debuginfo' 'bento4-debugsource' 'bento4-devel' 'berkeleydb' 'berkeleydb-demo' 'berkeleydb-javadoc' 'berkeleydb-manual' 'bestplugins' 'beust-jcommander' 'beust-jcommander-javadoc' 'bff' 'bff-samples' 'bff4' 'biabam' 'biblesync-devel' 'bibletime' 'biboumi' 'bibtool' 'bibview' 'bijiben' 'bijiben-lang' 'bin86' 'bind' 'bind-chrootenv' 'bind-devel' 'bind-devel-32bit' 'bind-doc' 'bind-lwresd' 'bindfs' 'bing' 'bino' 'bino' 'bino-debuginfo' 'bino-debugsource' 'bino-lang' 'binutils-devel' 'binutils-devel-32bit' 'binutils-gold' 'binwalk' 'biosdevname' 'bird' 'bird-common' 'bird-doc' 'bird6' 'birdie' 'birdie-lang' 'bison-32bit' 'bitcoin-qt5' 'bitcoin-test' 'bitcoin-utils' 'bitcoind' 'bitlbee' 'bitlbee-devel' 'bitlbee-discord' 'bitlbee-doc' 'bitlbee-facebook' 'bitlbee-mastodon' 'bitlbee-steam' 'bitmap' 'bitstream-vera-fonts' 'bittwist' 'blabel' 'blabel' 'blacs-devel-headers' 'bladeRF' 'bladeRF-devel' 'bladeRF-udev' 'blas-devel' 'blas-devel-32bit' 'blas-devel-static' 'blas-man' 'blasphemer' 'bleachbit' 'bleachbit-lang' 'blender' 'blender-cycles-devel' 'blender-lang' 'bless' 'bless-doc' 'blinken' 'blinken-lang' 'bliss' 'bliss-devel' 'blktests' 'blktrace' 'bloaty' 'blobAndConquer' 'blobwars' 'blobwars-lang' 'blockout' 'blog-devel' 'blog-plymouth' 'blogbench' 'blogc' 'blosc-devel' 'blueberry' 'blueberry-lang' 'bluefish' 'blueman' 'blueman-lang' 'bluemoon' 'blueprint-cursor-theme' 'blueproximity' 'blueproximity-lang' 'bluez-auto-enable-devices' 'bluez-cups' 'bluez-devel' 'bluez-devel-32bit' 'bluez-firmware' 'bluez-qt-devel' 'bluez-test' 'bluez-tools' 'bmake' 'bmon' 'bnd-maven-plugin' 'bnd-maven-plugin-javadoc' 'bogofilter-common' 'bogofilter-db' 'bogofilter-doc' 'bogofilter-kyotocabinet' 'bogofilter-sqlite3' 'boinc-client' 'boinc-client-lang' 'boinc-manager' 'boinc-manager-lang' 'bolt' 'bolt-tools' 'bomber' 'bomber-lang' 'bombono' 'bombono' 'bombono-debuginfo' 'bombono-debugsource' 'bombono-lang' 'bomi' 'bomi' 'bomi-debuginfo' 'bomi-debugsource' 'bomns' 'bonk' 'bonk' 'bonk-debuginfo' 'bonnie' 'bonnie++' 'boo' 'boo-2_0_9_3' 'boo-devel' 'books' 'bookworm' 'bookworm-lang' 'boomaga' 'boomaga-lang' 'boost-devel' 'boost-gnu-hpc' 'boost-gnu-hpc-devel' 'boost-gnu-mvapich2-hpc' 'boost-gnu-mvapich2-hpc-devel' 'boost-gnu-mvapich2-hpc-python2' 'boost-gnu-mvapich2-hpc-python3' 'boost-gnu-openmpi2-hpc' 'boost-gnu-openmpi2-hpc-devel' 'boost-gnu-openmpi2-hpc-python2' 'boost-gnu-openmpi2-hpc-python3' 'boost-jam' 'boost1_69_0-doc-html' 'boost1_69_0-doc-pdf' 'boost1_69_0-jam' 'boost1_69_0-quickbook' 'boost_1_69_0-gnu-hpc' 'boost_1_69_0-gnu-hpc-devel' 'boost_1_69_0-gnu-hpc-jam' 'boost_1_69_0-gnu-mvapich2-hpc' 'boost_1_69_0-gnu-mvapich2-hpc-devel' 'boost_1_69_0-gnu-mvapich2-hpc-python2' 'boost_1_69_0-gnu-mvapich2-hpc-python3' 'boost_1_69_0-gnu-openmpi2-hpc' 'boost_1_69_0-gnu-openmpi2-hpc-devel' 'boost_1_69_0-gnu-openmpi2-hpc-python2' 'boost_1_69_0-gnu-openmpi2-hpc-python3' 'bootchart' 'booth' 'booth-test' 'bootsplash-branding-KDE' 'bootsplash-branding-upstream' 'borgbackup' 'borgbackup-bash-completion' 'borgbackup-doc' 'borgbackup-fish-completion' 'borgbackup-zsh-completion' 'borgmatic' 'boringssl-devel' 'bosh' 'bouncycastle' 'bouncycastle-javadoc' 'bovo' 'bovo-lang' 'bpftool' 'bpg-fonts' 'bpm-tools' 'bpmdj' 'bpmdj' 'bpmdj-debuginfo' 'bpmdj-debugsource' 'bpython' 'bpython-doc' 'brackets' 'brackets' 'brackets-debuginfo' 'branding-upstream' 'brasero' 'brasero-devel' 'brasero-lang' 'brasero-nautilus' 'brevity' 'bridge-utils' 'bridge-utils-devel' 'brightnessctl' 'brise' 'brisk-menu' 'brisk-menu-lang' 'bristol' 'bristol' 'bristol-debuginfo' 'bristol-debugsource' 'brlapi-devel' 'brlapi-java' 'brlemu' 'brltty-driver-espeak' 'brltty-driver-libbraille' 'brltty-driver-speech-dispatcher' 'brltty-utils' 'broadcom-wl' 'broadcom-wl' 'broadcom-wl-debugsource' 'broadcom-wl-kmp-default' 'broadcom-wl-kmp-default-debuginfo' 'broadcom-wl-kmp-pae' 'broadcom-wl-kmp-pae-debuginfo' 'brotli' 'brp-check-suse' 'brp-extract-appdata' 'brp-extract-translations' 'brp-trim-translations' 'bs' 'bs-update' 'bs2b-tools' 'bsd-games' 'bsf' 'bsf-javadoc' 'bsh2' 'bsh2-bsf' 'bsh2-classgen' 'bsh2-demo' 'bsh2-javadoc' 'bsh2-manual' 'bsod' 'bsod' 'bsod-debuginfo' 'bsod-debugsource' 'bspwm' 'bspwm-bash-completion' 'bspwm-fish-completion' 'bspwm-zsh-completion' 'bssl_wrapper-devel' 'bstone' 'btar' 'btcflash' 'btfs' 'btrfs-extent-same' 'btrfsprogs-static' 'buffer' 'bugreporter' 'bugzilla' 'bugzilla-lang-de' 'build' 'build-compare' 'build-initvm-i586' 'build-initvm-x86_64' 'build-mkbaselibs' 'build-mkdrpms' 'buildah' 'buildstream' 'bumblebee' 'bumblebee-status' 'bumblebee-status-module-cmus' 'bumblebee-status-module-dnf' 'bumblebee-status-module-mocp' 'bumblebee-status-module-mpd' 'bumblebee-status-module-redshift' 'bumpversion' 'burn_360' 'burn_360' 'burncdda' 'burncdda' 'busybox' 'butt' 'butt' 'butt-debuginfo' 'butt-debugsource' 'buzztrax' 'buzztrax-lang' 'buzztrax-plugins' 'bvi' 'bwbar' 'bwidget' 'bwm-ng' 'byacc' 'byaccj' 'byobu' 'byobu-doc' 'bytelist' 'byzanz' 'byzanz-lang' 'bzflag' 'bzip2-doc' 'bzr' 'bzr-lang' 'bzr-test' 'bzrtp-devel' 'c-ares-devel' 'c-toxcore' 'c-toxcore-daemon' 'c-toxcore-devel' 'c3p0' 'c3p0-javadoc' 'c_count' 'ca-certificates-cacert' 'ca-certificates-steamtricks' 'caasp-cli' 'cabal-install' 'cabal-install-bash-completion' 'cabal2spec' 'caca-utils' 'cachefilesd' 'cacti' 'cacti-spine' 'cadabra2' 'cadabra2-doc' 'cadabra2-examples' 'cadabra2-gui' 'cadaver' 'caffe' 'caffe-devel' 'caffe-examples' 'caffe-gnu-hpc' 'caffe-gnu-hpc-devel' 'caffe-gnu-hpc-examples' 'caffe_1_0-gnu-hpc' 'caffe_1_0-gnu-hpc-devel' 'caffe_1_0-gnu-hpc-examples' 'caffeine' 'cage' 'cairo-clock' 'cairo-clock-lang' 'cairo-devel' 'cairo-devel-32bit' 'cairo-tools' 'cairomm-devel' 'cairomm-devel-32bit' 'cairomm-doc' 'cairomm1_0-devel' 'cairomm1_0-devel-32bit' 'cairomm1_0-doc' 'caja' 'caja-devel' 'caja-engrampa' 'caja-extension-actions' 'caja-extension-atril' 'caja-extension-dropbox' 'caja-extension-eiciel' 'caja-extension-folder-color' 'caja-extension-gksu' 'caja-extension-image-converter' 'caja-extension-nextcloud' 'caja-extension-nitroshare' 'caja-extension-open-terminal' 'caja-extension-sendto' 'caja-extension-sendto-devel' 'caja-extension-sendto-gajim' 'caja-extension-sendto-pidgin' 'caja-extension-sendto-upnp' 'caja-extension-share' 'caja-extension-terminal' 'caja-extension-terminal-lang' 'caja-extension-wallpaper' 'caja-extension-xattr-tags' 'caja-extensions-common-lang' 'caja-gschemas' 'caja-lang' 'cal10n' 'cal10n-javadoc' 'cal3d' 'cal3d-devel' 'cal3d-doc' 'calamares' 'calamares-branding-upstream' 'calamares-webview' 'calamaris' 'calc' 'calc-devel' 'calcurse' 'calcurse-lang' 'calendarsupport-devel' 'calf' 'calf-bash-completion' 'calf-debuginfo' 'calf-debugsource' 'calibre' 'calligra' 'calligra-devel' 'calligra-doc' 'calligra-extras-converter' 'calligra-extras-dolphin' 'calligra-extras-okular' 'calligra-gemini' 'calligra-karbon' 'calligra-lang' 'calligra-plan' 'calligra-plan-lang' 'calligra-sheets' 'calligra-stage' 'calligra-tools' 'calligra-words' 'camsource' 'camsource-devel' 'canberra-gtk-play' 'canberra-gtk-play-gnome' 'canna' 'canna-devel' 'canna-libs' 'canna-libs-32bit' 'canna-yubin' 'cannadic' 'cantor' 'cantor-devel' 'cantor-lang' 'canutils' 'canutils-pengutronix' 'capi4hylafax' 'capi4linux' 'capi4linux-32bit' 'capi4linux-devel' 'capi4linux-devel-32bit' 'capifax' 'capifax' 'capifax-debuginfo' 'capifax-debugsource' 'capnet-assist' 'capnet-assist-lang' 'capnproto' 'cardpeek' 'cargo' 'cargo-doc' 'cargo-vendor' 'caribou' 'caribou-common' 'caribou-devel' 'caribou-gtk-module-common' 'caribou-gtk2-module' 'caribou-gtk3-module' 'caribou-lang' 'carla' 'carla-devel' 'carla-vst' 'caslon-fonts' 'casync' 'catcodec' 'catfish' 'catfish-lang' 'caudec' 'caudec' 'cava' 'cblas-devel' 'cblas-devel-32bit' 'cblas-devel-static' 'cc-tool' 'ccache' 'ccd2cue' 'ccd2cue-doc' 'ccd2iso' 'ccd2iso' 'ccd2iso-debuginfo' 'ccd2iso-debugsource' 'ccgfs' 'cclive' 'cclive' 'cclive-debuginfo' 'cclive-debugsource' 'ccls' 'ccrtp-devel' 'ccrtp-doc' 'ccrypt' 'ccrypt-emacs' 'ccrypt-lang' 'ccze' 'ccze-devel' 'cd-discid' 'cd-paranoia' 'cdctl' 'cdctl' 'cdctl-debuginfo' 'cdctl-debugsource' 'cdda2wav' 'cddlib-devel' 'cddlib-doc' 'cdecl' 'cdemu-client' 'cdemu-client-lang' 'cdemu-daemon' 'cdi-api' 'cdi-api-javadoc' 'cdi2iso' 'cdi2iso' 'cdi2iso-debuginfo' 'cdio-utils' 'cdk-devel' 'cdogs-sdl' 'cdparanoia' 'cdparanoia-devel' 'cdrdao' 'cdrecord' 'cdrskin' 'cec-client' 'cecilia' 'cedict' 'cedilla' 'ceferino' 'celluloid' 'celluloid-lang' 'cellwriter' 'celt' 'celt051' 'celt051-devel' 'ceph' 'ceph-base' 'ceph-common' 'ceph-csi' 'ceph-dashboard-e2e' 'ceph-fuse' 'ceph-grafana-dashboards' 'ceph-iscsi' 'ceph-mds' 'ceph-mgr' 'ceph-mgr-dashboard' 'ceph-mgr-diskprediction-cloud' 'ceph-mgr-diskprediction-local' 'ceph-mgr-rook' 'ceph-mgr-ssh' 'ceph-mon' 'ceph-osd' 'ceph-prometheus-alerts' 'ceph-radosgw' 'ceph-resource-agents' 'ceph-test' 'ceph_base' 'cephfs-shell' 'cerbere' 'cereal-devel' 'certbot-systemd-timer' 'certstrap' 'cervisia' 'cervisia-lang' 'cetcd-devel' 'cf-cli' 'cf-cli-test' 'cfengine' 'cfengine-doc' 'cfengine-examples' 'cfengine-masterfiles' 'cfitsio' 'cfitsio-devel' 'cfitsio-devel-doc' 'cfityk' 'cflow' 'cfn-lint' 'cgal-demo-examples-devel' 'cgal-devel' 'cgal-doc' 'cgdb' 'cgit' 'cglib' 'cglib-javadoc' 'chafa' 'chafa-devel' 'chafa-doc' 'chameleon' 'changelog-generator-data' 'charliecloud' 'charliecloud-doc' 'charliecloud-examples' 'chartmuseum' 'charybdis' 'chasen' 'chasen-devel' 'chck-devel' 'check-create-certificate' 'check-devel' 'check_postgres' 'checkbashisms' 'checkpolicy' 'cheese' 'cheese-devel' 'cheese-lang' 'chemical-mime-data' 'cherrytree' 'cherrytree-lang' 'chessx' 'chewing-data' 'chewing-utils' 'chezdav' 'chmlib-devel' 'chmlib-devel-32bit' 'chmlib-examples' 'chntpw' 'chocolate-doom' 'chocolate-doom-bash-completion' 'choqok' 'choqok-devel' 'chrome-gnome-shell' 'chrome-uget-integrator' 'chromedriver' 'chromium' 'chromium-bsu' 'chromium-ffmpeg-extra' 'chromium-ffmpeg-extra' 'chromium-ffmpeg-extra-debuginfo' 'chromium-plugin-widevinecdm' 'chromium-plugin-widevinecdm' 'chromium-uget-integrator' 'chrpath' 'ciano' 'ciano-lang' 'cifs-utils-devel' 'cilium' 'cilium-cni' 'cilium-devel' 'cilium-docker' 'cilium-etcd-operator' 'cilium-init' 'cilium-k8s-yaml' 'cilium-microscope' 'cilium-operator' 'cilium-proxy' 'cim-schema' 'cimple' 'cimple-cmpi-adapter' 'cimple-devel' 'cimple-pegasus-adapter' 'cinema' 'cinema-lang' 'cinnamon' 'cinnamon-control-center' 'cinnamon-control-center-common' 'cinnamon-control-center-devel' 'cinnamon-control-center-lang' 'cinnamon-devel-doc' 'cinnamon-gschemas' 'cinnamon-gschemas-branding-openSUSE' 'cinnamon-gschemas-branding-upstream' 'cinnamon-lang' 'cinnamon-metatheme-numix' 'cinnamon-screensaver' 'cinnamon-screensaver-lang' 'cinnamon-session' 'cinnamon-session-lang' 'cinnamon-settings-daemon' 'cinnamon-settings-daemon-devel' 'cinnamon-settings-daemon-lang' 'cinnamon-theme-adapta' 'cinnamon-theme-plata' 'circuslinux' 'cjs' 'cjs-devel' 'ck-devel' 'ckb-next' 'ckermit' 'ckermit-doc' 'clFFT' 'clFFT-devel' 'clack' 'clamav' 'clamav-devel' 'clamtk' 'clamtk-lang' 'clamz' 'clang' 'clang-checker' 'clang-devel' 'clang6' 'clang6-checker' 'clang6-devel' 'clang6-devel-32bit' 'clang7' 'clang7-checker' 'clang7-devel' 'clang7-devel-32bit' 'clang8' 'clang8-checker' 'clang8-devel' 'clang8-devel-32bit' 'clanlib' 'clanlib-devel' 'clanlib-doc' 'clanlib-examples' 'clatd' 'claws-mail' 'claws-mail-devel' 'claws-mail-lang' 'clawsker' 'clawsker' 'clawsker-lang' 'clazy' 'cld2-devel' 'cldr-emoji-annotation' 'cldr-emoji-annotation-devel' 'clementine' 'clementine' 'clicfs' 'clinfo' 'clipgrab' 'clipit' 'clipped' 'clipped-lang' 'clippy' 'clisp' 'clisp-doc' 'clive' 'clive' 'clive-utils' 'clive-utils' 'clivefeed' 'clivepass' 'clivescan' 'cln' 'cln-devel' 'clone-master-clean-up' 'cloud-init' 'cloud-init-config-MicroOS' 'cloud-init-config-caasp' 'cloud-init-config-suse' 'cloud-init-doc' 'cloud-init-vmware-guestinfo' 'cloud-netconfig-azure' 'cloud-netconfig-ec2' 'clpeak' 'clucene-core-devel' 'clustduct' 'cluster-glue' 'clustershell' 'clusterssh' 'clutter-devel' 'clutter-gst-devel' 'clutter-gtk-devel' 'clutter-gtk-lang' 'clutter-lang' 'clzip' 'cm-unicode-fonts' 'cmake' 'cmake-gui' 'cmake-man' 'cmark' 'cmark-devel' 'cmis-client' 'cmpi-bindings-perl' 'cmpi-bindings-pywbem' 'cmpi-bindings-ruby' 'cmpi-provider-register' 'cmpi-pywbem-base' 'cmpi-pywbem-power-management' 'cmrt-devel' 'cmuclmtk' 'cmus' 'cmus-plugin-cdio' 'cmus-plugin-cue' 'cmus-plugin-ffmpeg' 'cmus-plugin-flac' 'cmus-plugin-jack' 'cmus-plugin-libao' 'cmus-plugin-mikmod' 'cmus-plugin-modplug' 'cmus-plugin-mpc' 'cmus-plugin-opus' 'cmus-plugin-pulse' 'cmus-plugin-sndio' 'cmus-plugin-vorbis' 'cmus-plugin-wavpack' 'cmus-plugins-all' 'cni' 'cni-plugins' 'cntlm' 'cobbler' 'cobbler-tests' 'cobbler-web' 'coccigrep' 'coccinelle' 'codec2' 'codec2-devel' 'codec2-examples' 'codehaus-parent' 'codelite' 'codespell' 'cogl-devel' 'cogl-lang' 'collectd' 'collectd-plugin-dbi' 'collectd-plugin-gps' 'collectd-plugin-ipmi' 'collectd-plugin-java' 'collectd-plugin-lua' 'collectd-plugin-lvm' 'collectd-plugin-mcelog' 'collectd-plugin-memcachec' 'collectd-plugin-mysql' 'collectd-plugin-notify-desktop' 'collectd-plugin-nut' 'collectd-plugin-openldap' 'collectd-plugin-ovs' 'collectd-plugin-pcie' 'collectd-plugin-pinba' 'collectd-plugin-postgresql' 'collectd-plugin-python3' 'collectd-plugin-sigrok' 'collectd-plugin-smart' 'collectd-plugin-snmp' 'collectd-plugin-synproxy' 'collectd-plugin-virt' 'collectd-plugin-write_stackdriver' 'collectd-plugin-write_syslog' 'collectd-plugins-all' 'collectd-spamassassin' 'collectd-web' 'collectd-web-js' 'collectl' 'colm-devel' 'colm-doc' 'color-filesystem' 'colord' 'colord-color-profiles' 'colord-gtk' 'colord-gtk-lang' 'colord-kde' 'colord-kde-lang' 'colord-lang' 'colordiff' 'colorhug-client' 'colorhug-client-lang' 'colormake' 'colorpicker' 'colorpicker-lang' 'comgt' 'comgt' 'comgt-debuginfo' 'comgt-debugsource' 'compartm' 'compcache' 'compface' 'compface-devel' 'compicc' 'compiz' 'compiz-bcop' 'compiz-branding-SLED' 'compiz-branding-openSUSE' 'compiz-branding-upstream' 'compiz-devel' 'compiz-emerald' 'compiz-emerald-devel' 'compiz-emerald-lang' 'compiz-emerald-theme-manager' 'compiz-emerald-themes' 'compiz-gnome' 'compiz-lang' 'compiz-manager' 'compiz-plugins' 'compiz-plugins-experimental' 'compiz-plugins-experimental-devel' 'compiz-plugins-experimental-lang' 'compiz-plugins-extra' 'compiz-plugins-extra-devel' 'compiz-plugins-extra-lang' 'compiz-plugins-main' 'compiz-plugins-main-devel' 'compiz-plugins-main-lang' 'compizconfig-settings-manager' 'compizconfig-settings-manager-common' 'compizconfig-settings-manager-lang' 'complexity' 'compsize' 'compton' 'compton-conf' 'compton-conf-lang' 'concurrent' 'conkeror' 'conky' 'conky' 'conky-debuginfo' 'conky-debugsource' 'conky-doc' 'conman' 'conmon' 'connect' 'connect' 'connman' 'connman-client' 'connman-devel' 'connman-doc' 'connman-nmcompat' 'connman-plugin-hh2serial-gps' 'connman-plugin-iospm' 'connman-plugin-l2tp' 'connman-plugin-openconnect' 'connman-plugin-openvpn' 'connman-plugin-polkit' 'connman-plugin-pptp' 'connman-plugin-tist' 'connman-plugin-vpnc' 'connman-test' 'conntrack-tools' 'conntrackd' 'console' 'console-setup' 'container-diff' 'container-feeder' 'container_runtime' 'container_runtime_kubernetes' 'containerd-ctr' 'containerd-kubic' 'containerd-kubic-ctr' 'contractor' 'converseen' 'converseen-lang' 'convmv' 'cookiecutter' 'cookiecutter-doc' 'cool-retro-term' 'coolkey' 'coolkey-32bit' 'coolkey-devel' 'copy-agent' 'copy-agent' 'copy-agent-gnome' 'copy-agent-mate' 'coreboot-utils' 'coredns' 'coredns-extras' 'coreutils-testsuite' 'corosync' 'corosync-qdevice' 'corosync-qnetd' 'corosync-testagents' 'courier-authlib' 'courier-authlib-devel' 'courier-authlib-ldap' 'courier-authlib-mysql' 'courier-authlib-pgsql' 'courier-authlib-pipe' 'courier-authlib-sqlite' 'courier-authlib-userdb' 'courier-imap' 'courier-prime-fonts' 'courier-unicode-devel' 'courier-unicode-doc' 'cowsay' 'cozy' 'cozy-lang' 'cpanspec' 'cpdvd' 'cpdvd' 'cpluff' 'cpmono_v07-fonts' 'cpp7' 'cppcheck' 'cppcheck-gui' 'cppi' 'cppi-lang' 'cppreference-doc' 'cppreference-doc-devhelp' 'cppreference-doc-qhelp' 'cpprest-devel' 'cpptasks' 'cpptasks-javadoc' 'cppunit-devel' 'cppunit-devel-32bit' 'cppunit-devel-doc' 'cppzmq-devel' 'cpuid' 'cpulimit' 'cpupower-bench' 'cpupower-devel' 'cpuset' 'cpustat' 'cpvts' 'cpvts' 'cracklib-devel' 'cracklib-devel-32bit' 'cracklib-dict-small' 'crafty' 'crafty' 'crafty-debuginfo' 'cram-common' 'crash' 'crash-devel' 'crash-doc' 'crash-eppic' 'crash-gcore' 'crash-kmp-default' 'crawl' 'crawl-data' 'crawl-sdl' 'crazydiskinfo' 'createrepo' 'createrepo_c' 'creduce' 'cri-o' 'cri-o-kubeadm-criconfig' 'cri-tools' 'criu-devel' 'crmsh' 'crmsh-scripts' 'crmsh-test' 'cronic' 'cronie-anacron' 'cross-aarch64-binutils' 'cross-aarch64-gcc7' 'cross-aarch64-gcc7-icecream-backend' 'cross-aarch64-gcc8' 'cross-aarch64-gcc8-icecream-backend' 'cross-aarch64-gcc9' 'cross-aarch64-gcc9-icecream-backend' 'cross-arm-binutils' 'cross-arm-gcc7' 'cross-arm-gcc8' 'cross-arm-gcc9' 'cross-arm-none-gcc7' 'cross-arm-none-gcc7-bootstrap' 'cross-arm-none-gcc8' 'cross-arm-none-gcc8-bootstrap' 'cross-arm-none-gcc9' 'cross-arm-none-gcc9-bootstrap' 'cross-arm-none-newlib-devel' 'cross-avr-binutils' 'cross-avr-gcc7' 'cross-avr-gcc7-bootstrap' 'cross-avr-gcc8' 'cross-avr-gcc8-bootstrap' 'cross-avr-gcc9' 'cross-avr-gcc9-bootstrap' 'cross-epiphany-binutils' 'cross-epiphany-gcc7' 'cross-epiphany-gcc7-bootstrap' 'cross-epiphany-gcc8' 'cross-epiphany-gcc8-bootstrap' 'cross-epiphany-gcc9' 'cross-epiphany-gcc9-bootstrap' 'cross-epiphany-newlib-devel' 'cross-hppa-binutils' 'cross-hppa-gcc7' 'cross-hppa-gcc7-icecream-backend' 'cross-hppa-gcc8' 'cross-hppa-gcc8-icecream-backend' 'cross-hppa-gcc9' 'cross-hppa-gcc9-icecream-backend' 'cross-hppa64-binutils' 'cross-i386-binutils' 'cross-i386-gcc7' 'cross-i386-gcc7-icecream-backend' 'cross-i386-gcc8' 'cross-i386-gcc8-icecream-backend' 'cross-i386-gcc9' 'cross-i386-gcc9-icecream-backend' 'cross-ia64-binutils' 'cross-m68k-binutils' 'cross-m68k-gcc7' 'cross-m68k-gcc7-icecream-backend' 'cross-m68k-gcc8' 'cross-m68k-gcc8-icecream-backend' 'cross-m68k-gcc9' 'cross-m68k-gcc9-icecream-backend' 'cross-mips-binutils' 'cross-mips-gcc7' 'cross-mips-gcc7-icecream-backend' 'cross-mips-gcc8' 'cross-mips-gcc8-icecream-backend' 'cross-mips-gcc9' 'cross-mips-gcc9-icecream-backend' 'cross-nvptx-gcc7' 'cross-nvptx-gcc8' 'cross-nvptx-gcc9' 'cross-nvptx-newlib7-devel' 'cross-nvptx-newlib8-devel' 'cross-nvptx-newlib9-devel' 'cross-ppc-binutils' 'cross-ppc64-binutils' 'cross-ppc64-gcc7' 'cross-ppc64-gcc7-icecream-backend' 'cross-ppc64-gcc8' 'cross-ppc64-gcc8-icecream-backend' 'cross-ppc64-gcc9' 'cross-ppc64-gcc9-icecream-backend' 'cross-ppc64le-binutils' 'cross-ppc64le-gcc7' 'cross-ppc64le-gcc7-icecream-backend' 'cross-ppc64le-gcc8' 'cross-ppc64le-gcc8-icecream-backend' 'cross-ppc64le-gcc9' 'cross-ppc64le-gcc9-icecream-backend' 'cross-riscv64-binutils' 'cross-riscv64-elf-gcc8' 'cross-riscv64-elf-gcc8-bootstrap' 'cross-riscv64-elf-gcc9' 'cross-riscv64-elf-gcc9-bootstrap' 'cross-riscv64-gcc8' 'cross-riscv64-gcc8-icecream-backend' 'cross-riscv64-gcc9' 'cross-riscv64-gcc9-icecream-backend' 'cross-riscv64-newlib-devel' 'cross-rx-binutils' 'cross-rx-gcc7' 'cross-rx-gcc7-bootstrap' 'cross-rx-gcc8' 'cross-rx-gcc8-bootstrap' 'cross-rx-gcc9' 'cross-rx-gcc9-bootstrap' 'cross-rx-newlib-devel' 'cross-s390-binutils' 'cross-s390x-binutils' 'cross-s390x-gcc7' 'cross-s390x-gcc7-icecream-backend' 'cross-s390x-gcc8' 'cross-s390x-gcc8-icecream-backend' 'cross-s390x-gcc9' 'cross-s390x-gcc9-icecream-backend' 'cross-sparc-binutils' 'cross-sparc-gcc7' 'cross-sparc-gcc8' 'cross-sparc-gcc9' 'cross-sparc64-binutils' 'cross-sparc64-gcc7' 'cross-sparc64-gcc7-icecream-backend' 'cross-sparc64-gcc8' 'cross-sparc64-gcc8-icecream-backend' 'cross-sparc64-gcc9' 'cross-sparc64-gcc9-icecream-backend' 'cross-sparcv9-gcc7-icecream-backend' 'cross-sparcv9-gcc8-icecream-backend' 'cross-sparcv9-gcc9-icecream-backend' 'cross-spu-binutils' 'cross-x86_64-binutils' 'crossc-devel' 'crossguid-devel' 'crosstool-ng' 'crudini' 'cryfs' 'cryptctl' 'crystalhd-firmware' 'cscope' 'csindex' 'csmash' 'csmith' 'csound' 'csound-devel' 'csound-java-bindings' 'csound-lang' 'csound-plugins' 'cspctl' 'csvprintf' 'csync' 'csync2' 'ctags' 'ctdb' 'ctdb-pcp-pmda' 'ctdb-tests' 'ctris' 'cttop' 'cudd-devel' 'cuetools' 'cuetools' 'cuetools-debuginfo' 'cuetools-debugsource' 'cuishark' 'culmus-ancient-semitic-fonts' 'culmus-fonts' 'cuneiform' 'cunit-devel' 'cunit-doc' 'cups-airprint' 'cups-backends' 'cups-ddk' 'cups-devel' 'cups-devel-32bit' 'cups-filters-devel' 'cups-pdf' 'cups-pk-helper' 'cups-pk-helper-lang' 'cura' 'cura-engine' 'cura-engine-lulzbot' 'cura-fdm-materials' 'cura-lulzbot' 'curlew' 'curlew' 'curlew-lang' 'curlftpfs' 'cutecom' 'cutmp3' 'cutmp3-doc' 'cutterff' 'cutterff-lang' 'cvs-doc' 'cvs2svn' 'cxref' 'cxsc' 'cxsc-devel' 'cxxtools-devel' 'cyradm' 'cyreal-alice-fonts' 'cyreal-junge-fonts' 'cyreal-lobster-cyrillic-fonts' 'cyreal-lora-fonts' 'cyreal-marko-horobchyk-fonts' 'cyreal-marmelad-fonts' 'cyreal-wire-fonts' 'cyrus-imapd' 'cyrus-imapd-devel' 'cyrus-imapd-snmp' 'cyrus-imapd-snmp-mibs' 'cyrus-imapd-utils' 'cyrus-sasl-32bit' 'cyrus-sasl-crammd5-32bit' 'cyrus-sasl-devel' 'cyrus-sasl-devel-32bit' 'cyrus-sasl-digestmd5-32bit' 'cyrus-sasl-gs2' 'cyrus-sasl-gssapi-32bit' 'cyrus-sasl-ldap-auxprop' 'cyrus-sasl-ldap-auxprop-32bit' 'cyrus-sasl-ntlm' 'cyrus-sasl-otp' 'cyrus-sasl-otp-32bit' 'cyrus-sasl-plain-32bit' 'cyrus-sasl-saslauthd' 'cyrus-sasl-scram' 'cyrus-sasl-sqlauxprop' 'cyrus-sasl-sqlauxprop-32bit' 'czmq' 'czmq-devel' 'd-feet' 'd-feet-lang' 'd0_blind_id' 'd0_blind_id-devel' 'dSFMT-devel' 'dai-banna-fonts' 'dante' 'dante-devel' 'dante-devel-32bit' 'dante-server' 'dapl' 'dapl-debug' 'dapl-debug-devel' 'dapl-debug-libs' 'dapl-debug-utils' 'dapl-devel' 'dapl-devel-32bit' 'dapl-utils' 'daps' 'dar' 'dar-lang' 'darkice' 'darkice' 'darkice-debuginfo' 'darkice-debugsource' 'darktable' 'darktable-doc' 'darktable-tools-basecurve' 'darktable-tools-noise' 'darts' 'dash' 'dasher' 'dasher-data-extras' 'dasher-data-recommended' 'dasher-lang' 'data-partition-service' 'datamash' 'dataquay-devel' 'datefudge' 'dateutils' 'dateutils-octave' 'datovka' 'dav1d' 'dav1d-devel' 'davfs2' 'davix' 'davix-devel' 'db48-doc' 'dbench' 'dbench4' 'dbh-devel' 'dblatex' 'dblatex-doc' 'dbsplit-tools' 'dbus-1-devel' 'dbus-1-devel-32bit' 'dbus-1-devel-doc' 'dbus-1-glib-devel' 'dbus-1-glib-devel-32bit' 'dbus-1-glib-doc' 'dbus-1-mono' 'dbus-1-presage' 'dbus-broker' 'dbus-sharp' 'dbus-sharp-devel' 'dbus-sharp-glib' 'dbus-sharp-glib-devel' 'dbus-sharp-glib2' 'dbus-sharp-glib2-devel' 'dbus-sharp2' 'dbus-sharp2-devel' 'dbview' 'dc3dd' 'dc3dd-lang' 'dcadec' 'dcadec' 'dcadec-debuginfo' 'dcadec-debugsource' 'dcaenc' 'dcaenc' 'dcaenc-debuginfo' 'dcaenc-debugsource' 'dcatools' 'dcatools' 'dcatools-debuginfo' 'dcatools-debugsource' 'dcmtk' 'dcmtk-devel' 'dconf-devel' 'dconf-editor' 'dconf-editor-lang' 'dcraw' 'dcraw-lang' 'dd-opentracing-cpp-devel' 'dd_rescue' 'dd_rescue-crypt' 'dd_rescue-lzo' 'dd_rhelp' 'ddccontrol' 'ddccontrol-db' 'ddccontrol-db-lang' 'ddccontrol-devel' 'ddccontrol-doc' 'ddccontrol-gtk' 'ddccontrol-lang' 'ddclient' 'ddcutil' 'ddd' 'ddd-doc' 'ddgr' 'dds2tar' 'ddskk' 'deadbeef' 'deadbeef-devel' 'deadbeef-lang' 'deadbeef-plugin-mpris2' 'deadbeef-plugin-mpris2' 'deadbeef-plugin-mpris2-debuginfo' 'deadbeef-plugin-mpris2-debugsource' 'deadbeef-plugin-statusnotifier' 'deadbeef-plugin-statusnotifier' 'deadbeef-plugin-statusnotifier-debuginfo' 'deadbeef-plugin-statusnotifier-debugsource' 'debootstrap' 'decentxml' 'decentxml-javadoc' 'dee-devel' 'deepin-calendar' 'deepin-calendar-lang' 'deepin-editor' 'deepin-editor-lang' 'deepin-gettext-tools' 'deepin-media-player' 'deepin-media-player' 'deepin-media-player-lang' 'deepin-menu' 'deepin-movie' 'deepin-movie-devel' 'deepin-movie-lang' 'deepin-music-libnetease-meta-search' 'deepin-music-player' 'deepin-screenshot' 'deepin-screenshot-lang' 'deepin-system-monitor' 'deepin-system-monitor-lang' 'deepin-terminal' 'deepin-terminal-lang' 'deepin-turbo' 'deepin-turbo-devel' 'dehydrated' 'dehydrated-apache2' 'dehydrated-lighttpd' 'dehydrated-nginx' 'deja-dup' 'deja-dup-lang' 'dejagnu' 'delaguardo-inconsolata_lgc-fonts' 'delayacct-utils' 'delta' 'deltafs' 'deluge' 'deluge-lang' 'desktop-data-openSUSE-extra' 'desktopfolder' 'desktopfolder-lang' 'deutex' 'dev86' 'devede' 'devede' 'devede-lang' 'devedeng' 'devedeng' 'devedeng-lang' 'devel_C_C++' 'devel_basis' 'devel_gnome' 'devel_java' 'devel_kde_frameworks' 'devel_kernel' 'devel_mono' 'devel_osc_build' 'devel_perl' 'devel_python3' 'devel_qt5' 'devel_rpm_build' 'devel_ruby' 'devel_tcl' 'devel_web' 'devel_yast' 'devhelp' 'devhelp-devel' 'devhelp-lang' 'device-mapper-devel' 'device-mapper-devel-32bit' 'devidify' 'devidify' 'devilspie2' 'devilspie2-lang' 'devmem2' 'devscripts' 'dex' 'dex-oidc' 'dfc' 'dfc-lang' 'dfu-programmer' 'dfu-tool' 'dh-autoreconf' 'dh-make' 'dhcp-devel' 'dhcp-doc' 'dhcp-relay' 'dhcp-server' 'dhcp-tools' 'dhcp_dns_server' 'dhcpdetector' 'dhcpdetector' 'dhewm3' 'dhex' 'dhtest' 'di' 'di' 'di-debuginfo' 'di-debugsource' 'dia' 'dia-lang' 'dialog-devel' 'dialog-examples' 'dianara' 'dico' 'dico-devel' 'dico-lang' 'dico-modules' 'dictd' 'dictd-devel' 'dicts' 'diff-pdf' 'diffmk' 'diffoscope' 'diffstat' 'digikam' 'digikam-devel' 'digikam-lang' 'digikam-plugins' 'dina-bitmap-fonts' 'ding' 'ding-dict-de_en' 'dippi' 'dippi-lang' 'dirac' 'dirac-devel' 'dirac-devel-32bit' 'directory_server' 'direnv' 'direvent' 'dirvish' 'discord' 'discount' 'discover-backend-fwupd' 'discover-plasmoid' 'diskimage-builder' 'diskscan' 'disorderfs' 'distcc' 'distcc-gui' 'distcc-server' 'distribution-gpg-keys' 'distribution-logos-openSUSE' 'distribution-logos-openSUSE-Kubic' 'distribution-logos-openSUSE-Leap' 'distribution-logos-openSUSE-MicroOS' 'dita' 'djv' 'djv' 'djv-debuginfo' 'djv-debugsource' 'djv-devel' 'djv-doc' 'djv-plugins' 'djv-plugins-debuginfo' 'djvu2pdf' 'djvulibre' 'djvulibre-djview4' 'djvulibre-doc' 'djvusmooth' 'djvusmooth-lang' 'dkgpg' 'dkimproxy' 'dkms' 'dleyna-connector-dbus' 'dleyna-core-devel' 'dleyna-server' 'dleyna-server-devel' 'dm-zoned-tools' 'dmd' 'dmenu' 'dmraid-devel' 'dnf' 'dnf-automatic' 'dnf-conf' 'dnf-lang' 'dnf-plugins-core' 'dnf-plugins-core-lang' 'dnf-utils' 'dnf-yum' 'dns24-update' 'dnscrypt-proxy' 'dnscrypt-proxy-devel' 'dnsdiag' 'dnsmasq-utils' 'dnstracer' 'docbook-css-stylesheets' 'docbook-dsssl-stylesheets' 'docbook-simple' 'docbook-tdg' 'docbook-toys' 'docbook-utils' 'docbook-utils-minimal' 'docbook-xml-slides' 'docbook-xml-website' 'docbook-xsl-pdf2index' 'docbook2x' 'docbook2x-doc' 'docbook5-xsl-stylesheets' 'docbook_3' 'docbook_5' 'docbook_5-doc' 'docker-bench-security' 'docker-distribution-registry' 'docker-kubic' 'docker-kubic-bash-completion' 'docker-kubic-kubeadm-criconfig' 'docker-kubic-test' 'docker-kubic-zsh-completion' 'docker-libnetwork-kubic' 'docker-machine-driver-kvm2' 'docker-runc-kubic' 'docker-test' 'docky' 'docky-devel' 'docky-lang' 'documentation' 'dogtail' 'dolphin-devel' 'dolphin-plugins' 'dolphin-plugins-lang' 'dom2-core-tests' 'dom4j' 'dom4j-demo' 'dom4j-javadoc' 'dom4j-manual' 'domination' 'domination-data' 'doomsday' 'dosemu' 'dotconf-devel' 'double-conversion-devel' 'double-cross' 'dovecot' 'dovecot23' 'dovecot23-backend-mysql' 'dovecot23-backend-pgsql' 'dovecot23-backend-sqlite' 'dovecot23-devel' 'dovecot23-fts' 'dovecot23-fts-lucene' 'dovecot23-fts-solr' 'dovecot23-fts-squat' 'doxygen' 'doxywizard' 'dpdk' 'dpdk-devel' 'dpdk-doc' 'dpdk-examples' 'dpdk-kmp-default' 'dpdk-tools' 'dpic' 'dpic-doc' 'dpkg-devel' 'dracut-fips' 'dracut-ima' 'dracut-kiwi-lib' 'dracut-kiwi-live' 'dracut-kiwi-oem-dump' 'dracut-kiwi-oem-repart' 'dracut-kiwi-overlay' 'dracut-tools' 'dragonplayer' 'dragonplayer-lang' 'drbd' 'drbd-formula' 'drbd-kmp-default' 'drbd-utils' 'drbdmanage' 'drc' 'drc-doc' 'dreampie' 'driconf' 'driverctl' 'dropbox-cli' 'drops' 'drumstick' 'drush' 'dsmidiwifi' 'dsmidiwifi' 'dsmidiwifi-debuginfo' 'dssi-devel' 'dssi-linuxsampler' 'dssi-linuxsampler-debuginfo' 'dssim' 'dstat' 'dt' 'dtach' 'dtc' 'dtdinst' 'dtkcore' 'dtkcore-devel' 'dtkwidget' 'dtkwidget-devel' 'dtkwm-devel' 'dtv-scan-tables' 'dtv-scan-tables-v5' 'dub' 'duc' 'duktape-devel' 'dump' 'dump-rmt' 'dump1090' 'dumpvdl2' 'dunelegacy' 'dunst' 'duperemove' 'duplicity' 'duplicity-lang' 'duply' 'dustrac' 'dv2sub' 'dv2sub' 'dv2sub-debuginfo' 'dv2sub-debugsource' 'dvb-utils' 'dvbcut' 'dvbsnoop' 'dvbstream' 'dvd-slideshow' 'dvd-slideshow' 'dvdauthor' 'dvdbackup' 'dvdbackup' 'dvdbackup-debuginfo' 'dvdbackup-debugsource' 'dvdinfo' 'dvdinfo' 'dvdinfo-debuginfo' 'dvdisaster' 'dvdisaster-docs' 'dvdrip' 'dvdrip' 'dvdrip-debuginfo' 'dvdshrink' 'dvdshrink' 'dvdwizard' 'dvdwizard' 'dvgrab' 'dvgrab' 'dvgrab-debuginfo' 'dvgrab-debugsource' 'dvgt' 'dwarves' 'dwz-testsuite' 'dxflib-devel' 'dxirc' 'dxirc' 'dxirc-debuginfo' 'dxirc-debugsource' 'dynamic-wallpapers-11x' 'dynamips' 'dzen2' 'e16' 'e2fsprogs-devel' 'e2fsprogs-scrub' 'e3' 'eaglemode' 'easy-rsa' 'easymock' 'easymock-javadoc' 'easytag' 'easytag-lang' 'eatmydata' 'eb' 'eb-devel' 'eb-garamond-fonts' 'eb-lang' 'ebiso' 'ebizzy' 'eblook' 'ebook-tools' 'ecasound' 'ecasound' 'ecasound-debuginfo' 'ecasound-debugsource' 'ecasound-doc' 'echomixer' 'eciadsl-usermode' 'ecj' 'eclipse-swt' 'econnman' 'ecryptfs-utils' 'ecryptfs-utils-32bit' 'ecryptfs-utils-devel' 'ecryptfs-utils-devel-32bit' 'ecwolf' 'ed' 'edgar' 'edgar-data' 'edgar-lang' 'edict' 'edict2' 'editorconfig' 'editres' 'edje' 'eekboard' 'eekboard-devel' 'eeyek-fonts' 'efivar' 'efivar-devel' 'efl' 'efl-devel' 'efl-lang' 'efl-testsuite' 'efont-serif-fonts' 'eiciel' 'eiciel-lang' 'eigen3-devel' 'eigen3-doc' 'ekiga' 'ekiga-lang' 'ekiga-plugins-evolution' 'elektra' 'elektra-qt-gui' 'elementary' 'elementary-cmake-modules' 'elementary-icon-theme' 'elementary-icon-theme-gimp-palette' 'elementary-icon-theme-inkscape-palette' 'elementary-wallpapers' 'elementary-xfce-icon-theme' 'elemines' 'elftoaout' 'elib' 'elilo' 'elinks' 'elisa' 'elisa-lang' 'elixir' 'elixir-doc' 'elixir-ex_doc' 'elixir-hex' 'ell-devel' 'elua' 'emacs' 'emacs-apel' 'emacs-auctex' 'emacs-color-theme' 'emacs-completion-golang' 'emacs-el' 'emacs-flim' 'emacs-info' 'emacs-nox' 'emacs-plugin-devhelp' 'emacs-scheme48' 'emacs-semi' 'emacs-w3m' 'emacs-x11' 'embryo' 'emf2svg-conv' 'emil' 'emojione-color-font' 'emount' 'emount' 'emount-debuginfo' 'emount-debugsource' 'empathy' 'empathy-lang' 'enblend-enfuse-doc' 'enca' 'enca-devel' 'encfs' 'encfs-lang' 'enchant-1-backend-voikko' 'enchant-1-backend-voikko-32bit' 'enchant-1-backend-zemberek' 'enchant-1-backend-zemberek-32bit' 'enchant-1-backends' 'enchant-1-data' 'enchant-1-devel' 'enchant-1-tools' 'enchant-2-backend-aspell' 'enchant-2-backend-voikko' 'enchant-2-backend-voikko-32bit' 'enchant-devel' 'enchant-tools' 'endless-sky' 'enet-devel' 'engauge-digitizer' 'engauge-digitizer-devel-doc' 'engauge-digitizer-doc' 'engdic' 'engrampa' 'engrampa-lang' 'enigmail' 'enlightenment' 'enlightenment' 'enlightenment-branding-openSUSE' 'enlightenment-branding-upstream' 'enlightenment-devel' 'enlightenment-doc-html' 'enlightenment-profiles-openSUSE' 'enlightenment-theme-cerium2' 'enlightenment-theme-dark' 'enlightenment-theme-openSUSE' 'enlightenment-theme-openSUSE-ice' 'enlightenment-theme-openSUSE-oliveleaf' 'enlightenment-theme-upstream' 'enlightenment-x-dark-icon-theme' 'entangle' 'entangle-doc' 'entangle-lang' 'entangle-plugin-eclipse' 'entangle-plugin-photobox' 'entangle-plugin-shooter' 'entr' 'envoy' 'envoy-proxy' 'envy24control' 'eog' 'eog-devel' 'eog-lang' 'eog-plugin-exif-display' 'eog-plugin-export-to-folder' 'eog-plugin-fit-to-width' 'eog-plugin-fullscreenbg' 'eog-plugin-hide-titlebar' 'eog-plugin-light-theme' 'eog-plugin-map' 'eog-plugin-maximize-windows' 'eog-plugin-postasa' 'eog-plugin-pythonconsole' 'eog-plugin-send-by-mail' 'eog-plugin-slideshowshuffle' 'eog-plugins' 'eog-plugins-data' 'eog-plugins-lang' 'eolie' 'eolie-lang' 'eom' 'eom-devel' 'eom-lang' 'eperiodique' 'ephoto' 'ephoto-lang' 'epic' 'epiphany' 'epiphany-branding-openSUSE' 'epiphany-branding-upstream' 'epiphany-lang' 'epour' 'epour-lang' 'epplet-base' 'epson-inkjet-printer-escpr' 'epymc' 'epymc-lang' 'equalx' 'erfa-devel' 'erfa-devel-static' 'eric' 'eric-api' 'erlang' 'erlang-debugger' 'erlang-debugger-src' 'erlang-dialyzer' 'erlang-dialyzer-src' 'erlang-diameter' 'erlang-diameter-src' 'erlang-doc' 'erlang-epmd' 'erlang-et' 'erlang-et-src' 'erlang-jinterface' 'erlang-jinterface-src' 'erlang-observer' 'erlang-observer-src' 'erlang-rabbitmq-client' 'erlang-rebar' 'erlang-rebar-src' 'erlang-reltool' 'erlang-reltool-src' 'erlang-retest' 'erlang-retest-src' 'erlang-sd_notify' 'erlang-src' 'erlang-wx' 'erlang-wx-src' 'erofs-utils' 'espeak' 'espeak-devel' 'espeak-ng' 'espeak-ng-compat' 'espeak-ng-compat-devel' 'espeak-ng-devel' 'espeakedit' 'etags' 'etc-update' 'etcd' 'etcd-for-k8s-image' 'etcdctl' 'etckeeper' 'etckeeper-bash-completion' 'etckeeper-zypp-plugin' 'etherape' 'etherape-lang' 'etrophy' 'etrophy-data' 'etrophy-devel' 'evas-generic-loaders' 'evemu' 'evemu-devel' 'eventstat' 'eventviews-devel' 'evieproto-devel' 'evince' 'evince-devel' 'evince-lang' 'evince-plugin-comicsdocument' 'evince-plugin-djvudocument' 'evince-plugin-dvidocument' 'evince-plugin-pdfdocument' 'evince-plugin-psdocument' 'evince-plugin-tiffdocument' 'evince-plugin-xpsdocument' 'evmctl' 'evolution' 'evolution-data-server' 'evolution-data-server-32bit' 'evolution-data-server-devel' 'evolution-data-server-doc' 'evolution-data-server-lang' 'evolution-devel' 'evolution-ews' 'evolution-ews-lang' 'evolution-lang' 'evolution-plugin-bogofilter' 'evolution-plugin-pst-import' 'evolution-plugin-rss' 'evolution-plugin-rss-lang' 'evolution-plugin-spamassassin' 'evolution-plugin-text-highlight' 'evtest' 'exa' 'exaile' 'exaile-lang' 'exec-maven-plugin' 'exec-maven-plugin-javadoc' 'execstack' 'exempi-tools' 'exercism' 'exfat-utils' 'exif' 'exiftran' 'exim' 'eximon' 'eximstats-html' 'exiv2' 'exiv2-lang' 'exmh' 'exo-branding-openSUSE' 'exo-branding-upstream' 'exo-data' 'exo-devel' 'exo-helpers' 'exo-lang' 'exo-tools' 'exodusii-devel' 'expect' 'expect-devel' 'explain' 'ext3grep' 'ext4magic' 'extra-cmake-modules' 'extra-cmake-modules-doc' 'extract-appdata-icons' 'extreme-tuxracer' 'extreme-tuxracer-data' 'extundelete' 'ez-ipupdate' 'ezstream' 'f2c' 'f2c-devel' 'f2fs-tools' 'f2fs-tools-compat' 'f2fs-tools-devel' 'f3' 'fIcy' 'faac' 'faac' 'faac-debuginfo' 'faac-debugsource' 'faad2' 'faad2' 'faad2-debuginfo' 'faad2-debugsource' 'faba-icon-theme' 'fabtests' 'facedetect' 'faenza-icon-theme' 'faenza-icon-theme-ambiance' 'faenza-icon-theme-dark' 'faenza-icon-theme-darker' 'faenza-icon-theme-darkest' 'faenza-icon-theme-mint' 'faenza-icon-theme-radiance' 'fail2ban' 'fairymax' 'fakechroot' 'fakeroot' 'fakeroot-32bit' 'falkon' 'falkon-gnome-keyring' 'falkon-kde' 'falkon-lang' 'farsi-fonts' 'farstream-data' 'farstream-devel' 'fasd' 'fasterxml-oss-parent' 'fastjar' 'fastjet-devel' 'fastjet-plugin-siscone' 'fastjet-plugin-siscone-devel' 'fastlzlib' 'fastlzlib-devel' 'fatrace' 'fatsort' 'fbdesk' 'fbdesk' 'fbdesk-debuginfo' 'fbdesk-debugsource' 'fbi' 'fbiterm' 'fbpdf' 'fbreader' 'fbterm' 'fcdproplus-udev' 'fcgiwrap' 'fcgiwrap-nginx' 'fcitx' 'fcitx-anthy' 'fcitx-branding-openSUSE' 'fcitx-chewing' 'fcitx-cloudpinyin' 'fcitx-config-gtk3' 'fcitx-devel' 'fcitx-fbterm' 'fcitx-googlepinyin' 'fcitx-gtk2' 'fcitx-gtk2-32bit' 'fcitx-gtk3' 'fcitx-gtk3-32bit' 'fcitx-hangul' 'fcitx-kkc' 'fcitx-libpinyin' 'fcitx-m17n' 'fcitx-mozc' 'fcitx-pinyin' 'fcitx-pinyin-tools' 'fcitx-pylogger' 'fcitx-qt5' 'fcitx-qt5-32bit' 'fcitx-qt5-devel' 'fcitx-quwei' 'fcitx-rime' 'fcitx-sayura' 'fcitx-skin-classic' 'fcitx-skin-dark' 'fcitx-skin-new-air' 'fcitx-skk' 'fcitx-sunpinyin' 'fcitx-table' 'fcitx-table-amharic' 'fcitx-table-arabic' 'fcitx-table-cn-bingchan' 'fcitx-table-cn-cangjie' 'fcitx-table-cn-cantonese' 'fcitx-table-cn-cns11643' 'fcitx-table-cn-dianbao' 'fcitx-table-cn-erbi' 'fcitx-table-cn-wanfeng' 'fcitx-table-cn-wu' 'fcitx-table-cn-wubi' 'fcitx-table-cn-wubi-large' 'fcitx-table-cn-wubi-pinyin' 'fcitx-table-cn-zhengma' 'fcitx-table-cn-zhengma-large' 'fcitx-table-cn-ziran' 'fcitx-table-emoji' 'fcitx-table-extra-lang' 'fcitx-table-hk-cantonese' 'fcitx-table-hk-jyutping' 'fcitx-table-hk-stroke5' 'fcitx-table-ipa-x-sampa' 'fcitx-table-latex' 'fcitx-table-malayalam-compose' 'fcitx-table-malayalam-phonetic' 'fcitx-table-other' 'fcitx-table-ru-rustrad' 'fcitx-table-ru-translit' 'fcitx-table-ru-yawerty' 'fcitx-table-t9' 'fcitx-table-tamil-remington' 'fcitx-table-thai' 'fcitx-table-tools' 'fcitx-table-tw-array30' 'fcitx-table-tw-array30-large' 'fcitx-table-tw-boshiamy' 'fcitx-table-tw-cangjie-large' 'fcitx-table-tw-cangjie3' 'fcitx-table-tw-cangjie5' 'fcitx-table-tw-easy-large' 'fcitx-table-tw-quick-classic' 'fcitx-table-tw-quick3' 'fcitx-table-tw-quick5' 'fcitx-table-tw-smart-cangjie6' 'fcitx-table-ua-translit' 'fcitx-table-vi-qr' 'fcitx-ui-light' 'fcitx-unikey' 'fcitx-zhuyin' 'fcoe-utils' 'fcwnn' 'fcwnn-devel' 'fcwnncom' 'fd-fish-completion' 'fd0ssh' 'fdk-aac' 'fdk-aac-debugsource' 'fdk-aac-devel' 'fdkaac' 'fdkaac' 'fdkaac-debuginfo' 'fdkaac-debugsource' 'featherpad' 'featherpad-lang' 'fec-devel' 'fedfs-utils-admin' 'fedfs-utils-client' 'fedfs-utils-common' 'fedfs-utils-devel' 'fedfs-utils-nsdbparams' 'fedfs-utils-server' 'feh' 'felix-gogo-command' 'felix-gogo-command-javadoc' 'felix-gogo-parent' 'felix-gogo-runtime' 'felix-gogo-runtime-javadoc' 'felix-gogo-shell' 'felix-gogo-shell-javadoc' 'felix-osgi-compendium' 'felix-osgi-compendium-javadoc' 'felix-osgi-core' 'felix-osgi-core-javadoc' 'felix-osgi-foundation' 'felix-osgi-foundation-javadoc' 'felix-parent' 'felix-scr' 'felix-scr-javadoc' 'felix-shell' 'felix-shell-javadoc' 'felix-utils' 'felix-utils-javadoc' 'fence-agents' 'fence-agents-amt_ws' 'fence-agents-devel' 'fence-sanlock' 'festival' 'festival-devel' 'fetchmail' 'fetchmailconf' 'ffado' 'ffado-mixer' 'ffcall' 'ffhevc' 'ffhevc' 'fflas-ffpack-devel' 'fflas-ffpack-doc' 'ffmpeg-2' 'ffmpeg-2-debugsource' 'ffmpeg-2-libavcodec-devel' 'ffmpeg-2-libavdevice-devel' 'ffmpeg-2-libavfilter-devel' 'ffmpeg-2-libavformat-devel' 'ffmpeg-2-libavresample-devel' 'ffmpeg-2-libavutil-devel' 'ffmpeg-2-libpostproc-devel' 'ffmpeg-2-libswresample-devel' 'ffmpeg-2-libswscale-devel' 'ffmpeg-3' 'ffmpeg-3-debugsource' 'ffmpeg-3-libavcodec-devel' 'ffmpeg-3-libavdevice-devel' 'ffmpeg-3-libavfilter-devel' 'ffmpeg-3-libavformat-devel' 'ffmpeg-3-libavresample-devel' 'ffmpeg-3-libavutil-devel' 'ffmpeg-3-libpostproc-devel' 'ffmpeg-3-libswresample-devel' 'ffmpeg-3-libswscale-devel' 'ffmpeg-3-private-devel' 'ffmpeg-4' 'ffmpeg-4-debuginfo' 'ffmpeg-4-debugsource' 'ffmpeg-4-libavcodec-devel' 'ffmpeg-4-libavdevice-devel' 'ffmpeg-4-libavfilter-devel' 'ffmpeg-4-libavformat-devel' 'ffmpeg-4-libavresample-devel' 'ffmpeg-4-libavutil-devel' 'ffmpeg-4-libpostproc-devel' 'ffmpeg-4-libswresample-devel' 'ffmpeg-4-libswscale-devel' 'ffmpeg-4-private-devel' 'ffmpeg2theora' 'ffmpeg2theora' 'ffmpeg2theora-debuginfo' 'ffmpeg2theora-debugsource' 'ffmpegthumbnailer' 'ffmpegyag' 'ffmpegyag' 'ffmpegyag-debuginfo' 'ffmpegyag-debugsource' 'ffmsindex' 'ffnvcodec-devel' 'ffsb' 'fftw3-devel' 'fftw3-gnu-hpc-devel' 'fftw3-gnu-mpich-hpc-devel' 'fftw3-gnu-mvapich2-hpc-devel' 'fftw3-gnu-openmpi1-hpc-devel' 'fftw3-gnu-openmpi2-hpc-devel' 'fftw3-gnu-openmpi3-hpc-devel' 'fftw3-mpi-devel' 'fftw3-openmp-devel' 'fftw3-threads-devel' 'fftw3_3_3_8-gnu-hpc-devel' 'fftw3_3_3_8-gnu-hpc-devel-static' 'fftw3_3_3_8-gnu-mpich-hpc-devel' 'fftw3_3_3_8-gnu-mpich-hpc-devel-static' 'fftw3_3_3_8-gnu-mvapich2-hpc-devel' 'fftw3_3_3_8-gnu-mvapich2-hpc-devel-static' 'fftw3_3_3_8-gnu-openmpi1-hpc-devel' 'fftw3_3_3_8-gnu-openmpi1-hpc-devel-static' 'fftw3_3_3_8-gnu-openmpi2-hpc-devel' 'fftw3_3_3_8-gnu-openmpi2-hpc-devel-static' 'fftw3_3_3_8-gnu-openmpi3-hpc-devel' 'fftw3_3_3_8-gnu-openmpi3-hpc-devel-static' 'ffx264' 'ffx264' 'ffxvid' 'ffxvid' 'fhourstones' 'fhs' 'fife-devel' 'fifechan-devel' 'fifth-leg-font' 'figlet' 'file-devel' 'file-devel-32bit' 'file-roller' 'file-roller-lang' 'file-unpack' 'file_server' 'filebench' 'filelight' 'filelight-lang' 'filemanager-actions' 'filemanager-actions-devel' 'filemanager-actions-lang' 'filesystem-media' 'filezilla' 'filezilla-lang' 'fillets-ng' 'fillets-ng-data' 'filter_audio-devel' 'finalhe' 'finalhe' 'finalhe-debuginfo' 'finalhe-debugsource' 'finch' 'finch-devel' 'findbugs' 'findbugs-bcel' 'findbugs-bcel-javadoc' 'findbugs-javadoc' 'findbugs-tools' 'finger' 'finger-server' 'fio' 'fiona-fio' 'fips' 'fipscheck' 'fipscheck-devel' 'firebird-doc' 'firebird-examples' 'firebird-server' 'firebird-utils' 'firefox-uget-integrator' 'firehol' 'firehol-doc' 'firejail' 'firescope' 'firewall-applet' 'firewall-config' 'firewall-macros' 'firewalld-rpcbind-helper' 'fish' 'fish-devel' 'fityk' 'fityk-devel' 'five-or-more' 'five-or-more-doc' 'five-or-more-lang' 'fkwnn' 'fkwnn-devel' 'flac' 'flac-devel' 'flac-devel-32bit' 'flacon' 'flacon' 'flacon-debuginfo' 'flacon-debugsource' 'flacon-lang' 'flamerobin' 'flann-devel' 'flannel' 'flannel-k8s-yaml' 'flare' 'flare-game' 'flarq' 'flash-player' 'flash-player' 'flash-player-gnome' 'flash-player-ppapi' 'flashfocus' 'flashrom' 'flatbuffers-devel' 'flatpak-builder' 'flatpak-devel' 'fldigi' 'fldigi-lang' 'flex' 'flexdock' 'flickcurl' 'flickcurl-doc' 'flickrnet' 'flickrnet-devel' 'flint-devel' 'florence' 'florence-devel' 'florence-lang' 'flowblade' 'flowblade' 'flowblade-lang' 'flowgrind' 'fltk-devel' 'fltk-devel-32bit' 'fltk-devel-static' 'fluid-soundfont-gs' 'fluidsynth' 'fluidsynth-devel' 'fluidsynth-dssi' 'flute-javadoc' 'fluxbox' 'fluxbox-styles-upstream' 'flxmlrpc-devel' 'fly' 'fmt-devel' 'fnotifystat' 'focuswriter' 'focuswriter-lang' 'folder-color-common' 'folder-color-common-lang' 'folks-devel' 'folks-lang' 'folks-tools' 'foma' 'foma-devel' 'fondu' 'fonehome' 'fonehome-server' 'font-specimen' 'font-specimen-devel' 'font-util' 'fontawesome-fonts' 'fontawesome-fonts-web' 'fontcacheproto-devel' 'fontconfig-devel' 'fontconfig-devel-32bit' 'fontconfig-devel-doc' 'fontconfig-doc' 'fontforge' 'fontforge-devel' 'fontforge-doc' 'fontpackages-devel' 'fonts-KanjiStrokeOrders' 'fonttosfnt' 'fontweak' 'forge-parent' 'forkbomb' 'forkstat' 'form' 'fortune' 'fossil' 'fotowall' 'four-in-a-row' 'four-in-a-row-lang' 'fox16-devel' 'fox16-devel-static' 'fox16-doc' 'fox16-example-apps' 'fparser-devel' 'fpc' 'fpc-doc' 'fpc-src' 'fping' 'fplll' 'fplll-devel' 'fpm2' 'fpm2' 'fpm2-debuginfo' 'fpm2-debugsource' 'fpm2-lang' 'fprintd' 'fprintd-devel' 'fprintd-lang' 'fprintd-pam' 'fprintd-pam-32bit' 'fractal' 'fractal-lang' 'frame' 'frame-devel' 'frameworkintegration-devel' 'frameworkintegration-devel-32bit' 'frameworkintegration-plugin-32bit' 'free-ttf-fonts' 'freealut-devel' 'freecell-solver' 'freecell-solver-devel' 'freeciv' 'freeciv-gtk3' 'freeciv-lang' 'freeciv-qt' 'freedoom' 'freedoom-freedm' 'freedup' 'freeglut-demo' 'freeglut-devel' 'freeglut-devel-32bit' 'freeimage-devel' 'freeipmi' 'freeipmi-bmc-watchdog' 'freeipmi-devel' 'freeipmi-ipmidetectd' 'freeipmi-ipmiseld' 'freeorion' 'freeorion-data' 'freepops' 'freepops' 'freepops-debuginfo' 'freepops-debugsource' 'freeradius-client' 'freeradius-client-devel' 'freeradius-client-libs' 'freeradius-server' 'freeradius-server-devel' 'freeradius-server-doc' 'freeradius-server-krb5' 'freeradius-server-ldap' 'freeradius-server-libs' 'freeradius-server-mysql' 'freeradius-server-perl' 'freeradius-server-postgresql' 'freeradius-server-python' 'freeradius-server-sqlite' 'freeradius-server-utils' 'freerdp' 'freerdp-devel' 'freerdp-server' 'freerdp-wayland' 'freesrp-devel' 'freesrp-udev' 'freetds-config' 'freetds-devel' 'freetds-doc' 'freetds-tools' 'freetuxtv' 'freetuxtv' 'freetuxtv-debuginfo' 'freetuxtv-debugsource' 'freetuxtv-devel' 'freetuxtv-lang' 'freetype' 'freetype-devel' 'freetype-tools' 'freetype2-devel' 'freetype2-devel-32bit' 'freetype2-profile-tti35' 'freexl-devel' 'frei0r-plugins' 'frei0r-plugins-devel' 'frei0r-plugins-opencv' 'frescobaldi' 'freshplayerplugin' 'fribidi-devel' 'frink' 'fritzing' 'fritzing-parts' 'frogatto' 'frogatto-data' 'frogatto-lang' 'frogr' 'frogr-lang' 'froxlor' 'frozen-bubble' 'frozen-bubble-lang' 'frozen-bubble-server' 'fruit21' 'fruit21' 'fruit21-debuginfo' 'fs-check' 'fs-uae' 'fs-uae-arcade' 'fs-uae-launcher' 'fs_mark' 'fsarchiver' 'fslint' 'fslsfonts' 'fstobdf' 'fstrcmp' 'fstrcmp-devel' 'fstrm' 'fstrm-devel' 'fsvs' 'fswebcam' 'ft2demos' 'ftbench' 'ftdiff' 'ftdump' 'ftgamma' 'ftgl-demo' 'ftgl-devel' 'ftgrid' 'ftinspect' 'ftlint' 'ftmulti' 'ftop' 'ftp' 'ftsteutates-sensors' 'ftstring' 'ftvalid' 'ftview' 'ftwnn' 'funkload' 'funny-manpages' 'funny-manpages' 'fuse-devel' 'fuse-devel-static' 'fuse-doc' 'fuse-exfat' 'fuse-oscfs' 'fuse-overlayfs' 'fuse3-devel' 'fuse3-doc' 'fuseiso' 'fusepod' 'fusesmb' 'fusesource-pom' 'fusion-icon' 'fvwm-themes' 'fvwm2' 'fwbuilder' 'fwknop' 'fwknop-gui' 'fwknopd' 'fwnn' 'fwnn-devel' 'fwnncom' 'fwts' 'fwupd' 'fwupd-devel' 'fwupd-lang' 'fxload' 'fzy' 'g3utils' 'g810-led' 'gCue2tracks' 'gCue2tracks' 'gaa' 'gajim' 'gajim-lang' 'gajim-plugin-omemo' 'galaxis' 'galculator' 'galculator-lang' 'gama' 'gamemoded' 'gamin-devel' 'gammaray' 'gammaray-devel' 'gammu' 'gammu-bash-completion' 'gammu-devel' 'gammu-doc' 'gammu-smsd' 'ganglia-devel' 'ganglia-gmetad' 'ganglia-gmetad-skip-bcheck' 'ganglia-gmond' 'ganglia-gmond-modules-python' 'ganglia-web' 'garglk' 'garglk' 'garglk-debuginfo' 'garglk-debugsource' 'garlic' 'garlic-doc' 'gasnet' 'gasnet-devel' 'gasnet-doc' 'gateway_server' 'gaupol' 'gavl' 'gbdfed' 'gbrainy' 'gbrainy-lang' 'gc-devel' 'gcab-devel' 'gcad3d' 'gcal' 'gcal-lang' 'gcc-32bit' 'gcc-PIE' 'gcc-ada' 'gcc-ada-32bit' 'gcc-c++' 'gcc-c++-32bit' 'gcc-d' 'gcc-d-32bit' 'gcc-devel' 'gcc-fortran' 'gcc-fortran-32bit' 'gcc-go' 'gcc-go-32bit' 'gcc-info' 'gcc-locale' 'gcc-obj-c++' 'gcc-objc' 'gcc-objc-32bit' 'gcc6-gij' 'gcc6-gij-debuginfo' 'gcc6-java' 'gcc6-java-debuginfo' 'gcc7' 'gcc7-32bit' 'gcc7-ada' 'gcc7-ada-32bit' 'gcc7-c++' 'gcc7-c++-32bit' 'gcc7-devel' 'gcc7-fortran' 'gcc7-fortran-32bit' 'gcc7-go' 'gcc7-go-32bit' 'gcc7-info' 'gcc7-locale' 'gcc7-obj-c++' 'gcc7-obj-c++-32bit' 'gcc7-objc' 'gcc7-objc-32bit' 'gcc7-testresults' 'gcc8-32bit' 'gcc8-ada' 'gcc8-ada-32bit' 'gcc8-c++' 'gcc8-c++-32bit' 'gcc8-devel' 'gcc8-fortran' 'gcc8-fortran-32bit' 'gcc8-go' 'gcc8-go-32bit' 'gcc8-info' 'gcc8-locale' 'gcc8-obj-c++' 'gcc8-obj-c++-32bit' 'gcc8-objc' 'gcc8-objc-32bit' 'gcc8-testresults' 'gcc9-32bit' 'gcc9-ada' 'gcc9-ada-32bit' 'gcc9-c++' 'gcc9-c++-32bit' 'gcc9-d' 'gcc9-d-32bit' 'gcc9-devel' 'gcc9-fortran' 'gcc9-fortran-32bit' 'gcc9-go' 'gcc9-go-32bit' 'gcc9-info' 'gcc9-locale' 'gcc9-obj-c++' 'gcc9-obj-c++-32bit' 'gcc9-objc' 'gcc9-objc-32bit' 'gcc9-testresults' 'gccmakedep' 'gcdemu' 'gcdemu-lang' 'gcin' 'gcin-anthy' 'gcin-anthy-32bit' 'gcin-branding-openSUSE' 'gcin-branding-upstream' 'gcin-gtk2' 'gcin-gtk2-32bit' 'gcin-gtk3' 'gcin-gtk3-32bit' 'gcin-qt5' 'gcin-qt5-32bit' 'gcolor2' 'gcolor3' 'gcompris' 'gcompris-devel' 'gcompris-qt' 'gcompris-qt-activities' 'gcompris-qt-lang' 'gcompris-qt-voices' 'gcompris-voices-ar' 'gcompris-voices-br' 'gcompris-voices-cs' 'gcompris-voices-da' 'gcompris-voices-de' 'gcompris-voices-el' 'gcompris-voices-en' 'gcompris-voices-es' 'gcompris-voices-eu' 'gcompris-voices-fi' 'gcompris-voices-fr' 'gcompris-voices-hi' 'gcompris-voices-hu' 'gcompris-voices-id' 'gcompris-voices-it' 'gcompris-voices-mr' 'gcompris-voices-nb' 'gcompris-voices-nl' 'gcompris-voices-pt' 'gcompris-voices-pt-br' 'gcompris-voices-ru' 'gcompris-voices-so' 'gcompris-voices-sr' 'gcompris-voices-sv' 'gcompris-voices-tr' 'gconf-sharp-peditors2' 'gconf-sharp2' 'gconf2-32bit' 'gconf2-devel' 'gcovr' 'gcovr-doc' 'gcr-ssh-askpass' 'gcstar' 'gd' 'gd-devel' 'gd-devel-32bit' 'gdal' 'gdal-devel' 'gdata-sharp' 'gdata-sharp-devel' 'gdb-testresults' 'gdbm-devel' 'gdbm-devel-32bit' 'gdbserver' 'gdk-pixbuf-devel' 'gdk-pixbuf-devel-32bit' 'gdk-pixbuf-loader-libopenraw' 'gdk-pixbuf-loader-libopenraw-32bit' 'gdk-pixbuf-loader-rsvg-32bit' 'gdl-devel' 'gdl-lang' 'gdlmm-devel' 'gdm' 'gdm-branding-openSUSE' 'gdm-branding-upstream' 'gdm-devel' 'gdm-lang' 'gdm-systemd' 'gdouros-abydos-fonts' 'gdouros-abydos-fonts-doc' 'gdouros-aegean-fonts' 'gdouros-aegyptus-fonts' 'gdouros-akkadian-fonts' 'gdouros-alfios-fonts' 'gdouros-analecta-fonts' 'gdouros-anatolian-fonts' 'gdouros-atavyros-fonts' 'gdouros-maya-fonts' 'gdouros-musica-fonts' 'gdouros-symbola-fonts' 'gdouros-text-fonts' 'gdouros-unidings-fonts' 'geany' 'geany-devel' 'geany-doc' 'geany-lang' 'geany-plugins' 'geany-plugins-lang' 'geary' 'geary-lang' 'gebaar-libinput' 'geda-base' 'geda-doc' 'geda-examples' 'geda-gaf' 'geda-gattrib' 'geda-gnetlist' 'geda-gschem' 'geda-gsymcheck' 'geda-symbols' 'geda-utils' 'geda-xgsch2pcb' 'gedit' 'gedit-devel' 'gedit-lang' 'gedit-latex-lang' 'gedit-plugin-bookmarks' 'gedit-plugin-bracketcompletion' 'gedit-plugin-charmap' 'gedit-plugin-codecomment' 'gedit-plugin-colorpicker' 'gedit-plugin-colorschemer' 'gedit-plugin-commander' 'gedit-plugin-devhelp' 'gedit-plugin-drawspaces' 'gedit-plugin-findinfiles' 'gedit-plugin-git' 'gedit-plugin-joinlines' 'gedit-plugin-latex' 'gedit-plugin-multiedit' 'gedit-plugin-smartspaces' 'gedit-plugin-synctex' 'gedit-plugin-terminal' 'gedit-plugin-textsize' 'gedit-plugin-translate' 'gedit-plugin-wordcompletion' 'gedit-plugin-zeitgeist' 'gedit-plugins' 'gedit-plugins-data' 'gedit-plugins-lang' 'gedit-theme-adapta' 'gedit-theme-plata' 'geekodoc' 'geeqie' 'geeqie-lang' 'gegl' 'gegl-0_4' 'gegl-0_4-lang' 'gegl-devel' 'gegl-doc' 'geis-devel' 'geis-tools' 'gemrb' 'genders' 'genders-base' 'genders-devel' 'genders-perl-compat' 'geners-devel' 'gengetopt' 'genius' 'genius-devel' 'genius-lang' 'genromfs' 'gentoo' 'gentoo' 'gentoo-debuginfo' 'gentoo-debugsource' 'geoclue2-devel' 'geocode-glib' 'geocode-glib-devel' 'geoipupdate' 'geos-devel' 'geotiff' 'geotiff-devel' 'gerbv' 'gerbv-devel' 'geronimo-annotation-1_0-api' 'geronimo-commonj-1_1-apis' 'geronimo-corba-1_0-apis' 'geronimo-corba-2_3-apis' 'geronimo-ejb-2_1-api' 'geronimo-ejb-3_0-api' 'geronimo-el-1_0-api' 'geronimo-interceptor-3_0-api' 'geronimo-j2ee-1_4-apis' 'geronimo-j2ee-connector-1_5-api' 'geronimo-j2ee-deployment-1_1-api' 'geronimo-j2ee-management-1_0-api' 'geronimo-j2ee-management-1_1-api' 'geronimo-jacc-1_0-api' 'geronimo-jacc-1_1-api' 'geronimo-jaf-1_0_2-api' 'geronimo-jaf-1_1-api' 'geronimo-javaee-deployment-1_1-api' 'geronimo-javamail-1_3_1-api' 'geronimo-javamail-1_4-api' 'geronimo-jaxr-1_0-api' 'geronimo-jaxrpc-1_1-api' 'geronimo-jms-1_1-api' 'geronimo-jpa-3_0-api' 'geronimo-jsp-2_0-api' 'geronimo-jsp-2_1-api' 'geronimo-jta-1_0_1B-api' 'geronimo-jta-1_1-api' 'geronimo-qname-1_1-api' 'geronimo-saaj-1_1-api' 'geronimo-servlet-2_4-api' 'geronimo-servlet-2_5-api' 'geronimo-specs-pom' 'geronimo-stax-1_0-api' 'geronimo-ws-metadata-2_0-api' 'get_iplayer' 'get_iplayer' 'get_iplayer-pvr' 'getdata' 'getdata-devel' 'getdata-doc' 'getdp' 'getdp-devel' 'getdp-doc' 'getmail' 'getmail-doc' 'gettext-csharp' 'gettext-its-gtk3' 'gettext-its-gtk4' 'gettext-java' 'gettext-runtime-32bit' 'gettext-runtime-mini-tools-doc' 'gettext-runtime-tools-doc' 'gexif' 'gexif-lang' 'gf2x-devel' 'gfan' 'gfbgraph-devel' 'gfio' 'gflags' 'gflags-devel' 'gflags-devel-static' 'gfs2-utils' 'gfxboot' 'gfxboot-branding-KDE' 'gfxboot-branding-openSUSE' 'gfxboot-branding-upstream' 'gfxboot-devel' 'ghc' 'ghc-Cabal' 'ghc-Cabal-devel' 'ghc-Diff' 'ghc-Diff-devel' 'ghc-Glob' 'ghc-Glob-devel' 'ghc-HTTP' 'ghc-HTTP-devel' 'ghc-HUnit' 'ghc-HUnit-devel' 'ghc-HsYAML' 'ghc-HsYAML-devel' 'ghc-JuicyPixels' 'ghc-JuicyPixels-devel' 'ghc-QuickCheck' 'ghc-QuickCheck-devel' 'ghc-SDL' 'ghc-SDL-devel' 'ghc-SDL-image' 'ghc-SDL-image-devel' 'ghc-SDL-mixer' 'ghc-SDL-mixer-devel' 'ghc-SHA' 'ghc-SHA-devel' 'ghc-ShellCheck' 'ghc-ShellCheck-devel' 'ghc-StateVar' 'ghc-StateVar-devel' 'ghc-X11' 'ghc-X11-devel' 'ghc-X11-xft' 'ghc-X11-xft-devel' 'ghc-adjunctions' 'ghc-adjunctions-devel' 'ghc-aeson' 'ghc-aeson-compat' 'ghc-aeson-compat-devel' 'ghc-aeson-devel' 'ghc-aeson-pretty' 'ghc-aeson-pretty-devel' 'ghc-annotated-wl-pprint' 'ghc-annotated-wl-pprint-devel' 'ghc-ansi-terminal' 'ghc-ansi-terminal-devel' 'ghc-ansi-wl-pprint' 'ghc-ansi-wl-pprint-devel' 'ghc-array' 'ghc-array-devel' 'ghc-asn1-encoding' 'ghc-asn1-encoding-devel' 'ghc-asn1-parse' 'ghc-asn1-parse-devel' 'ghc-asn1-types' 'ghc-asn1-types-devel' 'ghc-async' 'ghc-async-devel' 'ghc-attoparsec' 'ghc-attoparsec-devel' 'ghc-attoparsec-iso8601' 'ghc-attoparsec-iso8601-devel' 'ghc-auto-update' 'ghc-auto-update-devel' 'ghc-base' 'ghc-base-compat' 'ghc-base-compat-devel' 'ghc-base-devel' 'ghc-base-orphans' 'ghc-base-orphans-devel' 'ghc-base-prelude' 'ghc-base-prelude-devel' 'ghc-base16-bytestring' 'ghc-base16-bytestring-devel' 'ghc-base64-bytestring' 'ghc-base64-bytestring-devel' 'ghc-basement' 'ghc-basement-devel' 'ghc-bifunctors' 'ghc-bifunctors-devel' 'ghc-binary' 'ghc-binary-devel' 'ghc-bindings-uname' 'ghc-bindings-uname-devel' 'ghc-bitarray' 'ghc-bitarray-devel' 'ghc-blaze-builder' 'ghc-blaze-builder-devel' 'ghc-blaze-html' 'ghc-blaze-html-devel' 'ghc-blaze-markup' 'ghc-blaze-markup-devel' 'ghc-byteable' 'ghc-byteable-devel' 'ghc-bytestring' 'ghc-bytestring-devel' 'ghc-cabal-doctest' 'ghc-cabal-doctest-devel' 'ghc-cabal2spec' 'ghc-cabal2spec-devel' 'ghc-call-stack' 'ghc-call-stack-devel' 'ghc-case-insensitive' 'ghc-case-insensitive-devel' 'ghc-cereal' 'ghc-cereal-devel' 'ghc-clock' 'ghc-clock-devel' 'ghc-cmark-gfm' 'ghc-cmark-gfm-devel' 'ghc-cmdargs' 'ghc-cmdargs-devel' 'ghc-colour' 'ghc-colour-devel' 'ghc-comonad' 'ghc-comonad-devel' 'ghc-compiler' 'ghc-conduit' 'ghc-conduit-combinators' 'ghc-conduit-combinators-devel' 'ghc-conduit-devel' 'ghc-conduit-extra' 'ghc-conduit-extra-devel' 'ghc-connection' 'ghc-connection-devel' 'ghc-constraints' 'ghc-constraints-devel' 'ghc-containers' 'ghc-containers-devel' 'ghc-contravariant' 'ghc-contravariant-devel' 'ghc-cookie' 'ghc-cookie-devel' 'ghc-cryptohash' 'ghc-cryptohash-devel' 'ghc-cryptohash-sha256' 'ghc-cryptohash-sha256-devel' 'ghc-cryptonite' 'ghc-cryptonite-conduit' 'ghc-cryptonite-conduit-devel' 'ghc-cryptonite-devel' 'ghc-data-default' 'ghc-data-default-class' 'ghc-data-default-class-devel' 'ghc-data-default-devel' 'ghc-data-default-instances-containers' 'ghc-data-default-instances-containers-devel' 'ghc-data-default-instances-dlist' 'ghc-data-default-instances-dlist-devel' 'ghc-data-default-instances-old-locale' 'ghc-data-default-instances-old-locale-devel' 'ghc-dbus' 'ghc-dbus-devel' 'ghc-deepseq' 'ghc-deepseq-devel' 'ghc-digest' 'ghc-digest-devel' 'ghc-directory' 'ghc-directory-devel' 'ghc-distribution-opensuse' 'ghc-distribution-opensuse-devel' 'ghc-distributive' 'ghc-distributive-devel' 'ghc-dlist' 'ghc-dlist-devel' 'ghc-doctemplates' 'ghc-doctemplates-devel' 'ghc-easy-file' 'ghc-easy-file-devel' 'ghc-echo' 'ghc-echo-devel' 'ghc-ed25519' 'ghc-ed25519-devel' 'ghc-edit-distance' 'ghc-edit-distance-devel' 'ghc-either' 'ghc-either-devel' 'ghc-enclosed-exceptions' 'ghc-enclosed-exceptions-devel' 'ghc-erf' 'ghc-erf-devel' 'ghc-exceptions' 'ghc-exceptions-devel' 'ghc-extensible-exceptions' 'ghc-extensible-exceptions-devel' 'ghc-extra' 'ghc-extra-devel' 'ghc-fail' 'ghc-fail-devel' 'ghc-fast-logger' 'ghc-fast-logger-devel' 'ghc-file-embed' 'ghc-file-embed-devel' 'ghc-filelock' 'ghc-filelock-devel' 'ghc-filepath' 'ghc-filepath-devel' 'ghc-foldl' 'ghc-foldl-devel' 'ghc-free' 'ghc-free-devel' 'ghc-fsnotify' 'ghc-fsnotify-devel' 'ghc-generic-deriving' 'ghc-generic-deriving-devel' 'ghc-ghc' 'ghc-ghc-boot' 'ghc-ghc-boot-devel' 'ghc-ghc-boot-th' 'ghc-ghc-boot-th-devel' 'ghc-ghc-compact' 'ghc-ghc-compact-devel' 'ghc-ghc-devel' 'ghc-ghc-heap' 'ghc-ghc-heap-devel' 'ghc-ghci' 'ghc-ghci-devel' 'ghc-gitrev' 'ghc-gitrev-devel' 'ghc-hackage-security' 'ghc-hackage-security-devel' 'ghc-haddock-library' 'ghc-haddock-library-devel' 'ghc-hashable' 'ghc-hashable-devel' 'ghc-haskeline' 'ghc-haskeline-devel' 'ghc-haskell-src-exts' 'ghc-haskell-src-exts-devel' 'ghc-hi-file-parser' 'ghc-hi-file-parser-devel' 'ghc-hinotify' 'ghc-hinotify-devel' 'ghc-hostname' 'ghc-hostname-devel' 'ghc-hourglass' 'ghc-hourglass-devel' 'ghc-hpack' 'ghc-hpack-devel' 'ghc-hpc' 'ghc-hpc-devel' 'ghc-hs-bibutils' 'ghc-hs-bibutils-devel' 'ghc-hsemail' 'ghc-hsemail-devel' 'ghc-hslua' 'ghc-hslua-devel' 'ghc-hslua-module-system' 'ghc-hslua-module-system-devel' 'ghc-hslua-module-text' 'ghc-hslua-module-text-devel' 'ghc-hspec' 'ghc-hspec-core' 'ghc-hspec-core-devel' 'ghc-hspec-devel' 'ghc-hspec-discover' 'ghc-hspec-discover-devel' 'ghc-hspec-expectations' 'ghc-hspec-expectations-devel' 'ghc-hspec-smallcheck' 'ghc-hspec-smallcheck-devel' 'ghc-http-api-data' 'ghc-http-api-data-devel' 'ghc-http-client' 'ghc-http-client-devel' 'ghc-http-client-tls' 'ghc-http-client-tls-devel' 'ghc-http-conduit' 'ghc-http-conduit-devel' 'ghc-http-download' 'ghc-http-download-devel' 'ghc-http-types' 'ghc-http-types-devel' 'ghc-hxt' 'ghc-hxt-charproperties' 'ghc-hxt-charproperties-devel' 'ghc-hxt-devel' 'ghc-hxt-regex-xmlschema' 'ghc-hxt-regex-xmlschema-devel' 'ghc-hxt-unicode' 'ghc-hxt-unicode-devel' 'ghc-infer-license' 'ghc-infer-license-devel' 'ghc-integer-logarithms' 'ghc-integer-logarithms-devel' 'ghc-invariant' 'ghc-invariant-devel' 'ghc-ipynb' 'ghc-ipynb-devel' 'ghc-iso8601-time' 'ghc-iso8601-time-devel' 'ghc-iwlib' 'ghc-iwlib-devel' 'ghc-json' 'ghc-json-devel' 'ghc-kan-extensions' 'ghc-kan-extensions-devel' 'ghc-lens' 'ghc-lens-devel' 'ghc-libiserv' 'ghc-libiserv-devel' 'ghc-libraries' 'ghc-libxml-sax' 'ghc-libxml-sax-devel' 'ghc-libyaml' 'ghc-libyaml-devel' 'ghc-lifted-async' 'ghc-lifted-async-devel' 'ghc-lifted-base' 'ghc-lifted-base-devel' 'ghc-logict' 'ghc-logict-devel' 'ghc-managed' 'ghc-managed-devel' 'ghc-math-functions' 'ghc-math-functions-devel' 'ghc-megaparsec' 'ghc-megaparsec-devel' 'ghc-memory' 'ghc-memory-devel' 'ghc-microlens' 'ghc-microlens-devel' 'ghc-microlens-th' 'ghc-microlens-th-devel' 'ghc-mime-types' 'ghc-mime-types-devel' 'ghc-mintty' 'ghc-mintty-devel' 'ghc-monad-control' 'ghc-monad-control-devel' 'ghc-monad-logger' 'ghc-monad-logger-devel' 'ghc-monad-loops' 'ghc-monad-loops-devel' 'ghc-mono-traversable' 'ghc-mono-traversable-devel' 'ghc-mtl' 'ghc-mtl-devel' 'ghc-mustache' 'ghc-mustache-devel' 'ghc-mwc-random' 'ghc-mwc-random-devel' 'ghc-neat-interpolation' 'ghc-neat-interpolation-devel' 'ghc-network' 'ghc-network-devel' 'ghc-network-uri' 'ghc-network-uri-devel' 'ghc-old-locale' 'ghc-old-locale-devel' 'ghc-old-time' 'ghc-old-time-devel' 'ghc-open-browser' 'ghc-open-browser-devel' 'ghc-optional-args' 'ghc-optional-args-devel' 'ghc-optparse-applicative' 'ghc-optparse-applicative-devel' 'ghc-optparse-simple' 'ghc-optparse-simple-devel' 'ghc-pandoc' 'ghc-pandoc-citeproc' 'ghc-pandoc-citeproc-devel' 'ghc-pandoc-devel' 'ghc-pandoc-types' 'ghc-pandoc-types-devel' 'ghc-pantry' 'ghc-pantry-devel' 'ghc-parallel' 'ghc-parallel-devel' 'ghc-parsec' 'ghc-parsec-class' 'ghc-parsec-class-devel' 'ghc-parsec-devel' 'ghc-parsec-numbers' 'ghc-parsec-numbers-devel' 'ghc-parser-combinators' 'ghc-parser-combinators-devel' 'ghc-path' 'ghc-path-devel' 'ghc-path-io' 'ghc-path-io-devel' 'ghc-path-pieces' 'ghc-path-pieces-devel' 'ghc-pem' 'ghc-pem-devel' 'ghc-persistent' 'ghc-persistent-devel' 'ghc-persistent-sqlite' 'ghc-persistent-sqlite-devel' 'ghc-persistent-template' 'ghc-persistent-template-devel' 'ghc-pretty' 'ghc-pretty-devel' 'ghc-primitive' 'ghc-primitive-devel' 'ghc-process' 'ghc-process-devel' 'ghc-profunctors' 'ghc-profunctors-devel' 'ghc-project-template' 'ghc-project-template-devel' 'ghc-quickcheck-io' 'ghc-quickcheck-io-devel' 'ghc-random' 'ghc-random-devel' 'ghc-reflection' 'ghc-reflection-devel' 'ghc-regex-applicative' 'ghc-regex-applicative-devel' 'ghc-regex-applicative-text' 'ghc-regex-applicative-text-devel' 'ghc-regex-base' 'ghc-regex-base-devel' 'ghc-regex-compat' 'ghc-regex-compat-devel' 'ghc-regex-pcre-builtin' 'ghc-regex-pcre-builtin-devel' 'ghc-regex-posix' 'ghc-regex-posix-devel' 'ghc-regex-tdfa' 'ghc-regex-tdfa-devel' 'ghc-resolv' 'ghc-resolv-devel' 'ghc-resource-pool' 'ghc-resource-pool-devel' 'ghc-resourcet' 'ghc-resourcet-devel' 'ghc-retry' 'ghc-retry-devel' 'ghc-rfc5051' 'ghc-rfc5051-devel' 'ghc-rio' 'ghc-rio-devel' 'ghc-rio-orphans' 'ghc-rio-orphans-devel' 'ghc-rio-prettyprint' 'ghc-rio-prettyprint-devel' 'ghc-rpm-macros' 'ghc-rpm-macros-extra' 'ghc-safe' 'ghc-safe-devel' 'ghc-safe-exceptions' 'ghc-safe-exceptions-devel' 'ghc-scientific' 'ghc-scientific-devel' 'ghc-semigroupoids' 'ghc-semigroupoids-devel' 'ghc-semigroups' 'ghc-semigroups-devel' 'ghc-setenv' 'ghc-setenv-devel' 'ghc-setlocale' 'ghc-setlocale-devel' 'ghc-shelly' 'ghc-shelly-devel' 'ghc-silently' 'ghc-silently-devel' 'ghc-skylighting' 'ghc-skylighting-core' 'ghc-skylighting-core-devel' 'ghc-skylighting-devel' 'ghc-smallcheck' 'ghc-smallcheck-devel' 'ghc-socks' 'ghc-socks-devel' 'ghc-split' 'ghc-split-devel' 'ghc-splitmix' 'ghc-splitmix-devel' 'ghc-stack' 'ghc-stack-devel' 'ghc-stm' 'ghc-stm-chans' 'ghc-stm-chans-devel' 'ghc-stm-devel' 'ghc-store' 'ghc-store-core' 'ghc-store-core-devel' 'ghc-store-devel' 'ghc-streaming-commons' 'ghc-streaming-commons-devel' 'ghc-syb' 'ghc-syb-devel' 'ghc-system-fileio' 'ghc-system-fileio-devel' 'ghc-system-filepath' 'ghc-system-filepath-devel' 'ghc-tagged' 'ghc-tagged-devel' 'ghc-tagsoup' 'ghc-tagsoup-devel' 'ghc-tar' 'ghc-tar-conduit' 'ghc-tar-conduit-devel' 'ghc-tar-devel' 'ghc-template-haskell' 'ghc-template-haskell-devel' 'ghc-temporary' 'ghc-temporary-devel' 'ghc-terminal-size' 'ghc-terminal-size-devel' 'ghc-terminfo' 'ghc-terminfo-devel' 'ghc-texmath' 'ghc-texmath-devel' 'ghc-text' 'ghc-text-devel' 'ghc-text-metrics' 'ghc-text-metrics-devel' 'ghc-tf-random' 'ghc-tf-random-devel' 'ghc-th-abstraction' 'ghc-th-abstraction-devel' 'ghc-th-expand-syns' 'ghc-th-expand-syns-devel' 'ghc-th-lift' 'ghc-th-lift-devel' 'ghc-th-lift-instances' 'ghc-th-lift-instances-devel' 'ghc-th-orphans' 'ghc-th-orphans-devel' 'ghc-th-reify-many' 'ghc-th-reify-many-devel' 'ghc-th-utilities' 'ghc-th-utilities-devel' 'ghc-time' 'ghc-time-compat' 'ghc-time-compat-devel' 'ghc-time-devel' 'ghc-time-locale-compat' 'ghc-time-locale-compat-devel' 'ghc-timezone-olson' 'ghc-timezone-olson-devel' 'ghc-timezone-series' 'ghc-timezone-series-devel' 'ghc-tls' 'ghc-tls-devel' 'ghc-transformers' 'ghc-transformers-base' 'ghc-transformers-base-devel' 'ghc-transformers-compat' 'ghc-transformers-compat-devel' 'ghc-transformers-devel' 'ghc-turtle' 'ghc-turtle-devel' 'ghc-typed-process' 'ghc-typed-process-devel' 'ghc-unicode-transforms' 'ghc-unicode-transforms-devel' 'ghc-unix' 'ghc-unix-compat' 'ghc-unix-compat-devel' 'ghc-unix-devel' 'ghc-unix-time' 'ghc-unix-time-devel' 'ghc-unliftio' 'ghc-unliftio-core' 'ghc-unliftio-core-devel' 'ghc-unliftio-devel' 'ghc-unordered-containers' 'ghc-unordered-containers-devel' 'ghc-uri-bytestring' 'ghc-uri-bytestring-devel' 'ghc-utf8-string' 'ghc-utf8-string-devel' 'ghc-uuid-types' 'ghc-uuid-types-devel' 'ghc-vector' 'ghc-vector-algorithms' 'ghc-vector-algorithms-devel' 'ghc-vector-builder' 'ghc-vector-builder-devel' 'ghc-vector-devel' 'ghc-vector-th-unbox' 'ghc-vector-th-unbox-devel' 'ghc-void' 'ghc-void-devel' 'ghc-x509' 'ghc-x509-devel' 'ghc-x509-store' 'ghc-x509-store-devel' 'ghc-x509-system' 'ghc-x509-system-devel' 'ghc-x509-validation' 'ghc-x509-validation-devel' 'ghc-xhtml' 'ghc-xhtml-devel' 'ghc-xml' 'ghc-xml-conduit' 'ghc-xml-conduit-devel' 'ghc-xml-devel' 'ghc-xml-types' 'ghc-xml-types-devel' 'ghc-xmobar' 'ghc-xmobar-devel' 'ghc-xmonad' 'ghc-xmonad-contrib' 'ghc-xmonad-contrib-devel' 'ghc-xmonad-devel' 'ghc-yaml' 'ghc-yaml-devel' 'ghc-zip-archive' 'ghc-zip-archive-devel' 'ghc-zlib' 'ghc-zlib-devel' 'ghex' 'ghex-devel' 'ghex-lang' 'ghostscript-devel' 'ghostscript-fonts' 'ghostscript-fonts-grops' 'ghostview' 'ghostwriter' 'ghostwriter-lang' 'giada' 'giblib-devel' 'giflib-devel' 'giflib-devel-32bit' 'giflib-progs' 'gifsicle' 'gigedit' 'gigedit' 'gigedit-debuginfo' 'gigedit-debugsource' 'giggle' 'giggle-devel' 'giggle-lang' 'gigolo' 'gigolo-lang' 'gimmix' 'gimmix' 'gimmix-debuginfo' 'gimmix-debugsource' 'gimp' 'gimp-devel' 'gimp-gap' 'gimp-gap-lang' 'gimp-help' 'gimp-help-ca' 'gimp-help-da' 'gimp-help-de' 'gimp-help-el' 'gimp-help-en_GB' 'gimp-help-es' 'gimp-help-fi' 'gimp-help-fr' 'gimp-help-hr' 'gimp-help-it' 'gimp-help-ja' 'gimp-help-ko' 'gimp-help-lt' 'gimp-help-nl' 'gimp-help-nn' 'gimp-help-pl' 'gimp-help-pt_BR' 'gimp-help-ru' 'gimp-help-sl' 'gimp-help-sv' 'gimp-help-zh' 'gimp-lang' 'gimp-plugin-aa' 'gimp-plugin-dds' 'gimp-plugin-dds-doc' 'gimp-plugin-lqr' 'gimp-plugin-lqr-lang' 'gimp-plugins-python' 'gimp-save-for-web' 'gimp-save-for-web-lang' 'gimp-ufraw' 'ginac' 'gio-branding-upstream' 'gio-sharp' 'gio-sharp-devel' 'gio-sharp3' 'gio-sharp3-devel' 'girara-devel' 'git-arch' 'git-bz' 'git-cola' 'git-credential-gnome-keyring' 'git-credential-libsecret' 'git-daemon' 'git-doc' 'git-merge-changelog' 'git-p4' 'git-remote-gcrypt' 'git-review' 'git-sync' 'git-test' 'git-web' 'gitg' 'gitg-lang' 'gitolite' 'gitslave' 'gitslave-doc' 'givaro-devel' 'givaro-doc' 'gjiten' 'gjs' 'gkeyfile-sharp' 'gkeyfile-sharp-devel' 'gkrellm' 'gkrellm-cpupower' 'gkrellm-devel' 'gkrellm-lang' 'gkrellmd' 'gl2ps-devel' 'glabels' 'glabels-devel' 'glabels-lang' 'glade' 'glade-catalog-anjuta' 'glade-catalog-evolution' 'glade-catalog-gitg' 'glade-catalog-gtkhtml' 'glade-catalog-gtksourceview' 'glade-catalog-gtksourceview4' 'glade-catalog-libhandy' 'glade-catalog-libpeas' 'glade-lang' 'glade-sharp2' 'glassfish-annotation-api' 'glassfish-annotation-api-javadoc' 'glassfish-dtd-parser' 'glassfish-el' 'glassfish-el-api' 'glassfish-el-javadoc' 'glassfish-jsp-api' 'glassfish-jsp-api-javadoc' 'glassfish-master-pom' 'glassfish-servlet-api' 'glassfish-servlet-api-javadoc' 'glaurung121' 'glaurung121' 'glaurung121-debuginfo' 'glaurung121-debugsource' 'glaurung22' 'glaurung22' 'glaurung22-debuginfo' 'glaurung22-debugsource' 'glava' 'glew' 'glew-devel' 'glfw2-devel' 'gli' 'gli-devel' 'gli-doc' 'glib-networking-32bit' 'glib-sharp2' 'glib-sharp3' 'glib2-devel' 'glib2-devel-32bit' 'glib2-devel-static' 'glib2-tests' 'glib2-tools-32bit' 'glibc-devel-32bit' 'glibc-devel-static' 'glibc-devel-static-32bit' 'glibc-html' 'glibc-i18ndata' 'glibc-info' 'glibc-locale-base-32bit' 'glibc-profile' 'glibc-profile-32bit' 'glibc-utils' 'glibc-utils-32bit' 'glibmm2-devel' 'glibmm2_4-devel' 'glm-devel' 'glm-doc' 'glmark2' 'global' 'glog-devel' 'glom' 'glom-lang' 'gloox-devel' 'glpk' 'glpk-devel' 'glpk-doc' 'glslang-devel' 'glu-devel' 'glu-devel-32bit' 'glucat-devel' 'glucat-doc' 'gluegen2' 'gluegen2-devel' 'glusterfs' 'glusterfs-devel' 'glyr-devel' 'glyrc' 'gmerlin' 'gmerlin' 'gmerlin-alsamixer' 'gmerlin-alsamixer-debuginfo' 'gmerlin-avdecoder' 'gmerlin-avdecoder' 'gmerlin-avdecoder-debuginfo' 'gmerlin-avdecoder-debugsource' 'gmerlin-avdecoder-lang' 'gmerlin-avdecoder-plugins' 'gmerlin-avdecoder-plugins-debuginfo' 'gmerlin-debuginfo' 'gmerlin-doc' 'gmerlin-effectv' 'gmerlin-effectv' 'gmerlin-effectv-debuginfo' 'gmerlin-effectv-debugsource' 'gmerlin-encoders' 'gmerlin-encoders' 'gmerlin-encoders-debuginfo' 'gmerlin-encoders-debugsource' 'gmerlin-encoders-lang' 'gmerlin-gavf-tools' 'gmerlin-gavf-tools-debuginfo' 'gmerlin-jack' 'gmerlin-jack-debuginfo' 'gmerlin-kbd' 'gmerlin-kbd-debuginfo' 'gmerlin-lang' 'gmerlin-player' 'gmerlin-player-debuginfo' 'gmerlin-plugincfg' 'gmerlin-plugincfg-debuginfo' 'gmerlin-recorder' 'gmerlin-recorder-debuginfo' 'gmerlin-transcoder' 'gmerlin-transcoder-debuginfo' 'gmerlin-utils' 'gmerlin-utils-debuginfo' 'gmerlin-visualizer' 'gmerlin-visualizer-debuginfo' 'gmime-devel' 'gmime2_6-devel' 'gmime2_6-sharp' 'gmock' 'gmp-devel-32bit' 'gmp-ecm' 'gmp-ecm-devel' 'gmp3info' 'gmp3info-debuginfo' 'gmpc' 'gmpc' 'gmpc-alarm' 'gmpc-alarm' 'gmpc-alarm-debuginfo' 'gmpc-alarm-debugsource' 'gmpc-avahi' 'gmpc-avahi' 'gmpc-avahi-debuginfo' 'gmpc-avahi-debugsource' 'gmpc-awn' 'gmpc-awn' 'gmpc-awn-debuginfo' 'gmpc-awn-debugsource' 'gmpc-debuginfo' 'gmpc-debugsource' 'gmpc-devel' 'gmpc-discogs' 'gmpc-discogs' 'gmpc-discogs-debuginfo' 'gmpc-discogs-debugsource' 'gmpc-doc' 'gmpc-extraplaylist' 'gmpc-extraplaylist' 'gmpc-extraplaylist-debuginfo' 'gmpc-extraplaylist-debugsource' 'gmpc-last-fm' 'gmpc-last-fm' 'gmpc-last-fm-debuginfo' 'gmpc-last-fm-debugsource' 'gmpc-libnotify' 'gmpc-libnotify' 'gmpc-libnotify-debuginfo' 'gmpc-libnotify-debugsource' 'gmpc-lirc' 'gmpc-lirc' 'gmpc-lirc-debuginfo' 'gmpc-lirc-debugsource' 'gmpc-lyrics' 'gmpc-lyrics' 'gmpc-lyrics-debuginfo' 'gmpc-lyrics-debugsource' 'gmpc-lyricsplugin' 'gmpc-lyricsplugin' 'gmpc-lyricsplugin-debuginfo' 'gmpc-lyricsplugin-debugsource' 'gmpc-lyricwiki' 'gmpc-lyricwiki' 'gmpc-lyricwiki-debuginfo' 'gmpc-lyricwiki-debugsource' 'gmpc-mdcover' 'gmpc-mdcover' 'gmpc-mdcover-debuginfo' 'gmpc-mdcover-debugsource' 'gmpc-mmkeys' 'gmpc-mmkeys' 'gmpc-mmkeys-debuginfo' 'gmpc-mmkeys-debugsource' 'gmpc-mserver' 'gmpc-mserver' 'gmpc-mserver-debuginfo' 'gmpc-mserver-debugsource' 'gmpc-notify-osd' 'gmpc-notify-osd' 'gmpc-notify-osd-debuginfo' 'gmpc-notify-osd-debugsource' 'gmpc-playlistsort' 'gmpc-playlistsort' 'gmpc-playlistsort-debuginfo' 'gmpc-playlistsort-debugsource' 'gmpc-shout' 'gmpc-shout' 'gmpc-shout-debuginfo' 'gmpc-shout-debugsource' 'gmplayer' 'gmusicbrowser' 'gmusicbrowser-lang' 'gn' 'gnaural' 'gnaural' 'gnaural-debuginfo' 'gnaural-debugsource' 'gnokii' 'gnokii-devel' 'gnokii-lang' 'gnokii-smsd' 'gnome' 'gnome-2048' 'gnome-2048-lang' 'gnome-autoar-devel' 'gnome-backgrounds' 'gnome-backgrounds-lang' 'gnome-bluetooth' 'gnome-bluetooth-devel' 'gnome-bluetooth-lang' 'gnome-books' 'gnome-books-lang' 'gnome-boxes' 'gnome-boxes-lang' 'gnome-break-timer' 'gnome-break-timer-lang' 'gnome-btdownload' 'gnome-btdownload' 'gnome-builder' 'gnome-builder-doc' 'gnome-builder-lang' 'gnome-builder-plugin-jedi' 'gnome-builder-plugin-jhbuild' 'gnome-builder-plugin-vala-pack' 'gnome-calculator' 'gnome-calculator-lang' 'gnome-calendar' 'gnome-calendar-lang' 'gnome-characters' 'gnome-characters-lang' 'gnome-chess' 'gnome-chess-lang' 'gnome-clocks' 'gnome-clocks-lang' 'gnome-color-manager' 'gnome-color-manager-lang' 'gnome-colors-icon-theme' 'gnome-commander' 'gnome-commander-doc' 'gnome-commander-lang' 'gnome-common' 'gnome-contacts' 'gnome-contacts-lang' 'gnome-control-center' 'gnome-control-center-color' 'gnome-control-center-devel' 'gnome-control-center-goa' 'gnome-control-center-lang' 'gnome-control-center-user-faces' 'gnome-desktop-sharp2' 'gnome-desktop-sharp2-devel' 'gnome-desktop2' 'gnome-desktop2-lang' 'gnome-devel-docs' 'gnome-devel-docs-lang' 'gnome-dictionary' 'gnome-dictionary-lang' 'gnome-directory-thumbnailer' 'gnome-directory-thumbnailer-lang' 'gnome-disk-utility' 'gnome-disk-utility-lang' 'gnome-do' 'gnome-do-lang' 'gnome-do-plugins' 'gnome-do-plugins-lang' 'gnome-doc-utils' 'gnome-doc-utils-devel' 'gnome-doc-utils-lang' 'gnome-documents' 'gnome-documents-lang' 'gnome-dvb-daemon' 'gnome-dvb-daemon-lang' 'gnome-epub-thumbnailer' 'gnome-font-viewer' 'gnome-font-viewer-lang' 'gnome-games' 'gnome-games-lang' 'gnome-games-scripts' 'gnome-genius' 'gnome-getting-started-docs' 'gnome-getting-started-docs-lang' 'gnome-gmail-notifier' 'gnome-gmail-notifier-lang' 'gnome-icon-theme' 'gnome-icon-theme-extras' 'gnome-icon-theme-symbolic' 'gnome-initial-setup' 'gnome-initial-setup-lang' 'gnome-internet-radio-locator' 'gnome-internet-radio-locator-lang' 'gnome-keyring-sharp' 'gnome-keyring-sharp-devel' 'gnome-keysign' 'gnome-klotski' 'gnome-klotski-lang' 'gnome-latex' 'gnome-logs' 'gnome-logs-lang' 'gnome-mahjongg' 'gnome-mahjongg-lang' 'gnome-maps' 'gnome-maps-lang' 'gnome-menus' 'gnome-menus-branding-openSUSE' 'gnome-menus-branding-upstream' 'gnome-menus-devel' 'gnome-menus-lang' 'gnome-mines' 'gnome-mines-lang' 'gnome-multi-writer' 'gnome-multi-writer-lang' 'gnome-music' 'gnome-music-lang' 'gnome-nettool' 'gnome-nettool-lang' 'gnome-news' 'gnome-news-lang' 'gnome-nibbles' 'gnome-nibbles-lang' 'gnome-online-accounts-devel' 'gnome-online-miners' 'gnome-packagekit' 'gnome-packagekit-extras' 'gnome-packagekit-lang' 'gnome-passwordsafe' 'gnome-passwordsafe-lang' 'gnome-patch-translation' 'gnome-photos' 'gnome-photos-lang' 'gnome-pie' 'gnome-pomodoro' 'gnome-pomodoro-lang' 'gnome-power-manager' 'gnome-power-manager-lang' 'gnome-recipes' 'gnome-recipes-lang' 'gnome-robots' 'gnome-robots-lang' 'gnome-screenshot' 'gnome-screenshot-lang' 'gnome-search-tool' 'gnome-search-tool-lang' 'gnome-session' 'gnome-session-core' 'gnome-session-default-session' 'gnome-session-lang' 'gnome-session-wayland' 'gnome-settings-daemon' 'gnome-settings-daemon-devel' 'gnome-settings-daemon-lang' 'gnome-sharp2' 'gnome-sharp2-complete' 'gnome-shell' 'gnome-shell-calendar' 'gnome-shell-classic' 'gnome-shell-classic-session' 'gnome-shell-devel' 'gnome-shell-extension-gpaste' 'gnome-shell-extension-hamster' 'gnome-shell-extension-onboard' 'gnome-shell-extension-terminus' 'gnome-shell-extensions-common' 'gnome-shell-extensions-common-lang' 'gnome-shell-lang' 'gnome-shell-search-provider-bijiben' 'gnome-shell-search-provider-boxes' 'gnome-shell-search-provider-contacts' 'gnome-shell-search-provider-documents' 'gnome-shell-search-provider-eolie' 'gnome-shell-search-provider-epiphany' 'gnome-shell-search-provider-gnome-calculator' 'gnome-shell-search-provider-gnome-calendar' 'gnome-shell-search-provider-gnome-characters' 'gnome-shell-search-provider-gnome-clocks' 'gnome-shell-search-provider-gnome-photos' 'gnome-shell-search-provider-gnome-recipes' 'gnome-shell-search-provider-gnome-terminal' 'gnome-shell-search-provider-gnome-weather' 'gnome-shell-search-provider-gnote' 'gnome-shell-search-provider-lollypop' 'gnome-shell-search-provider-nautilus' 'gnome-shell-search-provider-seahorse' 'gnome-shell-theme-adapta' 'gnome-shell-theme-plata' 'gnome-software' 'gnome-software-devel' 'gnome-software-lang' 'gnome-sound-recorder' 'gnome-sound-recorder-lang' 'gnome-subtitles' 'gnome-subtitles-lang' 'gnome-sudoku' 'gnome-sudoku-lang' 'gnome-system-monitor' 'gnome-system-monitor-lang' 'gnome-taquin' 'gnome-taquin-lang' 'gnome-terminal' 'gnome-terminal-lang' 'gnome-tetravex' 'gnome-tetravex-lang' 'gnome-themes' 'gnome-themes-extras' 'gnome-themes-lang' 'gnome-todo' 'gnome-todo-devel' 'gnome-todo-lang' 'gnome-tweaks' 'gnome-tweaks-lang' 'gnome-usage' 'gnome-usage-lang' 'gnome-user-docs' 'gnome-user-docs-lang' 'gnome-user-share' 'gnome-user-share-lang' 'gnome-version' 'gnome-vfs-sharp2' 'gnome-vfs2' 'gnome-vfs2-32bit' 'gnome-vfs2-devel' 'gnome-vfs2-doc' 'gnome-vfs2-lang' 'gnome-video-effects' 'gnome-video-effects-devel' 'gnome-weather' 'gnome-weather-lang' 'gnome_basic' 'gnome_x11' 'gnomekbd-tools' 'gnonograms' 'gnonograms-lang' 'gnote' 'gnote-lang' 'gns3' 'gns3-net-converter' 'gns3-server' 'gnu-cobol' 'gnu-compilers-hpc' 'gnu-compilers-hpc-devel' 'gnu-compilers-hpc-macros-devel' 'gnu-crypto' 'gnu-efi' 'gnu-free-fonts' 'gnu-getopt' 'gnu-getopt-javadoc' 'gnu-inetlib' 'gnu-jaf' 'gnu-netcat' 'gnu-regexp' 'gnu-regexp-demo' 'gnu-regexp-javadoc' 'gnu-unifont-legacy-bitmap-fonts' 'gnu_ddrescue' 'gnu_parallel' 'gnu_parallel-doc' 'gnuastro' 'gnuastro-devel' 'gnuastro-doc' 'gnubg' 'gnubg-databases' 'gnubg-doc' 'gnubg-lang' 'gnubg-sounds' 'gnucap' 'gnucash' 'gnucash-devel' 'gnucash-docs' 'gnucash-lang' 'gnuchess' 'gnugo' 'gnuhealth' 'gnuhealth-client' 'gnuhealth-thalamus' 'gnumeric' 'gnumeric-devel' 'gnumeric-doc' 'gnumeric-lang' 'gnump3d' 'gnuplot' 'gnuplot-doc' 'gnuradio' 'gnuradio-devel' 'gnuradio-doc' 'gnuradio-examples' 'gnuradio-examples-wxgui' 'gnuradio-wxgui' 'gnuserv' 'gnusocialshell' 'gnustep-base' 'gnustep-base-devel' 'gnustep-make' 'gnutls-guile' 'go' 'go-doc' 'go-for-it' 'go-for-it-lang' 'go-md2man' 'go-race' 'go-tools' 'go1.10' 'go1.10-doc' 'go1.10-race' 'go1.11' 'go1.11-doc' 'go1.11-race' 'go1.4' 'go1.4-doc' 'go1.4-race' 'go1.9' 'go1.9-doc' 'go1.9-race' 'goaccess' 'goatattack' 'goatattack-data' 'gob2' 'gobby' 'gobby-lang' 'gobject-introspection' 'gobject-introspection-devel' 'gocode' 'gocr' 'gocr-gui' 'godot' 'godot-headless' 'godot-rpm-macros' 'godot-runner' 'godot-server' 'goffice-devel' 'goffice-lang' 'gogglesmm' 'gogglesmm' 'gogglesmm-lang' 'golang-github-boynux-squid_exporter' 'golang-github-cpuguy83-go-md2man' 'golang-github-docker-libnetwork' 'golang-github-docker-libnetwork-kubic' 'golang-github-exercism-cli' 'golang-github-golang-glog' 'golang-github-jteeuwen-go-bindata' 'golang-github-kr-pretty' 'golang-github-kr-pty' 'golang-github-kr-text' 'golang-github-lusitaniae-apache_exporter' 'golang-github-naoina-go-stringutil' 'golang-github-nsf-gocode' 'golang-github-prometheus-alertmanager' 'golang-github-prometheus-node_exporter' 'golang-github-prometheus-prometheus' 'golang-github-prometheus-promu' 'golang-github-rogpeppe-godef' 'golang-github-russross-blackfriday' 'golang-github-shurcool-sanitized_anchor_name' 'golang-github-wrouesnel-postgres_exporter' 'golang-gopkgin-check' 'golang-org-x-crypto' 'golang-org-x-net-context' 'golang-org-x-net-html' 'golang-org-x-net-websocket' 'golang-org-x-sys' 'golang-org-x-tools' 'golang-packaging' 'goldendict' 'goldendict-lang' 'gom-devel' 'gonvert' 'goobox' 'goobox-lang' 'goocanvas-devel' 'goocanvas-lang' 'google-alegreya-fonts' 'google-allerta-fonts' 'google-anonymouspro-fonts' 'google-arimo-fonts' 'google-authenticator-libpam' 'google-authenticator-libpam-32bit' 'google-cabin-fonts' 'google-caladea-fonts' 'google-cardo-fonts' 'google-compute-engine-init' 'google-compute-engine-oslogin' 'google-compute-engine-oslogin-32bit' 'google-cousine-fonts' 'google-croscore-fonts' 'google-exo-fonts' 'google-guice' 'google-guice-javadoc' 'google-inconsolata-fonts' 'google-lekton-fonts' 'google-merriweather-fonts' 'google-nobile-fonts' 'google-roboto-mono-fonts' 'google-tinos-fonts' 'googleapis-source' 'googler' 'gops' 'gos-wallpapers' 'gostcrypt' 'gostcrypt' 'gource' 'govpn' 'govpn-server' 'gp2c' 'gpa' 'gpa-lang' 'gpac' 'gpac' 'gpac-debuginfo' 'gpac-debugsource' 'gparted' 'gparted-lang' 'gpaste' 'gpaste-devel' 'gpaste-lang' 'gperftools' 'gperftools-devel' 'gperftools-devel-static' 'gperiodic' 'gperiodic-lang' 'gpgme' 'gpgmepp5' 'gpgmepp5-32bit' 'gpgmepp5-devel' 'gpgmepp5-devel-32bit' 'gphoto' 'gphotofs' 'gpick' 'gpick-lang' 'gpicview' 'gpicview-lang' 'gpm-devel' 'gpodder' 'gpodder' 'gpodder3' 'gpodder3' 'gpomme' 'gpp' 'gpredict' 'gpredict-lang' 'gprename' 'gprename-lang' 'gprompter' 'gpsbabel' 'gpsd' 'gpsd-clients' 'gpsd-devel' 'gptfdisk-fixparts' 'gputils' 'gputils-doc' 'gpxsee' 'gq' 'gr-fcdproplus' 'gr-fcdproplus-devel-doc' 'gr-osmosdr' 'gr-osmosdr-devel' 'gr-osmosdr-devel-doc' 'grabpng' 'gradio' 'gradio-lang' 'gradle-open-api' 'grafana' 'grail' 'grail-devel' 'gramofile' 'gramps' 'gramps-lang' 'granatier' 'granatier-lang' 'granite-common' 'granite-demo' 'granite-devel' 'granite-lang' 'grantlee-editor' 'grantlee-editor-lang' 'grantlee5-32bit' 'grantlee5-devel' 'grantlee5-devel-32bit' 'grantleetheme-devel' 'graphite2' 'graphite2-devel' 'graphviz-devel' 'graphviz-doc' 'graphviz-guile' 'graphviz-gvedit' 'graphviz-java' 'graphviz-lua' 'graphviz-perl' 'graphviz-php' 'graphviz-python' 'graphviz-ruby' 'graphviz-smyrna' 'graphviz-tcl' 'graphviz-x11' 'grc' 'grepmail' 'grfcodec' 'gri' 'grilo-devel' 'grilo-lang' 'grilo-plugin-dleyna' 'grilo-plugin-tracker' 'grilo-plugin-youtube' 'grilo-plugins' 'grilo-plugins-devel' 'grilo-plugins-lang' 'grilo-tools' 'grim' 'grip' 'grip' 'grip-debuginfo' 'grip-debugsource' 'grip-lang' 'grisbi' 'grisbi-lang' 'groff-doc' 'gromacs' 'gromacs-bash' 'gromacs-devel' 'gromacs-doc' 'gromacs-openmpi' 'gromit' 'groovebasin' 'groovebasin' 'groovy18' 'groovy18-javadoc' 'groovy18-lib' 'growpart' 'growpart-rootgrow' 'grpc-devel' 'grpc-httpjson-transcoding-devel' 'grpc-httpjson-transcoding-source' 'grpc-source' 'grsync' 'grsync-lang' 'grub' 'grub2-branding-upstream' 'grub2-i386-efi' 'grub2-i386-xen' 'grub2-theme-breeze' 'grub2-x86_64-xen' 'grubby' 'gsequencer' 'gsequencer-devel' 'gsequencer-devel-doc' 'gsettings-backend-dconf-32bit' 'gsettings-desktop-schemas-devel' 'gsettings-qt' 'gsettings-qt-devel' 'gsf-office-thumbnailer' 'gsl' 'gsl-devel' 'gsl-doc' 'gsl-examples' 'gsl-gnu-hpc' 'gsl-gnu-hpc-devel' 'gsl-gnu-hpc-doc' 'gsl_2_6-gnu-hpc' 'gsl_2_6-gnu-hpc-devel' 'gsl_2_6-gnu-hpc-doc' 'gsl_2_6-gnu-hpc-examples' 'gsl_2_6-gnu-hpc-module' 'gsmartcontrol' 'gsoap-devel' 'gsoap-doc' 'gsound' 'gsound-devel' 'gspell' 'gspell-devel' 'gspell-lang' 'gssdp-utils' 'gssproxy' 'gst123' 'gstreamer-1_0-plugins-buzztrax' 'gstreamer-devel' 'gstreamer-doc' 'gstreamer-editing-services' 'gstreamer-editing-services-devel' 'gstreamer-plugin-cluttergst3' 'gstreamer-plugin-pipewire' 'gstreamer-plugin-python' 'gstreamer-plugins-bad' 'gstreamer-plugins-bad-32bit' 'gstreamer-plugins-bad-32bit-debuginfo' 'gstreamer-plugins-bad-chromaprint' 'gstreamer-plugins-bad-chromaprint-32bit' 'gstreamer-plugins-bad-chromaprint-32bit-debuginfo' 'gstreamer-plugins-bad-chromaprint-debuginfo' 'gstreamer-plugins-bad-debuginfo' 'gstreamer-plugins-bad-debugsource' 'gstreamer-plugins-bad-devel' 'gstreamer-plugins-bad-doc' 'gstreamer-plugins-bad-fluidsynth' 'gstreamer-plugins-bad-fluidsynth-32bit' 'gstreamer-plugins-bad-fluidsynth-32bit-debuginfo' 'gstreamer-plugins-bad-fluidsynth-debuginfo' 'gstreamer-plugins-bad-orig-addon' 'gstreamer-plugins-bad-orig-addon-32bit' 'gstreamer-plugins-bad-orig-addon-32bit-debuginfo' 'gstreamer-plugins-bad-orig-addon-debuginfo' 'gstreamer-plugins-base-32bit' 'gstreamer-plugins-base-devel' 'gstreamer-plugins-base-devel-32bit' 'gstreamer-plugins-base-doc' 'gstreamer-plugins-farstream' 'gstreamer-plugins-farstream-32bit' 'gstreamer-plugins-good-32bit' 'gstreamer-plugins-good-doc' 'gstreamer-plugins-good-extra' 'gstreamer-plugins-good-extra-32bit' 'gstreamer-plugins-good-jack' 'gstreamer-plugins-good-jack-32bit' 'gstreamer-plugins-good-qtqml' 'gstreamer-plugins-libav' 'gstreamer-plugins-libav-32bit' 'gstreamer-plugins-libav-32bit-debuginfo' 'gstreamer-plugins-libav-debuginfo' 'gstreamer-plugins-libav-debugsource' 'gstreamer-plugins-libav-doc' 'gstreamer-plugins-ugly' 'gstreamer-plugins-ugly-32bit' 'gstreamer-plugins-ugly-32bit-debuginfo' 'gstreamer-plugins-ugly-debuginfo' 'gstreamer-plugins-ugly-debugsource' 'gstreamer-plugins-ugly-doc' 'gstreamer-plugins-ugly-orig-addon-32bit' 'gstreamer-plugins-ugly-orig-addon-32bit-debuginfo' 'gstreamer-plugins-ugly-orig-addon-debuginfo' 'gstreamer-plugins-vaapi' 'gstreamer-plugins-vaapi-doc' 'gstreamer-rtsp-server-devel' 'gstreamer-transcoder' 'gstreamer-transcoder-devel' 'gstreamer-utils' 'gstreamer-validate' 'gstreamer-validate-devel' 'gstreamermm-devel' 'gstreamermm-doc' 'gswrap' 'gtest' 'gthumb' 'gthumb-devel' 'gthumb-lang' 'gti' 'gtick' 'gtick-lang' 'gtk-chtheme' 'gtk-chtheme' 'gtk-chtheme-debuginfo' 'gtk-chtheme-debugsource' 'gtk-doc' 'gtk-doc-lang' 'gtk-frdp-devel' 'gtk-gnutella' 'gtk-gnutella' 'gtk-gnutella-debuginfo' 'gtk-gnutella-debugsource' 'gtk-key-theme-ctrluftw' 'gtk-recordMyDesktop' 'gtk-recordMyDesktop-lang' 'gtk-sharp-beans' 'gtk-sharp-beans-devel' 'gtk-sharp2' 'gtk-sharp2-complete' 'gtk-sharp2-doc' 'gtk-sharp2-gapi' 'gtk-sharp3' 'gtk-sharp3-complete' 'gtk-sharp3-devel' 'gtk-sharp3-doc' 'gtk-sharp3-gapi' 'gtk-sharp3-gapi-devel' 'gtk-vector-screenshot' 'gtk-vector-screenshot' 'gtk-vector-screenshot-debuginfo' 'gtk-vector-screenshot-debugsource' 'gtk-vnc-devel' 'gtk-vnc-tools' 'gtk-xfce-engine' 'gtk-xfce-engine-32bit' 'gtk2-branding-upstream' 'gtk2-devel' 'gtk2-devel-32bit' 'gtk2-engine-aurora' 'gtk2-engine-cleanice' 'gtk2-engine-cleanice-32bit' 'gtk2-engine-clearlooks' 'gtk2-engine-clearlooks-32bit' 'gtk2-engine-crux' 'gtk2-engine-crux-32bit' 'gtk2-engine-equinox' 'gtk2-engine-glide' 'gtk2-engine-glide-32bit' 'gtk2-engine-industrial' 'gtk2-engine-industrial-32bit' 'gtk2-engine-mist' 'gtk2-engine-mist-32bit' 'gtk2-engine-murrine' 'gtk2-engine-murrine-32bit' 'gtk2-engine-nimbus' 'gtk2-engine-nimbus-32bit' 'gtk2-engine-oxygen' 'gtk2-engine-redmond95' 'gtk2-engine-redmond95-32bit' 'gtk2-engine-thinice' 'gtk2-engine-thinice-32bit' 'gtk2-engines' 'gtk2-engines-devel' 'gtk2-immodule-amharic-32bit' 'gtk2-immodule-inuktitut-32bit' 'gtk2-immodule-multipress' 'gtk2-immodule-multipress-32bit' 'gtk2-immodule-thai-32bit' 'gtk2-immodule-tigrigna-32bit' 'gtk2-immodule-vietnamese-32bit' 'gtk2-immodule-xim' 'gtk2-immodule-xim-32bit' 'gtk2-metatheme-adapta' 'gtk2-metatheme-ambiance' 'gtk2-metatheme-ambiant-mate' 'gtk2-metatheme-arc' 'gtk2-metatheme-bluebird' 'gtk2-metatheme-e17gtk' 'gtk2-metatheme-elementary' 'gtk2-metatheme-equinox' 'gtk2-metatheme-gilouche' 'gtk2-metatheme-greybird' 'gtk2-metatheme-greybird-geeko' 'gtk2-metatheme-industrial' 'gtk2-metatheme-mint' 'gtk2-metatheme-nimbus' 'gtk2-metatheme-numix' 'gtk2-metatheme-paper' 'gtk2-metatheme-plata' 'gtk2-metatheme-radiance' 'gtk2-metatheme-radiant-mate' 'gtk2-metatheme-sonar' 'gtk2-metatheme-vertex' 'gtk2-metatheme-yaru' 'gtk2-metatheme-yuyo' 'gtk2-theme-clearlooks' 'gtk2-theme-crux' 'gtk2-theme-industrial' 'gtk2-theme-mist' 'gtk2-theme-oxygen' 'gtk2-theme-redmond95' 'gtk2-theme-thinice' 'gtk3-branding-upstream' 'gtk3-devel' 'gtk3-devel-32bit' 'gtk3-immodule-amharic-32bit' 'gtk3-immodule-broadway' 'gtk3-immodule-inuktitut-32bit' 'gtk3-immodule-multipress' 'gtk3-immodule-multipress-32bit' 'gtk3-immodule-thai-32bit' 'gtk3-immodule-tigrigna-32bit' 'gtk3-immodule-vietnamese-32bit' 'gtk3-immodule-wayland' 'gtk3-immodule-wayland-32bit' 'gtk3-immodule-xim' 'gtk3-immodule-xim-32bit' 'gtk3-metatheme-adapta' 'gtk3-metatheme-ambiance' 'gtk3-metatheme-ambiant-mate' 'gtk3-metatheme-arc' 'gtk3-metatheme-bluebird' 'gtk3-metatheme-e17gtk' 'gtk3-metatheme-elementary' 'gtk3-metatheme-greybird' 'gtk3-metatheme-greybird-geeko' 'gtk3-metatheme-mint' 'gtk3-metatheme-numix' 'gtk3-metatheme-paper' 'gtk3-metatheme-plata' 'gtk3-metatheme-radiance' 'gtk3-metatheme-radiant-mate' 'gtk3-metatheme-vertex' 'gtk3-metatheme-yaru' 'gtk3-metatheme-yuyo' 'gtk3-schema' 'gtk4-branding-upstream' 'gtk4-devel' 'gtk4-devel-32bit' 'gtk4-lang' 'gtk4-metatheme-adapta' 'gtk4-metatheme-plata' 'gtk4-tools' 'gtkam' 'gtkam-doc' 'gtkam-lang' 'gtkd-devel' 'gtkglext-devel' 'gtkglext-doc' 'gtkhtml-4_0-lang' 'gtkhtml-devel' 'gtkimageview-devel' 'gtkiterm' 'gtkmm2-devel' 'gtkmm2-tutorial' 'gtkmm2-tutorial-lang' 'gtkmm3-devel' 'gtkmm3-doc' 'gtkmm3-tutorial' 'gtkmm3-tutorial-lang' 'gtkpod' 'gtkpod-devel' 'gtkpod-lang' 'gtksourceview-devel' 'gtksourceview2-devel' 'gtksourceview2-lang' 'gtksourceview2-sharp' 'gtksourceview4-devel' 'gtksourceviewmm-devel' 'gtkspell-devel' 'gtkspell-doc' 'gtkspell-lang' 'gtkspell3-devel' 'gtkspell3-lang' 'gtkwave' 'gtkwave-doc' 'gtkwave-examples' 'gtranslator' 'gtranslator-lang' 'gts' 'gts-devel' 'gtypist' 'gtypist-lang' 'guake' 'guava' 'guava-javadoc' 'guava-testlib' 'guava20' 'guava20-javadoc' 'guava20-testlib' 'guayadeque' 'guayadeque' 'guayadeque-debuginfo' 'guayadeque-debugsource' 'gucharmap' 'gucharmap-devel' 'gucharmap-lang' 'gudev-sharp' 'gudev-sharp-devel' 'guestfs-tools' 'guestfsd' 'guice-assistedinject' 'guice-bom' 'guice-extensions' 'guice-grapher' 'guice-jmx' 'guice-jndi' 'guice-multibindings' 'guice-parent' 'guice-servlet' 'guice-testlib' 'guice-throwingproviders' 'guile' 'guile-bytestructures' 'guile-cairo' 'guile-cairo-devel' 'guile-charting' 'guile-devel' 'guile-gcrypt' 'guile-git' 'guile-json' 'guile-modules-2_2' 'guile-newt' 'guile-parted' 'guile-sqlite3' 'guile-ssh-devel' 'guile1' 'guilt' 'guitarix' 'guix' 'gup' 'gupnp-av' 'gupnp-dlna-tools' 'gupnp-tools' 'gupnp-tools-lang' 'gutenprint-devel' 'gutenprint-gimpplugin' 'guvcview' 'guvcview-devel' 'guvcview-lang' 'guvcview-qt5' 'guvcview-qt5-lang' 'gv' 'gvfs-32bit' 'gvfs-devel' 'gvim' 'gweather-data' 'gwenhywfar' 'gwenhywfar-devel' 'gwenhywfar-lang' 'gwenhywfar-tools' 'gxine' 'gxine' 'gxine-browser-plugin' 'gxine-browser-plugin-debuginfo' 'gxine-debuginfo' 'gxine-debugsource' 'gxine-lang' 'gyp' 'gypsy' 'gzdoom' 'gzrt' 'h264enc' 'h264enc' 'h5utils' 'ha-cluster-bootstrap' 'haas-proxy' 'habootstrap-formula' 'hackbench' 'hackrf' 'hackrf-devel' 'hackrf-firmware' 'hackrf-udev' 'hactool' 'haguichi' 'haguichi-lang' 'hamcrest' 'hamcrest-core' 'hamcrest-demo' 'hamcrest-javadoc' 'hamlib' 'hamlib-devel' 'hamster-time-tracker' 'hamster-time-tracker-lang' 'hanadb_exporter' 'handbrake' 'handbrake-cli' 'handbrake-cli-debuginfo' 'handbrake-debuginfo' 'handbrake-debugsource' 'handbrake-gtk' 'handbrake-gtk-debuginfo' 'handbrake-gtk-lang' 'handedict' 'happy' 'haproxy' 'hardening-check' 'hardinfo' 'harfbuzz-devel' 'harfbuzz-tools' 'harminv' 'harminv-devel' 'hartke-aurulentsans-fonts' 'haserl' 'hashalot' 'hashcat' 'hashdeep' 'haveged-devel' 'hawk-apiserver' 'hawk2' 'hawkey-man' 'hawknl-devel' 'hawknl-libs' 'hawtjni' 'hawtjni-javadoc' 'hawtjni-runtime' 'haxe' 'hbci4java' 'hbci4java-javadoc' 'hcode' 'hda-verb' 'hdajackretask' 'hdajacksensetest' 'hddtemp' 'hdf' 'hdf-devel' 'hdf-devel-data' 'hdf-devel-static' 'hdf-openmpi' 'hdf-openmpi-devel' 'hdf-openmpi-devel-static' 'hdf5' 'hdf5-devel' 'hdf5-devel-32bit' 'hdf5-devel-data' 'hdf5-devel-static' 'hdf5-examples' 'hdf5-gnu-hpc' 'hdf5-gnu-hpc-devel' 'hdf5-gnu-mpich-hpc' 'hdf5-gnu-mpich-hpc-devel' 'hdf5-gnu-mvapich2-hpc' 'hdf5-gnu-mvapich2-hpc-devel' 'hdf5-gnu-openmpi1-hpc' 'hdf5-gnu-openmpi1-hpc-devel' 'hdf5-gnu-openmpi2-hpc' 'hdf5-gnu-openmpi2-hpc-devel' 'hdf5-gnu-openmpi3-hpc' 'hdf5-gnu-openmpi3-hpc-devel' 'hdf5-hpc-examples' 'hdf5-mvapich2' 'hdf5-mvapich2-devel' 'hdf5-mvapich2-devel-32bit' 'hdf5-mvapich2-devel-static' 'hdf5-openmpi' 'hdf5-openmpi-devel' 'hdf5-openmpi-devel-32bit' 'hdf5-openmpi-devel-static' 'hdf5-openmpi2' 'hdf5-openmpi2-devel' 'hdf5-openmpi2-devel-32bit' 'hdf5-openmpi2-devel-static' 'hdf5-openmpi3' 'hdf5-openmpi3-devel' 'hdf5-openmpi3-devel-32bit' 'hdf5-openmpi3-devel-static' 'hdf5_1_10_4-gnu-hpc' 'hdf5_1_10_4-gnu-hpc-devel' 'hdf5_1_10_4-gnu-hpc-devel-static' 'hdf5_1_10_4-gnu-hpc-module' 'hdf5_1_10_4-gnu-mpich-hpc' 'hdf5_1_10_4-gnu-mpich-hpc-devel' 'hdf5_1_10_4-gnu-mpich-hpc-devel-static' 'hdf5_1_10_4-gnu-mpich-hpc-module' 'hdf5_1_10_4-gnu-mvapich2-hpc' 'hdf5_1_10_4-gnu-mvapich2-hpc-devel' 'hdf5_1_10_4-gnu-mvapich2-hpc-devel-static' 'hdf5_1_10_4-gnu-mvapich2-hpc-module' 'hdf5_1_10_4-gnu-openmpi1-hpc' 'hdf5_1_10_4-gnu-openmpi1-hpc-devel' 'hdf5_1_10_4-gnu-openmpi1-hpc-devel-static' 'hdf5_1_10_4-gnu-openmpi1-hpc-module' 'hdf5_1_10_4-gnu-openmpi2-hpc' 'hdf5_1_10_4-gnu-openmpi2-hpc-devel' 'hdf5_1_10_4-gnu-openmpi2-hpc-devel-static' 'hdf5_1_10_4-gnu-openmpi2-hpc-module' 'hdf5_1_10_4-gnu-openmpi3-hpc' 'hdf5_1_10_4-gnu-openmpi3-hpc-devel' 'hdf5_1_10_4-gnu-openmpi3-hpc-devel-static' 'hdf5_1_10_4-gnu-openmpi3-hpc-module' 'hdf5_1_10_4-hpc-examples' 'hdhomerun-config' 'hdhomerun-config-debuginfo' 'hdhomerun_config' 'hdhomerun_config_gui' 'hdjmod-kmp-default' 'hdjmod-kmp-pae' 'hdspconf' 'hdsploader' 'hdspmixer' 'headmore' 'health-check' 'health-checker' 'health-checker-plugins-MicroOS' 'health-checker-plugins-caasp' 'health-checker-plugins-kubic' 'health-checker-testing' 'heapster' 'heaptrack' 'heaptrack-devel' 'heaptrack-gui' 'heaptrack-lang' 'hedgewars' 'hedgewars-data' 'heimdall' 'heimdall-frontend' 'heldenviewer' 'heldenviewer' 'heldenviewer-debuginfo' 'hello' 'hello-kubic' 'hello-kubic-k8s-yaml' 'hello-lang' 'helm' 'helm-mirror' 'help2man' 'help2man-lang' 'herbstluftwm' 'herbstluftwm-bash-completion' 'herbstluftwm-examples' 'herbstluftwm-fish-completion' 'herbstluftwm-zsh-completion' 'hercules' 'heroes-tron' 'hevea' 'hex' 'hex2bin' 'hexchat' 'hexchat-devel' 'hexchat-lang' 'hexchat-plugins-lua' 'hexchat-plugins-perl' 'hexchat-plugins-python3' 'hexd' 'hexen2' 'hexen2' 'hexen2-debuginfo' 'hexen2-debugsource' 'hexenworld' 'hexenworld-debuginfo' 'hexter' 'hfst' 'hfst-devel' 'hfst-ospell' 'hfst-ospell-devel' 'hfsutils' 'hg-fast-export' 'hg-git' 'hiawatha' 'hiawatha-letsencrypt' 'hibiscus' 'highlight' 'highlight-gui' 'highlight-gui-lang' 'himeno' 'hiredis' 'hiredis-devel' 'hitori' 'hitori-lang' 'hivex' 'hivex-devel' 'hivex-lang' 'hmaccalc' 'hmcfgusb' 'hmconv' 'hollywood' 'hollywood-data' 'holodev' 'homebank' 'homebank-lang' 'homerhevc' 'homerhevc' 'homerhevc-debuginfo' 'homeshick' 'honggfuzz' 'horst' 'hostap-utils' 'hostapd' 'hostinfo' 'hotspot' 'hourglass' 'hourglass-lang' 'howl' 'hp-drive-guard' 'hp2xx' 'hpack' 'hpc_compute_node' 'hpc_development_node' 'hpc_libraries' 'hpc_workload_server' 'hping' 'hping-doc' 'hplip' 'hplip-devel' 'hplip-hpijs' 'hplip-sane' 'hpx' 'hpx-devel' 'hpx-devel-static' 'hspec-discover' 'hsqldb' 'hsqldb-demo' 'hsqldb-javadoc' 'hsqldb-manual' 'ht' 'htdig' 'htdig-devel' 'htdig-doc' 'hte' 'html-dtd' 'html-xml-utils' 'html2ps' 'html2text' 'htmldoc' 'http-parser-devel' 'httpcomponents-client' 'httpcomponents-client-cache' 'httpcomponents-client-javadoc' 'httpcomponents-core' 'httpcomponents-core-javadoc' 'httpcomponents-project' 'httperf' 'httrack' 'httrack-devel' 'hub' 'humanity-icon-theme' 'hunspell-devel' 'hunspell-devel-32bit' 'hwinfo-devel' 'hwloc' 'hwloc-data' 'hwloc-devel' 'hwloc-doc' 'hwmixvolume' 'hwsd' 'hwsd' 'hwsd-debuginfo' 'hwsd-debugsource' 'hwsd-devel' 'hwsd-doc' 'hxtools' 'hxtools-data' 'hxtools-man' 'hxtools-profile' 'hxtools-scripts' 'hydrogen' 'hyena' 'hylafax+' 'hylafax+-client' 'hyper-v' 'hyperscan-devel' 'hyphen' 'hyphen-devel' 'hypre-devel' 'hypre-doc' 'hypre-examples' 'hypre-gnu-mpich-hpc-devel' 'hypre-gnu-mvapich2-hpc-devel' 'hypre-gnu-openmpi1-hpc-devel' 'hypre-gnu-openmpi2-hpc-devel' 'hypre-gnu-openmpi3-hpc-devel' 'hypre-mpich-devel' 'hypre-mvapich2-devel' 'hypre-openmpi-devel' 'hypre-openmpi2-devel' 'hypre_2_15_1-gnu-mpich-hpc-devel' 'hypre_2_15_1-gnu-mvapich2-hpc-devel' 'hypre_2_15_1-gnu-openmpi1-hpc-devel' 'hypre_2_15_1-gnu-openmpi2-hpc-devel' 'hypre_2_15_1-gnu-openmpi3-hpc-devel' 'i18nspector' 'i2c-tools' 'i2pd' 'i3' 'i3-devel' 'i3-gaps' 'i3-gaps-devel' 'i3blocks' 'i3lock' 'i3lock-xlock-compat' 'i3status' 'i4l-base' 'i4l-isdnlog' 'i4l-vbox' 'i4lfirm' 'iMule' 'iMule' 'iMule-debuginfo' 'iMule-debugsource' 'iagno' 'iagno-lang' 'ibacm' 'ibm-data-db2' 'ibmswtpm2' 'ibmtss' 'ibmtss-base' 'ibmtss-devel' 'ibsim' 'ibus' 'ibus-anthy' 'ibus-anthy-devel' 'ibus-cangjie' 'ibus-chewing' 'ibus-devel' 'ibus-gtk' 'ibus-gtk-32bit' 'ibus-gtk3' 'ibus-gtk3-32bit' 'ibus-hangul' 'ibus-input-pad' 'ibus-kkc' 'ibus-lang' 'ibus-libpinyin' 'ibus-libzhuyin' 'ibus-m17n' 'ibus-mozc' 'ibus-mozc-candidate-window' 'ibus-pinyin' 'ibus-rime' 'ibus-skk' 'ibus-table' 'ibus-table-chinese-array' 'ibus-table-chinese-cangjie' 'ibus-table-chinese-cantonese' 'ibus-table-chinese-easy' 'ibus-table-chinese-erbi' 'ibus-table-chinese-jyutping' 'ibus-table-chinese-quick' 'ibus-table-chinese-scj' 'ibus-table-chinese-stroke5' 'ibus-table-chinese-wu' 'ibus-table-chinese-wubi-haifeng' 'ibus-table-chinese-wubi-jidian' 'ibus-table-chinese-yong' 'ibus-table-cns11643' 'ibus-table-compose' 'ibus-table-devel' 'ibus-table-emoji' 'ibus-table-extraphrase' 'ibus-table-extraphrase-devel' 'ibus-table-hu-old-hungarian-rovas' 'ibus-table-ipa-x-sampa' 'ibus-table-latex' 'ibus-table-mathwriter' 'ibus-table-others' 'ibus-table-rusle' 'ibus-table-rustrad' 'ibus-table-thai' 'ibus-table-translit' 'ibus-table-translit-ua' 'ibus-table-viqr' 'ibus-table-yawerty' 'ibus-typing-booster' 'ibus-unikey' 'ibutils' 'ibutils-devel' 'ibutils-ui' 'icc-examin' 'icc-examin-lang' 'icc-mime-types' 'icc-profiles' 'icc-profiles-all' 'icc-profiles-basiccolor-lstarrgb' 'icc-profiles-basiccolor-printing2009-coat2' 'icc-profiles-basiccolor-printing2009-doc' 'icc-profiles-basiccolor-printing2009-extra' 'icc-profiles-lcms-lab' 'icc-profiles-mini' 'icc-profiles-openicc-rgb' 'icc-profiles-oyranos-extra' 'icc-targets-fogra' 'icc-targets-npes' 'iceWMCP' 'iceWMCP-addons' 'icecast' 'icecast-doc' 'icecream' 'icecream-clang-wrappers' 'icecream-monitor' 'icedtea-web' 'icedtea-web-javadoc' 'ices' 'icewm-config-upstream' 'icewm-lite' 'icewm-theme-yast-installation' 'icewm-themes' 'icinga2' 'icinga2-bin' 'icinga2-common' 'icinga2-doc' 'icinga2-ido-mysql' 'icinga2-ido-pgsql' 'icingacli' 'icingaweb2' 'icingaweb2-common' 'icingaweb2-module-director' 'icingaweb2-vendor-HTMLPurifier' 'icingaweb2-vendor-JShrink' 'icingaweb2-vendor-Parsedown' 'icingaweb2-vendor-dompdf' 'icingaweb2-vendor-lessphp' 'icingaweb2-vendor-zf1' 'icmake' 'icmpinfo' 'icmptunnel' 'icns-utils' 'ico' 'icon-naming-utils' 'icu' 'icu4j' 'icu4j-charset' 'icu4j-javadoc' 'icu4j-localespi' 'id3lib' 'id3lib-32bit' 'id3lib-devel' 'id3lib-examples' 'id3v2' 'idep' 'ido-devel' 'idutils' 'idutils-lang' 'idzebra' 'idzebra-devel' 'idzebra-doc' 'iftop' 'ifuse' 'igerman98-doc' 'ignition' 'ignition-config-transpiler' 'ignition-dracut' 'ignuit' 'iio-sensor-proxy' 'iio-sensor-proxy-doc' 'ikiwiki' 'ikiwiki-w3m' 'ikona' 'ikvm' 'ilbc-devel' 'ilmbase-devel' 'ima-evm-utils-devel' 'ima-inspect' 'imageburner' 'imageburner-lang' 'imagej' 'imagewriter' 'imagination' 'imagination' 'imagination-debuginfo' 'imagination-debugsource' 'imagination-doc' 'imagination-lang' 'imaging' 'imake' 'imap' 'imap-devel' 'imapfilter' 'imb-gnu-mpich-hpc' 'imb-gnu-mvapich2-hpc' 'imb-gnu-openmpi1-hpc' 'imb-gnu-openmpi2-hpc' 'imb-gnu-openmpi3-hpc' 'imb-mpich' 'imb-mvapich2' 'imb-openmpi' 'imb-openmpi2' 'imb-openmpi3' 'imb_2019_3-gnu-mpich-hpc' 'imb_2019_3-gnu-mvapich2-hpc' 'imb_2019_3-gnu-openmpi1-hpc' 'imb_2019_3-gnu-openmpi2-hpc' 'imb_2019_3-gnu-openmpi3-hpc' 'imgen' 'imgp' 'imgp-bash-completion' 'imgp-fish-completion' 'imgp-zsh-completion' 'imgvtopgm' 'imhangul' 'imhangul-32bit' 'iml-devel' 'imlib2' 'imlib2-devel' 'imlib2-filters' 'imobiledevice-tools' 'impressive' 'imv' 'imwheel' 'imx-usb-loader' 'incidenceeditor-devel' 'include-what-you-use' 'include-what-you-use-tools' 'indent' 'indic-fonts' 'ineffassign' 'infiniband-diags' 'infiniband-diags-devel' 'infiniband-diags-devel-32bit' 'infinipath-psm-devel' 'infinoted' 'influxdb' 'influxdb-devel' 'info2html' 'info4' 'infos-creator-rpm' 'ini4j' 'ini4j-javadoc' 'injeqt-devel' 'inkscape' 'inkscape-extensions-dia' 'inkscape-extensions-extra' 'inkscape-extensions-fig' 'inkscape-extensions-gimp' 'inkscape-extensions-skencil' 'inkscape-lang' 'inn' 'inn-devel' 'innoextract' 'innotop' 'inotify-tools' 'inotify-tools-devel' 'inotify-tools-doc' 'input-pad' 'input-pad-devel' 'input-pad-eek' 'input-pad-xtest' 'inspectrum' 'inst-source-utils' 'install-initrd-Kubic' 'install-initrd-MicroOS' 'install-initrd-openSUSE' 'installation-images-Kubic' 'installation-images-MicroOS' 'installation-images-debuginfodeps-MicroOS' 'installation-images-debuginfodeps-openSUSE' 'instsource-susedata' 'int10h-oldschoolpc-fonts' 'intel-SINIT' 'intel-cmt-cat' 'intel-hybrid-driver' 'intel-media-driver' 'intel-vaapi-driver-32bit' 'intelhex' 'interbench' 'intlfonts' 'intlfonts-arabic-bitmap-fonts' 'intlfonts-asian-bitmap-fonts' 'intlfonts-bdf-fonts' 'intlfonts-chinese-big-bitmap-fonts' 'intlfonts-chinese-bitmap-fonts' 'intlfonts-ethiopic-bitmap-fonts' 'intlfonts-japanese-big-bitmap-fonts' 'intlfonts-japanese-bitmap-fonts' 'intlfonts-phonetic-bitmap-fonts' 'intlfonts-ttf-fonts' 'intlfonts-type1-fonts' 'intltool' 'inwee' 'iodbc' 'iodbc-admin' 'iodine' 'iometer' 'ioping' 'iops' 'ior' 'iotop' 'iouyap' 'iozone' 'iozone-doc' 'ipa-ex-gothic-fonts' 'ipa-ex-mincho-fonts' 'ipa-gothic-bold-fonts' 'ipa-gothic-bolditalic-fonts' 'ipa-gothic-fonts' 'ipa-gothic-italic-fonts' 'ipa-mincho-fonts' 'ipa-pgothic-bold-fonts' 'ipa-pgothic-bolditalic-fonts' 'ipa-pgothic-fonts' 'ipa-pgothic-italic-fonts' 'ipa-pmincho-fonts' 'ipa-uigothic-fonts' 'ipadic' 'ipcalc' 'iperf-devel' 'ipmctl' 'ipmctl-devel' 'ipmctl-monitor' 'ipmitool' 'ipmitool-bmc-snmp-proxy' 'ipmiutil' 'ipmiutil-devel' 'ipmiutil-static' 'iprange' 'iproute2-bash-completion' 'iproxy' 'ipsec-tools' 'ipset-devel' 'iptables-backend-nft' 'iptraf-ng' 'ipv6gen' 'ipv6toolkit' 'ipvsadm' 'ipw-firmware' 'ipxe-bootimgs' 'ipxrip' 'irda' 'irman-common' 'irman-utils' 'irrlicht-data' 'irrlicht-devel' 'irssi-devel' 'irssi-otr' 'isapnp' 'isapnp-devel' 'isatapd' 'isight-firmware-tools' 'isl-devel' 'isl-devel-32bit' 'iso-codes-devel' 'iso-country-flags-png' 'isomaster' 'isomaster' 'isomaster-debuginfo' 'isomaster-lang' 'isorelax' 'ispell-brazilian' 'ispell-british' 'ispell-bulgarian' 'ispell-catalan' 'ispell-czech' 'ispell-danish' 'ispell-dutch' 'ispell-esperanto' 'ispell-estonian' 'ispell-finnish' 'ispell-french' 'ispell-german' 'ispell-greek' 'ispell-hungarian' 'ispell-italian' 'ispell-naustrian' 'ispell-ngerman' 'ispell-norsk' 'ispell-nswiss' 'ispell-polish' 'ispell-portuguese' 'ispell-russian' 'ispell-slovak' 'ispell-slovene' 'ispell-spanish' 'ispell-swedish' 'istgt' 'istio-proxy' 'isync' 'itk' 'itpp-devel' 'itpp-doc' 'itstool' 'iucode-tool' 'iverilog' 'iverilog-devel' 'ivtv' 'ivtv-firmware' 'ivy-local' 'ivykis-devel' 'iw' 'iwatch' 'iwd' 'iwidgets' 'iwpmd' 'iwscanner' 'jack-32bit' 'jack-rack' 'jackEQ' 'jack_capture' 'jack_mixer' 'jack_mixer' 'jack_mixer-debuginfo' 'jack_mixer-debugsource' 'jackmixdesk' 'jackmixdesk' 'jackmixdesk-debuginfo' 'jackmixdesk-debugsource' 'jackson-annotations' 'jackson-annotations-javadoc' 'jackson-bom' 'jackson-parent' 'jacktrip' 'jaero' 'jakarta-commons-discovery' 'jakarta-commons-discovery-javadoc' 'jakarta-commons-launcher' 'jakarta-commons-launcher-javadoc' 'jakarta-commons-modeler' 'jakarta-commons-modeler-javadoc' 'jakarta-commons-transaction' 'jakarta-commons-vfs' 'jakarta-commons-vfs-javadoc' 'jakarta-commons-vfs-manual' 'jakarta-poi' 'jakarta-poi-javadoc' 'jakarta-poi-manual' 'jakarta-slide-webdavclient' 'jakarta-slide-webdavclient-javadoc' 'jakarta-slide-webdavclient-repolib' 'jakarta-taglibs-standard' 'jakarta-taglibs-standard-javadoc' 'jameica' 'jameica-devel' 'jameica-javadoc' 'jamin' 'jansi' 'jansi-javadoc' 'jansi-native' 'jansi-native-javadoc' 'jarjar' 'jarjar-javadoc' 'jasper' 'java-11-openjdk-accessibility' 'java-11-openjdk-demo' 'java-11-openjdk-devel' 'java-11-openjdk-javadoc' 'java-11-openjdk-jmods' 'java-11-openjdk-src' 'java-12-openjdk' 'java-12-openjdk-accessibility' 'java-12-openjdk-demo' 'java-12-openjdk-devel' 'java-12-openjdk-headless' 'java-12-openjdk-javadoc' 'java-12-openjdk-jmods' 'java-12-openjdk-src' 'java-1_8_0-openjdk-accessibility' 'java-1_8_0-openjdk-demo' 'java-1_8_0-openjdk-devel' 'java-1_8_0-openjdk-javadoc' 'java-1_8_0-openjdk-src' 'java-atk-wrapper' 'java-binfmt-misc' 'java-cup' 'java-cup-manual' 'java-libkolabxml1' 'java-mraa' 'javacc' 'javacc-bootstrap' 'javacc-demo' 'javacc-javadoc' 'javacc-manual' 'javacc-maven-plugin' 'javacc-maven-plugin-javadoc' 'javadoc' 'javahelp2' 'javahelp2-javadoc' 'javahelp2-manual' 'javamail' 'javamail-javadoc' 'javapackages-gradle' 'javapackages-ivy' 'javapackages-local' 'javapoet' 'javapoet-javadoc' 'javassist' 'javassist-demo' 'javassist-javadoc' 'javassist-manual' 'javazic' 'jaxen' 'jaxodraw' 'jaxodraw-javadoc' 'jaxodraw-latex' 'jbig2dec' 'jbig2dec-devel' 'jbig2dec-devel-32bit' 'jbigkit' 'jboss-interceptors-1.2-api' 'jboss-interceptors-1.2-api-javadoc' 'jcifs' 'jcifs-demo' 'jcifs-javadoc' 'jcip-annotations' 'jcip-annotations-javadoc' 'jcl-over-slf4j' 'jcodings' 'jcommon' 'jcommon-javadoc' 'jcommon-test' 'jconvolver' 'jconvolver-examples' 'jcuber' 'jcuber-doc' 'jdepend' 'jdepend-demo' 'jdependency' 'jdependency-javadoc' 'jdo2-api' 'jdo2-api-javadoc' 'jdom' 'jdom2' 'jdom2-javadoc' 'jedit' 'jedit-javadoc' 'jemalloc' 'jemalloc-devel' 'jemmy' 'jemmy-javadoc' 'jeos-firstboot' 'jeos-firstboot-rpiwifi' 'jettison' 'jettison-javadoc' 'jeuclid' 'jeuclid-cli' 'jeuclid-fop' 'jeuclid-mathviewer' 'jfbterm' 'jffi' 'jffi-javadoc' 'jffi-native' 'jflex' 'jflex-bootstrap' 'jflex-doc' 'jformatstring' 'jformatstring-javadoc' 'jgmenu' 'jgoodies-forms' 'jgoodies-forms-demo' 'jgoodies-forms-javadoc' 'jgoodies-forms-manual' 'jgoodies-looks' 'jgoodies-looks-demo' 'jgoodies-looks-javadoc' 'jgoodies-looks-manual' 'jgraphx' 'jgroups' 'jgroups-javadoc' 'jgroups-manual' 'jgroups-repolib' 'jhbuild' 'jhbuild-lang' 'jhbuild-recommended-deps' 'jhead' 'jhighlight' 'jhighlight-javadoc' 'jigdo' 'jigit' 'jikes' 'jimtcl' 'jimtcl-devel' 'jing' 'jing-javadoc' 'jisp2' 'jisp2-demo' 'jisp2-javadoc' 'jlatexmath' 'jlatexmath-fop' 'jlatexmath-javadoc' 'jlex' 'jlfgr' 'jline' 'jline-javadoc' 'jline1' 'jline1-javadoc' 'jmdict' 'jmess' 'jmess' 'jmess-debuginfo' 'jmess-debugsource' 'jmock' 'jmock-demo' 'jmock-javadoc' 'jmol' 'jna' 'jna-javadoc' 'jo' 'joda-convert' 'joda-convert-javadoc' 'joda-time' 'joda-time-javadoc' 'jogl2' 'john' 'john-wordlists' 'jomolhari-fonts' 'jondo' 'jondofox' 'jp' 'jp2a' 'jpegoptim' 'jpnevulator' 'jq' 'jrosetta' 'jrtplib-devel' 'js' 'js' 'js-debuginfo' 'js-debugsource' 'js-devel' 'jsch' 'jsch-agent-proxy-connector-factory' 'jsch-agent-proxy-core' 'jsch-agent-proxy-javadoc' 'jsch-agent-proxy-jsch' 'jsch-agent-proxy-pageant' 'jsch-agent-proxy-sshagent' 'jsch-agent-proxy-svnkit-trilead-ssh2' 'jsch-agent-proxy-usocket-jna' 'jsch-agent-proxy-usocket-nc' 'jsch-demo' 'jsch-javadoc' 'jshon' 'jsmn-devel' 'json-glib-devel' 'json-table' 'jsoncpp-devel' 'jsonrpc-glib-devel' 'jsoup' 'jsoup-javadoc' 'jsr-305' 'jsr-305-javadoc' 'jsr-311' 'jsr-311-javadoc' 'jthread-devel' 'jtidy' 'jtidy-javadoc' 'jtidy-scripts' 'judy-devel' 'judy-doc' 'juk' 'juk-lang' 'jul-to-slf4j' 'julia' 'julia-compat' 'julia-compat-debug' 'julia-compat-devel' 'julia-debug' 'julia-devel' 'julia-doc' 'jumpnbump' 'junit' 'junit-javadoc' 'junit-manual' 'junit5' 'junit5-guide' 'junit5-javadoc' 'junitperf' 'junitperf-demo' 'junitperf-javadoc' 'jupyter' 'jupyter-bqplot' 'jupyter-calysto' 'jupyter-doc' 'jupyter-hide_code' 'jupyter-imatlab' 'jupyter-ipydatawidgets' 'jupyter-ipydatawidgets-jupyterlab' 'jupyter-ipykernel' 'jupyter-ipyleaflet' 'jupyter-ipympl' 'jupyter-ipympl-jupyterlab' 'jupyter-ipyparallel' 'jupyter-ipyparallel-doc' 'jupyter-ipyscales' 'jupyter-ipysheet' 'jupyter-ipyvolume' 'jupyter-ipywebrtc' 'jupyter-jupyter-contrib-nbextensions' 'jupyter-jupyter-full-width' 'jupyter-jupyter-require' 'jupyter-jupyter-server' 'jupyter-jupyter-themer' 'jupyter-jupyter-wysiwyg' 'jupyter-jupyter_client' 'jupyter-jupyter_client-doc' 'jupyter-jupyter_cms' 'jupyter-jupyter_console' 'jupyter-jupyter_console-doc' 'jupyter-jupyter_contrib_core' 'jupyter-jupyter_core' 'jupyter-jupyter_core-doc' 'jupyter-jupyter_core-filesystem' 'jupyter-jupyter_dashboards' 'jupyter-jupyter_highlight_selected_word' 'jupyter-jupyter_latex_envs' 'jupyter-jupyter_nbextensions_configurator' 'jupyter-jupyterbgnotify' 'jupyter-jupyterlab' 'jupyter-jupyterlab-filesystem' 'jupyter-jupyterlab-ipyscales' 'jupyter-jupyterlab-latex' 'jupyter-jupyterlab-server' 'jupyter-jupyterlab_github' 'jupyter-jupyterlab_templates' 'jupyter-jupytext' 'jupyter-jupytext-jupyterlab' 'jupyter-lineup-widget' 'jupyter-matlab-kernel' 'jupyter-nbconvert' 'jupyter-nbconvert-doc' 'jupyter-nbconvert-latex' 'jupyter-nbdime' 'jupyter-nbdime-git' 'jupyter-nbdime-hg' 'jupyter-nbdime-jupyterlab' 'jupyter-nbformat' 'jupyter-nbformat-doc' 'jupyter-nbinteract' 'jupyter-nbpresent' 'jupyter-notebook' 'jupyter-notebook-doc' 'jupyter-notebook-filesystem' 'jupyter-notebook-lang' 'jupyter-notebook-latex' 'jupyter-octave-kernel' 'jupyter-plotly' 'jupyter-pythreejs' 'jupyter-pythreejs-jupyterlab' 'jupyter-qgrid' 'jupyter-qtconsole' 'jupyter-qtconsole-doc' 'jupyter-rise' 'jupyter-sidecar-jupyterlab' 'jupyter-vega' 'jupyter-vispy' 'jupyter-voila' 'jupyter-widgetsnbextension' 'jvnet-parent' 'jvyamlb' 'jwt_verify_lib-devel' 'jxrlib' 'jxrlib-devel' 'jython' 'jython-demo' 'jython-javadoc' 'jython-manual' 'jzlib' 'jzlib-demo' 'k3b' 'k3b-devel' 'k3b-lang' 'k3s' 'k3s-hyperkube' 'k4dirstat' 'k4dirstat-lang' 'k9copy' 'k9copy' 'k9copy-debuginfo' 'k9copy-debugsource' 'k9copy-lang' 'kaccounts-integration-32bit' 'kaccounts-integration-devel' 'kaccounts-integration-devel-32bit' 'kactivities-stats-devel' 'kactivities-stats-devel-32bit' 'kactivities5-devel' 'kactivities5-devel-32bit' 'kactivities5-tools' 'kadu' 'kadu-devel' 'kadu-sound-bns' 'kadu-sound-drums' 'kadu-sound-florkus' 'kadu-sound-michalsrodek' 'kadu-sound-percussion' 'kadu-sound-ultr' 'kaffeine' 'kaffeine-lang' 'kail' 'kajaani-kombat' 'kajaani-kombat-server' 'kajongg' 'kajongg-lang' 'kakasi' 'kakasi-devel' 'kakasi-dict' 'kakoune' 'kalarm' 'kalarm-lang' 'kalarmcal-devel' 'kalgebra' 'kalgebra-lang' 'kalgebra-mobile' 'kalzium' 'kalzium-devel' 'kalzium-lang' 'kamera-lang' 'kamerka' 'kamerka-lang' 'kamoso' 'kamoso-lang' 'kanagram' 'kanagram-lang' 'kanjipad' 'kapidox' 'kapman' 'kapman-lang' 'kapptemplate' 'kapptemplate-lang' 'karchive-devel' 'karchive-devel-32bit' 'kasumi' 'katacontainers' 'katacontainers-image-initrd' 'kate4-parts' 'katomic' 'katomic-lang' 'kauth-devel' 'kauth-devel-32bit' 'kawaii-player' 'kbackup' 'kbackup-lang' 'kbdsniffd' 'kbfs' 'kbfs-git' 'kbfs-tool' 'kbibtex' 'kbibtex-devel' 'kbibtex-lang' 'kblackbox' 'kblackbox-lang' 'kblocks' 'kblocks-lang' 'kblog-devel' 'kblog-lang' 'kbookmarks-devel' 'kbookmarks-devel-32bit' 'kbounce' 'kbounce-lang' 'kbreakout' 'kbreakout-lang' 'kbruch' 'kbruch-lang' 'kbuild' 'kcachegrind' 'kcachegrind-lang' 'kcalcore-devel' 'kcalutils-devel' 'kchmviewer' 'kcmutils-devel' 'kcmutils-devel-32bit' 'kcodecs-devel' 'kcodecs-devel-32bit' 'kcolorchooser' 'kcolorchooser-lang' 'kcompletion-devel' 'kcompletion-devel-32bit' 'kconfig-devel' 'kconfig-devel-32bit' 'kconfigwidgets-devel' 'kconfigwidgets-devel-32bit' 'kcontacts-devel' 'kcontacts-devel-32bit' 'kcoreaddons-devel' 'kcoreaddons-devel-32bit' 'kcov' 'kcrash-devel' 'kcrash-devel-32bit' 'kcron' 'kcron-lang' 'kdav-devel' 'kdb-devel' 'kdb-lang' 'kdb-mysql-driver' 'kdb-postgresql-driver' 'kdb-sqlite3-driver' 'kdbg' 'kdbg-lang' 'kdbusaddons-devel' 'kdbusaddons-devel-32bit' 'kde-l10n-devel' 'kde-oxygen-fonts' 'kde4-kgreeter-plugins' 'kdebase4-runtime-devel' 'kdebase4-workspace' 'kdebase4-workspace-addons' 'kdebase4-workspace-devel' 'kdebase4-workspace-liboxygenstyle' 'kdebase4-workspace-liboxygenstyle-32bit' 'kdebase4-workspace-libs-32bit' 'kdebugsettings' 'kdebugsettings-lang' 'kdeclarative-components-32bit' 'kdeclarative-devel' 'kdeclarative-devel-32bit' 'kdeclarative-tools' 'kded-devel' 'kdeedu-data' 'kdegames-carddecks-other' 'kdelibs4-doc' 'kdelibs4support-32bit' 'kdelibs4support-devel' 'kdelibs4support-devel-32bit' 'kdenlive' 'kdenlive-lang' 'kdepim-apps-libs-devel' 'kdesdk-scripts' 'kdesdk-scripts-kf5-porting' 'kdesdk-scripts-lang' 'kdesdk-thumbnailers' 'kdesdk-thumbnailers-lang' 'kdesignerplugin' 'kdesignerplugin-devel' 'kdesignerplugin-lang' 'kdesu-devel' 'kdesu-devel-32bit' 'kdesvn' 'kdevelop5' 'kdevelop5-lang' 'kdevelop5-pg-qt' 'kdevelop5-plugin-php' 'kdevelop5-plugin-php-devel' 'kdevelop5-plugin-php-lang' 'kdevelop5-plugin-python3' 'kdevelop5-plugin-python3-lang' 'kdevplatform' 'kdevplatform-devel' 'kdevplatform-lang' 'kdewebkit-devel' 'kdewebkit-devel-32bit' 'kdf' 'kdf-lang' 'kdgantt2' 'kdgantt2-devel' 'kdiagram-devel' 'kdiamond' 'kdiamond-lang' 'kdiff3' 'kdiff3-lang' 'kdm' 'kdm-branding-upstream' 'kdnssd' 'kdnssd-framework-devel' 'kdnssd-framework-devel-32bit' 'kdnssd-lang' 'kdoctools-devel' 'kdoctools-devel-32bit' 'kdstatemachineeditor-devel' 'kdumpid' 'kdvdcreator' 'kdvdcreator' 'kdvdcreator-debuginfo' 'kdvdcreator-debugsource' 'keditbookmarks' 'keditbookmarks-lang' 'keepalived' 'keepass' 'keepassx' 'kelbt' 'kemoticons-devel' 'kemoticons-devel-32bit' 'kernel-coverage' 'kernel-debug' 'kernel-debug-devel' 'kernel-default-base' 'kernel-default-base-rebuild' 'kernel-docs' 'kernel-docs-html' 'kernel-firmware-all' 'kernel-firmware-amdgpu' 'kernel-firmware-ath10k' 'kernel-firmware-atheros' 'kernel-firmware-bluetooth' 'kernel-firmware-bnx2' 'kernel-firmware-brcm' 'kernel-firmware-chelsio' 'kernel-firmware-dpaa2' 'kernel-firmware-i915' 'kernel-firmware-intel' 'kernel-firmware-iwlwifi' 'kernel-firmware-liquidio' 'kernel-firmware-marvell' 'kernel-firmware-media' 'kernel-firmware-mediatek' 'kernel-firmware-mellanox' 'kernel-firmware-mwifiex' 'kernel-firmware-network' 'kernel-firmware-nfp' 'kernel-firmware-nvidia' 'kernel-firmware-platform' 'kernel-firmware-qlogic' 'kernel-firmware-radeon' 'kernel-firmware-realtek' 'kernel-firmware-serial' 'kernel-firmware-sound' 'kernel-firmware-ti' 'kernel-firmware-ueagle' 'kernel-firmware-usb-network' 'kernel-kvmsmall' 'kernel-kvmsmall-devel' 'kernel-obs-build' 'kernel-obs-qa' 'kernel-pae' 'kernel-pae-devel' 'kernel-source' 'kernel-source-vanilla' 'kernel-syms' 'kernel-vanilla' 'kernel-vanilla-devel' 'ketchup' 'kexi' 'kexi-lang' 'kexis' 'kexis' 'kexis-debuginfo' 'kexis-debugsource' 'keybase-client' 'keybinder-3.0-devel' 'keybinder-devel' 'keybinder-lua' 'keychain' 'keyutils-devel' 'keyutils-devel-32bit' 'kf5-filesystem' 'kf5-kcm-fcitx' 'kf5-kcm-fcitx-icons' 'kf5-mediainfo' 'kf5-pacpl-plugins' 'kfilemetadata5-32bit' 'kfilemetadata5-devel' 'kfind' 'kfind-lang' 'kfloppy' 'kfloppy-lang' 'kfourinline' 'kfourinline-lang' 'kgeography' 'kgeography-lang' 'kget' 'kget-lang' 'kglobalaccel-devel' 'kglobalaccel-devel-32bit' 'kgoldrunner' 'kgoldrunner-lang' 'kgpg' 'kgpg-lang' 'kguiaddons-devel' 'kguiaddons-devel-32bit' 'khangman' 'khangman-lang' 'khmeros-fonts' 'kholidays' 'kholidays-devel' 'khotkeys5-devel' 'khtml-devel' 'khtml-devel-32bit' 'khunphan' 'ki18n-devel' 'ki18n-devel-32bit' 'kicad' 'kicad-doc' 'kicad-doc-ca' 'kicad-doc-de' 'kicad-doc-en' 'kicad-doc-es' 'kicad-doc-fr' 'kicad-doc-id' 'kicad-doc-it' 'kicad-doc-ja' 'kicad-doc-pdf-ca' 'kicad-doc-pdf-de' 'kicad-doc-pdf-en' 'kicad-doc-pdf-es' 'kicad-doc-pdf-fr' 'kicad-doc-pdf-id' 'kicad-doc-pdf-it' 'kicad-doc-pdf-ja' 'kicad-doc-pdf-ru' 'kicad-doc-pdf-zh' 'kicad-doc-pl' 'kicad-doc-ru' 'kicad-doc-zh' 'kicad-footprints' 'kicad-lang-bg' 'kicad-lang-ca' 'kicad-lang-cs' 'kicad-lang-de' 'kicad-lang-el' 'kicad-lang-en' 'kicad-lang-es' 'kicad-lang-fi' 'kicad-lang-fr' 'kicad-lang-hu' 'kicad-lang-it' 'kicad-lang-ja' 'kicad-lang-ko' 'kicad-lang-lt' 'kicad-lang-nl' 'kicad-lang-pl' 'kicad-lang-pt' 'kicad-lang-ru' 'kicad-lang-sk' 'kicad-lang-sl' 'kicad-lang-sv' 'kicad-lang-zh_CN' 'kicad-lang-zh_TW' 'kicad-packages3D' 'kicad-symbols' 'kicad-templates' 'kiconthemes-devel' 'kiconthemes-devel-32bit' 'kid3' 'kid3-cli' 'kid3-core' 'kid3-core-lang' 'kid3-doc' 'kid3-qt' 'kid3-qt-doc' 'kidentitymanagement-devel' 'kidletime-devel' 'kidletime-devel-32bit' 'kig' 'kig-lang' 'kigo' 'kigo-lang' 'kile' 'kile-lang' 'killbots' 'killbots-lang' 'killerd' 'killswitch-applet' 'kim' 'kim' 'kim-api' 'kim-api-devel' 'kim-api-examples' 'kimageformats-32bit' 'kimageformats-eps' 'kimagemapeditor' 'kimagemapeditor-lang' 'kimap-devel' 'kinit-32bit' 'kinit-devel' 'kinput2' 'kio-32bit' 'kio-core-32bit' 'kio-devel' 'kio-devel-32bit' 'kio-gdrive' 'kio-gdrive-lang' 'kio-stash' 'kio-stash-lang' 'kio_audiocd-devel' 'kio_iso' 'kio_kamera' 'kio_perldoc' 'kio_perldoc-lang' 'kirigami' 'kirigami-devel' 'kirigami-gallery' 'kirigami-gallery-lang' 'kirigami-lang' 'kirigami2-devel' 'kiriki' 'kiriki-lang' 'kismet' 'kitemmodels-devel' 'kitemmodels-devel-32bit' 'kitemviews-devel' 'kitemviews-devel-32bit' 'kiten' 'kiten-devel' 'kiten-lang' 'kitinerary-devel' 'kitty' 'kiwi-boot-descriptions' 'kiwi-boot-requires' 'kiwi-filesystem-requires' 'kiwi-image-docker-requires' 'kiwi-image-iso-requires' 'kiwi-image-oem-requires' 'kiwi-image-pxe-requires' 'kiwi-image-tbz-requires' 'kiwi-image-vmx-requires' 'kiwi-man-pages' 'kiwi-pxeboot' 'kiwi-tools' 'kjobwidgets-devel' 'kjobwidgets-devel-32bit' 'kjots' 'kjots-lang' 'kjs-devel' 'kjs-devel-32bit' 'kjs-devel-lang' 'kjsembed-devel' 'kjsembed-devel-32bit' 'kjumpingcube' 'kjumpingcube-lang' 'kkc-data' 'klatexformula' 'klatexformula-apidoc' 'klavaro' 'kldap-devel' 'klee' 'klee-uclibc-devel-static' 'klettres' 'klettres-lang' 'klfbackend-devel' 'klftools-devel' 'klick' 'klick' 'klick-debuginfo' 'klick-debugsource' 'klickety' 'klickety-lang' 'klines' 'klines-lang' 'kmailtransport-devel' 'kmarkdownwebview' 'kmarkdownwebview-lang' 'kmbox-devel' 'kmediaplayer-devel' 'kmediaplayer-devel-32bit' 'kmime-devel' 'kmix' 'kmix-lang' 'kmod-bash-completion' 'kmouth' 'kmouth-lang' 'kmplot' 'kmplot-lang' 'kmscon' 'kmscube' 'kmymoney' 'kmymoney-devel' 'kmymoney-lang' 'knavalbattle' 'knavalbattle-lang' 'knemo' 'knemo-lang' 'knetwalk' 'knetwalk-lang' 'knewstuff-core-devel' 'knewstuff-devel' 'knewstuff-devel-32bit' 'knewstuff-imports' 'knewstuff-quick-devel' 'knights' 'knights-lang' 'knock' 'knockd' 'knot' 'knotifications-devel' 'knotifications-devel-32bit' 'knotifyconfig-devel' 'knotifyconfig-devel-32bit' 'kochmorse' 'kodi' 'kodi' 'kodi-debuginfo' 'kodi-debugsource' 'kodi-devel' 'kodi.binary-addons' 'kodi.binary-addons' 'kodi.binary-addons-audiodecoder.2sf' 'kodi.binary-addons-audiodecoder.2sf-debuginfo' 'kodi.binary-addons-audiodecoder.asap' 'kodi.binary-addons-audiodecoder.asap-debuginfo' 'kodi.binary-addons-audiodecoder.fluidsynth' 'kodi.binary-addons-audiodecoder.fluidsynth-debuginfo' 'kodi.binary-addons-audiodecoder.gme' 'kodi.binary-addons-audiodecoder.gme-debuginfo' 'kodi.binary-addons-audiodecoder.gsf' 'kodi.binary-addons-audiodecoder.gsf-debuginfo' 'kodi.binary-addons-audiodecoder.modplug' 'kodi.binary-addons-audiodecoder.modplug-debuginfo' 'kodi.binary-addons-audiodecoder.nosefart' 'kodi.binary-addons-audiodecoder.nosefart-debuginfo' 'kodi.binary-addons-audiodecoder.organya' 'kodi.binary-addons-audiodecoder.organya-debuginfo' 'kodi.binary-addons-audiodecoder.qsf' 'kodi.binary-addons-audiodecoder.qsf-debuginfo' 'kodi.binary-addons-audiodecoder.snesapu' 'kodi.binary-addons-audiodecoder.snesapu-debuginfo' 'kodi.binary-addons-audiodecoder.ssf' 'kodi.binary-addons-audiodecoder.ssf-debuginfo' 'kodi.binary-addons-audiodecoder.stsound' 'kodi.binary-addons-audiodecoder.stsound-debuginfo' 'kodi.binary-addons-audiodecoder.timidity' 'kodi.binary-addons-audiodecoder.timidity-debuginfo' 'kodi.binary-addons-audiodecoder.upse' 'kodi.binary-addons-audiodecoder.upse-debuginfo' 'kodi.binary-addons-audiodecoder.usf' 'kodi.binary-addons-audiodecoder.usf-debuginfo' 'kodi.binary-addons-audiodecoder.vgmstream' 'kodi.binary-addons-audiodecoder.vgmstream-debuginfo' 'kodi.binary-addons-audiodecoder.wsr' 'kodi.binary-addons-audiodecoder.wsr-debuginfo' 'kodi.binary-addons-audioencoder.flac' 'kodi.binary-addons-audioencoder.flac-debuginfo' 'kodi.binary-addons-audioencoder.lame' 'kodi.binary-addons-audioencoder.lame-debuginfo' 'kodi.binary-addons-audioencoder.vorbis' 'kodi.binary-addons-audioencoder.vorbis-debuginfo' 'kodi.binary-addons-audioencoder.wav' 'kodi.binary-addons-audioencoder.wav-debuginfo' 'kodi.binary-addons-debuginfo' 'kodi.binary-addons-debugsource' 'kodi.binary-addons-imagedecoder.mpo' 'kodi.binary-addons-imagedecoder.mpo-debuginfo' 'kodi.binary-addons-imagedecoder.raw' 'kodi.binary-addons-imagedecoder.raw-debuginfo' 'kodi.binary-addons-inputstream.adaptive' 'kodi.binary-addons-inputstream.adaptive-debuginfo' 'kodi.binary-addons-inputstream.rtmp' 'kodi.binary-addons-inputstream.rtmp-debuginfo' 'kodi.binary-addons-peripheral.xarcade' 'kodi.binary-addons-peripheral.xarcade-debuginfo' 'kodi.binary-addons-pvr.argustv' 'kodi.binary-addons-pvr.argustv-debuginfo' 'kodi.binary-addons-pvr.demo' 'kodi.binary-addons-pvr.demo-debuginfo' 'kodi.binary-addons-pvr.dvblink' 'kodi.binary-addons-pvr.dvblink-debuginfo' 'kodi.binary-addons-pvr.dvbviewer' 'kodi.binary-addons-pvr.dvbviewer-debuginfo' 'kodi.binary-addons-pvr.filmon' 'kodi.binary-addons-pvr.filmon-debuginfo' 'kodi.binary-addons-pvr.hdhomerun' 'kodi.binary-addons-pvr.hdhomerun-debuginfo' 'kodi.binary-addons-pvr.hts' 'kodi.binary-addons-pvr.hts-debuginfo' 'kodi.binary-addons-pvr.iptvsimple' 'kodi.binary-addons-pvr.iptvsimple-debuginfo' 'kodi.binary-addons-pvr.mediaportal.tvserver' 'kodi.binary-addons-pvr.mediaportal.tvserver-debuginfo' 'kodi.binary-addons-pvr.mythtv' 'kodi.binary-addons-pvr.mythtv-debuginfo' 'kodi.binary-addons-pvr.nextpvr' 'kodi.binary-addons-pvr.nextpvr-debuginfo' 'kodi.binary-addons-pvr.njoy' 'kodi.binary-addons-pvr.njoy-debuginfo' 'kodi.binary-addons-pvr.octonet' 'kodi.binary-addons-pvr.octonet-debuginfo' 'kodi.binary-addons-pvr.pctv' 'kodi.binary-addons-pvr.pctv-debuginfo' 'kodi.binary-addons-pvr.sledovanitv.cz' 'kodi.binary-addons-pvr.sledovanitv.cz-debuginfo' 'kodi.binary-addons-pvr.stalker' 'kodi.binary-addons-pvr.stalker-debuginfo' 'kodi.binary-addons-pvr.teleboy' 'kodi.binary-addons-pvr.teleboy-debuginfo' 'kodi.binary-addons-pvr.vbox' 'kodi.binary-addons-pvr.vbox-debuginfo' 'kodi.binary-addons-pvr.vdr.vnsi' 'kodi.binary-addons-pvr.vdr.vnsi-debuginfo' 'kodi.binary-addons-pvr.vuplus' 'kodi.binary-addons-pvr.vuplus-debuginfo' 'kodi.binary-addons-pvr.wmc' 'kodi.binary-addons-pvr.wmc-debuginfo' 'kodi.binary-addons-pvr.zattoo' 'kodi.binary-addons-pvr.zattoo-debuginfo' 'kodi.binary-addons-screensaver.asteroids' 'kodi.binary-addons-screensaver.asteroids-debuginfo' 'kodi.binary-addons-screensaver.asterwave' 'kodi.binary-addons-screensaver.asterwave-debuginfo' 'kodi.binary-addons-screensaver.biogenesis' 'kodi.binary-addons-screensaver.biogenesis-debuginfo' 'kodi.binary-addons-screensaver.cpblobs' 'kodi.binary-addons-screensaver.cpblobs-debuginfo' 'kodi.binary-addons-screensaver.greynetic' 'kodi.binary-addons-screensaver.greynetic-debuginfo' 'kodi.binary-addons-screensaver.matrixtrails' 'kodi.binary-addons-screensaver.matrixtrails-debuginfo' 'kodi.binary-addons-screensaver.pingpong' 'kodi.binary-addons-screensaver.pingpong-debuginfo' 'kodi.binary-addons-screensaver.pyro' 'kodi.binary-addons-screensaver.pyro-debuginfo' 'kodi.binary-addons-screensaver.stars' 'kodi.binary-addons-screensaver.stars-debuginfo' 'kodi.binary-addons-vfs.libarchive' 'kodi.binary-addons-vfs.libarchive-debuginfo' 'kodi.binary-addons-vfs.nfs' 'kodi.binary-addons-vfs.nfs-debuginfo' 'kodi.binary-addons-vfs.rar' 'kodi.binary-addons-vfs.rar-debuginfo' 'kodi.binary-addons-vfs.sacd' 'kodi.binary-addons-vfs.sacd-debuginfo' 'kodi.binary-addons-vfs.sftp' 'kodi.binary-addons-vfs.sftp-debuginfo' 'kodi.binary-addons-visualization.fishbmc' 'kodi.binary-addons-visualization.fishbmc-debuginfo' 'kodi.binary-addons-visualization.goom' 'kodi.binary-addons-visualization.goom-debuginfo' 'kodi.binary-addons-visualization.shadertoy' 'kodi.binary-addons-visualization.shadertoy-debuginfo' 'kodi.binary-addons-visualization.spectrum' 'kodi.binary-addons-visualization.spectrum-debuginfo' 'kodi.binary-addons-visualization.waveform' 'kodi.binary-addons-visualization.waveform-debuginfo' 'kohsuke-pom' 'kolf' 'kolf-lang' 'kollision' 'kollision-lang' 'kolor-manager' 'kolourpaint' 'kolourpaint-lang' 'kompare-devel' 'konkretcmpi-devel' 'konkretcmpi-python' 'konqueror' 'konqueror-devel' 'konqueror-lang' 'konqueror-plugins' 'konquest' 'konquest-lang' 'konsole4-part' 'kontactinterface-devel' 'kopano-archiver' 'kopano-backup' 'kopano-bash-completion' 'kopano-client' 'kopano-common' 'kopano-contacts' 'kopano-dagent' 'kopano-devel' 'kopano-gateway' 'kopano-ical' 'kopano-lang' 'kopano-migration-imap' 'kopano-migration-pst' 'kopano-monitor' 'kopano-presence' 'kopano-python-utils' 'kopano-search' 'kopano-server' 'kopano-server-packages' 'kopano-spamd' 'kopano-spooler' 'kopano-statsd' 'kopano-utils' 'kopano-webapp' 'kopano-webapp-contactfax' 'kopano-webapp-folderwidgets' 'kopano-webapp-gmaps' 'kopano-webapp-lang' 'kopano-webapp-pimfolder' 'kopano-webapp-quickitems' 'kopano-webapp-titlecounter' 'kopano-webapp-webappmanual' 'kopano-webapp-zdeveloper' 'kopete' 'kopete-devel' 'kopete-lang' 'kpackage-32bit' 'kpackage-devel' 'kpackage-devel-32bit' 'kpartloader' 'kpartloader-lang' 'kparts-devel' 'kparts-devel-32bit' 'kpartsplugin' 'kpartsplugin' 'kpartsplugin-debuginfo' 'kpartsplugin-debugsource' 'kpeople5-32bit' 'kpeople5-devel' 'kpeople5-devel-32bit' 'kphotoalbum' 'kphotoalbum-lang' 'kpimtextedit-devel' 'kpkpass-devel' 'kplayer' 'kplayer' 'kplayer-debuginfo' 'kplayer-debugsource' 'kplayer-doc' 'kplayer-lang' 'kplotting-devel' 'kplotting-devel-32bit' 'kpmcore' 'kpmcore-devel' 'kpmcore-lang' 'kproperty' 'kproperty-devel' 'kproperty-lang' 'kpty-devel' 'kpty-devel-32bit' 'kqtquickcharts' 'kraft' 'krandr' 'krb5-auth-dialog' 'krb5-auth-dialog-lang' 'krb5-client' 'krb5-devel' 'krb5-devel-32bit' 'krb5-plugin-kdb-ldap' 'krb5-plugin-preauth-otp' 'krb5-plugin-preauth-pkinit' 'krb5-plugin-preauth-spake' 'krb5-server' 'krdc' 'krdc-devel' 'krdc-lang' 'krename' 'kreport' 'kreport-devel' 'kreport-lang' 'krfb' 'krfb-lang' 'krita' 'krita-devel' 'krita-lang' 'kronometer' 'kross-32bit' 'kross-devel' 'kross-devel-32bit' 'kross-python' 'kruler' 'kruler-lang' 'krunner-devel' 'krunner-devel-32bit' 'krusader' 'krusader-doc' 'kscd' 'kscreenlocker-devel' 'kservice-32bit' 'kservice-devel' 'kservice-devel-32bit' 'ksh' 'ksh-devel' 'kshisen' 'kshisen-lang' 'kshutdown' 'ksirk' 'ksirk-lang' 'ksmtp-devel' 'ksnakeduel' 'ksnakeduel-lang' 'kspaceduel' 'kspaceduel-lang' 'ksquares' 'ksquares-lang' 'kssl' 'kst' 'kst-devel' 'kstars' 'kstars-lang' 'ksystemlog' 'ksystemlog-lang' 'kteatime' 'kteatime-lang' 'ktexteditor-32bit' 'ktexteditor-devel' 'ktexteditor-devel-32bit' 'ktextwidgets-devel' 'ktextwidgets-devel-32bit' 'ktimer' 'ktimer-lang' 'ktnef-devel' 'ktoblzcheck' 'ktoblzcheck-devel' 'ktorrent' 'ktorrent-lang' 'ktouch' 'ktouch-lang' 'ktp-accounts-kcm' 'ktp-accounts-kcm-lang' 'ktp-approver' 'ktp-approver-lang' 'ktp-auth-handler' 'ktp-auth-handler-lang' 'ktp-common-internals' 'ktp-common-internals-devel' 'ktp-common-internals-lang' 'ktp-contact-list' 'ktp-contact-list-lang' 'ktp-contact-runner' 'ktp-contact-runner-lang' 'ktp-desktop-applets' 'ktp-desktop-applets-lang' 'ktp-filetransfer-handler' 'ktp-filetransfer-handler-lang' 'ktp-icons' 'ktp-kded-module' 'ktp-kded-module-lang' 'ktp-send-file' 'ktp-send-file-lang' 'ktp-text-ui' 'ktp-text-ui-lang' 'ktuberling' 'ktuberling-lang' 'kturtle' 'kturtle-lang' 'kubeadm' 'kubectl' 'kubectl-who-can' 'kubernetes-apiserver' 'kubernetes-client' 'kubernetes-controller-manager' 'kubernetes-dashboard' 'kubernetes-dns' 'kubernetes-extra' 'kubernetes-kubeadm' 'kubernetes-kubelet' 'kubernetes-master' 'kubernetes-node' 'kubernetes-node-image-pause' 'kubernetes-pause' 'kubernetes-proxy' 'kubernetes-salt' 'kubernetes-scheduler' 'kubernetes_utilities' 'kubic-dex-branding' 'kubic-locale-archive' 'kubic-pause' 'kubic_admin' 'kubic_loadbalancer' 'kubic_worker' 'kubicctl' 'kubicd' 'kubrick' 'kubrick-lang' 'kuiviewer' 'kuiviewer-lang' 'kunitconversion-devel' 'kunitconversion-devel-32bit' 'kup-client' 'kup-server' 'kupfer' 'kured' 'kured-k8s-yaml' 'kurso-de-esperanto' 'kvazaar' 'kvazaar' 'kvazaar-debuginfo' 'kvazaar-debugsource' 'kvirc' 'kwallet-devel' 'kwallet-devel-32bit' 'kwave' 'kwave-lang' 'kwayland-32bit' 'kwayland-devel' 'kwayland-devel-32bit' 'kwebkitpart' 'kwebkitpart-lang' 'kwidgetsaddons-devel' 'kwidgetsaddons-devel-32bit' 'kwikdisk' 'kwin' 'kwin-lowlatency' 'kwin-lowlatency-devel' 'kwin5' 'kwin5-devel' 'kwindowsystem-devel' 'kwindowsystem-devel-32bit' 'kwordquiz' 'kwordquiz-lang' 'kwrite' 'kwrited5' 'kxml' 'kxml-javadoc' 'kxmlgui-devel' 'kxmlgui-devel-32bit' 'kxmlrpcclient5-devel' 'kxmlrpcclient5-devel-32bit' 'kye' 'kye-data' 'kyotocabinet' 'l-smash' 'l-smash' 'l-smash-debuginfo' 'l-smash-debugsource' 'l-smash-devel' 'labplot-kf5' 'labplot-kf5-lang' 'ladspa' 'ladspa-32bit' 'ladspa-AMB' 'ladspa-FIL' 'ladspa-LEET-plugin' 'ladspa-LEET-plugin' 'ladspa-LEET-plugin-debuginfo' 'ladspa-MCP' 'ladspa-REV' 'ladspa-VCO' 'ladspa-WAH' 'ladspa-WAH' 'ladspa-WAH-debuginfo' 'ladspa-WAH-debugsource' 'ladspa-alienwah' 'ladspa-aweight' 'ladspa-aweight' 'ladspa-aweight-debuginfo' 'ladspa-aweight-debugsource' 'ladspa-blepvco' 'ladspa-blop' 'ladspa-bs2b' 'ladspa-bs2b' 'ladspa-bs2b-debuginfo' 'ladspa-bs2b-debugsource' 'ladspa-caps' 'ladspa-clipper' 'ladspa-clipper' 'ladspa-cmt' 'ladspa-devel' 'ladspa-foo-plugins' 'ladspa-foo-plugins' 'ladspa-foo-plugins-debuginfo' 'ladspa-foo-plugins-debugsource' 'ladspa-guitarix' 'ladspa-invada-studio-plugins' 'ladspa-invada-studio-plugins' 'ladspa-lemux' 'ladspa-lemux' 'ladspa-lemux-debuginfo' 'ladspa-lemux-debugsource' 'ladspa-lgv-plugins' 'ladspa-lgv-plugins' 'ladspa-lgv-plugins-debuginfo' 'ladspa-lgv-plugins-debugsource' 'ladspa-matched' 'ladspa-njl' 'ladspa-njl' 'ladspa-njl-debuginfo' 'ladspa-njl-debugsource' 'ladspa-omins' 'ladspa-omins' 'ladspa-omins-debuginfo' 'ladspa-omins-debugsource' 'ladspa-preamp' 'ladspa-pvoc' 'ladspa-sooperlooper' 'ladspa-super-60' 'ladspa-tap-plugins' 'ladspa-trigger' 'ladspa-trigger' 'ladspa-vcf' 'ladspa-vlevel' 'ladspa-vocoder' 'ladspa-wasp' 'ladspa-wasp' 'ladspa-wasp-debuginfo' 'ladspa-wasp-debugsource' 'ladspa-wubflip' 'ladspa-wubflip' 'laf-plugin' 'laf-plugin-javadoc' 'lame-doc' 'lame-mp3rtp' 'lammps' 'lammps-data' 'lammps-devel' 'lamp_server' 'lapack-devel' 'lapack-devel-32bit' 'lapack-devel-static' 'lapack-man' 'lapacke-devel' 'lapacke-devel-32bit' 'lapacke-devel-static' 'lapdog' 'laptop' 'laptop-mode-tools' 'laptop-mode-tools-gui' 'lasem' 'lasem-devel' 'lash' 'lash-debuginfo' 'lash-debugsource' 'lash-devel' 'lastpass-cli' 'laszip-devel' 'latencytop' 'latex2html' 'latex2html-doc' 'latex2html-pngicons' 'latex2rtf' 'lato-fonts' 'latrace' 'latte-dock' 'latte-dock-lang' 'lazarus' 'lbdb' 'lbzip2' 'lcab' 'lcdf-typetools' 'lcms2' 'lcov' 'lcurse' 'ld10k1' 'ld10k1-devel' 'ldacBT-devel' 'ldapfuse' 'ldapvi' 'ldb-tools' 'ldc' 'ldc-bash-completion' 'ldc-phobos-devel' 'ldc-runtime-devel' 'ldirectord' 'ldns' 'ldns-devel' 'ldtp' 'ldvd' 'ldvd' 'leafnode' 'leafpad' 'lector' 'ledmon' 'leechcraft' 'leechcraft-advancednotifications' 'leechcraft-aggregator' 'leechcraft-aggregator-bodyfetch' 'leechcraft-aggregator-webaccess' 'leechcraft-anhero' 'leechcraft-auscrie' 'leechcraft-azoth' 'leechcraft-azoth-abbrev' 'leechcraft-azoth-acetamide' 'leechcraft-azoth-adiumstyles' 'leechcraft-azoth-autoidler' 'leechcraft-azoth-autopaste' 'leechcraft-azoth-birthdaynotifier' 'leechcraft-azoth-chathistory' 'leechcraft-azoth-depester' 'leechcraft-azoth-doc' 'leechcraft-azoth-embedmedia' 'leechcraft-azoth-herbicide' 'leechcraft-azoth-hili' 'leechcraft-azoth-isterique' 'leechcraft-azoth-juick' 'leechcraft-azoth-keeso' 'leechcraft-azoth-lastseen' 'leechcraft-azoth-metacontacts' 'leechcraft-azoth-modnok' 'leechcraft-azoth-mucommands' 'leechcraft-azoth-murm' 'leechcraft-azoth-nativeemoticons' 'leechcraft-azoth-otroid' 'leechcraft-azoth-rosenthal' 'leechcraft-azoth-shx' 'leechcraft-azoth-standardstyles' 'leechcraft-azoth-vader' 'leechcraft-azoth-velvetbird' 'leechcraft-azoth-xoox' 'leechcraft-azoth-xtazy' 'leechcraft-bittorrent' 'leechcraft-blasq' 'leechcraft-blasq-deathnote' 'leechcraft-blasq-rappor' 'leechcraft-blasq-vangog' 'leechcraft-blogique' 'leechcraft-blogique-hestia' 'leechcraft-blogique-metida' 'leechcraft-certmgr' 'leechcraft-cpuload' 'leechcraft-cstp' 'leechcraft-dbusmanager' 'leechcraft-deadlyrics' 'leechcraft-devel' 'leechcraft-devmon' 'leechcraft-doc' 'leechcraft-dolozhee' 'leechcraft-dumbeep' 'leechcraft-eleeminator' 'leechcraft-fenet' 'leechcraft-fenet-awesome' 'leechcraft-fenet-kwin' 'leechcraft-fenet-openbox' 'leechcraft-gacts' 'leechcraft-glance' 'leechcraft-gmailnotifier' 'leechcraft-historyholder' 'leechcraft-hotstreams' 'leechcraft-htthare' 'leechcraft-imgaste' 'leechcraft-intermutko' 'leechcraft-kbswitch' 'leechcraft-kinotify' 'leechcraft-knowhow' 'leechcraft-krigstask' 'leechcraft-lackman' 'leechcraft-lastfmscrobble' 'leechcraft-laughty' 'leechcraft-launchy' 'leechcraft-lemon' 'leechcraft-lhtr' 'leechcraft-liznoo' 'leechcraft-lmp' 'leechcraft-lmp-brainslugz' 'leechcraft-lmp-dumbsync' 'leechcraft-lmp-fradj' 'leechcraft-lmp-graffiti' 'leechcraft-lmp-httstream' 'leechcraft-lmp-mp3tunes' 'leechcraft-lmp-mtpsync' 'leechcraft-lmp-potorchu' 'leechcraft-lmp-ppl' 'leechcraft-mellonetray' 'leechcraft-monocle' 'leechcraft-monocle-dik' 'leechcraft-monocle-doc' 'leechcraft-monocle-fxb' 'leechcraft-monocle-pdf' 'leechcraft-monocle-postrus' 'leechcraft-monocle-seen' 'leechcraft-musiczombie' 'leechcraft-namauth' 'leechcraft-netstoremanager' 'leechcraft-netstoremanager-googledrive' 'leechcraft-networkmonitor' 'leechcraft-newlife' 'leechcraft-ooronee' 'leechcraft-otlozhu' 'leechcraft-pintab' 'leechcraft-pogooglue' 'leechcraft-poshuku' 'leechcraft-poshuku-autosearch' 'leechcraft-poshuku-cleanweb' 'leechcraft-poshuku-dcac' 'leechcraft-poshuku-fatape' 'leechcraft-poshuku-filescheme' 'leechcraft-poshuku-foc' 'leechcraft-poshuku-fua' 'leechcraft-poshuku-keywords' 'leechcraft-poshuku-onlinebookmarks' 'leechcraft-poshuku-onlinebookmarks-delicious' 'leechcraft-poshuku-onlinebookmarks-readitlater' 'leechcraft-poshuku-qrd' 'leechcraft-poshuku-speeddial' 'leechcraft-poshuku-webkitview' 'leechcraft-rosenthal' 'leechcraft-sb2' 'leechcraft-scroblibre' 'leechcraft-secman' 'leechcraft-secman-simplestorage' 'leechcraft-seekthru' 'leechcraft-summary' 'leechcraft-sysnotify' 'leechcraft-tabsessionmanager' 'leechcraft-tabslist' 'leechcraft-textogroose' 'leechcraft-touchstreams' 'leechcraft-tpi' 'leechcraft-vrooby' 'leechcraft-xproxy' 'leechcraft-xtazy' 'leechcraft-zalil' 'legion-devel' 'lekha' 'lemonbar' 'lensfun-data' 'lensfun-devel' 'lensfun-doc' 'lensfun-tools' 'leptonica-devel' 'leptonica-tools' 'leveldb' 'leveldb-devel' 'leveldb-devel-static' 'lftp' 'lhasa' 'lhasa-devel' 'lib3270-5_1' 'lib3270-devel' 'lib389' 'lib3ds-1-3' 'lib3ds-devel' 'lib4store-devel' 'lib4store0' 'lib4ti2-0' 'libADLMIDI1' 'libAPFEL0' 'libAnalitza5' 'libAppStreamQt-devel' 'libArcus-devel' 'libArcus3' 'libBox2D-devel' 'libBox2D-devel-32bit' 'libBox2D2_3_1' 'libBox2D2_3_1-32bit' 'libBulletFileLoader2_88' 'libBulletInverseDynamicsUtils2_88' 'libBulletWorldImporter2_88' 'libBulletXmlWorldImporter2_88' 'libCGAL13' 'libCGAL_Core13' 'libCGAL_ImageIO14' 'libCGAL_Qt5-14' 'libCSXCAD0' 'libCharLS2' 'libCoin60' 'libColPack0' 'libColPack0-32bit' 'libColorFull0' 'libConvexDecomposition2_88' 'libEMF-devel' 'libEMF-utils' 'libEMF1' 'libEspresso4' 'libFLAC++6' 'libFLAC++6-32bit' 'libFOX-1_6-0' 'libFS-devel' 'libFS-devel-32bit' 'libFS6' 'libFS6-32bit' 'libField3D1_7' 'libField3D1_7-debuginfo' 'libGIMPACTUtils2_88' 'libGLC-devel' 'libGLC0' 'libGLEW2_1-32bit' 'libGLw-devel' 'libGLw1' 'libGLw1-32bit' 'libGLwM1' 'libGLwM1-32bit' 'libGammu8' 'libGeneratedSaxParser0_3' 'libGeoIP-devel' 'libGeoIP-devel-32bit' 'libGeoIP1-32bit' 'libGetDP2_11' 'libGraphicsMagick++-Q16-12' 'libGraphicsMagick++-devel' 'libGraphicsMagick-Q16-3' 'libGraphicsMagick3-config' 'libGraphicsMagickWand-Q16-2' 'libHACD2_88' 'libHX-devel' 'libHX-devel-32bit' 'libHX28' 'libHX28-32bit' 'libHYPRE-gnu-mpich-hpc' 'libHYPRE-gnu-mvapich2-hpc' 'libHYPRE-gnu-openmpi1-hpc' 'libHYPRE-gnu-openmpi2-hpc' 'libHYPRE-gnu-openmpi3-hpc' 'libHYPRE0' 'libHYPRE0-32bit' 'libHYPRE0-mpich' 'libHYPRE0-mpich-32bit' 'libHYPRE0-mvapich2' 'libHYPRE0-mvapich2-32bit' 'libHYPRE0-openmpi' 'libHYPRE0-openmpi-32bit' 'libHYPRE0-openmpi2' 'libHYPRE0-openmpi2-32bit' 'libHYPRE_2_15_1-gnu-mpich-hpc' 'libHYPRE_2_15_1-gnu-mvapich2-hpc' 'libHYPRE_2_15_1-gnu-openmpi1-hpc' 'libHYPRE_2_15_1-gnu-openmpi2-hpc' 'libHYPRE_2_15_1-gnu-openmpi3-hpc' 'libHalf24-32bit' 'libHepMC3-1' 'libHepMC4' 'libICE-devel' 'libICE-devel-32bit' 'libICE6-32bit' 'libIDL-2-0' 'libIDL-2-0-32bit' 'libIL1' 'libIccXML-devel' 'libIccXML2' 'libIex-2_3-24-32bit' 'libIexMath-2_3-24' 'libIexMath-2_3-24-32bit' 'libIlmImf-2_3-24-32bit' 'libIlmImfUtil-2_3-24' 'libIlmImfUtil-2_3-24-32bit' 'libIlmThread-2_3-24-32bit' 'libImath-2_3-24' 'libImath-2_3-24-32bit' 'libIrrlicht1_8' 'libKChart2' 'libKDb3-4' 'libKEduVocDocument5' 'libKF5Activities5-32bit' 'libKF5ActivitiesStats1-32bit' 'libKF5Archive5-32bit' 'libKF5Attica5-32bit' 'libKF5Auth5-32bit' 'libKF5AuthCore5-32bit' 'libKF5Baloo5-32bit' 'libKF5BalooEngine5-32bit' 'libKF5Blog5' 'libKF5Bookmarks5-32bit' 'libKF5CalendarEvents5-32bit' 'libKF5CddbWidgets5' 'libKF5Codecs5-32bit' 'libKF5Completion5-32bit' 'libKF5ConfigCore5-32bit' 'libKF5ConfigGui5-32bit' 'libKF5ConfigWidgets5-32bit' 'libKF5Contacts5-32bit' 'libKF5CoreAddons5-32bit' 'libKF5Crash5-32bit' 'libKF5DBusAddons5-32bit' 'libKF5DNSSD5-32bit' 'libKF5Declarative5-32bit' 'libKF5DocTools5-32bit' 'libKF5Emoticons5-32bit' 'libKF5GlobalAccel5-32bit' 'libKF5GuiAddons5-32bit' 'libKF5I18n5-32bit' 'libKF5IconThemes5-32bit' 'libKF5IdleTime5-32bit' 'libKF5ItemModels5-32bit' 'libKF5ItemViews5-32bit' 'libKF5JS5-32bit' 'libKF5JSApi5-32bit' 'libKF5JobWidgets5-32bit' 'libKF5JsEmbed5-32bit' 'libKF5KCMUtils5-32bit' 'libKF5KDELibs4Support5-32bit' 'libKF5KDGantt2-5' 'libKF5KGeoMap10_0_0' 'libKF5KHtml5-32bit' 'libKF5MediaPlayer5' 'libKF5MediaPlayer5-32bit' 'libKF5ModemManagerQt-devel' 'libKF5NetworkManagerQt-devel' 'libKF5NetworkManagerQt-devel-32bit' 'libKF5NetworkManagerQt6-32bit' 'libKF5NewStuff5-32bit' 'libKF5NewStuffCore5-32bit' 'libKF5Notifications5-32bit' 'libKF5NotifyConfig5-32bit' 'libKF5Parts5-32bit' 'libKF5Plasma5-32bit' 'libKF5Plotting5' 'libKF5Plotting5-32bit' 'libKF5Prison5-32bit' 'libKF5Pty5-32bit' 'libKF5PulseAudioQt2' 'libKF5Purpose5-32bit' 'libKF5PurposeWidgets5-32bit' 'libKF5QGpgme5' 'libKF5QGpgme5-32bit' 'libKF5QuickAddons5-32bit' 'libKF5Runner5-32bit' 'libKF5Screen7-32bit' 'libKF5Solid5-32bit' 'libKF5SonnetCore5-32bit' 'libKF5SonnetUi5-32bit' 'libKF5Style5-32bit' 'libKF5Su5-32bit' 'libKF5SyntaxHighlighting5-32bit' 'libKF5TextWidgets5-32bit' 'libKF5ThreadWeaver5-32bit' 'libKF5Torrent6' 'libKF5UnitConversion5-32bit' 'libKF5Vkontakte2' 'libKF5Wallet5-32bit' 'libKF5WebKit5' 'libKF5WebKit5-32bit' 'libKF5WidgetsAddons5-32bit' 'libKF5WindowSystem5-32bit' 'libKF5XmlGui5-32bit' 'libKF5XmlRpcClient5-32bit' 'libKPimGAPIBlogger5' 'libKPimGAPIDrive5' 'libKPimGAPILatitude5' 'libKPimGAPIMaps5' 'libKPropertyCore3-4' 'libKPropertyWidgets3-4' 'libKReport3-4' 'libKasten4' 'libLASi-devel' 'libLASi2' 'libLHAPDF-6_2_3' 'libLLVM6' 'libLLVM6-32bit' 'libLTO6' 'libLTO6-32bit' 'libLTO7' 'libLTO7-32bit' 'libLTO8' 'libLTO8-32bit' 'libLimeSuite19_04-1' 'libLunchbox3' 'libLunchbox3-debuginfo' 'libMagick++-7_Q16HDRI4' 'libMagick++-7_Q16HDRI4-32bit' 'libMagick++-devel' 'libMagick++-devel-32bit' 'libMagickCore-7_Q16HDRI6-32bit' 'libMagickWand-7_Q16HDRI6-32bit' 'libMathMLSolver0_3' 'libMrm4' 'libMrm4-32bit' 'libMyGUIEngine3' 'libOIS-1_3_0' 'libOIS-devel' 'libOSC-devel' 'libOSC0' 'libOSC0-debuginfo' 'libOSMesa-devel' 'libOSMesa-devel-32bit' 'libOgreMain-devel' 'libOgreMain1_9_0' 'libOgreMain1_9_0-plugins' 'libOgreOverlay-devel' 'libOgreOverlay1_9_0' 'libOgrePaging-devel' 'libOgrePaging1_9_0' 'libOgreProperty-devel' 'libOgreProperty1_9_0' 'libOgreRTShaderSystem-devel' 'libOgreRTShaderSystem1_9_0' 'libOgreTerrain-devel' 'libOgreTerrain1_9_0' 'libOgreVolume-devel' 'libOgreVolume1_9_0' 'libOkteta3' 'libOpenCL1' 'libOpenCOLLADABaseUtils0_3' 'libOpenCOLLADAFramework0_3' 'libOpenCOLLADASaxFrameworkLoader0_3' 'libOpenCOLLADAStreamWriter0_3' 'libOpenColorIO1' 'libOpenIPMI0' 'libOpenImageIO1_8' 'libOpenImageIO_Util1_8' 'libOpenSceneGraph-devel' 'libOpenSceneGraph131' 'libOpenSceneGraph131-devel' 'libOpenSceneGraph158' 'libOpenThreads-devel' 'libOpenThreads20' 'libOpenThreads20-devel' 'libOpenThreads21' 'libOyranosSynnefo-devel' 'libOyranosSynnefo-devel-static' 'libOyranosSynnefo1' 'libPythonQt-Qt5-Python3-3' 'libPythonQt_QtAll-Qt5-Python3-3' 'libQCSXCAD0' 'libQMatrixClient0_5_1' 'libQTweetLib1_0' 'libQTweetLib1_0-debuginfo' 'libQgpsmm24' 'libQt4Pas5' 'libQt53DAnimation-devel' 'libQt53DAnimation5' 'libQt53DAnimation5-32bit' 'libQt53DCore-devel' 'libQt53DCore5' 'libQt53DCore5-32bit' 'libQt53DExtras-devel' 'libQt53DExtras5' 'libQt53DExtras5-32bit' 'libQt53DInput-devel' 'libQt53DInput5' 'libQt53DInput5-32bit' 'libQt53DLogic-devel' 'libQt53DLogic5' 'libQt53DLogic5-32bit' 'libQt53DQuick-devel' 'libQt53DQuick5' 'libQt53DQuick5-32bit' 'libQt53DQuickAnimation-devel' 'libQt53DQuickAnimation5' 'libQt53DQuickAnimation5-32bit' 'libQt53DQuickExtras-devel' 'libQt53DQuickExtras5' 'libQt53DQuickExtras5-32bit' 'libQt53DQuickInput-devel' 'libQt53DQuickInput5' 'libQt53DQuickInput5-32bit' 'libQt53DQuickRender-devel' 'libQt53DQuickRender5' 'libQt53DQuickRender5-32bit' 'libQt53DQuickScene2D-devel' 'libQt53DQuickScene2D5' 'libQt53DQuickScene2D5-32bit' 'libQt53DRender-devel' 'libQt53DRender5' 'libQt53DRender5-32bit' 'libQt5Bluetooth5-32bit' 'libQt5Bodymovin-devel' 'libQt5Bodymovin-private-headers-devel' 'libQt5Bodymovin5' 'libQt5Bootstrap-devel-static' 'libQt5Bootstrap-devel-static-32bit' 'libQt5Charts5' 'libQt5Charts5-designer' 'libQt5Charts5-devel' 'libQt5Concurrent-devel' 'libQt5Concurrent-devel-32bit' 'libQt5Concurrent5-32bit' 'libQt5Core-devel' 'libQt5Core-devel-32bit' 'libQt5Core-private-headers-devel' 'libQt5Core5-32bit' 'libQt5DBus-devel' 'libQt5DBus-devel-32bit' 'libQt5DBus-private-headers-devel' 'libQt5DBus5-32bit' 'libQt5DataVisualization5' 'libQt5DataVisualization5-devel' 'libQt5Designer5-32bit' 'libQt5DesignerComponents5' 'libQt5DesignerComponents5-32bit' 'libQt5Gamepad5' 'libQt5Gamepad5-32bit' 'libQt5Gui-devel' 'libQt5Gui-devel-32bit' 'libQt5Gui-private-headers-devel' 'libQt5Gui5-32bit' 'libQt5Help5-32bit' 'libQt5HunspellInputMethod-private-headers-devel' 'libQt5KmsSupport-devel-static' 'libQt5KmsSupport-private-headers-devel' 'libQt5Location5-32bit' 'libQt5Multimedia5-32bit' 'libQt5Network-devel' 'libQt5Network-devel-32bit' 'libQt5Network-private-headers-devel' 'libQt5Network5-32bit' 'libQt5NetworkAuth5-32bit' 'libQt5Nfc5-32bit' 'libQt5OpenGL-devel' 'libQt5OpenGL-devel-32bit' 'libQt5OpenGL-private-headers-devel' 'libQt5OpenGL5-32bit' 'libQt5OpenGLExtensions-devel-static' 'libQt5OpenGLExtensions-devel-static-32bit' 'libQt5Pas-devel' 'libQt5Pas1' 'libQt5PlatformHeaders-devel' 'libQt5PlatformSupport-devel-static' 'libQt5PlatformSupport-devel-static-32bit' 'libQt5PlatformSupport-private-headers-devel' 'libQt5Positioning5-32bit' 'libQt5PositioningQuick5-32bit' 'libQt5PrintSupport-devel' 'libQt5PrintSupport-devel-32bit' 'libQt5PrintSupport-private-headers-devel' 'libQt5PrintSupport5-32bit' 'libQt5QuickControls2-devel' 'libQt5QuickTemplates2-devel' 'libQt5RemoteObjects5' 'libQt5RemoteObjects5-32bit' 'libQt5Script5-32bit' 'libQt5Scxml5' 'libQt5Scxml5-32bit' 'libQt5Scxml5-imports' 'libQt5Sensors5-32bit' 'libQt5SerialBus5' 'libQt5SerialBus5-32bit' 'libQt5SerialPort5-32bit' 'libQt5Sql-devel' 'libQt5Sql-devel-32bit' 'libQt5Sql-private-headers-devel' 'libQt5Sql5-32bit' 'libQt5Sql5-mysql-32bit' 'libQt5Sql5-postgresql' 'libQt5Sql5-postgresql-32bit' 'libQt5Sql5-sqlite-32bit' 'libQt5Sql5-unixODBC' 'libQt5Sql5-unixODBC-32bit' 'libQt5Svg5-32bit' 'libQt5Test-devel' 'libQt5Test-devel-32bit' 'libQt5Test-private-headers-devel' 'libQt5Test5-32bit' 'libQt5TextToSpeech5-32bit' 'libQt5WaylandClient5-32bit' 'libQt5WaylandCompositor5-32bit' 'libQt5WebChannel5-32bit' 'libQt5WebKit-private-headers-devel' 'libQt5WebKit5-32bit' 'libQt5WebKit5-devel' 'libQt5WebKit5-devel-32bit' 'libQt5WebKitWidgets-devel' 'libQt5WebKitWidgets-devel-32bit' 'libQt5WebKitWidgets-private-headers-devel' 'libQt5WebKitWidgets5-32bit' 'libQt5WebSockets5-32bit' 'libQt5WebView5' 'libQt5WebView5-imports' 'libQt5Widgets-devel' 'libQt5Widgets-devel-32bit' 'libQt5Widgets-private-headers-devel' 'libQt5Widgets5-32bit' 'libQt5X11Extras5-32bit' 'libQt5Xdg3' 'libQt5XdgIconLoader-devel' 'libQt5XdgIconLoader3' 'libQt5Xml-devel' 'libQt5Xml-devel-32bit' 'libQt5Xml5-32bit' 'libQt5XmlPatterns5-32bit' 'libQtAV1' 'libQtAV1-32bit' 'libQtAVWidgets1' 'libQtAVWidgets1-32bit' 'libQtAssistantClient4' 'libQtAssistantClient4-32bit' 'libQtQuick5-32bit' 'libQtWebKit-devel' 'libQtWebKit4' 'libQtWebKit4' 'libQtWebKit4-32bit' 'libQtWebKit4-32bit-debuginfo' 'libQtWebKit4-debuginfo' 'libQtWebKit4-debugsource' 'libRaTools0' 'libRivet-2_7_2' 'libSDL-devel' 'libSDL-devel-32bit' 'libSDL2-devel' 'libSDL2-devel-32bit' 'libSDL2_gfx-1_0-0' 'libSDL2_gfx-1_0-0-32bit' 'libSDL2_gfx-devel' 'libSDL2_gfx-devel-32bit' 'libSDL2_image-2_0-0-32bit' 'libSDL2_image-devel' 'libSDL2_image-devel-32bit' 'libSDL2_mixer-2_0-0' 'libSDL2_mixer-2_0-0-32bit' 'libSDL2_mixer-devel' 'libSDL2_mixer-devel-32bit' 'libSDL2_net-2_0-0' 'libSDL2_net-2_0-0-32bit' 'libSDL2_net-devel' 'libSDL2_net-devel-32bit' 'libSDL2_ttf-2_0-0' 'libSDL2_ttf-2_0-0-32bit' 'libSDL2_ttf-devel' 'libSDL2_ttf-devel-32bit' 'libSDL_Pango-devel' 'libSDL_Pango-devel-32bit' 'libSDL_Pango1' 'libSDL_Pango1-32bit' 'libSDL_bgi-devel' 'libSDL_bgi2' 'libSDL_gfx-devel' 'libSDL_gfx-devel-32bit' 'libSDL_gfx15-32bit' 'libSDL_image-1_2-0-32bit' 'libSDL_image-devel' 'libSDL_image-devel-32bit' 'libSDL_mixer-1_2-0' 'libSDL_mixer-1_2-0-32bit' 'libSDL_mixer-devel' 'libSDL_mixer-devel-32bit' 'libSDL_net-1_2-0-32bit' 'libSDL_net-devel' 'libSDL_net-devel-32bit' 'libSDL_sound-1_0-1-32bit' 'libSDL_sound-devel' 'libSDL_sound-devel-32bit' 'libSDL_ttf-2_0-0' 'libSDL_ttf-2_0-0-32bit' 'libSDL_ttf-devel' 'libSDL_ttf-devel-32bit' 'libSDLmm-0_1-8' 'libSDLmm-0_1-8-32bit' 'libSDLmm-devel' 'libSDLmm-devel-32bit' 'libSHERPA-MC0' 'libSHERPA-MC0-config' 'libSM-devel' 'libSM-devel-32bit' 'libSM6-32bit' 'libSOIL' 'libSOIL-debugsource' 'libSOIL-devel' 'libSOIL1' 'libSOIL1-debuginfo' 'libSPIRV-Tools-suse13-32bit' 'libSampleICC-devel' 'libSampleICC1' 'libSavitar-devel' 'libSavitar0' 'libSimGearCore-2018_3_4' 'libSoQt20' 'libSoapyOsmoSDR0' 'libSoapySDR0_7' 'libSoundTouch1-32bit' 'libStatTimer2' 'libSwiften4' 'libTMCG-devel' 'libTMCG18' 'libUTF0_3' 'libUil4' 'libUil4-32bit' 'libUnitTest++-2_0_0' 'libVFlib3-5' 'libWN3' 'libX11-devel' 'libX11-devel-32bit' 'libXNVCtrl' 'libXNVCtrl' 'libXRes1-32bit' 'libXau-devel' 'libXau-devel-32bit' 'libXaw-devel' 'libXaw-devel-32bit' 'libXaw3d-devel' 'libXaw3d-devel-32bit' 'libXaw3d6' 'libXaw3d6-32bit' 'libXaw3d7' 'libXaw3d7-32bit' 'libXaw3d8' 'libXaw3d8-32bit' 'libXaw3dXft' 'libXaw3dXft-debugsource' 'libXaw3dxft-devel' 'libXaw3dxft8' 'libXaw3dxft8-32bit' 'libXaw3dxft8-32bit-debuginfo' 'libXaw3dxft8-debuginfo' 'libXaw6' 'libXaw6-32bit' 'libXaw7-32bit' 'libXaw8' 'libXaw8-32bit' 'libXbgi-devel' 'libXbgi1' 'libXcm-devel' 'libXcm0' 'libXcmDDC0' 'libXcmEDID0' 'libXcmX11-0' 'libXcomposite-devel' 'libXcomposite-devel-32bit' 'libXcursor-devel' 'libXcursor-devel-32bit' 'libXdamage-devel' 'libXdamage-devel-32bit' 'libXdmcp-devel' 'libXdmcp-devel-32bit' 'libXevie-devel' 'libXevie-devel-32bit' 'libXevie1' 'libXevie1-32bit' 'libXext-devel' 'libXext-devel-32bit' 'libXfixes-devel' 'libXfixes-devel-32bit' 'libXfont-devel' 'libXfont-devel-32bit' 'libXfont1' 'libXfont1-32bit' 'libXfont2-2-32bit' 'libXfont2-devel' 'libXfont2-devel-32bit' 'libXfontcache-devel' 'libXfontcache-devel-32bit' 'libXfontcache1-32bit' 'libXft-devel' 'libXft-devel-32bit' 'libXi-devel' 'libXi-devel-32bit' 'libXinerama-devel' 'libXinerama-devel-32bit' 'libXiterm-devel' 'libXiterm1' 'libXm4' 'libXm4-32bit' 'libXmu-devel' 'libXmu-devel-32bit' 'libXmu6-32bit' 'libXmuu1-32bit' 'libXp-devel' 'libXp-devel-32bit' 'libXp6' 'libXp6-32bit' 'libXpm-devel' 'libXpm-devel-32bit' 'libXpm-tools' 'libXpresent-devel' 'libXpresent1' 'libXprintAppUtil-devel' 'libXprintAppUtil-devel-32bit' 'libXprintAppUtil1' 'libXprintAppUtil1-32bit' 'libXprintUtil-devel' 'libXprintUtil-devel-32bit' 'libXprintUtil1' 'libXprintUtil1-32bit' 'libXrandr-devel' 'libXrandr-devel-32bit' 'libXrender-devel' 'libXrender-devel-32bit' 'libXres-devel' 'libXres-devel-32bit' 'libXss-devel' 'libXss-devel-32bit' 'libXss1-32bit' 'libXt-devel' 'libXt-devel-32bit' 'libXt6-32bit' 'libXtst-devel' 'libXtst-devel-32bit' 'libXtst6-32bit' 'libXv-devel' 'libXv-devel-32bit' 'libXv1-32bit' 'libXvMC-devel' 'libXvMC-devel-32bit' 'libXvMC1' 'libXvMC1-32bit' 'libXvMC_nouveau' 'libXvMC_nouveau-32bit' 'libXvMC_r600' 'libXvMC_r600-32bit' 'libXvnc-devel' 'libXxf86dga-devel' 'libXxf86dga-devel-32bit' 'libXxf86dga1' 'libXxf86dga1-32bit' 'libXxf86vm-devel' 'libXxf86vm-devel-32bit' 'libYODA-1_7_7' 'liba2ps1' 'liba52-0-32bit' 'liba52-devel' 'libaa1-32bit' 'libaacs' 'libaacs-debugsource' 'libaacs-devel' 'libaacs0' 'libaacs0-debuginfo' 'libaal-1_0-7' 'libaal-devel' 'libaal-minimal0' 'libabigail-devel' 'libabigail-tools' 'libabigail0' 'libabiword-3_0' 'libabiword-3_0-devel' 'libabseil0' 'libabw-devel' 'libabw-devel-doc' 'libabw-tools' 'libacars-devel' 'libacars1' 'libaccounts-glib-devel' 'libaccounts-glib-docs' 'libaccounts-glib-tools' 'libaccounts-glib0-32bit' 'libaccounts-qt5-1-32bit' 'libaccounts-qt5-devel' 'libaccounts-qt5-doc' 'libaccountsservice0' 'libacl-devel' 'libacl-devel-32bit' 'libacr38ucontrol0' 'libada7' 'libada7-32bit' 'libada8' 'libada8-32bit' 'libada9' 'libada9-32bit' 'libaddrxlat-devel' 'libaddrxlat0' 'libadlmidi-devel' 'libadms0' 'libadns-devel' 'libadns-devel-32bit' 'libadns1' 'libadns1-32bit' 'libadolc2' 'libadolc2-32bit' 'libaec-devel' 'libaec0' 'libaec0-32bit' 'libaften-devel' 'libaften0' 'libaften0-debuginfo' 'libags2' 'libaio-devel' 'libaio-devel-32bit' 'libaio1-32bit' 'libairspy0' 'libairspyhf0' 'libakai0' 'libalac0' 'libalkimia5-7' 'libalkimia5-devel' 'liballegro-doc' 'liballegro5_2' 'liballegro5_2-devel' 'liballegro_acodec5_2' 'liballegro_acodec5_2-devel' 'liballegro_audio5_2' 'liballegro_audio5_2-devel' 'liballegro_color5_2' 'liballegro_color5_2-devel' 'liballegro_dialog5_2' 'liballegro_dialog5_2-devel' 'liballegro_font5_2' 'liballegro_font5_2-devel' 'liballegro_image5_2' 'liballegro_image5_2-devel' 'liballegro_main5_2' 'liballegro_main5_2-devel' 'liballegro_memfile5_2' 'liballegro_memfile5_2-devel' 'liballegro_physfs5_2' 'liballegro_physfs5_2-devel' 'liballegro_primitives5_2' 'liballegro_primitives5_2-devel' 'liballegro_ttf5_2' 'liballegro_ttf5_2-devel' 'liballegro_video5_2' 'liballegro_video5_2-devel' 'libalut0' 'libalut0-32bit' 'libamd-doc' 'libamd2' 'libamrnb-devel' 'libamrnb3' 'libamrnb3-32bit' 'libamrnb3-32bit-debuginfo' 'libamrnb3-debuginfo' 'libamrwb-devel' 'libamrwb3' 'libamrwb3-32bit' 'libamrwb3-32bit-debuginfo' 'libamrwb3-debuginfo' 'libamtk-5-0' 'libangelscript2_33_0' 'libanjuta-3-0' 'libanthy0' 'libanthy0-32bit' 'libantlr3c3' 'libantlr3c3-32bit' 'libantlr4-runtime-devel' 'libantlr4-runtime4_7_2' 'libao-devel' 'libao-plugins4-32bit' 'libao4-32bit' 'libaom-devel' 'libaom-devel-doc' 'libaom0-32bit' 'libap4-1_5_1r628' 'libap4-1_5_1r628-debuginfo' 'libapparmor-devel' 'libapparmor1-32bit' 'libappindicator-devel' 'libappindicator1' 'libappindicator3-devel' 'libappmenu-gtk-parser-devel' 'libappmenu-gtk2-parser-devel' 'libappmenu-gtk2-parser0' 'libappmenu-gtk3-parser-devel' 'libappmenu-gtk3-parser0' 'libapr-util1-dbd-mysql' 'libapr-util1-dbd-pgsql' 'libapr-util1-dbd-sqlite3' 'libaqebics0' 'libaqofxconnect7' 'libarchive-devel' 'libarchive13-32bit' 'libargon2-1-32bit' 'libargtable2-0' 'libargtable2-devel' 'libaria2-0' 'libarmadillo9' 'libarmadillo9-32bit' 'libarpack2' 'libarpack2-32bit' 'libarprec0' 'libart_lgpl-devel' 'libart_lgpl-devel-32bit' 'libart_lgpl_2-2' 'libart_lgpl_2-2-32bit' 'libasan4' 'libasan4-32bit' 'libasan5-32bit' 'libasan5-gcc8' 'libasan5-gcc8-32bit' 'libaslcommon0' 'libasm-devel' 'libasm1-32bit' 'libasn1c-devel' 'libasn1c1' 'libaspell15' 'libaspell15-32bit' 'libass-devel' 'libass9-32bit' 'libassimp3' 'libassuan-devel' 'libassuan0-32bit' 'libastylej3' 'libasync' 'libasync-devel' 'libasyncns-devel' 'libasyncns0' 'libatasmart-devel' 'libathemecore1' 'libatkmm-1_6-1-32bit' 'libatkmm-2_30-1' 'libatkmm-2_30-1-32bit' 'libatlascpp-0_6-1' 'libatomic1-32bit' 'libatomic1-gcc7' 'libatomic1-gcc7-32bit' 'libatomic1-gcc8' 'libatomic1-gcc8-32bit' 'libatomic_ops-devel' 'libatomicparsley0' 'libatrildocument3' 'libatrilview3' 'libattica-devel' 'libattica-devel-32bit' 'libattica0_4-32bit' 'libattr-devel' 'libattr-devel-32bit' 'libattr-devel-static' 'libattr1-32bit' 'libaubio-devel' 'libaubio5' 'libaubio5-32bit' 'libaudaspace-c1_3' 'libaudaspace-py1_3' 'libaudaspace1_3' 'libaudclient-devel' 'libaudclient2' 'libaudclient2' 'libaudclient2-debuginfo' 'libaudclient2-debugsource' 'libaudcore5' 'libaudgui5' 'libaudiofile1-32bit' 'libaudqt2' 'libaudtag3' 'libaugeas0-32bit' 'libauparse0-32bit' 'libautotrace3' 'libav-tools' 'libavahi-devel' 'libavahi-glib-devel' 'libavahi-glib1-32bit' 'libavahi-gobject-devel' 'libavahi-gobject0' 'libavahi-ui-gtk3-0' 'libavahi-ui0' 'libavc1394-0-32bit' 'libavc1394-devel' 'libavc1394-devel-32bit' 'libavc1394-tools' 'libavcodec56-32bit' 'libavcodec56-32bit-debuginfo' 'libavcodec56-debuginfo' 'libavcodec57' 'libavcodec57-32bit' 'libavcodec57-32bit-debuginfo' 'libavcodec57-debuginfo' 'libavcodec58-32bit' 'libavcodec58-32bit-debuginfo' 'libavcodec58-debuginfo' 'libavdevice56-32bit' 'libavdevice56-32bit-debuginfo' 'libavdevice56-debuginfo' 'libavdevice57' 'libavdevice57-32bit' 'libavdevice57-32bit-debuginfo' 'libavdevice57-debuginfo' 'libavdevice58-32bit' 'libavdevice58-32bit-debuginfo' 'libavdevice58-debuginfo' 'libavfilter5-32bit' 'libavfilter5-32bit-debuginfo' 'libavfilter5-debuginfo' 'libavfilter6' 'libavfilter6-32bit' 'libavfilter6-32bit-debuginfo' 'libavfilter6-debuginfo' 'libavfilter7-32bit' 'libavfilter7-32bit-debuginfo' 'libavfilter7-debuginfo' 'libavformat56-32bit' 'libavformat56-32bit-debuginfo' 'libavformat56-debuginfo' 'libavformat57' 'libavformat57-32bit' 'libavformat57-32bit-debuginfo' 'libavformat57-debuginfo' 'libavformat58-32bit' 'libavformat58-32bit-debuginfo' 'libavformat58-debuginfo' 'libavfs0' 'libavifile-devel' 'libaviplay-0_7-0' 'libaviplay-0_7-0-debuginfo' 'libavogadrolibs-suse0' 'libavrdude1' 'libavresample2-32bit' 'libavresample2-32bit-debuginfo' 'libavresample2-debuginfo' 'libavresample3' 'libavresample3-32bit' 'libavresample3-32bit-debuginfo' 'libavresample3-debuginfo' 'libavresample4-32bit' 'libavresample4-32bit-debuginfo' 'libavresample4-debuginfo' 'libavtp-devel' 'libavtp0' 'libavutil54-32bit' 'libavutil54-32bit-debuginfo' 'libavutil54-debuginfo' 'libavutil55' 'libavutil55-32bit' 'libavutil55-32bit-debuginfo' 'libavutil55-debuginfo' 'libavutil56-32bit' 'libavutil56-32bit-debuginfo' 'libavutil56-debuginfo' 'libavxsynth0' 'libavxsynth0-debuginfo' 'libax25-0' 'libax25-common' 'libax25-devel' 'libax25io0' 'libayatana-appindicator-devel' 'libayatana-appindicator1' 'libayatana-appindicator3-1' 'libayatana-appindicator3-devel' 'libayatana-ido3-0_4-0' 'libayatana-ido3-0_4-0-32bit' 'libayatana-indicator-devel' 'libayatana-indicator3-7' 'libayatana-indicator3-devel' 'libayatana-indicator7' 'libb2-1' 'libb2-devel' 'libb64' 'libb64-devel' 'libbabl-0_1-0' 'libbabl-0_1-0-32bit' 'libbamf3-2' 'libbase-javadoc' 'libbasicobjects-devel' 'libbasicobjects-devel-32bit' 'libbasicobjects0' 'libbasicobjects0-32bit' 'libbcc0' 'libbcg729-0' 'libbcg729-0-32bit' 'libbcmatroska2-0' 'libbcmatroska2-0-32bit' 'libbctoolbox-tester1' 'libbctoolbox-tester1-32bit' 'libbctoolbox1' 'libbctoolbox1-32bit' 'libbcunit1' 'libbcunit1-32bit' 'libbd_btrfs-devel' 'libbd_crypto-devel' 'libbd_dm-devel' 'libbd_dm2' 'libbd_fs-devel' 'libbd_kbd-devel' 'libbd_kbd2' 'libbd_loop-devel' 'libbd_lvm-dbus-devel' 'libbd_lvm-dbus2' 'libbd_lvm-devel' 'libbd_lvm2' 'libbd_mdraid-devel' 'libbd_mpath-devel' 'libbd_mpath2' 'libbd_part-devel' 'libbd_swap-devel' 'libbd_utils-devel' 'libbd_vdo-devel' 'libbd_vdo2' 'libbde-devel' 'libbde-tools' 'libbde1' 'libbdplus' 'libbdplus-debugsource' 'libbdplus-devel' 'libbdplus0' 'libbdplus0-debuginfo' 'libbeecrypt-devel' 'libbeecrypt6' 'libbelcard1' 'libbelcard1-32bit' 'libbellesip0' 'libbellesip0-32bit' 'libbelr1' 'libbelr1-32bit' 'libbemenu0' 'libbenchmark0' 'libbfio-devel' 'libbfio1' 'libbiblesync2_0' 'libbind9-160-32bit' 'libbitcoinconsensus-devel' 'libbitcoinconsensus0' 'libbitmask-devel' 'libbitmask1' 'libblacs2-gnu-mpich-hpc' 'libblacs2-gnu-mpich-hpc-devel' 'libblacs2-gnu-mvapich2-hpc' 'libblacs2-gnu-mvapich2-hpc-devel' 'libblacs2-gnu-openmpi1-hpc' 'libblacs2-gnu-openmpi1-hpc-devel' 'libblacs2-gnu-openmpi2-hpc' 'libblacs2-gnu-openmpi2-hpc-devel' 'libblacs2-gnu-openmpi3-hpc' 'libblacs2-gnu-openmpi3-hpc-devel' 'libblacs2-mvapich2' 'libblacs2-mvapich2-devel' 'libblacs2-mvapich2-devel-static' 'libblacs2-openmpi' 'libblacs2-openmpi-devel' 'libblacs2-openmpi-devel-static' 'libblacs2-openmpi2' 'libblacs2-openmpi2-devel' 'libblacs2-openmpi2-devel-static' 'libblacs2-openmpi3' 'libblacs2-openmpi3-devel' 'libblacs2-openmpi3-devel-static' 'libblacs2_2_0_2-gnu-mpich-hpc' 'libblacs2_2_0_2-gnu-mpich-hpc-devel' 'libblacs2_2_0_2-gnu-mpich-hpc-devel-static' 'libblacs2_2_0_2-gnu-mvapich2-hpc' 'libblacs2_2_0_2-gnu-mvapich2-hpc-devel' 'libblacs2_2_0_2-gnu-mvapich2-hpc-devel-static' 'libblacs2_2_0_2-gnu-openmpi1-hpc' 'libblacs2_2_0_2-gnu-openmpi1-hpc-devel' 'libblacs2_2_0_2-gnu-openmpi1-hpc-devel-static' 'libblacs2_2_0_2-gnu-openmpi2-hpc' 'libblacs2_2_0_2-gnu-openmpi2-hpc-devel' 'libblacs2_2_0_2-gnu-openmpi2-hpc-devel-static' 'libblacs2_2_0_2-gnu-openmpi3-hpc' 'libblacs2_2_0_2-gnu-openmpi3-hpc-devel' 'libblacs2_2_0_2-gnu-openmpi3-hpc-devel-static' 'libbladeRF2' 'libbladeRF2-doc' 'libblas3-32bit' 'libbliss-0_73' 'libblkid-devel' 'libblkid-devel-32bit' 'libblkid-devel-static' 'libblockdev-devel' 'libblosc1' 'libbluetooth3-32bit' 'libbluray-bdj' 'libbluray-devel' 'libbluray-tools' 'libbluray2-32bit' 'libbml-devel' 'libbml1' 'libboinc-devel' 'libboinc7' 'libbonobo' 'libbonobo-32bit' 'libbonobo-devel' 'libbonobo-doc' 'libbonobo-lang' 'libbonoboui' 'libbonoboui-32bit' 'libbonoboui-devel' 'libbonoboui-doc' 'libbonoboui-lang' 'libbonoboui-tools' 'libboost_atomic-devel' 'libboost_atomic1_69_0' 'libboost_atomic1_69_0-32bit' 'libboost_atomic1_69_0-devel' 'libboost_chrono-devel' 'libboost_chrono1_69_0' 'libboost_chrono1_69_0-devel' 'libboost_container-devel' 'libboost_container1_69_0' 'libboost_container1_69_0-32bit' 'libboost_container1_69_0-devel' 'libboost_context-devel' 'libboost_context1_69_0' 'libboost_context1_69_0-32bit' 'libboost_context1_69_0-devel' 'libboost_contract-devel' 'libboost_contract1_69_0' 'libboost_contract1_69_0-devel' 'libboost_coroutine-devel' 'libboost_coroutine1_69_0' 'libboost_coroutine1_69_0-32bit' 'libboost_coroutine1_69_0-devel' 'libboost_date_time-devel' 'libboost_date_time1_69_0-32bit' 'libboost_date_time1_69_0-devel' 'libboost_fiber-devel' 'libboost_fiber1_69_0' 'libboost_fiber1_69_0-32bit' 'libboost_fiber1_69_0-devel' 'libboost_filesystem-devel' 'libboost_filesystem1_69_0-32bit' 'libboost_filesystem1_69_0-devel' 'libboost_graph-devel' 'libboost_graph1_69_0' 'libboost_graph1_69_0-32bit' 'libboost_graph1_69_0-devel' 'libboost_graph_parallel-devel' 'libboost_graph_parallel1_69_0' 'libboost_graph_parallel1_69_0-32bit' 'libboost_graph_parallel1_69_0-devel' 'libboost_headers-devel' 'libboost_headers1_69_0-devel' 'libboost_iostreams-devel' 'libboost_iostreams1_69_0-32bit' 'libboost_iostreams1_69_0-devel' 'libboost_locale-devel' 'libboost_locale1_69_0-32bit' 'libboost_locale1_69_0-devel' 'libboost_log-devel' 'libboost_log1_69_0' 'libboost_log1_69_0-devel' 'libboost_math-devel' 'libboost_math1_69_0' 'libboost_math1_69_0-32bit' 'libboost_math1_69_0-devel' 'libboost_mpi-devel' 'libboost_mpi1_69_0' 'libboost_mpi1_69_0-32bit' 'libboost_mpi1_69_0-devel' 'libboost_mpi_python-devel' 'libboost_mpi_python-py2_7-1_69_0' 'libboost_mpi_python-py2_7-1_69_0-devel' 'libboost_mpi_python-py3-1_69_0' 'libboost_mpi_python-py3-1_69_0-devel' 'libboost_mpi_python3-devel' 'libboost_numpy-devel' 'libboost_numpy-py2_7-1_69_0' 'libboost_numpy-py2_7-1_69_0-devel' 'libboost_numpy-py3-1_69_0' 'libboost_numpy-py3-1_69_0-devel' 'libboost_numpy3-devel' 'libboost_program_options-devel' 'libboost_program_options1_69_0' 'libboost_program_options1_69_0-32bit' 'libboost_program_options1_69_0-devel' 'libboost_python-devel' 'libboost_python-py2_7-1_69_0' 'libboost_python-py2_7-1_69_0-32bit' 'libboost_python-py2_7-1_69_0-devel' 'libboost_python-py3-1_69_0' 'libboost_python-py3-1_69_0-32bit' 'libboost_python-py3-1_69_0-devel' 'libboost_python3-devel' 'libboost_random-devel' 'libboost_random1_69_0' 'libboost_random1_69_0-32bit' 'libboost_random1_69_0-devel' 'libboost_regex-devel' 'libboost_regex1_69_0-32bit' 'libboost_regex1_69_0-devel' 'libboost_serialization-devel' 'libboost_serialization1_69_0' 'libboost_serialization1_69_0-32bit' 'libboost_serialization1_69_0-devel' 'libboost_stacktrace-devel' 'libboost_stacktrace1_69_0' 'libboost_stacktrace1_69_0-32bit' 'libboost_stacktrace1_69_0-devel' 'libboost_system-devel' 'libboost_system1_69_0' 'libboost_system1_69_0-32bit' 'libboost_system1_69_0-devel' 'libboost_test-devel' 'libboost_test1_69_0' 'libboost_test1_69_0-32bit' 'libboost_test1_69_0-devel' 'libboost_thread-devel' 'libboost_thread1_69_0-32bit' 'libboost_thread1_69_0-devel' 'libboost_timer-devel' 'libboost_timer1_69_0' 'libboost_timer1_69_0-devel' 'libboost_type_erasure-devel' 'libboost_type_erasure1_69_0' 'libboost_type_erasure1_69_0-32bit' 'libboost_type_erasure1_69_0-devel' 'libboost_wave-devel' 'libboost_wave1_69_0' 'libboost_wave1_69_0-32bit' 'libboost_wave1_69_0-devel' 'libboringssl0' 'libbotan-2-10' 'libbotan-2-10-32bit' 'libbotan-devel' 'libbotan-devel-32bit' 'libbraille' 'libbraille-devel' 'libbraille-fake' 'libbrasero-burn3-1' 'libbrasero-media3-1' 'libbrasero-utils3-1' 'libbrotli-devel' 'libbrotlicommon1-32bit' 'libbrotlidec1-32bit' 'libbrotlienc1' 'libbrotlienc1-32bit' 'libbs2b-devel' 'libbs2b0-32bit' 'libbsd-ctor-static' 'libbsd-devel' 'libbssl_wrapper_lib0' 'libbtf1' 'libbtrfs-devel' 'libbtrfsutil-devel' 'libbtrfsutil1' 'libbuffer0_3' 'libbullet-devel' 'libbullet2_88' 'libburn-devel' 'libbuzztrax-core-devel' 'libbuzztrax-core1' 'libbuzztrax-core1-32bit' 'libbuzztrax-gst-devel' 'libbuzztrax-gst1' 'libbuzztrax-gst1-32bit' 'libbuzztrax-ic-devel' 'libbuzztrax-ic1' 'libbuzztrax-ic1-32bit' 'libbytesize-devel' 'libbz2-devel' 'libbz2-devel-32bit' 'libbzrtp0' 'libbzrtp0-32bit' 'libc++-devel' 'libc++1' 'libc++abi-devel' 'libc++abi1' 'libc-client2007f_suse' 'libcaca-devel' 'libcaca-ruby' 'libcaca0-32bit' 'libcaca0-plugins' 'libcaca0-plugins-32bit' 'libcacard' 'libcacard-devel' 'libcaes-devel' 'libcaes1' 'libcaffe-gnu-hpc' 'libcaffe1_0_0' 'libcaffe_1_0-gnu-hpc' 'libcairo-script-interpreter2' 'libcairo-script-interpreter2-32bit' 'libcairomm-1_0-1-32bit' 'libcairomm-1_16-1' 'libcairomm-1_16-1-32bit' 'libcaja-extension1' 'libcal3d12' 'libcalc2' 'libcamd-doc' 'libcamd2' 'libcamel-1_2-62' 'libcamel-1_2-62-32bit' 'libcamera-devel' 'libcamera-suse1' 'libcamera-tools' 'libcanberra-devel' 'libcanberra-gtk-devel' 'libcanberra-gtk3-devel' 'libcangjie-data' 'libcangjie-devel' 'libcangjie-tools' 'libcangjie2' 'libcantorlibs23' 'libcap-devel' 'libcap-ng-devel' 'libcap-ng-utils' 'libcap-ng0-32bit' 'libcap-progs' 'libcap1' 'libcap1-32bit' 'libcapi20-2' 'libcapi20-2-32bit' 'libcapifax-devel' 'libcapifax0' 'libcapifax0-debuginfo' 'libcapnp-0_7' 'libcapnp-devel' 'libcares2-32bit' 'libcaribou0' 'libcblas3' 'libcblas3-32bit' 'libcbor-devel' 'libcbor0' 'libccolamd2' 'libccrtp3' 'libcdata-devel' 'libcdata1' 'libcdatetime-devel' 'libcdatetime1' 'libcdaudio-devel' 'libcdaudio1' 'libcdaudio1-32bit' 'libcdd0' 'libcdda_interface0-32bit' 'libcdda_paranoia0-32bit' 'libcddb-devel' 'libcddb-utils' 'libcddb2-32bit' 'libcdio++0' 'libcdio++0-32bit' 'libcdio-devel' 'libcdio-paranoia-devel' 'libcdio19-32bit' 'libcdio_cdda2-32bit' 'libcdio_paranoia2-32bit' 'libcdirectory-devel' 'libcdirectory1' 'libcdk5' 'libcdr-devel' 'libcdr-devel-doc' 'libcdr-tools' 'libcec-devel' 'libcec4' 'libcelt-devel' 'libcelt-devel-32bit' 'libcelt0-2-32bit' 'libcelt051-0' 'libcephfs-devel' 'libcephfs2' 'libceres-devel' 'libceres1' 'libcerf-devel' 'libcerf1' 'libcerror-devel' 'libcerror1' 'libcetcd0' 'libcfg6' 'libcfg6-32bit' 'libcfile-devel' 'libcfile1' 'libchafa0' 'libchamplain-0_12-0' 'libchamplain-devel' 'libchardet-devel' 'libchardet1' 'libchardet1-32bit' 'libchck0' 'libcheck0' 'libcheck0-32bit' 'libcheese-common' 'libcheese-gtk25' 'libcheese8' 'libchewing-devel' 'libchewing3' 'libchewing3-32bit' 'libchipcard' 'libchipcard-devel' 'libchipcard6' 'libchm0-32bit' 'libcholmod3' 'libchromaprint-devel' 'libchromaprint1-32bit' 'libcilium1' 'libcilkrts5' 'libcilkrts5-32bit' 'libcimcClientXML0' 'libcimcclient0' 'libcinnamon-control-center1' 'libcinnamon-desktop-data' 'libcinnamon-desktop-data-branding-openSUSE' 'libcinnamon-desktop-data-branding-upstream' 'libcinnamon-desktop-devel' 'libcinnamon-desktop-lang' 'libcinnamon-desktop4' 'libcinnamon-desktop4-32bit' 'libcinnamon-menu-3-0' 'libcinnamon-menu-3-0-32bit' 'libcinnamon-menu-3-devel' 'libcircle-devel' 'libcircle2' 'libcircllhist-devel' 'libcircllhist0_0_1' 'libcjose-devel' 'libcjose0' 'libcjs0' 'libck0' 'libclFFT2' 'libclamav9' 'libclang6' 'libclang6-32bit' 'libclang7' 'libclang7-32bit' 'libclang8' 'libclang8-32bit' 'libclastfm-devel' 'libclastfm0' 'libclaw-devel' 'libclaw-doc' 'libclaw1' 'libclc' 'libcld2-0' 'libcli-devel' 'libcli1_9' 'libclocale-devel' 'libclocale1' 'libcloudproviders-devel' 'libcloudproviders0' 'libclucene-core1-32bit' 'libclucene-shared1-32bit' 'libclutter-1_0-0' 'libclutter-1_0-0-32bit' 'libclutter-gst-3_0-0' 'libclutter-gst-3_0-0-32bit' 'libclutter-gtk-1_0-0' 'libclutter-gtk-1_0-0-32bit' 'libclzma-suse0' 'libcmap4' 'libcmap4-32bit' 'libcmark0_29_0' 'libcmis-c-0_5-5' 'libcmis-c-devel' 'libcmis-devel' 'libcmocka-devel' 'libcmocka-devel-32bit' 'libcmocka-devel-static' 'libcmocka0' 'libcmocka0-32bit' 'libcmpiCppImpl0' 'libcmpisfcc1' 'libcmpiutil' 'libcmpiutil-devel' 'libcmrt1' 'libcmuclmtk-devel' 'libcmuclmtk0' 'libcnotify-devel' 'libcnotify1' 'libcob-devel' 'libcob4' 'libcodec2-0_8-32bit' 'libcogl-gles2-20' 'libcogl-pango20' 'libcogl-pango20-32bit' 'libcogl20' 'libcogl20-32bit' 'libcolamd2' 'libcollectdclient-devel' 'libcollectdclient1' 'libcollection-devel' 'libcollection-devel-32bit' 'libcollection4' 'libcollection4-32bit' 'libcolm-0_13_0_7' 'libcolord-devel' 'libcolord-gtk-devel' 'libcolord-gtk1' 'libcolord-gtk1-32bit' 'libcolorhug2' 'libcom_err-devel' 'libcom_err-devel-32bit' 'libcom_err-devel-static' 'libcompel1' 'libcompizconfig' 'libcompizconfig-devel' 'libcomps-devel' 'libcomps-doc' 'libcomps0_1_11' 'libconfig++-devel' 'libconfig++11-32bit' 'libconfig-devel' 'libconfig11' 'libconfig11-32bit' 'libconfuse-devel' 'libconfuse-lang' 'libconfuse2' 'libcontainers-common' 'libcorosync-devel' 'libcorosync_common4' 'libcorosync_common4-32bit' 'libcorrect-devel' 'libcorrect0_0_0' 'libcourier-unicode4' 'libcpath-devel' 'libcpath1' 'libcpg4' 'libcpg4-32bit' 'libcpluff-devel' 'libcpluff0' 'libcpluffxx-devel' 'libcpluffxx0' 'libcpprest2_10' 'libcppunit-1_14-0' 'libcppunit-1_14-0-32bit' 'libcppunit_subunit0' 'libcppunit_subunit0-devel' 'libcpuid-devel' 'libcpuid-tools' 'libcpuid14' 'libcpuset-devel' 'libcpuset1' 'libcreaterepo_c-devel' 'libcriu2' 'libcroco' 'libcroco-0_6-3-32bit' 'libcroco-devel' 'libcrossc1' 'libcrossc1-32bit' 'libcrossguid0' 'libcryptmount-devel' 'libcryptmount0' 'libcryptmount0-32bit' 'libcrypto45' 'libcrypto45-32bit' 'libcryptopp-devel' 'libcryptopp8_2_0' 'libcryptopp8_2_0-32bit' 'libcryptsetup-devel' 'libcryptsetup12-32bit' 'libcryptsetup12-hmac' 'libcryptsetup12-hmac-32bit' 'libcryptui-data' 'libcryptui-devel' 'libcryptui-lang' 'libcryptui0' 'libcrystalhd-devel' 'libcrystalhd-devel-32bit' 'libcrystalhd3' 'libcrystalhd3-32bit' 'libcsirocsa0' 'libcsironn0' 'libcsnd6-6_0' 'libcsound64-6_0' 'libcsparse3' 'libcsplit-devel' 'libcsplit1' 'libcss-devel' 'libcss0' 'libcstring-devel' 'libcstring1' 'libcsv-devel' 'libcsv3' 'libcsync-devel' 'libcsync-devel-doc' 'libcsync-doc' 'libcsync-plugin-owncloud' 'libcsync-plugin-sftp' 'libcsync-plugin-smb' 'libcsync0' 'libcsync0-32bit' 'libcsystem-devel' 'libcsystem1' 'libct4' 'libctemplate-devel' 'libctemplate3' 'libcthreads-devel' 'libcthreads1' 'libctl-devel' 'libctl-doc' 'libctl5' 'libcudd-3_0_0-0' 'libcue-devel' 'libcue2' 'libcuefile-devel' 'libcuefile0' 'libcuneiform-devel' 'libcuneiform1' 'libcunit1' 'libcupsimage2-32bit' 'libcurl-devel' 'libcurl-devel-32bit' 'libcvc-devel' 'libcvc0' 'libcwiid-devel' 'libcwiid-devel-32bit' 'libcwiid1' 'libcwiid1-32bit' 'libcwnn0' 'libcxsc2' 'libcxsparse3' 'libcxx-gtk-utils-3-2_2-0' 'libcxx-gtk-utils-3-devel' 'libcxxtools-bin9' 'libcxxtools-http9' 'libcxxtools-json9' 'libcxxtools-unit9' 'libcxxtools-xmlrpc9' 'libcxxtools9' 'libczmq4' 'libd0_blind_id0' 'libd0_rijndael0' 'libdSFMT2_2' 'libdaemon-devel' 'libdar-devel' 'libdar5000' 'libdat2-2' 'libdat2-2-32bit' 'libdataquay0' 'libdatrie-devel' 'libdav1d2-32bit' 'libdavix0' 'libdazzle' 'libdazzle-1_0-0' 'libdazzle-devel' 'libdb-4_8-devel' 'libdb-4_8-devel-32bit' 'libdb_java-4_8' 'libdb_java-4_8-devel' 'libdbevolution0' 'libdbevolution0-debuginfo' 'libdbh2' 'libdbi-devel' 'libdbi-devel-32bit' 'libdbi-drivers-dbd-freetds' 'libdbi-drivers-dbd-mysql' 'libdbi-drivers-dbd-pgsql' 'libdbi-drivers-dbd-sqlite3' 'libdbi3' 'libdbi3-32bit' 'libdbus-c++-1-1' 'libdbus-c++-1-1-32bit' 'libdbus-c++-devel' 'libdbus-c++-glib-1-1' 'libdbus-c++-glib-1-1-32bit' 'libdbusextended-qt5-1' 'libdbusextended-qt5-devel' 'libdbusmenu-glib-devel' 'libdbusmenu-glib-doc' 'libdbusmenu-gtk-devel' 'libdbusmenu-gtk-doc' 'libdbusmenu-gtk3-devel' 'libdbusmenu-gtk4' 'libdbusmenu-jsonloader-devel' 'libdbusmenu-jsonloader4' 'libdbusmenu-qt-devel' 'libdbusmenu-qt2-32bit' 'libdbusmenu-qt5-2-32bit' 'libdbusmenu-qt5-devel' 'libdbusmenu-qt5-devel-32bit' 'libdbusmenu-tools' 'libdc1394-25-32bit' 'libdc1394-devel' 'libdc1394-tools' 'libdca-devel' 'libdca0-32bit' 'libdca0-32bit-debuginfo' 'libdca0-debuginfo' 'libdcadec-devel' 'libdcadec0' 'libdcadec0-32bit' 'libdcadec0-32bit-debuginfo' 'libdcadec0-debuginfo' 'libdcaenc-devel' 'libdcaenc0' 'libdcaenc0-debuginfo' 'libdccore0' 'libdccore0-debuginfo' 'libdcerpc-devel' 'libdcerpc-samr-devel' 'libdcerpc-samr0' 'libdcerpc-samr0-32bit' 'libdcmtk3_6' 'libdconf1-32bit' 'libdcwebservice0' 'libdcwebservice0-debuginfo' 'libdd_opentracing0' 'libddccontrol0' 'libddcutil-devel' 'libddcutil0' 'libde265' 'libde265-0' 'libde265-0-32bit' 'libde265-0-32bit-debuginfo' 'libde265-0-debuginfo' 'libde265-debugsource' 'libde265-devel' 'libdecoration0' 'libdecoration0-32bit' 'libdee-1_0-4' 'libdevil-tools' 'libdevmapper-event1_03-32bit' 'libdevmapper1_03-32bit' 'libdframeworkdbus-devel' 'libdframeworkdbus2' 'libdhash-devel' 'libdhash-devel-32bit' 'libdhash1' 'libdhash1-32bit' 'libdico2' 'libdigikamcore6' 'libdirac_decoder0' 'libdirac_decoder0-32bit' 'libdirac_encoder0' 'libdirac_encoder0-32bit' 'libdiscid-devel' 'libdiscid0-32bit' 'libdjconsole' 'libdjconsole-debugsource' 'libdjconsole-devel' 'libdjconsole0' 'libdjconsole0-debuginfo' 'libdjvCore0' 'libdjvCore0-debuginfo' 'libdjvulibre-devel' 'libdleyna-core-1_0-5' 'libdlm' 'libdlm-devel' 'libdlm3' 'libdmapsharing-3_0-2' 'libdmapsharing-3_0-2-32bit' 'libdmapsharing-devel' 'libdmmp-devel' 'libdmmp0_2_0' 'libdmr0_1' 'libdmtx-devel' 'libdmtx0-32bit' 'libdmusic1' 'libdmx-devel' 'libdmx-devel-32bit' 'libdmx1-32bit' 'libdnet-devel' 'libdnet-python' 'libdnet1' 'libdnf-devel' 'libdnf2' 'libdns169-32bit' 'libdns_sd-32bit' 'libdotconf0' 'libdouble-conversion3-32bit' 'libdpdk-18_11' 'libdriveio0' 'libdrm-devel' 'libdrm-devel-32bit' 'libdrm-tools' 'libdrumstick-alsa1' 'libdrumstick-devel' 'libdrumstick-doc' 'libdrumstick-file1' 'libdrumstick-rt-plugins' 'libdrumstick-rt1' 'libdruntime-ldc86' 'libdtkcore2' 'libdtkwidget2' 'libdtkwm2' 'libduktape201' 'libdv' 'libdv-devel' 'libdv4-32bit' 'libdvbpsi-0-devel' 'libdvbpsi-devel' 'libdvbpsi10-32bit' 'libdvbpsi7' 'libdvbpsi7-32bit' 'libdvbv5-0' 'libdvbv5-0-32bit' 'libdvbv5-0-lang' 'libdvbv5-devel' 'libdvd-audio' 'libdvd-audio-debuginfo' 'libdvd-audio-debugsource' 'libdvd-audio-devel' 'libdvd-audio-doc' 'libdvd-audio-utils' 'libdvd-audio-utils-debuginfo' 'libdvd-audio1' 'libdvd-audio1-debuginfo' 'libdvdcss' 'libdvdcss-debugsource' 'libdvdcss-devel' 'libdvdcss2-debuginfo' 'libdvdnav-devel' 'libdvdnav4-32bit' 'libdvdplay-devel' 'libdvdplay0' 'libdvdplay0' 'libdvdplay0-debuginfo' 'libdvdplay0-debugsource' 'libdvdread-devel' 'libdvdread3' 'libdvdread3' 'libdvdread3-debuginfo' 'libdvdread3-debugsource' 'libdvdread3-devel' 'libdvdread4-32bit' 'libdw-devel' 'libdwarf-devel' 'libdwarf-devel-static' 'libdwarf-doc' 'libdwarf-tools' 'libdwarf1' 'libdwarves-devel' 'libdwarves-devel-32bit' 'libdwarves1' 'libdwarves1-32bit' 'libdxflib-3_17_0-1' 'libdxfrw-devel' 'libdxfrw-tools' 'libdxfrw0' 'libe-book-devel' 'libe-book-devel-doc' 'libe-book-tools' 'libeXosip2' 'libeXosip2-12' 'libeXosip2-devel' 'libeb16' 'libebackend-1_2-10' 'libebackend-1_2-10-32bit' 'libebl-devel' 'libebml-devel' 'libebml4-32bit' 'libebook-1_2-19' 'libebook-1_2-19-32bit' 'libebook-contacts-1_2-2' 'libebook-contacts-1_2-2-32bit' 'libebur128-devel' 'libecal-1_2-19' 'libecal-1_2-19-32bit' 'libecasound-devel' 'libecholib1_3' 'libecholib1_3-devel' 'libechonest-qt5-devel' 'libechonest5-2_3' 'libechonest5-2_3-32bit' 'libecm1' 'libecore1' 'libecpg6' 'libecpg6-32bit' 'libecryptfs1' 'libecryptfs1-32bit' 'libector1' 'libedata-book-1_2-25' 'libedata-book-1_2-25-32bit' 'libedata-cal-1_2-29' 'libedata-cal-1_2-29-32bit' 'libedataserver-1_2-24' 'libedataserver-1_2-24-32bit' 'libedataserverui-1_2-2' 'libedataserverui-1_2-2-32bit' 'libedc_ecc1_0' 'libedc_ecc_dec1_0' 'libedit-devel' 'libeditorconfig-devel' 'libeditorconfig-devel-32bit' 'libeditorconfig0-32bit' 'libedje1' 'libeet1' 'libeeze1' 'libefl1' 'libefreet1' 'libefreet_mime1' 'libefreet_trash1' 'libegbb3' 'libegbb3' 'libegbb3-debuginfo' 'libegbb3-debugsource' 'libegbb3-devel' 'libeina1' 'libeio1' 'libeldbus1' 'libelektra-augeas' 'libelektra-devel' 'libelektra-devel-doc' 'libelektra4' 'libelementary1' 'libelf-devel-32bit' 'libell0' 'libelocation1' 'libelput1' 'libelua1' 'libembryo1' 'libemf2svg-devel' 'libemf2svg1' 'libemile1' 'libemotion1' 'libenca0' 'libenca0-32bit' 'libenchant-2-2-32bit' 'libenchant1' 'libenchant1-32bit' 'libenet7' 'libeo1' 'libeolian1' 'libeot-devel' 'libeot-tools' 'libepc-1_0-2' 'libepc-devel' 'libepc-lang' 'libephysics1' 'libepoxy-devel' 'libeppic-devel' 'libepub-devel' 'libepub0-32bit' 'libepubgen-devel' 'libepubgen-devel-doc' 'liberasurecode-devel' 'liberasurecode1' 'liberfa1' 'libertinus-fonts' 'libesedb-devel' 'libesedb-tools' 'libesedb1' 'libesmtp-devel' 'libestr-devel' 'libethumb1' 'libethumb_client1' 'libetonyek-devel' 'libetonyek-devel-doc' 'libetonyek-tools' 'libetpan-devel' 'libetpan20' 'libetrophy0' 'libev-devel' 'libev4' 'libev4-32bit' 'libevas1' 'libevdev-devel' 'libevdev-tools' 'libevdev2-32bit' 'libevdocument3-4' 'libevemu3' 'libevent-2_1-6-32bit' 'libevent-devel' 'libevent-devel-static' 'libevt-devel' 'libevt-tools' 'libevt1' 'libevtlog-3_19-0' 'libevtlog-devel' 'libevtlog0' 'libevtx-devel' 'libevtx-tools' 'libevtx1' 'libevview3-3' 'libewf-devel' 'libewf-tools' 'libewf2' 'libexe-devel' 'libexe-tools' 'libexe1' 'libexempi-devel' 'libexempi3' 'libexempi3-32bit' 'libexif-devel' 'libexif-devel-32bit' 'libexif-gtk' 'libexif-gtk-devel' 'libexif-gtk5' 'libexiv2-27-32bit' 'libexiv2-devel' 'libexiv2-doc' 'libexiv2-xmp-static' 'libexo-1-0' 'libexo-2-0' 'libexoIIv2for-5_14_0' 'libexodus-5_14_0' 'libexpat-devel' 'libexpat-devel-32bit' 'libexplain-devel' 'libexplain51' 'libext2fs-devel' 'libext2fs-devel-32bit' 'libext2fs-devel-static' 'libext2fs2-32bit' 'libexttextcat-devel' 'libexttextcat-tools' 'libf2c0' 'libf2fs6' 'libf2fs_format5' 'libf95getdata7' 'libfaac-devel' 'libfaac0' 'libfaac0-32bit' 'libfaac0-32bit-debuginfo' 'libfaac0-debuginfo' 'libfaad-devel' 'libfaad2-32bit' 'libfaad2-32bit-debuginfo' 'libfaad2-debuginfo' 'libfaad_drm2' 'libfaad_drm2-debuginfo' 'libfabric' 'libfabric-devel' 'libfabric-devel-32bit' 'libfabric1' 'libfabric1-32bit' 'libfakekey-devel' 'libfaketime' 'libfallocate-devel' 'libfallocate-devel-static' 'libfallocate0' 'libfame-0_9-1' 'libfame-0_9-1' 'libfame-0_9-1-debuginfo' 'libfame-0_9-1-debugsource' 'libfame-devel' 'libfann-devel' 'libfann2' 'libfarstream-0_2-5' 'libfarstream-0_2-5-32bit' 'libfastjet0' 'libfastjson-devel' 'libfastlz1' 'libfaxutil7_0_0' 'libfbclient-devel' 'libfbclient2-32bit' 'libfcache-devel' 'libfcache1' 'libfcgi0' 'libfcitx-4_2_9' 'libfcitx-4_2_9-32bit' 'libfdata-devel' 'libfdata1' 'libfdatetime-devel' 'libfdatetime1' 'libfdisk-devel' 'libfdisk-devel-static' 'libfdk-aac1-32bit' 'libfdk-aac1-32bit-debuginfo' 'libfdk-aac1-debuginfo' 'libfdt-devel' 'libfdt-devel-32bit' 'libfdt1-32bit' 'libfec3' 'libffado-devel' 'libffado2-32bit' 'libffcall0' 'libffi-devel' 'libffmpegthumbnailer-devel' 'libffmpegthumbnailer4' 'libffms2-4' 'libffms2-4-32bit' 'libffms2-devel' 'libfftw3-3-32bit' 'libfftw3-gnu-hpc' 'libfftw3-gnu-mpich-hpc' 'libfftw3-gnu-mvapich2-hpc' 'libfftw3-gnu-openmpi1-hpc' 'libfftw3-gnu-openmpi2-hpc' 'libfftw3-gnu-openmpi3-hpc' 'libfftw3_3_3_8-gnu-hpc' 'libfftw3_3_3_8-gnu-mpich-hpc' 'libfftw3_3_3_8-gnu-mvapich2-hpc' 'libfftw3_3_3_8-gnu-openmpi1-hpc' 'libfftw3_3_3_8-gnu-openmpi2-hpc' 'libfftw3_3_3_8-gnu-openmpi3-hpc' 'libfftw3_mpi3' 'libfftw3_mpi3-32bit' 'libfftw3_omp3' 'libfftw3_omp3-32bit' 'libfftw3_threads3' 'libfftw3_threads3-32bit' 'libfgetdata6' 'libfguid-devel' 'libfguid1' 'libfido2-1' 'libfido2-devel' 'libfido2-utils' 'libfife0_4_2' 'libfifechan0_1_5' 'libfifechan_opengl0_1_5' 'libfifechan_sdl0_1_5' 'libfilezilla-devel' 'libfilezilla0' 'libfilteraudio0' 'libfinal-devel' 'libfinal-examples' 'libfinal0' 'libfipscheck1' 'libfipscheck1-32bit' 'libfishsound-devel' 'libfishsound1' 'libfityk4' 'libfko-devel' 'libfko3' 'libfl-devel' 'libfl-devel-32bit' 'libfl2' 'libfl2-32bit' 'libflann1_9' 'libflatbuffers1' 'libflickcurl-devel' 'libflickcurl0' 'libflickcurl0-32bit' 'libflint0' 'libflorence-1_0-1' 'libfltk1-32bit' 'libfluidsynth2-32bit' 'libflxmlrpc1' 'libfm' 'libfm-devel' 'libfm-doc' 'libfm-extra-devel' 'libfm-extra4' 'libfm-gtk-devel' 'libfm-gtk4' 'libfm-lang' 'libfm-qt-devel' 'libfm-qt-lang' 'libfm-qt6' 'libfm4' 'libfmapi-devel' 'libfmapi1' 'libfmt5' 'libfmt5-32bit' 'libfole-devel' 'libfole1' 'libfolks-data' 'libfolks-eds25' 'libfolks-telepathy25' 'libfolks-tracker25' 'libfolks25' 'libfoma-hfst0' 'libfoma0' 'libfontenc-devel' 'libfontenc-devel-32bit' 'libfontenc1-32bit' 'libfonts-javadoc' 'libformula-javadoc' 'libfparser-4_5_2' 'libfplll5' 'libfpm_pb0' 'libfprint-devel' 'libfprint0' 'libfprint0-32bit' 'libframe6' 'libframe6-32bit' 'libfreefare-devel' 'libfreefare-tools' 'libfreefare0' 'libfreehand-devel' 'libfreehand-devel-doc' 'libfreehand-tools' 'libfreeimage3' 'libfreeimageplus3' 'libfreeipmi17' 'libfreerdp2' 'libfreesrp0' 'libfreexl1' 'libfsm0' 'libfsntfs-devel' 'libfsntfs-tools' 'libfsntfs1' 'libfst-hfst0' 'libfstrcmp0' 'libftdi0-binding-python' 'libftdi0-devel' 'libftdi1' 'libftdi1-2' 'libftdi1-devel' 'libftgl2' 'libftgl2-32bit' 'libftoa0_3' 'libfunambol-9_0_1' 'libfunambol-devel' 'libfuse2-32bit' 'libfuse3-3-32bit' 'libfuzzy-devel' 'libfuzzy2' 'libfvalue-devel' 'libfvalue1' 'libfvde-devel' 'libfvde-tools' 'libfvde1' 'libfwevt-devel' 'libfwevt1' 'libfwnt-devel' 'libfwnt1' 'libfwsi-devel' 'libfwsi1' 'libfwupd2' 'libgadu-devel' 'libgadu3' 'libgamemode-devel' 'libgamemode0' 'libgamemode0-32bit' 'libgamemodeauto0' 'libgamemodeauto0-32bit' 'libgamin-1-0' 'libgamin-1-0-32bit' 'libgaminggear' 'libgaminggear-devel' 'libgaminggear-lang' 'libgaminggear0' 'libgaminggearfx0' 'libgaminggearwidget0' 'libganesha_nfsd-devel' 'libganesha_nfsd2_8' 'libganglia0' 'libgarcon-1-0' 'libgarcon-branding-openSUSE' 'libgarcon-branding-upstream' 'libgarcon-data' 'libgarcon-devel' 'libgarcon-doc' 'libgarcon-lang' 'libgasnet-1_30_0' 'libgavl-devel' 'libgavl1' 'libgbm-devel' 'libgbm-devel-32bit' 'libgbm1-32bit' 'libgcc_s1-gcc7' 'libgcc_s1-gcc7-32bit' 'libgcc_s1-gcc8' 'libgcc_s1-gcc8-32bit' 'libgcin-im-client1' 'libgcin-im-client1-32bit' 'libgcj-devel-gcc6' 'libgcj-devel-gcc6-debuginfo' 'libgcj-gcc6' 'libgcj-gcc6' 'libgcj-gcc6-debuginfo' 'libgcj-gcc6-debugsource' 'libgcj-jar-gcc6' 'libgcj_bc1' 'libgck-1-0-32bit' 'libgck-devel' 'libgck-devel-32bit' 'libgcr-3-1-32bit' 'libgcr-devel' 'libgcr-devel-32bit' 'libgcrypt-cavs' 'libgcrypt-devel' 'libgcrypt-devel-32bit' 'libgcrypt20-hmac-32bit' 'libgda-5_0-4' 'libgda-5_0-4-lang' 'libgda-5_0-bdb' 'libgda-5_0-devel' 'libgda-5_0-doc' 'libgda-5_0-firebird' 'libgda-5_0-jdbc' 'libgda-5_0-ldap' 'libgda-5_0-mdb' 'libgda-5_0-mysql' 'libgda-5_0-postgres' 'libgda-5_0-sqlcipher' 'libgda-5_0-sqlite' 'libgda-5_0-tools' 'libgda-5_0-web' 'libgda-report-5_0-4' 'libgda-tools' 'libgda-ui-5_0-4' 'libgda-ui-5_0-plugins' 'libgda-ui-5_0-tools' 'libgda-xslt-5_0-4' 'libgdal26' 'libgdamm-5_0-13' 'libgdamm-devel' 'libgdata-devel' 'libgdata22-32bit' 'libgdiplus-devel' 'libgdl-3-5' 'libgdlmm-3_0-2' 'libgdm1' 'libgdruntime76' 'libgdruntime76-32bit' 'libgeany0' 'libgeda-data' 'libgeda-devel' 'libgeda45' 'libgedacairo-devel' 'libgedacairo1' 'libgee-0_8-2-32bit' 'libgee-devel' 'libgee06-devel' 'libgee2' 'libgegl-0_4-0' 'libgegl-0_4-0-32bit' 'libgeis1' 'libgeis1-32bit' 'libgenders0' 'libgendersplusplus2' 'libgeners0' 'libgeocode-glib0' 'libgeocode-glib0-32bit' 'libgeos-3_7_2' 'libgeos_c1' 'libgeotiff5' 'libgepub-0_6-0' 'libgepub-devel' 'libgerbv1' 'libges-1_0-0' 'libgetdata++7' 'libgetdata8' 'libgexiv2-2' 'libgexiv2-2-32bit' 'libgexiv2-devel' 'libgf2x-1_2' 'libgfbgraph-0_2-0' 'libgfchangelog0' 'libgfdb0' 'libgflags2' 'libgfortran4' 'libgfortran4-32bit' 'libgfortran5-32bit' 'libgfortran5-gcc8' 'libgfortran5-gcc8-32bit' 'libggz2' 'libggz2-devel' 'libgiblib1' 'libgif7-32bit' 'libgig-devel' 'libgig-tools' 'libgig8' 'libgimp-2_0-0' 'libgimp-2_0-0-32bit' 'libgimpui-2_0-0' 'libgimpui-2_0-0-32bit' 'libginac-devel' 'libginac6' 'libgio-fam' 'libgio-fam-32bit' 'libgiomm-2_4-1-32bit' 'libgiomm-2_60-1' 'libgiomm-2_60-1-32bit' 'libgirara-gtk3-3' 'libgirepository-1_0-1-32bit' 'libgit2-28-32bit' 'libgit2-devel' 'libgit2-glib-1_0-0' 'libgit2-glib-devel' 'libgitg-1_0-0' 'libgitg-devel' 'libgitg-ext-1_0-0' 'libgivaro9' 'libgjs-devel' 'libgjs0' 'libgl2ps1' 'libglade-2_0-0-32bit' 'libglade2-devel' 'libglade2-doc' 'libgladeui-2-6' 'libgladeui-2-devel' 'libgle-devel' 'libgle3' 'libglfw-devel' 'libglfw2' 'libglfw3' 'libglibmm-2_4-1-32bit' 'libglibmm-2_60-1' 'libglibmm-2_60-1-32bit' 'libglog0' 'libglom-1_32-0' 'libglom-devel' 'libgloox17' 'libgloox17-32bit' 'libglpk40' 'libgltf-0_1-1' 'libgltf-devel' 'libglue-devel' 'libglue-devel-32bit' 'libglue2' 'libglue2-32bit' 'libglut3' 'libglut3-32bit' 'libglvnd-devel' 'libglvnd-devel-32bit' 'libglyr1' 'libglyr1-32bit' 'libgme-devel' 'libgme0-32bit' 'libgmerlin-devel' 'libgmerlin0' 'libgmerlin0-debuginfo' 'libgmerlin_avdec-devel' 'libgmerlin_avdec1' 'libgmerlin_avdec1-debuginfo' 'libgmerlin_gtk-devel' 'libgmerlin_gtk0' 'libgmerlin_gtk0-debuginfo' 'libgmime-2_6-0' 'libgmime-2_6-0-32bit' 'libgmime-3_0-0' 'libgmime-3_0-0-32bit' 'libgmpxx4-32bit' 'libgnome' 'libgnome-32bit' 'libgnome-autoar-0-0' 'libgnome-autoar-gtk-0-0' 'libgnome-bluetooth13' 'libgnome-desktop-2-17' 'libgnome-desktop-2-17-32bit' 'libgnome-desktop-2-devel' 'libgnome-desktop-3-17-32bit' 'libgnome-desktop-3-devel' 'libgnome-devel' 'libgnome-games-support-1-3' 'libgnome-games-support-devel' 'libgnome-games-support-lang' 'libgnome-keyring-devel' 'libgnome-keyring0-32bit' 'libgnome-lang' 'libgnome-menu-3-0' 'libgnome-menu-3-0-32bit' 'libgnomecanvas-2-0' 'libgnomecanvas-2-0-32bit' 'libgnomecanvas-devel' 'libgnomecanvas-lang' 'libgnomekbd-devel' 'libgnomekbd-lang' 'libgnomekbd8' 'libgnomesu' 'libgnomesu-devel' 'libgnomesu-lang' 'libgnomesu0' 'libgnomeui' 'libgnomeui-32bit' 'libgnomeui-devel' 'libgnomeui-doc' 'libgnomeui-lang' 'libgnuastro6' 'libgnuradio-3_7_12-0_0_0' 'libgnuradio-fcdproplus-3_7_2_0-0_0_0' 'libgnuradio-fcdproplus-devel' 'libgnuradio-iqbalance' 'libgnuradio-iqbalance-devel' 'libgnuradio-osmosdr-0_1_5git0_0_0' 'libgnustep-base1_26' 'libgnutls-dane-devel' 'libgnutls-devel-32bit' 'libgnutlsxx-devel' 'libgnutlsxx28' 'libgo11' 'libgo11-32bit' 'libgo13' 'libgo13-32bit' 'libgo14' 'libgo14-32bit' 'libgoa-1_0-0-32bit' 'libgoa-backend-1_0-1-32bit' 'libgoffice-0_10-10' 'libgom-1_0-0' 'libgomp1-32bit' 'libgomp1-gcc7' 'libgomp1-gcc7-32bit' 'libgomp1-gcc8' 'libgomp1-gcc8-32bit' 'libgoocanvas-2_0-9' 'libgoocanvas3' 'libgoocanvas3-devel' 'libgoocanvas3-lang' 'libgoocanvasmm-2_0-6' 'libgoocanvasmm-devel' 'libgooglepinyin-devel' 'libgooglepinyin0' 'libgovf-0_1' 'libgovirt-devel' 'libgovirt-lang' 'libgovirt2' 'libgpac-devel' 'libgpac8' 'libgpaste11' 'libgpg-error-devel' 'libgpg-error-devel-32bit' 'libgpgme-devel' 'libgpgme11-32bit' 'libgpgmepp-devel' 'libgpgmepp6-32bit' 'libgphobos76' 'libgphobos76-32bit' 'libgphoto2-devel' 'libgphoto2-devel-32bit' 'libgphoto2-devel-doc' 'libgphoto2-doc' 'libgpiod' 'libgpiod-devel' 'libgpiod2' 'libgpiodcxx1' 'libgpiomockup0' 'libgpm2-32bit' 'libgpod-devel' 'libgpod-doc' 'libgpod-lang' 'libgpod-tools' 'libgpod4' 'libgpod4-32bit' 'libgrail6' 'libgrail6-32bit' 'libgranite5' 'libgraphblas2' 'libgraphene-1_0-0-32bit' 'libgraphene-devel' 'libgravatar-devel' 'libgrilo-0_3-0' 'libgrlnet-0_3-0' 'libgrlpls-0_3-0' 'libgromacs4' 'libgroove-devel' 'libgroove4' 'libgroovefingerprinter-devel' 'libgroovefingerprinter4' 'libgrooveloudness-devel' 'libgrooveloudness4' 'libgrooveplayer-devel' 'libgrooveplayer4' 'libgrpc-httpjson-transcoding0' 'libgrpc6' 'libgrss-devel' 'libgrss0' 'libgsasl-devel' 'libgsasl-lang' 'libgsasl7' 'libgsequencer0' 'libgsettings-qt1' 'libgsf-1-114' 'libgsf-1-114-32bit' 'libgsf-devel' 'libgsf-lang' 'libgsf-tools' 'libgsl-gnu-hpc' 'libgsl25' 'libgsl_2_6-gnu-hpc' 'libgslcblas-gnu-hpc' 'libgslcblas_2_6-gnu-hpc' 'libgsm-devel' 'libgsm-devel-32bit' 'libgsm-utils' 'libgsmsd8' 'libgsoap-2_8_91' 'libgsound0' 'libgspell-1-2' 'libgssdp-1_2-0-32bit' 'libgssdp-devel' 'libgssglue-devel' 'libgssglue1' 'libgssglue1-32bit' 'libgstadaptivedemux-1_0-0-32bit' 'libgstadaptivedemux-1_0-0-32bit-debuginfo' 'libgstadaptivedemux-1_0-0-debuginfo' 'libgstallocators-1_0-0-32bit' 'libgstapp-1_0-0-32bit' 'libgstbadaudio-1_0-0-32bit' 'libgstbadaudio-1_0-0-32bit-debuginfo' 'libgstbadaudio-1_0-0-debuginfo' 'libgstbasecamerabinsrc-1_0-0-32bit' 'libgstbasecamerabinsrc-1_0-0-32bit-debuginfo' 'libgstbasecamerabinsrc-1_0-0-debuginfo' 'libgstcodecparsers-1_0-0-32bit' 'libgstcodecparsers-1_0-0-32bit-debuginfo' 'libgstcodecparsers-1_0-0-debuginfo' 'libgstfft-1_0-0-32bit' 'libgstgl-1_0-0-32bit' 'libgstinsertbin-1_0-0' 'libgstinsertbin-1_0-0-32bit' 'libgstinsertbin-1_0-0-32bit-debuginfo' 'libgstinsertbin-1_0-0-debuginfo' 'libgstisoff-1_0-0-32bit' 'libgstisoff-1_0-0-32bit-debuginfo' 'libgstisoff-1_0-0-debuginfo' 'libgstmpegts-1_0-0-32bit' 'libgstmpegts-1_0-0-32bit-debuginfo' 'libgstmpegts-1_0-0-debuginfo' 'libgstpbutils-1_0-0-32bit' 'libgstphotography-1_0-0-32bit' 'libgstphotography-1_0-0-32bit-debuginfo' 'libgstphotography-1_0-0-debuginfo' 'libgstplayer-1_0-0' 'libgstplayer-1_0-0-32bit' 'libgstplayer-1_0-0-32bit-debuginfo' 'libgstplayer-1_0-0-debuginfo' 'libgstreamerd-3-0' 'libgstreamermm-1_0-1' 'libgstriff-1_0-0-32bit' 'libgstrtp-1_0-0-32bit' 'libgstrtsp-1_0-0-32bit' 'libgstrtspserver-1_0-0' 'libgstsctp-1_0-0-32bit' 'libgstsctp-1_0-0-32bit-debuginfo' 'libgstsctp-1_0-0-debuginfo' 'libgstsdp-1_0-0-32bit' 'libgsttranscoder-1_0-0' 'libgsturidownloader-1_0-0-32bit' 'libgsturidownloader-1_0-0-32bit-debuginfo' 'libgsturidownloader-1_0-0-debuginfo' 'libgstvalidate-1_0-0' 'libgstwayland-1_0-0-32bit' 'libgstwayland-1_0-0-32bit-debuginfo' 'libgstwayland-1_0-0-debuginfo' 'libgstwebrtc-1_0-0-32bit' 'libgstwebrtc-1_0-0-32bit-debuginfo' 'libgstwebrtc-1_0-0-debuginfo' 'libgthread-2_0-0-32bit' 'libgtk-4-0' 'libgtk-4-0-32bit' 'libgtk-frdp-0_1' 'libgtkd-3-0' 'libgtkdatabox-0_9_3-0' 'libgtkdatabox-devel' 'libgtkdgl-3-0' 'libgtkdsv-3-0' 'libgtkglext-x11-1_0-0' 'libgtkglext-x11-1_0-0-32bit' 'libgtkhex-3-0' 'libgtkhotkey-devel' 'libgtkhotkey1' 'libgtkhtml-4_0-0' 'libgtkhtml-4_0-0-32bit' 'libgtkhtml-editor-4_0-0' 'libgtkhtml-editor-4_0-0-32bit' 'libgtkimageview0' 'libgtkmm-2_4-1' 'libgtkmm-2_4-1-32bit' 'libgtkmm-3_0-1-32bit' 'libgtkpod1' 'libgtksourceview-2_0-0' 'libgtksourceviewmm-3_0-0' 'libgtkspell0' 'libgtkspell3-3-0' 'libgtop' 'libgtop-2_0-11' 'libgtop-2_0-11-32bit' 'libgtop-devel' 'libgtop-doc' 'libgtop-lang' 'libgtp-devel' 'libgtp5' 'libgtpnl-devel' 'libgtpnl0' 'libgucharmap_2_90-7' 'libgudev-1_0-0-32bit' 'libgudev-1_0-devel' 'libguess-devel' 'libguess1' 'libguess1-32bit' 'libguestfs-devel' 'libguestfs-test' 'libguile-2_2-1' 'libguile-cairo0' 'libguile-srfi-srfi-1-v-3-3' 'libguile-srfi-srfi-13-14-v-3-3' 'libguile-srfi-srfi-4-v-3-3' 'libguile-srfi-srfi-60-v-2-2' 'libguile-ssh11' 'libguile1-devel' 'libguile17' 'libguilereadline-v-17-17' 'libgupnp-1_2-0-32bit' 'libgupnp-av-1_0-2' 'libgupnp-av-devel' 'libgupnp-devel' 'libgupnp-dlna-2_0-3' 'libgupnp-dlna-backend-gstreamer' 'libgupnp-dlna-devel' 'libgupnp-igd-1_0-4-32bit' 'libgupnp-igd-devel' 'libgusb-devel' 'libgusb2' 'libgviewaudio-2_0-2' 'libgviewencoder-2_0-2' 'libgviewrender-2_0-2' 'libgviewv4l2core-2_0-2' 'libgviewv4l2core-lang' 'libgvncpulse-1_0-0' 'libgweather-3-15' 'libgweather-3-15-32bit' 'libgweather-devel' 'libgweather-lang' 'libgwengui-cpp0' 'libgwengui-fox16-0' 'libgwengui-gtk2-0' 'libgwengui-gtk3-0' 'libgwengui-qt4-0' 'libgwengui-qt5-0' 'libgwenhywfar60' 'libgwenhywfar60-plugins' 'libgxps-devel' 'libgxps-tools' 'libgxps2' 'libgxw0' 'libgxwmm0' 'libgypsy-devel' 'libgypsy0' 'libgypsy0-32bit' 'libhackrf0' 'libhal1' 'libhamlib++2' 'libhamlib2' 'libhandle1' 'libhandy-0_0-0' 'libhandy-devel' 'libhangul-devel' 'libhangul1' 'libhangul1-32bit' 'libharfbuzz-gobject0' 'libharfbuzz-gobject0-32bit' 'libharfbuzz-icu0-32bit' 'libharfbuzz-subset0' 'libharfbuzz-subset0-32bit' 'libharminv3' 'libharu-devel' 'libhavoc0' 'libhavoc0-debuginfo' 'libhdf4' 'libhdf4-32bit' 'libhdf4-openmpi' 'libhdf4-openmpi-32bit' 'libhdf5-103-32bit' 'libhdf5-103-mvapich2' 'libhdf5-103-mvapich2-32bit' 'libhdf5-103-openmpi' 'libhdf5-103-openmpi-32bit' 'libhdf5-103-openmpi2' 'libhdf5-103-openmpi2-32bit' 'libhdf5-103-openmpi3' 'libhdf5-103-openmpi3-32bit' 'libhdf5-gnu-hpc' 'libhdf5-gnu-mpich-hpc' 'libhdf5-gnu-mvapich2-hpc' 'libhdf5-gnu-openmpi1-hpc' 'libhdf5-gnu-openmpi2-hpc' 'libhdf5-gnu-openmpi3-hpc' 'libhdf5_1_10_4-gnu-hpc' 'libhdf5_1_10_4-gnu-mpich-hpc' 'libhdf5_1_10_4-gnu-mvapich2-hpc' 'libhdf5_1_10_4-gnu-openmpi1-hpc' 'libhdf5_1_10_4-gnu-openmpi2-hpc' 'libhdf5_1_10_4-gnu-openmpi3-hpc' 'libhdf5_cpp-gnu-hpc' 'libhdf5_cpp-gnu-mpich-hpc' 'libhdf5_cpp-gnu-mvapich2-hpc' 'libhdf5_cpp-gnu-openmpi1-hpc' 'libhdf5_cpp-gnu-openmpi2-hpc' 'libhdf5_cpp-gnu-openmpi3-hpc' 'libhdf5_cpp103' 'libhdf5_cpp103-32bit' 'libhdf5_cpp103-mvapich2' 'libhdf5_cpp103-mvapich2-32bit' 'libhdf5_cpp103-openmpi' 'libhdf5_cpp103-openmpi-32bit' 'libhdf5_cpp103-openmpi2' 'libhdf5_cpp103-openmpi2-32bit' 'libhdf5_cpp103-openmpi3' 'libhdf5_cpp103-openmpi3-32bit' 'libhdf5_cpp_1_10_4-gnu-hpc' 'libhdf5_cpp_1_10_4-gnu-mpich-hpc' 'libhdf5_cpp_1_10_4-gnu-mvapich2-hpc' 'libhdf5_cpp_1_10_4-gnu-openmpi1-hpc' 'libhdf5_cpp_1_10_4-gnu-openmpi2-hpc' 'libhdf5_cpp_1_10_4-gnu-openmpi3-hpc' 'libhdf5_fortran-gnu-hpc' 'libhdf5_fortran-gnu-mpich-hpc' 'libhdf5_fortran-gnu-mvapich2-hpc' 'libhdf5_fortran-gnu-openmpi1-hpc' 'libhdf5_fortran-gnu-openmpi2-hpc' 'libhdf5_fortran-gnu-openmpi3-hpc' 'libhdf5_fortran100' 'libhdf5_fortran100-32bit' 'libhdf5_fortran100-mvapich2' 'libhdf5_fortran100-mvapich2-32bit' 'libhdf5_fortran100-openmpi' 'libhdf5_fortran100-openmpi-32bit' 'libhdf5_fortran100-openmpi2' 'libhdf5_fortran100-openmpi2-32bit' 'libhdf5_fortran100-openmpi3' 'libhdf5_fortran100-openmpi3-32bit' 'libhdf5_fortran_1_10_4-gnu-hpc' 'libhdf5_fortran_1_10_4-gnu-mpich-hpc' 'libhdf5_fortran_1_10_4-gnu-mvapich2-hpc' 'libhdf5_fortran_1_10_4-gnu-openmpi1-hpc' 'libhdf5_fortran_1_10_4-gnu-openmpi2-hpc' 'libhdf5_fortran_1_10_4-gnu-openmpi3-hpc' 'libhdf5_hl-gnu-hpc' 'libhdf5_hl-gnu-mpich-hpc' 'libhdf5_hl-gnu-mvapich2-hpc' 'libhdf5_hl-gnu-openmpi1-hpc' 'libhdf5_hl-gnu-openmpi2-hpc' 'libhdf5_hl-gnu-openmpi3-hpc' 'libhdf5_hl100-32bit' 'libhdf5_hl100-mvapich2' 'libhdf5_hl100-mvapich2-32bit' 'libhdf5_hl100-openmpi' 'libhdf5_hl100-openmpi-32bit' 'libhdf5_hl100-openmpi2' 'libhdf5_hl100-openmpi2-32bit' 'libhdf5_hl100-openmpi3' 'libhdf5_hl100-openmpi3-32bit' 'libhdf5_hl_1_10_4-gnu-hpc' 'libhdf5_hl_1_10_4-gnu-mpich-hpc' 'libhdf5_hl_1_10_4-gnu-mvapich2-hpc' 'libhdf5_hl_1_10_4-gnu-openmpi1-hpc' 'libhdf5_hl_1_10_4-gnu-openmpi2-hpc' 'libhdf5_hl_1_10_4-gnu-openmpi3-hpc' 'libhdf5_hl_cpp-gnu-hpc' 'libhdf5_hl_cpp-gnu-mpich-hpc' 'libhdf5_hl_cpp-gnu-mvapich2-hpc' 'libhdf5_hl_cpp-gnu-openmpi1-hpc' 'libhdf5_hl_cpp-gnu-openmpi2-hpc' 'libhdf5_hl_cpp-gnu-openmpi3-hpc' 'libhdf5_hl_cpp100' 'libhdf5_hl_cpp100-32bit' 'libhdf5_hl_cpp100-mvapich2' 'libhdf5_hl_cpp100-mvapich2-32bit' 'libhdf5_hl_cpp100-openmpi' 'libhdf5_hl_cpp100-openmpi-32bit' 'libhdf5_hl_cpp100-openmpi2' 'libhdf5_hl_cpp100-openmpi2-32bit' 'libhdf5_hl_cpp100-openmpi3' 'libhdf5_hl_cpp100-openmpi3-32bit' 'libhdf5_hl_cpp_1_10_4-gnu-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-mpich-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-mvapich2-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-openmpi1-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-openmpi2-hpc' 'libhdf5_hl_cpp_1_10_4-gnu-openmpi3-hpc' 'libhdf5_hl_fortran-gnu-hpc' 'libhdf5_hl_fortran-gnu-mpich-hpc' 'libhdf5_hl_fortran-gnu-mvapich2-hpc' 'libhdf5_hl_fortran-gnu-openmpi1-hpc' 'libhdf5_hl_fortran-gnu-openmpi2-hpc' 'libhdf5_hl_fortran-gnu-openmpi3-hpc' 'libhdf5hl_fortran100' 'libhdf5hl_fortran100-32bit' 'libhdf5hl_fortran100-mvapich2' 'libhdf5hl_fortran100-mvapich2-32bit' 'libhdf5hl_fortran100-openmpi' 'libhdf5hl_fortran100-openmpi-32bit' 'libhdf5hl_fortran100-openmpi2' 'libhdf5hl_fortran100-openmpi2-32bit' 'libhdf5hl_fortran100-openmpi3' 'libhdf5hl_fortran100-openmpi3-32bit' 'libhdf5hl_fortran_1_10_4-gnu-hpc' 'libhdf5hl_fortran_1_10_4-gnu-mpich-hpc' 'libhdf5hl_fortran_1_10_4-gnu-mvapich2-hpc' 'libhdf5hl_fortran_1_10_4-gnu-openmpi1-hpc' 'libhdf5hl_fortran_1_10_4-gnu-openmpi2-hpc' 'libhdf5hl_fortran_1_10_4-gnu-openmpi3-hpc' 'libhdhomerun' 'libhdhomerun-debuginfo' 'libhdhomerun-debugsource' 'libhdhomerun-devel' 'libhdhomerun2' 'libhdhomerun20150826' 'libhdhomerun20150826-debuginfo' 'libheimdal' 'libheimdal-devel' 'libhfst52' 'libhfstospell10' 'libhfstospell10-32bit' 'libhidapi-devel' 'libhidapi-hidraw0' 'libhidapi-libusb0' 'libhinawa-devel' 'libhinawa1' 'libhiredis0_13' 'libhmac-devel' 'libhmac-tools' 'libhmac1' 'libhowl0' 'libhpdf2_3_0' 'libhpx1' 'libhs5' 'libhssi-io0' 'libhtp-devel' 'libhtp2' 'libhttp_parser2_7_1-32bit' 'libhttrack2' 'libhubbub-devel' 'libhubbub-doc' 'libhubbub0' 'libhugetlbfs' 'libhugetlbfs-32bit' 'libhugetlbfs-devel' 'libhugetlbfs-tests' 'libhunspell-1_7-0-32bit' 'libhwloc5' 'libhwsd2' 'libhwsd2-debuginfo' 'libhydrogen-core-devel' 'libhydrogen-core1' 'libhyphen0-32bit' 'libi2c0' 'libi2c0-devel' 'libib_util-32bit' 'libib_util-devel' 'libibdm1' 'libibmad5' 'libibmad5-32bit' 'libibmtss0' 'libibnetdisc5' 'libibnetdisc5-32bit' 'libibumad3' 'libibumad3-32bit' 'libibus-1_0-5-32bit' 'libibverbs-32bit' 'libibverbs-utils' 'libibverbs1-32bit' 'libical-devel' 'libical-doc' 'libical3-32bit' 'libicecream-devel' 'libicns-devel' 'libicns1' 'libiconv_hook-devel' 'libiconv_hook1' 'libicu-devel' 'libicu-devel-32bit' 'libicu-doc' 'libicu-suse64_2-32bit' 'libicu64_2-bedata' 'libid3tag-devel' 'libid3tag0-32bit' 'libidl-devel' 'libidn-devel' 'libidn-tools' 'libidn12-32bit' 'libidn2-devel' 'libidn2-tools' 'libido3-0_1-0' 'libido3-0_1-0-32bit' 'libiec61883-0-32bit' 'libiec61883-devel' 'libiec61883-tools' 'libigdgmm-devel' 'libigdgmm9' 'libigfxcmrt-devel' 'libigfxcmrt7' 'libilbc0' 'libimaevm1' 'libimagequant-devel' 'libiml0' 'libimobiledevice-devel' 'libimobiledevice6-32bit' 'libinchi0' 'libinchi0-32bit' 'libindi' 'libindi-devel' 'libindi-plugins' 'libindiAlignmentDriver1' 'libindicator-devel' 'libindicator3-devel' 'libindicator7' 'libindidriver1' 'libindilx200-1' 'libinfinipath4' 'libinfinipath4-32bit' 'libinfinity-1_0-0' 'libinfinity-devel' 'libinfinity-lang' 'libini_config-devel' 'libini_config-devel-32bit' 'libini_config5' 'libini_config5-32bit' 'libiniparser-devel' 'libiniparser1' 'libiniparser1-32bit' 'libinjeqt1' 'libinotifytools0' 'libinput-devel' 'libinput-tools' 'libinput10-32bit' 'libinstpatch-1_0-0' 'libinstpatch-devel' 'libiodbc-devel' 'libiodbc3' 'libipa_hbac-devel' 'libipa_hbac0' 'libipmiconsole2' 'libipmidetect0' 'libipmimonitoring6' 'libipq-devel' 'libipq0' 'libiptc-devel' 'libiptcdata' 'libiptcdata-devel' 'libiptcdata-doc' 'libiptcdata-lang' 'libiptcdata0' 'libircclient-devel' 'libircclient-doc' 'libircclient1' 'libirman-devel' 'libirman0' 'libirrecord0' 'libirs-devel' 'libirs160-32bit' 'libisc166-32bit' 'libisccc160-32bit' 'libisccfg160-32bit' 'libiscsi-devel' 'libiscsi-test' 'libiscsi-utils' 'libisds-devel' 'libisds5' 'libisl19-32bit' 'libiso9660-11-32bit' 'libisoburn-devel' 'libisofs-devel' 'libite-devel' 'libite5' 'libiterm-devel' 'libiterm1' 'libitm1-32bit' 'libitm1-gcc7' 'libitm1-gcc7-32bit' 'libitm1-gcc8' 'libitm1-gcc8-32bit' 'libitpp8' 'libivykis0' 'libiw-devel' 'libixion-devel' 'libixion-tools' 'libixml10-32bit' 'libjack-devel' 'libjack-devel-32bit' 'libjacknet0-32bit' 'libjackserver0-32bit' 'libjansson-devel' 'libjasper-devel' 'libjasper4-32bit' 'libjavascriptcoregtk-4_0-18-32bit' 'libjaylink' 'libjaylink-devel' 'libjaylink0' 'libjbig-devel' 'libjbig-devel-32bit' 'libjbig2dec0' 'libjbig2dec0-32bit' 'libjd0' 'libjim0_75' 'libjnidispatch' 'libjoschy-devel' 'libjoschy0' 'libjoschy0-debuginfo' 'libjpeg-turbo' 'libjpeg62' 'libjpeg62-32bit' 'libjpeg62-devel' 'libjpeg62-devel-32bit' 'libjpeg8-devel' 'libjpeg8-devel-32bit' 'libjpegxr0' 'libjq-devel' 'libjq1' 'libjreen-qt5-1' 'libjreen-qt5-devel' 'libjrtp3_11_1' 'libjsmn0' 'libjson-c-devel' 'libjson-c-doc' 'libjson-c4-32bit' 'libjsoncpp21' 'libjsonrpc-glib-1_0-1' 'libjte-devel' 'libjthread1_3_3' 'libjwt_verify_lib0' 'libjxrglue0' 'libkaccounts1-32bit' 'libkactivities-devel' 'libkactivities6-32bit' 'libkasten-lang' 'libkate-devel' 'libkate-tools' 'libkate1-32bit' 'libkatepartinterfaces4' 'libkcapi-devel' 'libkcapi-tools' 'libkcapi0' 'libkcarchiver0' 'libkcarchivercore0' 'libkcddb' 'libkcddb-devel' 'libkcddb-lang' 'libkcddb4' 'libkcddb4-devel' 'libkcfreebusy0' 'libkchart-lang' 'libkcicalmapi0' 'libkcinetmapi0' 'libkcompactdisc-devel' 'libkcompactdisc4' 'libkcompactdisc4-devel' 'libkcpyplug0' 'libkcrosie0' 'libkcserver0' 'libkcsoap0' 'libkcutil0' 'libkdcraw-devel' 'libkde4-32bit' 'libkde4-devel' 'libkdecoration2-devel' 'libkdecoration2-devel-32bit' 'libkdecorations2-5-32bit' 'libkdecorations2private6-32bit' 'libkdecore4-32bit' 'libkdecore4-devel' 'libkdegames-devel' 'libkdepim-devel' 'libkdevplatform54' 'libkdstatemachineeditor_core1_2_5' 'libkdstatemachineeditor_view1_2_5' 'libkdumpfile-devel' 'libkdumpfile7' 'libkea1_4' 'libkeccak-devel' 'libkeccak1' 'libkeduvocdocument-devel' 'libkeduvocdocument-lang' 'libkexiv2-devel' 'libkeybinder0' 'libkgapi-devel' 'libkgeomap' 'libkgeomap-devel' 'libkgeomap-lang' 'libkim-api2' 'libkioarchive-devel' 'libkipi-devel' 'libkkc-devel' 'libkkc2' 'libkkc2-32bit' 'libkleo-devel' 'libklfbackend4' 'libklftools4' 'libklu1' 'libkmahjongg-devel' 'libkmod-devel' 'libkms-devel' 'libkms-devel-32bit' 'libkms1' 'libkms1-32bit' 'libknet1' 'libknet1-compress-bzip2-plugin' 'libknet1-compress-lz4-plugin' 'libknet1-compress-lzma-plugin' 'libknet1-compress-lzo2-plugin' 'libknet1-compress-plugins-all' 'libknet1-compress-zlib-plugin' 'libknet1-crypto-nss-plugin' 'libknet1-crypto-openssl-plugin' 'libknet1-crypto-plugins-all' 'libknet1-devel' 'libknet1-plugins-all' 'libkolabxml-devel' 'libkomparediff2-devel' 'libkonkretcmpi0' 'libkpathsea6' 'libkpmcore7' 'libksane-devel' 'libksba-devel' 'libkscreen2-devel' 'libkscreen2-devel-32bit' 'libkscreen2-plugin-32bit' 'libksi-devel' 'libksi1' 'libksieve-devel' 'libksuseinstall-devel' 'libksuseinstall1-32bit' 'libksysguard5-32bit' 'libksysguard5-devel' 'libksysguard5-devel-32bit' 'libktoblzcheck1' 'libktorrent-devel' 'libktorrent-lang' 'libktpaccountskcminternal9' 'libkvazaar-devel' 'libkvazaar4' 'libkvazaar4-debuginfo' 'libkvkontakte-devel' 'libkvkontakte-lang' 'libkwalletbackend5-5-32bit' 'libkwnn0' 'libkyotocabinet-devel' 'libkyotocabinet16' 'libkyotocabinet16-32bit' 'liblammps0' 'liblangtag-devel' 'liblangtag-doc' 'liblapack3-32bit' 'liblapacke3' 'liblapacke3-32bit' 'liblasem-0_4-4' 'liblash1-32bit' 'liblash1-32bit-debuginfo' 'liblash1-debuginfo' 'liblastfm-devel' 'liblastfm-qt5-devel' 'liblastfm1' 'liblastfm5-1' 'liblastfm5-1-32bit' 'liblastfm_fingerprint5-1' 'liblastfm_fingerprint5-1-32bit' 'liblaszip8' 'liblaszip_api8' 'liblayout-javadoc' 'liblazy-devel' 'liblazy1' 'liblazy1-32bit' 'liblbxutil-devel' 'liblbxutil-devel-32bit' 'liblbxutil1' 'liblbxutil1-32bit' 'liblcms2-devel' 'liblcms2-devel-32bit' 'liblcms2-doc' 'libldac2' 'libldapcpp-devel' 'libldb-devel' 'libldl-doc' 'libldl2' 'libldm-1_0-0-devel' 'libldns3' 'libleechcraft-util-db-qt5-0_6_75_1' 'libleechcraft-util-gui-qt5-0_6_75_1' 'libleechcraft-util-models-qt5-0_6_75_1' 'libleechcraft-util-network-qt5-0_6_75_1' 'libleechcraft-util-qml-qt5-0_6_75_2' 'libleechcraft-util-shortcuts-qt5-0_6_75' 'libleechcraft-util-sll-qt5-0_6_75_1' 'libleechcraft-util-svcauth-qt5-0_6_75' 'libleechcraft-util-sys-qt5-0_6_75_1' 'libleechcraft-util-tags-qt5-0_6_75_1' 'libleechcraft-util-threads-qt5-0_6_75' 'libleechcraft-util-x11-qt5-0_6_75' 'libleechcraft-util-xdg-qt5-0_6_75' 'libleechcraft-util-xpc-qt5-0_6_75_2' 'libleechcraft-util-xsd-qt5-0_6_75' 'liblegion1' 'liblensfun1' 'liblept5' 'liblept5-32bit' 'libleveldb1' 'liblhasa0' 'liblightdm-qt5-3-0' 'liblightgrep-devel' 'liblightgrep0' 'liblightmediascanner0' 'liblightstep_tracer0' 'liblilv-0-0-32bit' 'liblilv-0-devel' 'liblinbox0' 'liblinebreak-devel' 'liblinebreak2' 'liblink-grammar5' 'liblinphone++9' 'liblinphone++9-32bit' 'liblinphone-data' 'liblinphone-devel' 'liblinphone-lang' 'liblinphone9' 'liblinphone9-32bit' 'liblinuxsampler-devel' 'liblinuxsampler5' 'liblinuxsampler5-debuginfo' 'libliquid-devel' 'liblirc0' 'liblirc0-32bit' 'liblirc_client0-32bit' 'liblirc_driver0' 'liblirc_driver0-32bit' 'liblittleb0' 'libliveMedia-devel' 'liblldb6' 'liblldb7' 'liblldb8' 'liblldp_clif1' 'liblldpctl4' 'liblmdb-0_9_23-32bit' 'liblms7002m-devel' 'liblms7compact0' 'liblnk-devel' 'liblnk-tools' 'liblnk1' 'liblo-devel' 'liblo10k1-0' 'liblo7-32bit' 'libloader-javadoc' 'liblodepng-r84' 'liblog4c-devel' 'liblog4c-doc' 'liblog4c3' 'liblog4c3-32bit' 'liblog4cplus-1_1-5' 'liblog4cpp5' 'liblog4cxx-devel' 'liblog4cxx10' 'liblog4shib-devel' 'liblog4shib2' 'liblogging-devel' 'liblognorm-devel' 'libloki-devel' 'libloki-doc' 'libloki0_1_7' 'libloudmouth-1-0' 'liblouis-data' 'liblouis-devel' 'liblouis-doc' 'liblouis-tools' 'liblouis17' 'liblqr-1-0-32bit' 'liblqr-devel' 'liblrdf-devel' 'liblrdf2-32bit' 'liblrs-7_0-0' 'liblsan0-gcc7' 'liblsan0-gcc8' 'liblscp-devel' 'liblscp6' 'liblsmash2' 'liblsmash2-debuginfo' 'libltc-devel' 'libltc11' 'liblttng-ctl0' 'liblttng-ust-ctl4' 'liblttng-ust-python-agent0' 'liblua5_1-5-32bit' 'libluabind0_9_1' 'libluajit-5_1-2-32bit' 'liblucene++0' 'liblur3' 'liblwres160-32bit' 'liblxc-devel' 'liblxc1' 'liblxpanel0' 'liblxqt-devel' 'liblxqt-globalkeys-ui0' 'liblxqt-globalkeys0' 'liblxqt-lang' 'liblxqt0' 'liblz1' 'liblz4-devel' 'liblzo2-2-32bit' 'libm17n0' 'libm17n0-32bit' 'libm4ri-0_0_20140914' 'libm4ri-devel' 'libm4rie-0_0_20150908' 'libm4rie-devel' 'libmaa-devel' 'libmaa-doc' 'libmaa4' 'libmac' 'libmac-debuginfo' 'libmac-debugsource' 'libmac-devel' 'libmac2' 'libmac2-debuginfo' 'libmad-devel' 'libmad0-32bit' 'libmaia-devel' 'libmaia1' 'libmailutils5' 'libmakemkv1' 'libmanette-0_2-0' 'libmanette-devel' 'libmapi1' 'libmapidb-devel' 'libmapidb1' 'libmarco-private1' 'libmariadb-devel' 'libmariadb3-32bit' 'libmariadb_plugins' 'libmariadbd-devel' 'libmariadbd19' 'libmariadbprivate' 'libmarisa0' 'libmarisa0-32bit' 'libmarkdown-devel' 'libmate-desktop-2-17' 'libmate-menu2' 'libmate-menu2-32bit' 'libmate-panel-applet-4-1' 'libmate-panel-applet-4-1-32bit' 'libmate-sensors-applet-plugin0' 'libmate-sensors-applet-plugin0-32bit' 'libmate-slab-devel' 'libmate-slab0' 'libmate-window-settings1' 'libmatedict-devel' 'libmatedict6' 'libmatekbd-devel' 'libmatekbd-lang' 'libmatekbd4' 'libmatekbd4-32bit' 'libmatemixer-devel' 'libmatemixer-lang' 'libmatemixer0' 'libmatemixer0-32bit' 'libmateweather-devel' 'libmateweather-lang' 'libmateweather1' 'libmateweather1-32bit' 'libmatio-devel' 'libmatio4' 'libmatroska-devel' 'libmatroska6-32bit' 'libmaxminddb-devel' 'libmaxminddb0' 'libmbedcrypto3' 'libmbedcrypto3-32bit' 'libmbedtls12' 'libmbedtls12-32bit' 'libmbedx509-0' 'libmbedx509-0-32bit' 'libmbim-devel' 'libmcli' 'libmcli-debuginfo' 'libmcpp0' 'libmcs-devel' 'libmcs1' 'libmcs1' 'libmcs1-debuginfo' 'libmcs1-debugsource' 'libmd-devel' 'libmdb2' 'libmdbsql2' 'libmeanwhile1' 'libmed-devel' 'libmed-python' 'libmed11' 'libmedC11' 'libmedfwrap11' 'libmediaart-2_0-0' 'libmediaart-devel' 'libmediacheck-devel' 'libmediainfo-devel' 'libmediainfo0' 'libmediainfo0-32bit' 'libmediastreamer_base10' 'libmediastreamer_base10-32bit' 'libmediastreamer_voip10' 'libmediastreamer_voip10-32bit' 'libmediawiki-devel' 'libmedimport0' 'libmeep14' 'libmemcache-devel' 'libmemcache0' 'libmemcached' 'libmemcached-devel' 'libmemcached11' 'libmemcachedutil2' 'libmemkind0' 'libmemphis-0_2-0' 'libmenu-cache3' 'libmesode-devel' 'libmesode0' 'libmetacity1' 'libmetalink-devel' 'libmetis-gnu-hpc' 'libmetis5' 'libmetis_5_1_0-gnu-hpc' 'libmetrics-devel' 'libmetrics0' 'libmfx-devel' 'libmgl-fltk7_5_0' 'libmgl-glut7_5_0' 'libmgl-mpi7_5_0' 'libmgl-qt5-7_5_0' 'libmgl-wnd7_5_0' 'libmgl-wx7_5_0' 'libmgl7_5_0' 'libmhash2' 'libmicro' 'libmicrohttpd-devel' 'libmicrohttpd12' 'libmidori-core0' 'libmikmod-devel' 'libmikmod3-32bit' 'libmilter-doc' 'libmilter1_0' 'libmimetic-devel' 'libmimetic0' 'libminisat2' 'libminiupnpc-devel' 'libminiupnpc17-32bit' 'libminizip1-32bit' 'libmirage-3_2' 'libmirage-data' 'libmirage-devel' 'libmirage-lang' 'libmirage11' 'libmirisdr-devel' 'libmirisdr0' 'libmisdn1' 'libmission-control-plugins0' 'libmjpegutils-2_0-0-32bit' 'libmjpegutils-devel' 'libmlt++-devel' 'libmlt++3' 'libmlt-devel' 'libmlt6' 'libmlt6-data' 'libmlt6-modules' 'libmlx4-1-32bit' 'libmlx5-1-32bit' 'libmmbd0' 'libmms-devel' 'libmms0-32bit' 'libmng-devel' 'libmng2-32bit' 'libmnl-devel' 'libmnl0-32bit' 'libmodglue1' 'libmodman-devel' 'libmodman1-32bit' 'libmodplug-devel' 'libmodplug1-32bit' 'libmodsecurity3' 'libmodulemd-devel' 'libmodulemd1' 'libmodulemd1-devel' 'libmodulemd2' 'libmolsketch-qt5-1' 'libmongoose-doc' 'libmongoose2' 'libmono-2_0-1' 'libmono-2_0-devel' 'libmono-profiler-gui-thread-check0' 'libmono-profiler-gui-thread-check0-devel' 'libmonoboehm-2_0-1' 'libmonoboehm-2_0-devel' 'libmonosgen-2_0-1' 'libmonosgen-2_0-devel' 'libmopac7-1' 'libmopac7-1-devel' 'libmosquitto1' 'libmosquittopp1' 'libmount-devel' 'libmount-devel-32bit' 'libmount-devel-static' 'libmovit8' 'libmowgli' 'libmowgli-2-0' 'libmowgli-debugsource' 'libmowgli-devel' 'libmowgli2' 'libmowgli2-32bit' 'libmowgli2-32bit-debuginfo' 'libmowgli2-debuginfo' 'libmowgli2-devel' 'libmozjs-38' 'libmozjs-38-32bit' 'libmozjs185-1_0' 'libmozjs185-1_0-32bit' 'libmozjs185-1_0-32bit-debuginfo' 'libmozjs185-1_0-debuginfo' 'libmp3lame-devel' 'libmp3lame0-32bit' 'libmp3splt' 'libmp3splt-debuginfo' 'libmp3splt-debugsource' 'libmp3splt-devel' 'libmp3splt0' 'libmp3splt0-debuginfo' 'libmp3splt0-mp3' 'libmp3splt0-mp3-debuginfo' 'libmp3splt0-ogg' 'libmp3splt0-ogg-debuginfo' 'libmpc3-32bit' 'libmpcdec-devel' 'libmpcdec5-32bit' 'libmpcdec6-32bit' 'libmpd-devel' 'libmpd1' 'libmpd1-32bit' 'libmpdclient-devel' 'libmpeg2-0-32bit' 'libmpeg2-devel' 'libmpeg2convert0' 'libmpeg2encpp-2_0-0-32bit' 'libmpeg3-1' 'libmpeg3-1' 'libmpeg3-1-debuginfo' 'libmpeg3-1-debugsource' 'libmpeg3-devel' 'libmpeg3-utils' 'libmpeg3-utils-debuginfo' 'libmpeg4ip-devel' 'libmpeg4ip0' 'libmpeg4ip0-debuginfo' 'libmpfc-devel' 'libmpfc2' 'libmpfc2-debuginfo' 'libmpfi0' 'libmpfr6-32bit' 'libmpir-devel' 'libmpir23' 'libmpirxx8' 'libmplex2-2_0-0-32bit' 'libmpris-qt5-1' 'libmpris-qt5-devel' 'libmpx2-32bit' 'libmpx2-gcc7' 'libmpx2-gcc7-32bit' 'libmpxwrappers2-32bit' 'libmpxwrappers2-gcc7' 'libmpxwrappers2-gcc7-32bit' 'libmraa2' 'libmrss-devel' 'libmrss0' 'libmrss0-32bit' 'libmsi0' 'libmsiecf-devel' 'libmsiecf-tools' 'libmsiecf1' 'libmspack-devel' 'libmspack0-32bit' 'libmspub-devel' 'libmspub-devel-doc' 'libmspub-tools' 'libmtdev1-32bit' 'libmtp-devel' 'libmuffin0' 'libmumps-gnu-mpich-hpc' 'libmumps-gnu-mvapich2-hpc' 'libmumps-gnu-openmpi1-hpc' 'libmumps-gnu-openmpi2-hpc' 'libmumps-gnu-openmpi3-hpc' 'libmumps-ptscotch5-openmpi' 'libmumps-ptscotch5-openmpi2' 'libmumps-scotch5' 'libmumps5' 'libmumps5-mvapich2' 'libmumps5-openmpi' 'libmumps5-openmpi2' 'libmumps_5_1_2-gnu-mpich-hpc' 'libmumps_5_1_2-gnu-mvapich2-hpc' 'libmumps_5_1_2-gnu-openmpi1-hpc' 'libmumps_5_1_2-gnu-openmpi2-hpc' 'libmumps_5_1_2-gnu-openmpi3-hpc' 'libmunge2' 'libmunge2-32bit' 'libmuparser2_2_6' 'libmuparser2_2_6-32bit' 'libmuroar0' 'libmuroar0-debuginfo' 'libmuroard3' 'libmuroard3-debuginfo' 'libmusicbrainz-devel' 'libmusicbrainz4' 'libmusicbrainz4-32bit' 'libmusicbrainz5-1-32bit' 'libmusicbrainz5-devel' 'libmutter-4-0' 'libmwaw-devel' 'libmwaw-devel-doc' 'libmwaw-tools' 'libmxml1' 'libmxml1-32bit' 'libmygpo-qt-devel' 'libmygpo-qt1' 'libmygpo-qt5-1' 'libmygpo-qt5-devel' 'libmypaint-1_3-0' 'libmypaint-devel' 'libmypaint-gegl-devel' 'libmypaint-gegl0' 'libmypaint-lang' 'libmysofa-devel' 'libmysofa0-32bit' 'libmysqlcppconn-devel' 'libmysqlcppconn7' 'libmysqlcppconn8-1' 'libmysqlcppconn8-devel' 'libmyth-29-29' 'libmyth-29-29-debuginfo' 'libnanomsg5' 'libnautilus-extension1' 'libnautilus-extension1-32bit' 'libnauty-2_7_rc2' 'libncurses5' 'libncurses5-32bit' 'libndctl-devel' 'libndctl6' 'libndp' 'libndp-devel' 'libndpi-devel' 'libndpi2' 'libndr-devel' 'libndr-krb5pac-devel' 'libndr-nbt-devel' 'libndr-standard-devel' 'libneko2' 'libnemo-extension1' 'libneon-devel' 'libneon27-32bit' 'libnet-devel' 'libnet-doc' 'libnetapi-devel' 'libnetcdf-cxx4-gnu-hpc' 'libnetcdf-cxx4-gnu-hpc-devel' 'libnetcdf-cxx4_4_3_0-gnu-hpc' 'libnetcdf-cxx4_4_3_0-gnu-hpc-devel' 'libnetcdf-cxx4_4_3_0-gnu-hpc-devel-static' 'libnetcdf-fortran-gnu-mpich-hpc' 'libnetcdf-fortran-gnu-openmpi1-hpc' 'libnetcdf-fortran-gnu-openmpi2-hpc' 'libnetcdf-fortran-gnu-openmpi3-hpc' 'libnetcdf-fortran_4_4_4-gnu-mpich-hpc' 'libnetcdf-fortran_4_4_4-gnu-openmpi1-hpc' 'libnetcdf-fortran_4_4_4-gnu-openmpi2-hpc' 'libnetcdf-fortran_4_4_4-gnu-openmpi3-hpc' 'libnetcdf-gnu-hpc' 'libnetcdf-gnu-mpich-hpc' 'libnetcdf-gnu-mvapich2-hpc' 'libnetcdf-gnu-openmpi1-hpc' 'libnetcdf-gnu-openmpi2-hpc' 'libnetcdf-gnu-openmpi3-hpc' 'libnetcdf13' 'libnetcdf13-32bit' 'libnetcdf13-openmpi' 'libnetcdf13-openmpi-32bit' 'libnetcdf13-openmpi2' 'libnetcdf13-openmpi2-32bit' 'libnetcdf_4_6_1-gnu-hpc' 'libnetcdf_4_6_1-gnu-mpich-hpc' 'libnetcdf_4_6_1-gnu-mvapich2-hpc' 'libnetcdf_4_6_1-gnu-openmpi1-hpc' 'libnetcdf_4_6_1-gnu-openmpi2-hpc' 'libnetcdf_4_6_1-gnu-openmpi3-hpc' 'libnetcdf_c++-devel' 'libnetcdf_c++4' 'libnetcdf_c++4-1' 'libnetcdf_c++4-devel' 'libnetcontrol-devel' 'libnetcontrol0-32bit' 'libnetfilter_acct-devel' 'libnetfilter_acct1' 'libnetfilter_acct1-32bit' 'libnetfilter_conntrack-devel' 'libnetfilter_conntrack3-32bit' 'libnetfilter_cthelper-devel' 'libnetfilter_cthelper0' 'libnetfilter_cthelper0-32bit' 'libnetfilter_cttimeout-devel' 'libnetfilter_cttimeout1' 'libnetfilter_cttimeout1-32bit' 'libnetfilter_log-devel' 'libnetfilter_log1' 'libnetfilter_log1-32bit' 'libnetfilter_queue-devel' 'libnetfilter_queue1' 'libnetfilter_queue1-32bit' 'libnetlink-devel' 'libnetpbm-devel' 'libnetpbm11-32bit' 'libnettle-devel-32bit' 'libnewt0_52-32bit' 'libnextcloudsync-devel' 'libnextcloudsync0' 'libnf2ff0' 'libnfc-devel' 'libnfc-tools' 'libnfc5' 'libnfnetlink-devel' 'libnfnetlink0-32bit' 'libnfs-devel' 'libnfsidmap-sss' 'libnfsjunct0' 'libnftables1' 'libnftnl-devel' 'libnghttp2-devel' 'libnghttp2_asio-devel' 'libnghttp2_asio1' 'libnghttp2_asio1-32bit' 'libngspice-devel' 'libngspice0' 'libnice' 'libnice-devel' 'libnice10-32bit' 'libnilfs0' 'libnilfscleaner0' 'libnilfsgc0' 'libnjb' 'libnjb-devel' 'libnjb5' 'libnl-doc' 'libnl-tools' 'libnl3-devel' 'libnl3-devel-32bit' 'libnlopt0' 'libnm-glib-vpn1' 'libnm-glib-vpn1-32bit' 'libnm-glib4' 'libnm-util2' 'libnma-devel' 'libnma0' 'libnordlicht0' 'libnordlicht0-debuginfo' 'libnormaliz3' 'libnoson1' 'libnotify-devel' 'libnotify-devel-32bit' 'libnotify-tools' 'libnotify4-32bit' 'libnotmuch5' 'libnova-0_15-0' 'libnova-devel' 'libnscd-devel' 'libnsl-devel' 'libnss_nis2' 'libnss_nis2-32bit' 'libnss_usrfiles2' 'libnss_usrfiles2-32bit' 'libnsssharedhelper0' 'libnsssharedhelper0-32bit' 'libntfs-3g-devel' 'libntirpc-devel' 'libntirpc1_7' 'libntk1' 'libntl39' 'libntlm-devel' 'libntlm0' 'libnuma-devel' 'libnuma1-32bit' 'libnumbertext-devel' 'libnumbertext-tools' 'libnxml-devel' 'libnxml0' 'libnxml0-32bit' 'libo2scl0' 'liboaml_shared1' 'liboath-devel' 'liboath0' 'liboauth-devel' 'liboauth0-32bit' 'libobby-0_4-1' 'libobjc2-devel' 'libobjc4' 'libobjc4-32bit' 'libobjc4-gcc7' 'libobjc4-gcc7-32bit' 'libobjc4-gcc8' 'libobjc4-gcc8-32bit' 'libobjc4_6' 'libobrender32' 'libobt2' 'libode8' 'libodfgen-devel' 'libodfgen-devel-doc' 'libodraw-devel' 'libodraw-tools' 'libodraw1' 'libofa-devel' 'libofa0-32bit' 'libofx' 'libofx-devel' 'libofx7' 'libogg-devel' 'liboggkate1-32bit' 'liboggz-devel' 'liboggz-doc' 'liboggz2' 'liboggz2-32bit' 'libogmrip-devel' 'libogmrip1' 'libogmrip1-debuginfo' 'liboil' 'liboil-32bit' 'liboil-devel' 'liboil-doc' 'libokteta-lang' 'liboldX-devel' 'liboldX-devel-32bit' 'liboldX6' 'liboldX6-32bit' 'libolecf-devel' 'libolecf-tools' 'libolecf1' 'libomp6-devel' 'libomp7-devel' 'libomp8-devel' 'libonig4' 'liboop-devel' 'liboop4' 'libopae-c0' 'libopagent1' 'libopagent1-32bit' 'libopal-devel' 'libopal3_10_10' 'libopamgt-devel' 'libopamgt0' 'libopasadb1_0_0' 'libopenCOLLADA-devel' 'libopenCOLLADA-doc' 'libopenCOLLADA-utils' 'libopenEMS0' 'libopenal0' 'libopenal0-32bit' 'libopenbabel5' 'libopenbabel5-32bit' 'libopenblas-gnu-hpc' 'libopenblas-gnu-hpc-devel' 'libopenblas-pthreads-gnu-hpc' 'libopenblas-pthreads-gnu-hpc-devel' 'libopenblas-pthreads_0_3_7-gnu-hpc' 'libopenblas-pthreads_0_3_7-gnu-hpc-devel' 'libopenblas_0_3_7-gnu-hpc' 'libopenblas_0_3_7-gnu-hpc-devel' 'libopenblas_openmp-devel' 'libopenblas_openmp0' 'libopenblas_pthreads-devel' 'libopenblas_serial-devel' 'libopenblas_serial0' 'libopencascade7' 'libopencc2' 'libopencore-amr-devel' 'libopencore-amrnb0-32bit' 'libopencore-amrnb0-32bit-debuginfo' 'libopencore-amrnb0-debuginfo' 'libopencore-amrwb0-32bit' 'libopencore-amrwb0-32bit-debuginfo' 'libopencore-amrwb0-debuginfo' 'libopencsg1' 'libopencv4_1' 'libopendkim10' 'libopenh264-5' 'libopenh264-5-debuginfo' 'libopenhpi4' 'libopenjp2-7-32bit' 'libopenjpeg1-32bit' 'libopenlibm2' 'libopenmpi1-gnu-hpc' 'libopenmpi2-gnu-hpc' 'libopenmpi3-gnu-hpc' 'libopenmpi_1_10_7-gnu-hpc' 'libopenmpi_2_1_6-gnu-hpc' 'libopenmpi_3_1_4-gnu-hpc' 'libopenmpt-devel' 'libopenmpt0-32bit' 'libopenmpt_modplug1' 'libopenmpt_modplug1-32bit' 'libopenobex2' 'libopenraw-devel' 'libopenraw1' 'libopenraw1-32bit' 'libopenscap25' 'libopenscap_sce25' 'libopenshot-audio-devel' 'libopenshot-audio6' 'libopenshot-devel' 'libopenshot17' 'libopenslide-devel' 'libopenslide0' 'libopensm9' 'libopensm9-32bit' 'libopenspecfun1' 'libopenssl-1_0_0-devel' 'libopenssl-1_0_0-devel-32bit' 'libopenssl-1_1-devel-32bit' 'libopenssl1_0_0-32bit' 'libopenssl1_0_0-hmac' 'libopenssl1_0_0-hmac-32bit' 'libopenssl_cbs_lib0' 'libopensync' 'libopensync-devel' 'libopensync-tools' 'libopentracing-cpp1' 'libopenvswitch-2_11-0' 'liboping-devel' 'liboping-devel-32bit' 'liboping0' 'liboping0-32bit' 'libopus-devel' 'libopus0-32bit' 'libopusenc-devel' 'libopusenc0' 'libopusfile0' 'liborcania2_0' 'liborcus-devel' 'liborcus-tools' 'liborigin-devel' 'liborigin-doc' 'liborigin-tools' 'liborigin3' 'libortp13' 'libortp13-32bit' 'libosinfo-devel' 'libosip2' 'libosip2-devel' 'liboslcomp1_9' 'liboslexec1_9' 'liboslnoise1_9' 'liboslquery1_9' 'libosmcomp5' 'libosmcomp5-32bit' 'libosmgpsmap-1_0-1' 'libosmgpsmap-devel' 'libosmo-dsp-devel' 'libosmo-dsp-doc' 'libosmo-fl2k0' 'libosmo-gsup-client-devel' 'libosmo-gsup-client0' 'libosmo-mgcp-client-devel' 'libosmo-mgcp-client5' 'libosmo-mgcp-devel' 'libosmo-mtp-1_1_0' 'libosmo-mtp-devel' 'libosmo-ranap-devel' 'libosmo-ranap2' 'libosmo-sccp-1_1_0' 'libosmo-sccp-devel' 'libosmo-sigtran-devel' 'libosmo-sigtran3' 'libosmo-xua-1_1_0' 'libosmo-xua-devel' 'libosmoabis-devel' 'libosmoabis6' 'libosmocodec-devel' 'libosmocodec0' 'libosmocoding-devel' 'libosmocoding0' 'libosmocore-devel' 'libosmocore-tools' 'libosmocore12' 'libosmoctrl-devel' 'libosmoctrl0' 'libosmodsp0' 'libosmogb-devel' 'libosmogb9' 'libosmogsm-devel' 'libosmogsm13' 'libosmonetif-devel' 'libosmonetif8' 'libosmosdr0' 'libosmosim-devel' 'libosmosim0' 'libosmotrau-devel' 'libosmotrau2' 'libosmovty-devel' 'libosmovty4' 'libosmvendor5' 'libosmvendor5-32bit' 'libospf0' 'libospfapiclient0' 'libossp-uuid++16' 'libossp-uuid16' 'libossp-uuid_dce16' 'libostree-devel' 'libostree-grub2' 'libotf' 'libotf-devel' 'libotf-devel-32bit' 'libotf0' 'libotf0-32bit' 'libotr-devel' 'libotr-tools' 'libout123-0' 'libout123-0-32bit' 'libovf-glib-devel' 'libowncloudsync-devel' 'libowncloudsync0' 'liboyranos-alpha-devel' 'liboyranos-devel' 'liboyranos0' 'liboyranos0-cups' 'liboyranos0-lraw' 'liboyranos0-monitor' 'liboyranos0-sane' 'libp11-3' 'libp11-3-32bit' 'libp11-devel' 'libp8-platform2' 'libpacemaker-devel' 'libpacemaker3' 'libpackagekit-glib2-18-32bit' 'libpackagekit-glib2-devel' 'libpackagekit-glib2-devel-32bit' 'libpagemaker-devel' 'libpagemaker-devel-doc' 'libpagemaker-tools' 'libpainter0' 'libpamtest-devel' 'libpamtest-devel-doc' 'libpamtest0' 'libpangomm-1_4-1-32bit' 'libpangomm-2_44-1' 'libpangomm-2_44-1-32bit' 'libpangox-1_0-0' 'libpangox-1_0-0-32bit' 'libpano-devel' 'libpano-utils' 'libpaper-devel' 'libpaper-utils' 'libpaper1' 'libpapi' 'libpapi-32bit' 'libpapi_5_7_0-hpc' 'libparanoia1_0' 'libpari-gmp-tls6' 'libparlatype-devel' 'libparlatype1' 'libparpack2-openmpi' 'libparpack2-openmpi-32bit' 'libparserutils-devel' 'libparserutils-doc' 'libparserutils0' 'libparted0-32bit' 'libpasswdqc0' 'libpasswdqc0-32bit' 'libpath_utils-devel' 'libpath_utils-devel-32bit' 'libpath_utils1' 'libpath_utils1-32bit' 'libpcap-devel' 'libpcap-devel-32bit' 'libpcap-devel-static' 'libpcd-devel' 'libpcd2' 'libpci3-32bit' 'libpciaccess-devel' 'libpcp-devel' 'libpcp3' 'libpcp_gui2' 'libpcp_import1' 'libpcp_mmv1' 'libpcp_trace2' 'libpcp_web1' 'libpcre16-0' 'libpcre16-0-32bit' 'libpcre2-16-0-32bit' 'libpcre2-32-0' 'libpcre2-32-0-32bit' 'libpcre2-8-0-32bit' 'libpcre2-posix2' 'libpcre2-posix2-32bit' 'libpcrecpp0' 'libpcrecpp0-32bit' 'libpcreposix0' 'libpcreposix0-32bit' 'libpcsclite1-32bit' 'libpcscspy0' 'libpcscspy0-32bit' 'libpeas-1_0-0' 'libpeas-demo' 'libpeas-devel' 'libpeas-gtk-1_0-0' 'libpeas-lang' 'libpeas-loader-python' 'libpeas-loader-python3' 'libpeasd-3-0' 'libpegclient1' 'libpegcommon1' 'libpegexportserver1' 'libpeglistener1' 'libperseus-sdr-devel' 'libperseus-sdr-udev' 'libperseus-sdr0' 'libpetsc-gnu-mpich-hpc' 'libpetsc-gnu-mvapich2-hpc' 'libpetsc-gnu-openmpi1-hpc' 'libpetsc-gnu-openmpi2-hpc' 'libpetsc-gnu-openmpi3-hpc' 'libpetsc3' 'libpetsc3-openmpi' 'libpetsc_3_11_3-gnu-mpich-hpc' 'libpetsc_3_11_3-gnu-mvapich2-hpc' 'libpetsc_3_11_3-gnu-openmpi1-hpc' 'libpetsc_3_11_3-gnu-openmpi2-hpc' 'libpetsc_3_11_3-gnu-openmpi3-hpc' 'libpff-devel' 'libpff-tools' 'libpff1' 'libpfm-devel' 'libpfm-devel-static' 'libpfm4' 'libpfm4-32bit' 'libpfs2' 'libpgeasy-devel' 'libpgeasy3' 'libpgf-devel' 'libpgf7' 'libpgm-5_2-0-32bit' 'libphobos2-0_87' 'libphobos2-ldc86' 'libphodav-2_0-0' 'libphonenumber-devel' 'libphonenumber8' 'libphonon4-32bit' 'libphonon4qt5-32bit' 'libphysfs-devel' 'libphysfs1' 'libpinyin-data' 'libpinyin-devel' 'libpinyin-tools' 'libpinyin13' 'libpinyin13-32bit' 'libpipeline-devel' 'libpisock-devel' 'libpisock9' 'libpisync-devel' 'libpisync1' 'libpixman-1-0-devel' 'libpkcs11-helper1-32bit' 'libpkgconf-devel' 'libplacebo-devel' 'libplank1' 'libplayerctl2' 'libplib0' 'libplist++-devel' 'libplist++3' 'libplist++3-32bit' 'libplist-devel' 'libplist3-32bit' 'libplot2' 'libplotter2' 'libplplot17' 'libplplotada4' 'libplplotcxx15' 'libplplotfortran0' 'libplplotqt2' 'libplplotwxwidgets1' 'libpmem-devel' 'libpmemblk-devel' 'libpmemblk1' 'libpmemlog-devel' 'libpmemlog1' 'libpmemobj-cpp-devel' 'libpmemobj-cpp-devel-doc' 'libpmemobj-devel' 'libpmemobj1' 'libpmempool-devel' 'libpmempool1' 'libpmi0' 'libpnetcdf1-openmpi' 'libpng12-0' 'libpng12-compat-devel' 'libpng12-compat-devel-32bit' 'libpng12-devel' 'libpng12-devel-32bit' 'libpng16-compat-devel' 'libpng16-compat-devel-32bit' 'libpng16-devel' 'libpng16-devel-32bit' 'libpng16-tools' 'libpnglite0' 'libpocketsphinx1' 'libpocl2' 'libpodofo-devel' 'libpodofo0_9_6' 'libpolkit-qt-1-1-32bit' 'libpolkit-qt-1-devel' 'libpolkit-qt5-1-1-32bit' 'libpolkit-qt5-1-devel' 'libpolkit-qt5-1-devel-32bit' 'libpolkit0-32bit' 'libpoppler-cpp0-32bit' 'libpoppler-devel' 'libpoppler-glib-devel' 'libpoppler-glib8' 'libpoppler-glib8-32bit' 'libpoppler-qt5-1-32bit' 'libpoppler-qt5-devel' 'libpoppler89-32bit' 'libportaudio2-32bit' 'libportaudiocpp0' 'libportmidi0' 'libpostproc53-32bit' 'libpostproc53-32bit-debuginfo' 'libpostproc53-debuginfo' 'libpostproc54' 'libpostproc54-32bit' 'libpostproc54-32bit-debuginfo' 'libpostproc54-debuginfo' 'libpostproc55-32bit' 'libpostproc55-32bit-debuginfo' 'libpostproc55-debuginfo' 'libpotrace0' 'libpowerman0' 'libpq5-32bit' 'libpqos-devel' 'libpqos3' 'libpqxx-5_0' 'libpqxx-devel' 'libpqxx-doc' 'libprelude-devel' 'libprelude-devel-bindings' 'libprelude-doc' 'libprelude28' 'libpreludecpp8' 'libpreludedb-devel' 'libpreludedb-devel-bindings' 'libpreludedb-doc' 'libpreludedb-mysql' 'libpreludedb-pgsql' 'libpreludedb-plugins' 'libpreludedb-sqlite' 'libpreludedb7' 'libpreludedbcpp2' 'libpresage-devel' 'libpresage-doc' 'libpresage1' 'libprimesieve-devel' 'libprimesieve9' 'libprison-devel' 'libprison0' 'libprison0-32bit' 'libprofiler0' 'libproj15' 'libpromises-devel' 'libpromises3' 'libprotobuf-c-devel' 'libprotobuf-lite20' 'libprotobuf-lite20-32bit' 'libprotobuf-mutator-devel' 'libprotobuf-mutator0' 'libprotobuf-nanopb0' 'libprotobuf20' 'libprotobuf20-32bit' 'libprotoc20' 'libprotoc20-32bit' 'libproxy-devel' 'libproxy-sharp' 'libproxy-tools' 'libproxy1-32bit' 'libproxy1-config-gnome3' 'libproxy1-config-gnome3-32bit' 'libproxy1-config-kde-32bit' 'libproxy1-networkmanager-32bit' 'libproxy1-pacrunner-webkit-32bit' 'libpsiconv6' 'libpskc-devel' 'libpsl-devel' 'libpsm2-2' 'libpsm2-compat' 'libpsm2-devel' 'libpsm_infinipath1' 'libpsm_infinipath1-32bit' 'libpspell15' 'libpspell15-32bit' 'libpst' 'libpst-devel' 'libpst4' 'libpt-devel' 'libpt2_10_11' 'libpt2_10_11-plugins-avc' 'libpt2_10_11-plugins-pulse' 'libptexenc1' 'libptscotch-gnu-mpich-hpc' 'libptscotch-gnu-mvapich2-hpc' 'libptscotch-gnu-openmpi1-hpc' 'libptscotch-gnu-openmpi2-hpc' 'libptscotch-gnu-openmpi3-hpc' 'libptscotch0-mpich' 'libptscotch0-mvapich2' 'libptscotch0-openmpi' 'libptscotch0-openmpi2' 'libptscotch_6_0_6-gnu-mpich-hpc' 'libptscotch_6_0_6-gnu-mvapich2-hpc' 'libptscotch_6_0_6-gnu-openmpi1-hpc' 'libptscotch_6_0_6-gnu-openmpi2-hpc' 'libptscotch_6_0_6-gnu-openmpi3-hpc' 'libpugixml1' 'libpulse-devel' 'libpulse-devel-32bit' 'libpulse-mainloop-glib0-32bit' 'libpurple' 'libpurple-branding-openSUSE' 'libpurple-branding-upstream' 'libpurple-devel' 'libpurple-lang' 'libpurple-plugin-bot-sentry' 'libpurple-plugin-bot-sentry-lang' 'libpurple-plugin-carbons' 'libpurple-plugin-facebook' 'libpurple-plugin-gnome-keyring' 'libpurple-plugin-import-empathy' 'libpurple-plugin-libsteam' 'libpurple-plugin-lurch' 'libpurple-plugin-mattermost' 'libpurple-plugin-mrim' 'libpurple-plugin-mrim-lang' 'libpurple-plugin-pack' 'libpurple-plugin-pack-extras' 'libpurple-plugin-pack-lang' 'libpurple-plugin-prpltwtr' 'libpurple-plugin-prpltwtr-lang' 'libpurple-plugin-rocketchat' 'libpurple-plugin-sametime' 'libpurple-plugin-sipe' 'libpurple-plugin-sipe-lang' 'libpurple-plugin-skypeweb' 'libpurple-plugin-telegram' 'libpurple-plugin-telegram-lang' 'libpurple-tcl' 'libpw3270-5_1' 'libpwquality-devel' 'libpwquality-tools' 'libpythia8' 'libpythia8lhapdf6' 'libpython2_7-1_0-32bit' 'libpython3_7m1_0-32bit' 'libpyzy-1_0-0' 'libqalculate-devel' 'libqb-devel' 'libqb-devel-32bit' 'libqb-tests' 'libqb-tools' 'libqb20' 'libqb20-32bit' 'libqca-qt5-32bit' 'libqca-qt5-devel' 'libqca-qt5-devel-32bit' 'libqca-qt5-plugins-32bit' 'libqca2' 'libqca2-32bit' 'libqca2-devel' 'libqca2-plugin-cyrus-sasl' 'libqca2-plugin-cyrus-sasl-32bit' 'libqca2-plugin-gcrypt' 'libqca2-plugin-nss' 'libqca2-plugin-nss-32bit' 'libqca2-plugin-pkcs11' 'libqcow-devel' 'libqcow-tools' 'libqcow1' 'libqcustomplot2' 'libqd0' 'libqgpgme-devel' 'libqgpgme7-32bit' 'libqhexedit4' 'libqhull7-7_2_0' 'libqimageblitz-devel' 'libqimageblitz4' 'libqimageblitz5-1' 'libqimageblitz5-devel' 'libqjack-devel' 'libqjack0' 'libqjson-devel' 'libqjson0' 'libqjson0-32bit' 'libqmatrixclient-devel' 'libqmi-devel' 'libqmmp-devel' 'libqmmp-plugin-mplayer' 'libqmmp-plugin-mplayer-debuginfo' 'libqmmp-plugins' 'libqmmp-plugins-debuginfo' 'libqmmp1' 'libqmmp1-32bit' 'libqmmp1-32bit-debuginfo' 'libqmmp1-debuginfo' 'libqoauth2' 'libqobs-devel' 'libqobs1' 'libqore5' 'libqpid-proton-cpp10' 'libqpid-proton10' 'libqqwing2' 'libqrencode4-32bit' 'libqrupdate1' 'libqsastime0' 'libqscintilla_qt5-devel' 'libqt4-32bit' 'libqt4-devel' 'libqt4-devel-32bit' 'libqt4-linguist' 'libqt4-private-headers-devel' 'libqt4-qt3support-32bit' 'libqt4-sql-32bit' 'libqt4-sql-postgresql' 'libqt4-sql-postgresql-32bit' 'libqt4-sql-sqlite-32bit' 'libqt4-sql-unixODBC' 'libqt4-sql-unixODBC-32bit' 'libqt4-x11-32bit' 'libqt5-creator' 'libqt5-creator-plugin-devel' 'libqt5-linguist' 'libqt5-linguist-devel' 'libqt5-qt3d-devel' 'libqt5-qt3d-examples' 'libqt5-qt3d-imports' 'libqt5-qt3d-private-headers-devel' 'libqt5-qt3d-tools' 'libqt5-qtbase-common-devel' 'libqt5-qtbase-devel' 'libqt5-qtbase-examples' 'libqt5-qtbase-examples-32bit' 'libqt5-qtbase-platformtheme-xdgdesktopportal' 'libqt5-qtbase-private-headers-devel' 'libqt5-qtcanvas3d' 'libqt5-qtcanvas3d-examples' 'libqt5-qtcharts-examples' 'libqt5-qtcharts-imports' 'libqt5-qtconnectivity-devel' 'libqt5-qtconnectivity-devel-32bit' 'libqt5-qtconnectivity-examples' 'libqt5-qtconnectivity-private-headers-devel' 'libqt5-qtdatavis3d-examples' 'libqt5-qtdatavis3d-imports' 'libqt5-qtdeclarative-devel' 'libqt5-qtdeclarative-devel-32bit' 'libqt5-qtdeclarative-examples' 'libqt5-qtdeclarative-private-headers-devel' 'libqt5-qtdeclarative-tools' 'libqt5-qtdoc' 'libqt5-qtdoc-devel' 'libqt5-qtdoc-html' 'libqt5-qtdoc-qch' 'libqt5-qtgamepad-devel' 'libqt5-qtgamepad-devel-32bit' 'libqt5-qtgamepad-examples' 'libqt5-qtgamepad-private-headers-devel' 'libqt5-qtimageformats-32bit' 'libqt5-qtimageformats-devel' 'libqt5-qtlocation-devel' 'libqt5-qtlocation-devel-32bit' 'libqt5-qtlocation-examples' 'libqt5-qtlocation-private-headers-devel' 'libqt5-qtlottie' 'libqt5-qtmultimedia-devel' 'libqt5-qtmultimedia-devel-32bit' 'libqt5-qtmultimedia-examples' 'libqt5-qtmultimedia-private-headers-devel' 'libqt5-qtnetworkauth-devel' 'libqt5-qtnetworkauth-devel-32bit' 'libqt5-qtnetworkauth-examples' 'libqt5-qtnetworkauth-private-headers-devel' 'libqt5-qtquickcontrols-examples' 'libqt5-qtquickcontrols2-examples' 'libqt5-qtquickcontrols2-private-headers-devel' 'libqt5-qtremoteobjects-devel' 'libqt5-qtremoteobjects-devel-32bit' 'libqt5-qtremoteobjects-examples' 'libqt5-qtremoteobjects-private-headers-devel' 'libqt5-qtremoteobjects-tools' 'libqt5-qtscript-devel' 'libqt5-qtscript-devel-32bit' 'libqt5-qtscript-examples' 'libqt5-qtscript-private-headers-devel' 'libqt5-qtscxml-devel' 'libqt5-qtscxml-devel-32bit' 'libqt5-qtscxml-examples' 'libqt5-qtscxml-private-headers-devel' 'libqt5-qtscxml-tools' 'libqt5-qtsensors-devel' 'libqt5-qtsensors-devel-32bit' 'libqt5-qtsensors-examples' 'libqt5-qtsensors-private-headers-devel' 'libqt5-qtserialbus' 'libqt5-qtserialbus-32bit' 'libqt5-qtserialbus-devel' 'libqt5-qtserialbus-devel-32bit' 'libqt5-qtserialbus-examples' 'libqt5-qtserialbus-private-headers-devel' 'libqt5-qtserialport-devel' 'libqt5-qtserialport-devel-32bit' 'libqt5-qtserialport-examples' 'libqt5-qtserialport-private-headers-devel' 'libqt5-qtspeech-devel' 'libqt5-qtspeech-devel-32bit' 'libqt5-qtspeech-examples' 'libqt5-qtspeech-plugin-speechd' 'libqt5-qtspeech-plugin-speechd-32bit' 'libqt5-qtstyleplugins' 'libqt5-qtstyleplugins-devel' 'libqt5-qtsvg-devel' 'libqt5-qtsvg-devel-32bit' 'libqt5-qtsvg-examples' 'libqt5-qtsvg-private-headers-devel' 'libqt5-qttools' 'libqt5-qttools-32bit' 'libqt5-qttools-devel' 'libqt5-qttools-devel-32bit' 'libqt5-qttools-doc' 'libqt5-qttools-examples' 'libqt5-qttools-private-headers-devel' 'libqt5-qtvirtualkeyboard-devel' 'libqt5-qtvirtualkeyboard-examples' 'libqt5-qtvirtualkeyboard-private-headers-devel' 'libqt5-qtwayland-32bit' 'libqt5-qtwayland-devel' 'libqt5-qtwayland-devel-32bit' 'libqt5-qtwayland-examples' 'libqt5-qtwayland-private-headers-devel' 'libqt5-qtwebchannel-devel' 'libqt5-qtwebchannel-devel-32bit' 'libqt5-qtwebchannel-examples' 'libqt5-qtwebchannel-private-headers-devel' 'libqt5-qtwebengine-32bit' 'libqt5-qtwebengine-devel' 'libqt5-qtwebengine-devel-32bit' 'libqt5-qtwebengine-examples' 'libqt5-qtwebengine-private-headers-devel' 'libqt5-qtwebsockets-devel' 'libqt5-qtwebsockets-devel-32bit' 'libqt5-qtwebsockets-examples' 'libqt5-qtwebsockets-private-headers-devel' 'libqt5-qtwebview-devel' 'libqt5-qtwebview-examples' 'libqt5-qtwebview-private-headers-devel' 'libqt5-qtx11extras-devel' 'libqt5-qtx11extras-devel-32bit' 'libqt5-qtxmlpatterns-devel' 'libqt5-qtxmlpatterns-devel-32bit' 'libqt5-qtxmlpatterns-examples' 'libqt5-qtxmlpatterns-imports-32bit' 'libqt5-qtxmlpatterns-private-headers-devel' 'libqt5keychain1' 'libqt5keychain1-32bit' 'libqt5keychain1-lang' 'libqt5xdg-devel' 'libqtcurve-cairo1' 'libqtcurve-cairo1-32bit' 'libqtcurve-utils2' 'libqtcurve-utils2-32bit' 'libqtermwidget5-0' 'libquadmath0-32bit' 'libquadmath0-gcc7' 'libquadmath0-gcc7-32bit' 'libquadmath0-gcc8' 'libquadmath0-gcc8-32bit' 'libquagga_pb0' 'libquicktime' 'libquicktime' 'libquicktime-debuginfo' 'libquicktime-debugsource' 'libquicktime-devel' 'libquicktime-lang' 'libquicktime-orig-addon' 'libquicktime-orig-addon-debuginfo' 'libquicktime-tools' 'libquicktime-tools-debuginfo' 'libquicktime0-32bit' 'libquicktime0-32bit-debuginfo' 'libquicktime0-debuginfo' 'libquo-devel' 'libquo6' 'libquorum5' 'libquorum5-32bit' 'libquvi-0_9-0_9_4' 'libquvi-devel' 'libquvi-scripts' 'libquvi-scripts-devel' 'libquvi-scripts-nsfw' 'libqwt5-qt5-5' 'libqwt6' 'libqwtplot3d-qt5-0' 'libqxmledit0' 'libqxmledit0-32bit' 'libqxmpp-devel' 'libqxmpp-doc' 'libqxmpp0' 'libqxmpp0-32bit' 'libqxp-devel' 'libqxp-doc' 'libqxp-tools' 'libqxtglobalshortcut0' 'libradcli4' 'librados-devel' 'libradospp-devel' 'libradosstriper-devel' 'libradosstriper1' 'libragel0' 'librapi2' 'librapi2' 'librapi2-debuginfo' 'librapi2-debugsource' 'librapi2-devel' 'libraptor-devel' 'libraptor2-0-32bit' 'libraqm-devel' 'libraqm-doc' 'libraqm0' 'librasqal-devel' 'librasqal-devel-doc' 'librasqal3-32bit' 'libratbag-devel' 'libratbag-tools' 'libraw-devel' 'libraw-devel-static' 'libraw-tools' 'libraw1394-11-32bit' 'libraw1394-devel' 'libraw1394-devel-32bit' 'libraw1394-tools' 'librawstudio-2_1' 'librawstudio-devel' 'libraylib2' 'librbd-devel' 'librbio2' 'librbl1' 'librcc-devel' 'librcc0' 'librcc0-32bit' 'librcd-devel' 'librcd0' 'librcd0-32bit' 'librdf0-32bit' 'librdkafka-devel' 'librdkafka1' 'librdmacm-utils' 'librdmacm1-32bit' 'libre2-0-32bit' 'libreadline-java' 'libreadline-java-32bit' 'libreadline-java-javadoc' 'libreadline5' 'libreadline5-32bit' 'libreadline6' 'libreadline6-32bit' 'libreadline8-32bit' 'librecad' 'librecad-parts' 'librecode0' 'libredland-devel' 'libredwg-devel' 'libredwg-tools' 'libredwg0' 'libref_array-devel' 'libref_array-devel-32bit' 'libref_array1' 'libref_array1-32bit' 'libregf-devel' 'libregf-tools' 'libregf1' 'libregina3' 'libreiser4-1_2-1' 'libreiser4-minimal-1_2-1' 'libreiserfs-0_3-0' 'libreiserfs-0_3-0-32bit' 'libreiserfs-devel' 'libreiserfs-devel-32bit' 'libreiserfs-progs' 'libreiserfscore-devel' 'librelp-devel' 'librelp0' 'libreoffice-base-drivers-postgresql' 'libreoffice-branding-upstream' 'libreoffice-calc-extensions' 'libreoffice-gdb-pretty-printers' 'libreoffice-glade' 'libreoffice-gnome' 'libreoffice-gtk2' 'libreoffice-gtk3' 'libreoffice-l10n-af' 'libreoffice-l10n-am' 'libreoffice-l10n-ar' 'libreoffice-l10n-as' 'libreoffice-l10n-ast' 'libreoffice-l10n-be' 'libreoffice-l10n-bg' 'libreoffice-l10n-bn' 'libreoffice-l10n-bn_IN' 'libreoffice-l10n-bo' 'libreoffice-l10n-br' 'libreoffice-l10n-brx' 'libreoffice-l10n-bs' 'libreoffice-l10n-ca' 'libreoffice-l10n-ca_valencia' 'libreoffice-l10n-cs' 'libreoffice-l10n-cy' 'libreoffice-l10n-da' 'libreoffice-l10n-de' 'libreoffice-l10n-dgo' 'libreoffice-l10n-dsb' 'libreoffice-l10n-dz' 'libreoffice-l10n-el' 'libreoffice-l10n-en_ZA' 'libreoffice-l10n-eo' 'libreoffice-l10n-es' 'libreoffice-l10n-et' 'libreoffice-l10n-eu' 'libreoffice-l10n-fa' 'libreoffice-l10n-fi' 'libreoffice-l10n-fr' 'libreoffice-l10n-fy' 'libreoffice-l10n-ga' 'libreoffice-l10n-gd' 'libreoffice-l10n-gl' 'libreoffice-l10n-gu' 'libreoffice-l10n-gug' 'libreoffice-l10n-he' 'libreoffice-l10n-hi' 'libreoffice-l10n-hr' 'libreoffice-l10n-hsb' 'libreoffice-l10n-hu' 'libreoffice-l10n-id' 'libreoffice-l10n-is' 'libreoffice-l10n-it' 'libreoffice-l10n-ja' 'libreoffice-l10n-ka' 'libreoffice-l10n-kab' 'libreoffice-l10n-kk' 'libreoffice-l10n-km' 'libreoffice-l10n-kmr_Latn' 'libreoffice-l10n-kn' 'libreoffice-l10n-ko' 'libreoffice-l10n-kok' 'libreoffice-l10n-ks' 'libreoffice-l10n-lb' 'libreoffice-l10n-lo' 'libreoffice-l10n-lt' 'libreoffice-l10n-lv' 'libreoffice-l10n-mai' 'libreoffice-l10n-mk' 'libreoffice-l10n-ml' 'libreoffice-l10n-mn' 'libreoffice-l10n-mni' 'libreoffice-l10n-mr' 'libreoffice-l10n-my' 'libreoffice-l10n-nb' 'libreoffice-l10n-ne' 'libreoffice-l10n-nl' 'libreoffice-l10n-nn' 'libreoffice-l10n-nr' 'libreoffice-l10n-nso' 'libreoffice-l10n-oc' 'libreoffice-l10n-om' 'libreoffice-l10n-or' 'libreoffice-l10n-pa' 'libreoffice-l10n-pl' 'libreoffice-l10n-pt_BR' 'libreoffice-l10n-pt_PT' 'libreoffice-l10n-ro' 'libreoffice-l10n-ru' 'libreoffice-l10n-rw' 'libreoffice-l10n-sa_IN' 'libreoffice-l10n-sat' 'libreoffice-l10n-sd' 'libreoffice-l10n-si' 'libreoffice-l10n-sid' 'libreoffice-l10n-sk' 'libreoffice-l10n-sl' 'libreoffice-l10n-sq' 'libreoffice-l10n-sr' 'libreoffice-l10n-ss' 'libreoffice-l10n-st' 'libreoffice-l10n-sv' 'libreoffice-l10n-sw_TZ' 'libreoffice-l10n-ta' 'libreoffice-l10n-te' 'libreoffice-l10n-tg' 'libreoffice-l10n-th' 'libreoffice-l10n-tn' 'libreoffice-l10n-tr' 'libreoffice-l10n-ts' 'libreoffice-l10n-tt' 'libreoffice-l10n-ug' 'libreoffice-l10n-uk' 'libreoffice-l10n-uz' 'libreoffice-l10n-ve' 'libreoffice-l10n-vec' 'libreoffice-l10n-vi' 'libreoffice-l10n-xh' 'libreoffice-l10n-zh_CN' 'libreoffice-l10n-zh_TW' 'libreoffice-l10n-zu' 'libreoffice-librelogo' 'libreoffice-officebean' 'libreoffice-sdk' 'libreoffice-sdk-doc' 'libreoffice-voikko' 'libreoffice-writer-extensions' 'libreofficekit' 'libreofficekit-devel' 'librep' 'librep-devel' 'librep16' 'librepair-1_2-1' 'librepilot' 'libreplaygain-devel' 'libreplaygain1' 'librepo-devel' 'librepo0' 'librepository-javadoc' 'librepute1' 'libressl' 'libressl-devel' 'libressl-devel-32bit' 'libressl-devel-doc' 'librest-devel' 'libretro-bsnes' 'libretro-gambatte' 'libretro-gtk-0_14-0' 'libretro-pcsx_rearmed' 'librevenge-devel' 'librevenge-doc' 'librevenge-generators-0_0-0' 'librfxencode0' 'librgw-devel' 'librgw2' 'librhash0' 'librime-devel' 'librime1' 'librime1-32bit' 'librk0' 'librlog-devel' 'librlog5' 'librlog5-doc' 'librmt-devel-doc' 'libroar2' 'libroar2-debuginfo' 'librocsgraphtheory0' 'librpmem-devel' 'librpmem1' 'librrd8' 'librsb-devel' 'librsb0' 'librsound-devel' 'librsound-devel-static' 'librsound3' 'librsound3-32bit' 'librsound3-32bit-debuginfo' 'librsound3-debuginfo' 'librsvg-2-2-32bit' 'librsvg-devel' 'librsync-devel' 'librsync2' 'librtaudio6' 'librtlsdr0' 'librtmidi5' 'librtmp-devel' 'librtmp1-32bit' 'librtmp1-32bit-debuginfo' 'librtmp1-debuginfo' 'librttr_core0_9_6' 'librubberband-devel' 'librubberband2-32bit' 'librvngabw-0_0-0' 'librvngabw-devel' 'librvngabw-devel-doc' 'librygel-core-2_6-2' 'librygel-db-2_6-2' 'librygel-renderer-2_6-2' 'librygel-renderer-gst-2_6-2' 'librygel-ruih-2_0-1' 'librygel-server-2_6-2' 'libs3-4' 'libs3-devel' 'libs3-tools' 'libsam4' 'libsam4-32bit' 'libsamba-credentials-devel' 'libsamba-errors-devel' 'libsamba-hostconfig-devel' 'libsamba-passdb-devel' 'libsamba-policy-devel' 'libsamba-policy-python3-devel' 'libsamba-policy0-python3-32bit' 'libsamba-util-devel' 'libsamdb-devel' 'libsaml-devel' 'libsaml10' 'libsamplerate-devel' 'libsamplerate-progs' 'libsamplerate0-32bit' 'libsanlock1' 'libsass-3_6_1-1' 'libsass-devel' 'libsbc1-32bit' 'libsblim-cmpiutil1' 'libscalapack2-gnu-mpich-hpc' 'libscalapack2-gnu-mpich-hpc-devel' 'libscalapack2-gnu-mvapich2-hpc' 'libscalapack2-gnu-mvapich2-hpc-devel' 'libscalapack2-gnu-openmpi1-hpc' 'libscalapack2-gnu-openmpi1-hpc-devel' 'libscalapack2-gnu-openmpi2-hpc' 'libscalapack2-gnu-openmpi2-hpc-devel' 'libscalapack2-gnu-openmpi3-hpc' 'libscalapack2-gnu-openmpi3-hpc-devel' 'libscalapack2-mvapich2' 'libscalapack2-mvapich2-32bit' 'libscalapack2-mvapich2-devel' 'libscalapack2-mvapich2-devel-32bit' 'libscalapack2-mvapich2-devel-static' 'libscalapack2-openmpi' 'libscalapack2-openmpi-32bit' 'libscalapack2-openmpi-devel' 'libscalapack2-openmpi-devel-32bit' 'libscalapack2-openmpi-devel-static' 'libscalapack2-openmpi2' 'libscalapack2-openmpi2-32bit' 'libscalapack2-openmpi2-devel' 'libscalapack2-openmpi2-devel-32bit' 'libscalapack2-openmpi2-devel-static' 'libscalapack2-openmpi3' 'libscalapack2-openmpi3-32bit' 'libscalapack2-openmpi3-devel' 'libscalapack2-openmpi3-devel-32bit' 'libscalapack2-openmpi3-devel-static' 'libscalapack2_2_0_2-gnu-mpich-hpc' 'libscalapack2_2_0_2-gnu-mpich-hpc-devel' 'libscalapack2_2_0_2-gnu-mpich-hpc-devel-static' 'libscalapack2_2_0_2-gnu-mvapich2-hpc' 'libscalapack2_2_0_2-gnu-mvapich2-hpc-devel' 'libscalapack2_2_0_2-gnu-mvapich2-hpc-devel-static' 'libscalapack2_2_0_2-gnu-openmpi1-hpc' 'libscalapack2_2_0_2-gnu-openmpi1-hpc-devel' 'libscalapack2_2_0_2-gnu-openmpi1-hpc-devel-static' 'libscalapack2_2_0_2-gnu-openmpi2-hpc' 'libscalapack2_2_0_2-gnu-openmpi2-hpc-devel' 'libscalapack2_2_0_2-gnu-openmpi2-hpc-devel-static' 'libscalapack2_2_0_2-gnu-openmpi3-hpc' 'libscalapack2_2_0_2-gnu-openmpi3-hpc-devel' 'libscalapack2_2_0_2-gnu-openmpi3-hpc-devel-static' 'libscamperfile-devel' 'libscamperfile0' 'libscca-devel' 'libscca-tools' 'libscca1' 'libscg-devel' 'libschily-devel' 'libschily-devel-doc' 'libschroedinger-1_0-0-32bit' 'libscilab6' 'libscintilla-devel' 'libscintilla3' 'libscotch0' 'libseccomp-devel' 'libseccomp-tools' 'libseccomp2-32bit' 'libsecprog-devel' 'libsecprog0' 'libsecret-1-0-32bit' 'libsecret-devel' 'libsecret-tools' 'libselinux-devel' 'libselinux-devel-static' 'libsemanage-devel' 'libsemanage-devel-static' 'libsemanage-migrate-store' 'libsemanage1-32bit' 'libsensors4-devel' 'libsepol-devel' 'libsepol-devel-static' 'libsepol-utils' 'libsepol1-32bit' 'libserd-0-0-32bit' 'libserf-devel' 'libserialdv1' 'libserializer-javadoc' 'libserialport-devel' 'libserialport0' 'libsfcUtil0' 'libsfml2-2_5' 'libsfml2-2_5-32bit' 'libsfst-hfst0' 'libsgutils-devel' 'libsha1detectcoll-devel' 'libshadowdive0_0_0-suse' 'libshadowsocks-libev2' 'libshairplay0' 'libshairplay0-debuginfo' 'libshibsp-lite8' 'libshibsp8' 'libshine-devel' 'libshout-devel' 'libshout-idjc' 'libshout-idjc-debugsource' 'libshout-idjc-devel' 'libshout-idjc-devel-32bit' 'libshout-idjc3' 'libshout-idjc3-32bit' 'libshout-idjc3-32bit-debuginfo' 'libshout-idjc3-debuginfo' 'libshout3-32bit' 'libshp-devel' 'libsidplayfp-devel' 'libsidplayfp4' 'libsigc++2-devel' 'libsigc++3-devel' 'libsigc-2_0-0-32bit' 'libsigc-3_0-0' 'libsigc-3_0-0-32bit' 'libsignal-protocol-c-devel' 'libsignal-protocol-c2' 'libsignon-glib-devel' 'libsignon-glib1' 'libsignon-qt5-1-32bit' 'libsignon-qt5-devel' 'libsignon-qt5-docs' 'libsigrok-data' 'libsigrok-devel' 'libsigrok4' 'libsigrokcxx4' 'libsigrokdecode-devel' 'libsigrokdecode4' 'libsigscan-devel' 'libsigscan-tools' 'libsigscan1' 'libsigsegv-devel' 'libsigsegv-doc' 'libsigsegv2' 'libskk-devel' 'libskk0' 'libskk0-32bit' 'libslang2-32bit' 'libslurm33' 'libsmartcols-devel' 'libsmartcols-devel-static' 'libsmbclient-devel' 'libsmbclient0-32bit' 'libsmbconf-devel' 'libsmbios-devel' 'libsmbios-lang' 'libsmbios_c2' 'libsmbldap-devel' 'libsmdev-devel' 'libsmdev-tools' 'libsmdev1' 'libsmi-devel' 'libsmpp34-1' 'libsmpp34-devel' 'libsmputils-devel' 'libsmraw-devel' 'libsmraw-tools' 'libsmraw1' 'libsnapper-devel' 'libsnappy1-32bit' 'libsndfile-devel' 'libsndfile-progs' 'libsndio7_0' 'libsoc-common' 'libsoc-devel' 'libsoc2' 'libsocketcan-devel' 'libsocketcan2' 'libsocks0' 'libsocks0-32bit' 'libsodium-devel' 'libsodium23-32bit' 'libsofia-sip-ua-glib3' 'libsofia-sip-ua0' 'libsolarus-gui1' 'libsolarus1' 'libsolv-demo' 'libsolv-devel' 'libsord-0-0-32bit' 'libsoundio-devel' 'libsoundio1' 'libsoundio1-debuginfo' 'libsoup-devel' 'libsoup-devel-32bit' 'libsource-highlight-devel' 'libsource-highlight4' 'libsource-highlight4-32bit' 'libsox3' 'libsox3-debuginfo' 'libsoxr-lsr0' 'libsoxr-lsr0-32bit' 'libsoxr0-32bit' 'libspandsp2-32bit' 'libspatialindex4' 'libspatialite-devel' 'libspatialite7' 'libspdylay7' 'libspectre-devel' 'libspectre1' 'libspeechd-devel' 'libspeechd2' 'libspeechd2-32bit' 'libspeexdsp1-32bit' 'libspf2-2' 'libspf2-devel' 'libspf2-tools' 'libsphinxbase1' 'libsphinxclient-0_0_1' 'libsphinxclient-devel' 'libspice-server-devel' 'libspiro-devel' 'libspiro0' 'libspirv-cross-c-shared-devel' 'libspirv-cross-c-shared0' 'libsplinter-3-0' 'libspnav-devel' 'libspnav0' 'libspqr2' 'libspread-sheet-widget0' 'libsqlcipher-3_27_2-0' 'libsratom-0-0-32bit' 'libsrecord0' 'libsrt1-32bit' 'libsrtp-devel' 'libsrtp1' 'libsrtp1-32bit' 'libsrtp2-1-32bit' 'libsrtp2-devel' 'libssh-devel' 'libssh2-1-32bit' 'libssh2-devel' 'libssl47' 'libssl47-32bit' 'libssr-glinject' 'libssr-glinject-32bit' 'libsss_certmap-devel' 'libsss_certmap0' 'libsss_idmap-devel' 'libsss_idmap0' 'libsss_nss_idmap-devel' 'libsss_nss_idmap0' 'libsss_simpleifp-devel' 'libsss_simpleifp0' 'libstaroffice-devel' 'libstaroffice-devel-doc' 'libstaroffice-tools' 'libstartup-notification-1-0-32bit' 'libstatgrab-devel' 'libstatgrab-devel-32bit' 'libstatgrab10' 'libstatgrab10-32bit' 'libstdc++-devel' 'libstdc++-devel-32bit' 'libstdc++6-devel-gcc7' 'libstdc++6-devel-gcc7-32bit' 'libstdc++6-devel-gcc8' 'libstdc++6-devel-gcc8-32bit' 'libstdc++6-devel-gcc9' 'libstdc++6-devel-gcc9-32bit' 'libstdc++6-gcc6-doc' 'libstdc++6-gcc7' 'libstdc++6-gcc7-32bit' 'libstdc++6-gcc7-locale' 'libstdc++6-gcc8' 'libstdc++6-gcc8-32bit' 'libstdc++6-gcc8-locale' 'libstdc++6-locale' 'libstfl-devel' 'libstfl0' 'libstilview-devel' 'libstilview0' 'libstk-devel' 'libstk4' 'libstk4-debuginfo' 'libstlink-shared1' 'libstorage-ng-devel' 'libstorage-ng-integration-tests' 'libstorage-ng-python3' 'libstorage-ng-utils' 'libstoragemgmt' 'libstoragemgmt-arcconf-plugin' 'libstoragemgmt-devel' 'libstoragemgmt-hpsa-plugin' 'libstoragemgmt-local-plugin' 'libstoragemgmt-megaraid-plugin' 'libstoragemgmt-netapp-plugin' 'libstoragemgmt-nfs-plugin' 'libstoragemgmt-nfs-plugin-clibs' 'libstoragemgmt-nstor-plugin' 'libstoragemgmt-smis-plugin' 'libstoragemgmt-targetd-plugin' 'libstoragemgmt-udev' 'libstoragemgmt1' 'libstp2_3' 'libstroke' 'libstroke-devel' 'libstrophe-devel' 'libstrophe0' 'libsubtitleeditor-devel' 'libsubtitleeditor0' 'libsubunit0' 'libsuil-0-0' 'libsuitesparseconfig5' 'libsunpinyin3' 'libsuperlu-gnu-hpc' 'libsuperlu5' 'libsuperlu5-32bit' 'libsuperlu_5_2_1-gnu-hpc' 'libsvn_auth_gnome_keyring-1-0' 'libsvrcore0' 'libswitchboard-2_0-0' 'libsword-1_8_1' 'libswresample1-32bit' 'libswresample1-32bit-debuginfo' 'libswresample1-debuginfo' 'libswresample2' 'libswresample2-32bit' 'libswresample2-32bit-debuginfo' 'libswresample2-debuginfo' 'libswresample3-32bit' 'libswresample3-32bit-debuginfo' 'libswresample3-debuginfo' 'libswscale3-32bit' 'libswscale3-32bit-debuginfo' 'libswscale3-debuginfo' 'libswscale4' 'libswscale4-32bit' 'libswscale4-32bit-debuginfo' 'libswscale4-debuginfo' 'libswscale5-32bit' 'libswscale5-32bit-debuginfo' 'libswscale5-debuginfo' 'libsybdb5' 'libsympol0_1' 'libsynce-devel' 'libsynce0' 'libsynctex2' 'libsynfig0' 'libsynfig0-debuginfo' 'libsynfigapp0' 'libsynfigapp0-debuginfo' 'libsysstat-qt5-0' 'libsysstat-qt5-devel' 'libsz2' 'libsz2-32bit' 'libt3config-devel' 'libt3config0' 'libt3highlight-devel' 'libt3highlight-utils' 'libt3highlight2' 'libt3key-devel' 'libt3key-utils' 'libt3key1' 'libt3widget-devel' 'libt3widget2' 'libt3window-devel' 'libt3window0' 'libtachyon-0_99b6' 'libtachyon-devel' 'libtag-devel' 'libtag-doc' 'libtag-extras1' 'libtag1-32bit' 'libtag_c0' 'libtag_c0-32bit' 'libtaginfo-devel' 'libtaginfo1' 'libtaginfo1-32bit' 'libtalloc-devel' 'libtar' 'libtar-devel' 'libtar1' 'libtasn1-devel-32bit' 'libtbbmalloc2' 'libtcmalloc4' 'libtcmu2' 'libtcnative-1-0' 'libtcnative-1-0-devel' 'libtdb-devel' 'libtdsodbc0' 'libteam-devel' 'libteam-tools' 'libteam5' 'libtecla_r1' 'libteec1' 'libtelepathy-farstream3' 'libtelepathy-farstream3-32bit' 'libtelepathy-glib0' 'libtelepathy-glib0-32bit' 'libtelepathy-logger-qt5' 'libtelepathy-logger3' 'libtelepathy-qt5-0' 'libtelepathy-qt5-0-32bit' 'libtelepathy-qt5-farstream0' 'libtelepathy-qt5-farstream0-32bit' 'libtelepathy-qt5-service0' 'libtelepathy-qt5-service0-32bit' 'libtemplate_glib-1_0-0' 'libtepl-4-0' 'libteredo5' 'libtermkey-devel' 'libtesseract3' 'libtestshade1_9' 'libtevent-devel' 'libtevent-util-devel' 'libtexlua53-5' 'libtexluajit2' 'libthai-devel' 'libtheora-devel' 'libtheoradec1-32bit' 'libtheoraenc1-32bit' 'libthrift-0_12_0' 'libthrift-devel' 'libthrift_c_glib0' 'libthriftnb-0_12_0' 'libthriftz-0_12_0' 'libthunarx-3-0' 'libtidy-devel' 'libtidy5' 'libtidyp-1_04-0' 'libtidyp-devel' 'libtiff-devel' 'libtiff-devel-32bit' 'libtiger-devel' 'libtiger5' 'libtiled1' 'libtimidity-devel' 'libtimidity2' 'libtimidity2-32bit' 'libtins-devel' 'libtins3' 'libtinyb0' 'libtinygettext0' 'libtinyobjloader1' 'libtinyxml0' 'libtinyxml2-6' 'libtirpc-devel' 'libtls19' 'libtls19-32bit' 'libtntdb-devel' 'libtntdb4' 'libtntnet-devel' 'libtntnet12' 'libtntnet12-debuginfo' 'libtolua++-5_1-1' 'libtolua++-5_1-devel' 'libtolua++-5_3-1' 'libtolua++-5_3-devel' 'libtolua-devel' 'libtolua5' 'libtomcrypt-devel' 'libtomcrypt-examples' 'libtomcrypt1-32bit' 'libtommath-devel' 'libtommath-examples' 'libtommath1-32bit' 'libtomoe-gtk0' 'libtool' 'libtool-32bit' 'libtorrent-devel' 'libtorrent-rasterbar-devel' 'libtorrent-rasterbar-doc' 'libtorrent-rasterbar9' 'libtorrent21' 'libtotem-plparser-mini18' 'libtotem-plparser18' 'libtotem_pg5' 'libtotem_pg5-32bit' 'libtowitoko2' 'libtoxcore2' 'libtpl-extensions3' 'libtpm_unseal1' 'libtpms-devel' 'libtpms0' 'libtracker-common-2_0' 'libtracker-control-2_0-0' 'libtracker-miner-2_0-0' 'libtracker-sparql-2_0-0' 'libtranscript-devel' 'libtranscript1' 'libtranslate-devel' 'libtranslate-progs' 'libtranslate0' 'libtre5' 'libtrilinos-gnu-mpich-hpc' 'libtrilinos-gnu-mvapich2-hpc' 'libtrilinos-gnu-openmpi2-hpc' 'libtrilinos12' 'libtrilinos12-openmpi2' 'libtrilinos_12_10_1-gnu-mpich-hpc' 'libtrilinos_12_10_1-gnu-mvapich2-hpc' 'libtrilinos_12_10_1-gnu-openmpi2-hpc' 'libts0-32bit' 'libtsan0-gcc7' 'libtsan0-gcc8' 'libtsk13' 'libtsm-devel' 'libtsm4' 'libtspi1' 'libtspi1-32bit' 'libtss2-esys0' 'libtss2-esys0-32bit' 'libtss2-mu0' 'libtss2-mu0-32bit' 'libtss2-sys0' 'libtss2-sys0-32bit' 'libtss2-tcti-device0' 'libtss2-tcti-device0-32bit' 'libtss2-tcti-mssim0' 'libtss2-tcti-mssim0-32bit' 'libtss2-tcti-tabrmd0' 'libttf2' 'libttf2-32bit' 'libttsmimic0' 'libtumbler-1-0' 'libtun6-0' 'libturbojpeg0' 'libturbojpeg0-32bit' 'libturing0' 'libturing0-debuginfo' 'libturris-spectator-devel' 'libturris-spectator0' 'libtwolame-devel' 'libtwolame0-32bit' 'libu2f-host-devel' 'libu2f-host-doc' 'libu2f-host0' 'libu2f-server-devel' 'libu2f-server0' 'libubsan0' 'libubsan0-32bit' 'libubsan1-32bit' 'libubsan1-gcc8' 'libubsan1-gcc8-32bit' 'libuchardet-devel' 'libuchardet0-32bit' 'libucl1' 'libucm-devel' 'libucm0' 'libucommon8' 'libucp-devel' 'libucp0' 'libucpp13' 'libucs-devel' 'libucs0' 'libuct-devel' 'libuct0' 'libudev-devel' 'libudev-devel-32bit' 'libudf0' 'libudf0-32bit' 'libudisks2-0-devel' 'libudisks2-0_bcache' 'libudisks2-0_lsm' 'libudisks2-0_lvm2' 'libudisks2-0_vdo' 'libudisks2-0_zram' 'libudns0' 'libudt-devel' 'libudt0' 'libuev-devel' 'libuev2' 'libuhd003' 'libuhttpmock-0_0-0' 'libulfius2_5' 'libulfius2_6' 'libulockmgr1' 'libumfpack5' 'libuna-devel' 'libuna-tools' 'libuna1' 'libunbound-devel-mini' 'libunibreak-devel' 'libunibreak3' 'libunicap-devel' 'libunicap2' 'libunicap2-32bit' 'libuninameslist-devel' 'libuninameslist0' 'libunique-1_0-0' 'libunique1-devel' 'libuniraum0' 'libuniraum0-debuginfo' 'libunistring-devel' 'libunistring-devel-32bit' 'libunity-devel' 'libunity-gtk-parser-devel' 'libunity-gtk2-parser0-32bit' 'libunity-gtk3-parser0-32bit' 'libunity-tools' 'libunity9' 'libunity9-32bit' 'libunrar-devel' 'libunrar5_7_5' 'libunshield0' 'libunwind-devel' 'libupm1' 'libupnp-devel' 'libupnp13-32bit' 'libupower-glib-devel' 'libupsclient1' 'liburcu-devel' 'liburcu6-32bit' 'liburfkill-glib-devel' 'liburfkill-glib0' 'liburiparser1' 'liburiparser1-32bit' 'libusb-0_1-4' 'libusb-0_1-4-32bit' 'libusb-1_0-devel' 'libusb-1_0-devel-32bit' 'libusb-compat-devel' 'libusb3380-0' 'libusb3380-devel' 'libusbauth-configparser-devel' 'libusbauth-configparser1' 'libusbguard0' 'libusbgx-devel' 'libusbgx-tools' 'libusbgx1' 'libusbmuxd-devel' 'libusbmuxd4-32bit' 'libusbprog0' 'libuser' 'libuser-devel' 'libuser-lang' 'libuser-python' 'libuser1' 'libusrp-3_4_4+git_20190808-0' 'libusrp-devel' 'libustr-1_0-1' 'libustr-1_0-1-32bit' 'libustr-devel' 'libut1' 'libut2' 'libutempter0-32bit' 'libuuid-devel' 'libuuid-devel-32bit' 'libuuid-devel-static' 'libuv-devel' 'libuwac0-0' 'libv4l-32bit' 'libv4l-devel' 'libv4l-devel-32bit' 'libv4l2rds0' 'libv4l2rds0-32bit' 'libva-devel' 'libva-devel-32bit' 'libva-gl-devel' 'libva-gl-devel-32bit' 'libva-glx2-32bit' 'libva-utils' 'libva-vdpau-driver' 'libva-wayland2-32bit' 'libvacuumutils37' 'libvala-0_44-0' 'libvala-0_44-devel' 'libvaladoc-0_44-0' 'libvaladoc-0_44-devel' 'libvamp-hostsdk3' 'libvamp-hostsdk3-32bit' 'libvamp-sdk2' 'libvamp-sdk2-32bit' 'libvapoursynth-47' 'libvarnishapi2' 'libvbr2' 'libvcdinfo0' 'libvcdinfo0-32bit' 'libvdehist-devel' 'libvdehist0' 'libvdemgmt-devel' 'libvdemgmt0' 'libvdeplug-devel' 'libvdesnmp-devel' 'libvdesnmp0' 'libvdpau-devel' 'libvdpau-devel-32bit' 'libvdpau1-32bit' 'libvdpau_nouveau-32bit' 'libvdpau_r300' 'libvdpau_r300-32bit' 'libvdpau_r600' 'libvdpau_r600-32bit' 'libvdpau_radeonsi' 'libvdpau_radeonsi-32bit' 'libvdpau_trace1' 'libvdpau_trace1-32bit' 'libvdpau_va_gl1' 'libvdpau_va_gl1-32bit' 'libventrilo3-0' 'libventrilo3-devel' 'libverto-devel' 'libverto-devel-32bit' 'libverto-glib-devel' 'libverto-glib1' 'libverto-glib1-32bit' 'libverto-libev-devel' 'libverto-libev1' 'libverto-libev1-32bit' 'libverto-tevent-devel' 'libverto-tevent1' 'libverto-tevent1-32bit' 'libvhdi-devel' 'libvhdi-tools' 'libvhdi1' 'libvidstab-devel' 'libvidstab1_1-32bit' 'libvigraimpex11-32bit' 'libvips-devel' 'libvips42' 'libvirt' 'libvirt-admin' 'libvirt-cim' 'libvirt-daemon-config-nwfilter' 'libvirt-daemon-driver-libxl' 'libvirt-daemon-driver-lxc' 'libvirt-daemon-hooks' 'libvirt-daemon-lxc' 'libvirt-daemon-xen' 'libvirt-devel' 'libvirt-devel-32bit' 'libvirt-doc' 'libvirt-glib-devel' 'libvirt-lock-sanlock' 'libvirt-nss' 'libvirt-sandbox-1_0-5' 'libvirt-sandbox-devel' 'libvisio-devel' 'libvisio-devel-doc' 'libvisio-tools' 'libvisio2svg-devel' 'libvisio2svg0' 'libvisual-32bit' 'libvisual-devel' 'libvkd3d-utils1' 'libvkd3d-utils1-32bit' 'libvlc-gtk0' 'libvlc-gtk0-debuginfo' 'libvlc123' 'libvlc123-debuginfo' 'libvlc5-debuginfo' 'libvlccore123' 'libvlccore123-debuginfo' 'libvlccore9-debuginfo' 'libvma' 'libvma-devel' 'libvma8' 'libvmdk-devel' 'libvmdk-tools' 'libvmdk1' 'libvmem-devel' 'libvmem1' 'libvmime-devel' 'libvmime-kopano2' 'libvmmalloc-devel' 'libvmmalloc1' 'libvmtools-devel' 'libvmtools0' 'libvncclient1' 'libvncserver1' 'libvo-aacenc-devel' 'libvo-aacenc0' 'libvo-aacenc0-32bit' 'libvo-aacenc0-32bit-debuginfo' 'libvo-aacenc0-debuginfo' 'libvo-amrwbenc-devel' 'libvo-amrwbenc0-32bit' 'libvo-amrwbenc0-32bit-debuginfo' 'libvo-amrwbenc0-debuginfo' 'libvoikko-devel' 'libvoikko1' 'libvoikko1-32bit' 'libvolk1_4' 'libvorbis-devel' 'libvorbis-devel-32bit' 'libvorbis-doc' 'libvoro++0' 'libvotca_csg5' 'libvotca_ctp5' 'libvotca_tools5' 'libvotca_xtp5' 'libvotequorum8' 'libvotequorum8-32bit' 'libvpd2' 'libvpd2-32bit' 'libvpd2-devel' 'libvpd2-devel-32bit' 'libvpp0' 'libvpx-devel' 'libvpx6-32bit' 'libvshadow-devel' 'libvshadow-tools' 'libvshadow1' 'libvslvm-devel' 'libvslvm-tools' 'libvslvm1' 'libvsqlitepp3' 'libvted-3-0' 'libvterm-devel' 'libvterm-tools' 'libvtk1' 'libvtk1-openmpi' 'libvtk1-openmpi2' 'libvulkan_intel' 'libvulkan_intel-32bit' 'libvulkan_radeon' 'libvulkan_radeon-32bit' 'libwacom-devel' 'libwacom-tools' 'libwacom2-32bit' 'libwaffle-1-0' 'libwapcaplet-devel' 'libwapcaplet0' 'libwavpack1-32bit' 'libwayland-server0-32bit' 'libwaylandpp0' 'libwbclient-devel' 'libwbxml2-1' 'libwbxml2-devel' 'libwcs6' 'libwebcam-devel' 'libwebcam0' 'libwebkit2gtk-4_0-37-32bit' 'libwebp-devel' 'libwebp-devel-32bit' 'libwebp-tools' 'libwebpdecoder3' 'libwebpdecoder3-32bit' 'libwebpdemux2-32bit' 'libwebpmux3-32bit' 'libwebrtc_audio_processing-devel' 'libwebrtc_audio_processing-devel-static' 'libwebrtc_audio_processing1-32bit' 'libwebsockets-devel' 'libwebsockets13' 'libwebvfx1' 'libweed-devel' 'libweed0' 'libweed0-debuginfo' 'libweston-7' 'libweston-7-0' 'libweston-desktop-7-0' 'libwiiuse0' 'libwim15' 'libwinpr2' 'libwireshark12' 'libwiretap9' 'libwkhtmltox0' 'libwlc0' 'libwlroots3' 'libwmf-0_2-7' 'libwmf-0_2-7-32bit' 'libwmf-devel' 'libwmf-gnome' 'libwmf-gnome-32bit' 'libwmf-tools' 'libwnck-1-22' 'libwnck-1-22-32bit' 'libwnck-3-0' 'libwnck-3-0-32bit' 'libwnck-devel' 'libwnck-lang' 'libwnck-tools' 'libwnck2-devel' 'libwnck2-lang' 'libwnn0' 'libwoff2common1_0_2-32bit' 'libwoff2dec1_0_2-32bit' 'libwoff2enc1_0_2' 'libwoff2enc1_0_2-32bit' 'libwpd-devel' 'libwpd-devel-doc' 'libwpd-tools' 'libwpg-devel' 'libwpg-devel-doc' 'libwpg-tools' 'libwps-devel' 'libwps-tools' 'libwrc-devel' 'libwrc-tools' 'libwrc1' 'libwscodecs2' 'libwslay0' 'libwsman-devel' 'libwsman3' 'libwsman_clientpp-devel' 'libwsman_clientpp1' 'libwsutil10' 'libwtdbo51' 'libwtdbomysql51' 'libwtdbopostgres51' 'libwv-1_2-4' 'libwv2-4' 'libwx_baseu-2_8-0-compat-lib-wxcontainer' 'libwx_baseu-2_8-0-wxcontainer' 'libwx_baseu-2_8-0-wxcontainer-32bit' 'libwx_baseu-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_baseu-2_8-0-wxcontainer-debuginfo' 'libwx_baseu-suse-nostl3_0_4' 'libwx_baseu-suse3_0_4-32bit' 'libwx_baseu-suse3_1_3' 'libwx_baseu_net-2_8-0-compat-lib-wxcontainer' 'libwx_baseu_net-2_8-0-wxcontainer' 'libwx_baseu_net-2_8-0-wxcontainer-32bit' 'libwx_baseu_net-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_baseu_net-2_8-0-wxcontainer-debuginfo' 'libwx_baseu_net-suse-nostl3_0_4' 'libwx_baseu_net-suse3_0_4-32bit' 'libwx_baseu_net-suse3_1_3' 'libwx_baseu_xml-2_8-0-compat-lib-wxcontainer' 'libwx_baseu_xml-2_8-0-wxcontainer' 'libwx_baseu_xml-2_8-0-wxcontainer-32bit' 'libwx_baseu_xml-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_baseu_xml-2_8-0-wxcontainer-debuginfo' 'libwx_baseu_xml-suse-nostl3_0_4' 'libwx_baseu_xml-suse3_0_4-32bit' 'libwx_baseu_xml-suse3_1_3' 'libwx_gtk2u_adv-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_adv-2_8-0-wxcontainer' 'libwx_gtk2u_adv-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_adv-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_adv-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_adv-suse-nostl3_0_4' 'libwx_gtk2u_adv-suse3_0_4-32bit' 'libwx_gtk2u_adv-suse3_1_3' 'libwx_gtk2u_aui-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_aui-2_8-0-wxcontainer' 'libwx_gtk2u_aui-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_aui-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_aui-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_aui-suse-nostl3_0_4' 'libwx_gtk2u_aui-suse3_0_4-32bit' 'libwx_gtk2u_aui-suse3_1_3' 'libwx_gtk2u_core-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_core-2_8-0-wxcontainer' 'libwx_gtk2u_core-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_core-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_core-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_core-suse-nostl3_0_4' 'libwx_gtk2u_core-suse3_0_4-32bit' 'libwx_gtk2u_core-suse3_1_3' 'libwx_gtk2u_fl-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_fl-2_8-0-wxcontainer' 'libwx_gtk2u_fl-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_fl-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_fl-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gizmos-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_gizmos-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gizmos_xrc-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_gizmos_xrc-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gl-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_gl-2_8-0-wxcontainer' 'libwx_gtk2u_gl-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_gl-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_gl-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_gl-suse-nostl3_0_4' 'libwx_gtk2u_gl-suse3_0_4-32bit' 'libwx_gtk2u_gl-suse3_1_3' 'libwx_gtk2u_html-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_html-2_8-0-wxcontainer' 'libwx_gtk2u_html-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_html-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_html-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_html-suse-nostl3_0_4' 'libwx_gtk2u_html-suse3_0_4-32bit' 'libwx_gtk2u_html-suse3_1_3' 'libwx_gtk2u_media-suse-nostl3_0_4' 'libwx_gtk2u_media-suse3_0_4' 'libwx_gtk2u_media-suse3_0_4-32bit' 'libwx_gtk2u_media-suse3_1_3' 'libwx_gtk2u_mmedia-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_mmedia-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_ogl-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_ogl-2_8-0-wxcontainer' 'libwx_gtk2u_ogl-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_ogl-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_ogl-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_plot-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_plot-2_8-0-wxcontainer' 'libwx_gtk2u_plot-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_plot-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_plot-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_propgrid-suse-nostl3_0_4' 'libwx_gtk2u_propgrid-suse3_0_4' 'libwx_gtk2u_propgrid-suse3_0_4-32bit' 'libwx_gtk2u_propgrid-suse3_1_3' 'libwx_gtk2u_qa-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_qa-2_8-0-wxcontainer' 'libwx_gtk2u_qa-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_qa-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_qa-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_qa-suse-nostl3_0_4' 'libwx_gtk2u_qa-suse3_0_4-32bit' 'libwx_gtk2u_qa-suse3_1_3' 'libwx_gtk2u_ribbon-suse-nostl3_0_4' 'libwx_gtk2u_ribbon-suse3_0_4' 'libwx_gtk2u_ribbon-suse3_0_4-32bit' 'libwx_gtk2u_ribbon-suse3_1_3' 'libwx_gtk2u_richtext-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_richtext-2_8-0-wxcontainer' 'libwx_gtk2u_richtext-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_richtext-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_richtext-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_richtext-suse-nostl3_0_4' 'libwx_gtk2u_richtext-suse3_0_4' 'libwx_gtk2u_richtext-suse3_0_4-32bit' 'libwx_gtk2u_richtext-suse3_1_3' 'libwx_gtk2u_stc-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_stc-2_8-0-wxcontainer' 'libwx_gtk2u_stc-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_stc-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_stc-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_stc-suse-nostl3_0_4' 'libwx_gtk2u_stc-suse3_0_4' 'libwx_gtk2u_stc-suse3_0_4-32bit' 'libwx_gtk2u_stc-suse3_1_3' 'libwx_gtk2u_svg-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_svg-2_8-0-wxcontainer' 'libwx_gtk2u_svg-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_svg-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_svg-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_xrc-2_8-0-compat-lib-wxcontainer' 'libwx_gtk2u_xrc-2_8-0-wxcontainer' 'libwx_gtk2u_xrc-2_8-0-wxcontainer-32bit' 'libwx_gtk2u_xrc-2_8-0-wxcontainer-32bit-debuginfo' 'libwx_gtk2u_xrc-2_8-0-wxcontainer-debuginfo' 'libwx_gtk2u_xrc-suse-nostl3_0_4' 'libwx_gtk2u_xrc-suse3_0_4-32bit' 'libwx_gtk2u_xrc-suse3_1_3' 'libwx_gtk3u_adv-suse3_1_3' 'libwx_gtk3u_aui-suse3_1_3' 'libwx_gtk3u_core-suse3_1_3' 'libwx_gtk3u_gl-suse3_1_3' 'libwx_gtk3u_html-suse3_1_3' 'libwx_gtk3u_media-suse3_1_3' 'libwx_gtk3u_propgrid-suse3_1_3' 'libwx_gtk3u_qa-suse3_1_3' 'libwx_gtk3u_ribbon-suse3_1_3' 'libwx_gtk3u_richtext-suse3_1_3' 'libwx_gtk3u_stc-suse3_1_3' 'libwx_gtk3u_webview-suse3_1_3' 'libwx_gtk3u_xrc-suse3_1_3' 'libwx_qtu_adv-suse3_1_3' 'libwx_qtu_aui-suse3_1_3' 'libwx_qtu_core-suse3_1_3' 'libwx_qtu_gl-suse3_1_3' 'libwx_qtu_html-suse3_1_3' 'libwx_qtu_media-suse3_1_3' 'libwx_qtu_propgrid-suse3_1_3' 'libwx_qtu_qa-suse3_1_3' 'libwx_qtu_ribbon-suse3_1_3' 'libwx_qtu_richtext-suse3_1_3' 'libwx_qtu_stc-suse3_1_3' 'libwx_qtu_xrc-suse3_1_3' 'libwxcode_gtk2u_wxsqlite3-3_0-0' 'libwxlua' 'libwxstedit-wx30gtk2u-1_6_0' 'libwxsvg-devel' 'libwxsvg3' 'libx264' 'libx264-155-32bit' 'libx264-155-32bit-debuginfo' 'libx264-155-debuginfo' 'libx264-debugsource' 'libx264-devel' 'libx264-x264' 'libx264-x264-debugsource' 'libx265-176-32bit' 'libx265-176-32bit-debuginfo' 'libx265-176-debuginfo' 'libx265-devel' 'libx86-1' 'libx86-devel' 'libx86-devel-static' 'libx86emu-devel' 'libxalan-c-devel' 'libxalan-c111' 'libxapian-devel' 'libxapian30-32bit' 'libxapp-devel' 'libxapp1' 'libxar-devel' 'libxar1' 'libxatracker-devel' 'libxatracker2' 'libxbase64-1' 'libxbrz-1_6' 'libxbsql0' 'libxc-devel' 'libxc5' 'libxcam-devel' 'libxcam1' 'libxcb-composite0-32bit' 'libxcb-cursor0-32bit' 'libxcb-damage0-32bit' 'libxcb-devel' 'libxcb-devel-32bit' 'libxcb-devel-doc' 'libxcb-dpms0-32bit' 'libxcb-errors0' 'libxcb-errors0-32bit' 'libxcb-ewmh2' 'libxcb-ewmh2-32bit' 'libxcb-icccm4-32bit' 'libxcb-image0-32bit' 'libxcb-keysyms1-32bit' 'libxcb-randr0-32bit' 'libxcb-record0-32bit' 'libxcb-render-util0-32bit' 'libxcb-res0-32bit' 'libxcb-screensaver0' 'libxcb-screensaver0-32bit' 'libxcb-shape0-32bit' 'libxcb-util1-32bit' 'libxcb-xf86dri0' 'libxcb-xf86dri0-32bit' 'libxcb-xfixes0-32bit' 'libxcb-xinerama0-32bit' 'libxcb-xinput0-32bit' 'libxcb-xkb1-32bit' 'libxcb-xrm0' 'libxcb-xtest0' 'libxcb-xtest0-32bit' 'libxcb-xv0-32bit' 'libxcb-xvmc0' 'libxcb-xvmc0-32bit' 'libxclass-0_9_2' 'libxcrypt-devel-32bit' 'libxcrypt-devel-static' 'libxdg-basedir-devel' 'libxdg-basedir1' 'libxerces-c-3_2-32bit' 'libxerces-c-devel' 'libxfce4panel-1_0-4' 'libxfce4panel-2_0-4' 'libxfce4ui-1-0' 'libxfce4ui-2-0' 'libxfce4ui-branding-openSUSE' 'libxfce4ui-branding-upstream' 'libxfce4ui-devel' 'libxfce4ui-doc' 'libxfce4ui-lang' 'libxfce4ui-tools' 'libxfce4util-devel' 'libxfce4util-lang' 'libxfce4util-tools' 'libxfce4util7' 'libxfconf-0-3' 'libxfconf-devel' 'libxfdashboard0' 'libxine-devel' 'libxine2' 'libxine2-32bit' 'libxine2-32bit-debuginfo' 'libxine2-aa' 'libxine2-aa-debuginfo' 'libxine2-codecs' 'libxine2-debuginfo' 'libxine2-jack' 'libxine2-jack-debuginfo' 'libxine2-pulse' 'libxine2-pulse-debuginfo' 'libxine2-sdl' 'libxine2-sdl-debuginfo' 'libxkbcommon-devel' 'libxkbcommon-devel-32bit' 'libxkbcommon-x11-0-32bit' 'libxkbcommon-x11-devel' 'libxkbcommon-x11-devel-32bit' 'libxkbfile-devel' 'libxkbfile-devel-32bit' 'libxkbfile1-32bit' 'libxkbui-devel' 'libxkbui-devel-32bit' 'libxkbui1' 'libxkbui1-32bit' 'libxklavier-devel' 'libxklavier-doc' 'libxklavier16-32bit' 'libxmi0' 'libxml++-2_6-2-32bit' 'libxml++-3_0-1' 'libxml++-3_0-1-32bit' 'libxml++-devel' 'libxml++26-devel' 'libxml-security-c-devel' 'libxml-security-c20' 'libxml2-devel' 'libxml2-devel-32bit' 'libxml2-doc' 'libxmlb-devel' 'libxmlb1' 'libxmlbird1' 'libxmlrpc++8' 'libxmlrpc3' 'libxmlrpc_abyss++8' 'libxmlrpc_abyss3' 'libxmlrpc_client++8' 'libxmlrpc_client3' 'libxmlrpc_cpp8' 'libxmlrpc_packetsocket8' 'libxmlrpc_server++8' 'libxmlrpc_server3' 'libxmlrpc_server_abyss++8' 'libxmlrpc_server_abyss3' 'libxmlrpc_server_cgi++8' 'libxmlrpc_server_cgi3' 'libxmlrpc_server_pstream++8' 'libxmlrpc_util++8' 'libxmlrpc_util3' 'libxmlsec1-gcrypt1' 'libxmlsec1-gnutls1' 'libxmlsec1-openssl1' 'libxmltooling-devel' 'libxmltooling-lite8' 'libxmltooling8' 'libxmmsclient++-glib1' 'libxmmsclient++4' 'libxmmsclient-glib1' 'libxmmsclient6' 'libxmp-devel' 'libxmp4' 'libxnoise-devel' 'libxnoise0' 'libxosd2' 'libxpaintrw0' 'libxpaintrw0-debuginfo' 'libxplayer-plparser-mini18' 'libxplayer-plparser-mini18-32bit' 'libxplayer-plparser18' 'libxplayer-plparser18-32bit' 'libxreaderdocument3' 'libxreaderview3' 'libxshmfence-devel' 'libxslt-devel' 'libxslt-devel-32bit' 'libxslt-python' 'libxspf-devel' 'libxspf4' 'libxtables-devel' 'libxtermcap1_0' 'libxtract-devel' 'libxtract0' 'libxtract0' 'libxtract0-debuginfo' 'libxtract0-debugsource' 'libxtrx-devel' 'libxtrx0' 'libxtrx_lms7002m0_0_0-SUSE' 'libxtrxdsp-devel' 'libxtrxdsp0' 'libxtrxll-devel' 'libxtrxll0' 'libxvidcore-devel' 'libxvidcore4-32bit' 'libxvidcore4-32bit-debuginfo' 'libxvidcore4-debuginfo' 'libxxhash0' 'libxy4' 'libyajl-devel' 'libyajl-devel-32bit' 'libyajl-devel-static' 'libyajl2-32bit' 'libyami-devel' 'libyami-utils' 'libyami1' 'libyaml-cpp0_6' 'libyaml-devel' 'libyang-cpp-devel' 'libyang-cpp0_16' 'libyang-devel' 'libyang-doc' 'libyang0_16' 'libyara-devel' 'libyara3' 'libyate6' 'libyate6-debuginfo' 'libyaz-devel' 'libyaz-devel-32bit' 'libyaz5' 'libyaz5-32bit' 'libyder1_4' 'libyelp0' 'libykclient-devel' 'libykclient3' 'libykcs11-1' 'libykcs11-devel' 'libykpers-devel' 'libykpiv-devel' 'libykpiv1' 'libyubikey-devel' 'libyubikey-tools' 'libyui-devel' 'libyui-doc' 'libyui-ncurses-devel' 'libyui-ncurses-doc' 'libyui-ncurses-pkg-devel' 'libyui-ncurses-pkg-doc' 'libyui-ncurses-rest-api-devel' 'libyui-ncurses-rest-api10' 'libyui-ncurses-tools' 'libyui-qt-devel' 'libyui-qt-doc' 'libyui-qt-graph-devel' 'libyui-qt-graph-doc' 'libyui-qt-pkg-devel' 'libyui-qt-pkg-doc' 'libyui-qt-rest-api-devel' 'libyui-qt-rest-api10' 'libyui-rest-api-devel' 'libyui-rest-api10' 'libz3-4_8' 'libzapojit-0_0-0' 'libzapojit-devel' 'libzbar-devel' 'libzbar0-32bit' 'libzbarqt-devel' 'libzbarqt0' 'libzbarqt0-32bit' 'libzbc-5_8_0' 'libzbc-devel' 'libzbc-gui' 'libzbc-tools' 'libzck-devel' 'libzebra1' 'libzeitgeist-1_0-1' 'libzeitgeist-1_0-1-32bit' 'libzeitgeist-2_0-0' 'libzeitgeist-devel' 'libzen-devel' 'libzen0' 'libzen0-32bit' 'libzhuyin-1_1-data' 'libzhuyin-1_1-devel' 'libzhuyin13' 'libzhuyin13-32bit' 'libzhuyin7' 'libzimg2-32bit' 'libzinnia0' 'libzio-devel' 'libzio1-32bit' 'libzip-devel' 'libzip-tools' 'libzip5-32bit' 'libzipkin-cpp-opentracing0' 'libzita-convolver4-32bit' 'libzlui0_99' 'libzmf-devel' 'libzmf-devel-doc' 'libzmf-tools' 'libzmq5-32bit' 'libzn_poly-0_9' 'libzopfli-devel' 'libzopfli1' 'libzopflipng1' 'libzrtpcpp-devel' 'libzrtpcpp4' 'libzsolve0' 'libzstd-devel' 'libzstd-devel-static' 'libzvbi-chains0' 'libzvbi-chains0-32bit' 'libzvbi0-32bit' 'libzypp-devel' 'libzypp-devel-doc' 'libzypp-testsuite-tools' 'libzzip-0-13-32bit' 'lifelines' 'liferea' 'liferea-lang' 'light-locker' 'light-locker-lang' 'lightdm-gobject-devel' 'lightdm-gtk-greeter-branding-upstream' 'lightdm-gtk-greeter-settings' 'lightdm-gtk-greeter-settings-lang' 'lightdm-qt5-devel' 'lightdm-slick-greeter' 'lightdm-slick-greeter-branding-openSUSE' 'lightdm-slick-greeter-branding-upstream' 'lightdm-slick-greeter-lang' 'lightmediascanner' 'lightmediascanner-devel' 'lightsoff' 'lightsoff-lang' 'lightspark' 'lightspark' 'lightspark-debuginfo' 'lightspark-debugsource' 'lightspark-lang' 'lightspark-plugin' 'lightspark-plugin-debuginfo' 'lightstep-tracer-cpp-devel' 'lightstep-tracer-cpp-source' 'lighttpd' 'lighttpd-mod_authn_gssapi' 'lighttpd-mod_authn_ldap' 'lighttpd-mod_authn_mysql' 'lighttpd-mod_authn_sasl' 'lighttpd-mod_cml' 'lighttpd-mod_geoip' 'lighttpd-mod_magnet' 'lighttpd-mod_mysql_vhost' 'lighttpd-mod_rrdtool' 'lighttpd-mod_trigger_b4_dl' 'lighttpd-mod_vhostdb_dbi' 'lighttpd-mod_vhostdb_ldap' 'lighttpd-mod_vhostdb_mysql' 'lighttpd-mod_vhostdb_pgsql' 'lighttpd-mod_webdav' 'lilo' 'lilv' 'lilypond' 'lilypond-century-schoolbook-l-fonts' 'lilypond-doc' 'lilypond-doc-cs' 'lilypond-doc-de' 'lilypond-doc-es' 'lilypond-doc-fr' 'lilypond-doc-hu' 'lilypond-doc-it' 'lilypond-doc-ja' 'lilypond-doc-nl' 'lilypond-doc-zh' 'lilypond-emmentaler-fonts' 'lilypond-fonts-common' 'limesuite' 'limesuite-devel' 'limesuite-udev' 'linbox-devel' 'link-grammar' 'link-grammar-devel' 'linkchecker' 'linkloop' 'links' 'linphone' 'linphone-cli' 'linssid' 'linux-atm' 'linux-atm-devel' 'linux-ftools' 'linux-libertine-fonts' 'linux32' 'linuxconsoletools' 'linuxptp' 'linuxrc' 'linuxrc-devtools' 'linuxsampler' 'linuxsampler' 'linuxsampler-debuginfo' 'linuxsampler-debugsource' 'linuxsampler-doc' 'lirc-config' 'lirc-core' 'lirc-devel' 'lirc-disable-kernel-rc' 'lirc-drv-ftdi' 'lirc-drv-portaudio' 'lirc-tools-gui' 'listres' 'litetran' 'littleb-devel' 'littleb-examples' 'littlewizard' 'littlewizard-devel' 'littlewizard-examples' 'live-add-yast-repos' 'live-fat-stick' 'live-grub-stick' 'live-kiwi-hook' 'live-langset-data' 'live-net-installer' 'live-usb-gui' 'live555' 'live555-devel' 'liveMedia' 'liveMedia' 'liveMedia-debuginfo' 'liveMedia-debugsource' 'livedtd' 'lklug-fonts' 'lksctp-tools-devel' 'llcbench' 'lld' 'lld6' 'lld7' 'lld8' 'lldb' 'lldb-devel' 'lldb6' 'lldb6-devel' 'lldb7' 'lldb7-devel' 'lldb8' 'lldb8-devel' 'lldpd' 'lldpd-devel' 'llmnrd' 'llvm' 'llvm-LTO-devel' 'llvm-devel' 'llvm-emacs-plugins' 'llvm-gold' 'llvm-vim-plugins' 'llvm6' 'llvm6-LTO-devel' 'llvm6-LTO-devel-32bit' 'llvm6-devel' 'llvm6-devel-32bit' 'llvm6-emacs-plugins' 'llvm6-gold' 'llvm6-opt-viewer' 'llvm6-polly' 'llvm6-polly-devel' 'llvm6-vim-plugins' 'llvm7' 'llvm7-LTO-devel' 'llvm7-LTO-devel-32bit' 'llvm7-devel' 'llvm7-devel-32bit' 'llvm7-emacs-plugins' 'llvm7-gold' 'llvm7-opt-viewer' 'llvm7-polly' 'llvm7-polly-devel' 'llvm7-vim-plugins' 'llvm8' 'llvm8-LTO-devel' 'llvm8-LTO-devel-32bit' 'llvm8-devel' 'llvm8-devel-32bit' 'llvm8-emacs-plugins' 'llvm8-gold' 'llvm8-opt-viewer' 'llvm8-polly' 'llvm8-polly-devel' 'llvm8-vim-plugins' 'lmarbles' 'lmdb' 'lmdb-devel' 'lmms' 'lmms-devel' 'lnav' 'lndir' 'loadlin' 'lockdev-devel' 'lodepng-devel' 'log4cplus-devel' 'log4cpp-devel' 'log4cpp-doc' 'log4j' 'log4j-javadoc' 'log4j-manual' 'log4j-mini' 'log4j-over-slf4j' 'log4net' 'logdigest' 'logstalgia' 'logtail' 'logtop' 'logwarn' 'logwarn-nagios-plugin' 'logwatch' 'lokalize' 'lokalize-lang' 'lollypop' 'lollypop-lang' 'lomoco' 'lomt-blackout-fonts' 'lomt-chunk-fonts' 'lomt-fanwood-fonts' 'lomt-goudybookletter-fonts' 'lomt-junction-fonts' 'lomt-knewave-fonts' 'lomt-leaguegothic-fonts' 'lomt-lindenhill-fonts' 'lomt-orbitron-fonts' 'lomt-ostrichsans-fonts' 'lomt-prociono-fonts' 'lomt-script1-fonts' 'lomt-sniglet-fonts' 'lomt-sortsmillgoudy-fonts' 'lonote' 'lookbook' 'loook' 'lostfeathers' 'loudmouth-devel' 'loudmouth-doc' 'lout' 'love' 'love-0_7_2' 'lpairs' 'lpe' 'lpsolve' 'lpsolve-devel' 'lrslib' 'lrslib-devel' 'lsb' 'lsb-release' 'lsdvd' 'lshw' 'lshw-gui' 'lshw-lang' 'lskat' 'lskat-lang' 'lsp-plugins-doc' 'lswm' 'lsyncd' 'ltrace' 'ltrace-32bit' 'lttng-modules' 'lttng-modules-kmp-default' 'lttng-modules-kmp-pae' 'lttng-tools' 'lttng-tools-devel' 'lttng-ust-devel' 'lttng-ust-doc' 'ltxml' 'ltxml-devel' 'lua-Hamliblua' 'lua-genders' 'lua-libguestfs' 'lua-libprelude' 'lua-lmod' 'lua-lmod-doc' 'lua-macros' 'lua-rrdtool' 'lua51-BitOp' 'lua51-bit32' 'lua51-compat-5.3' 'lua51-devel' 'lua51-doc' 'lua51-lgi' 'lua51-lgi-doc' 'lua51-lpeg' 'lua51-lpeg-doc' 'lua51-luadbi' 'lua51-luaevent' 'lua51-luaexpat' 'lua51-luafilesystem' 'lua51-luajit' 'lua51-luajit-devel' 'lua51-luaposix' 'lua51-luarocks' 'lua51-luasec' 'lua51-luasocket' 'lua51-luasocket-devel' 'lua51-luasql' 'lua51-luaterm' 'lua51-luv' 'lua51-luv-devel' 'lua51-messagepack' 'lua51-mpack' 'lua51-zlib' 'lua53' 'lua53-compat-5.3' 'lua53-devel' 'lua53-doc' 'lua53-ldbus' 'lua53-lgi' 'lua53-lgi-doc' 'lua53-lpeg' 'lua53-lpeg-doc' 'lua53-lua-dbus' 'lua53-lua-mpris' 'lua53-luadbi' 'lua53-luaevent' 'lua53-luaexpat' 'lua53-luafilesystem' 'lua53-luaposix' 'lua53-luarocks' 'lua53-luasec' 'lua53-luasocket' 'lua53-luasocket-devel' 'lua53-luasql' 'lua53-luaterm' 'lua53-luv' 'lua53-luv-devel' 'lua53-messagepack' 'lua53-mpack' 'lua53-zlib' 'luabind-devel' 'luaposix-doc' 'lucene' 'lucene++-devel' 'lucene-analyzers-common' 'lucene-analyzers-smartcn' 'lucene-analyzers-stempel' 'lucene-backward-codecs' 'lucene-classification' 'lucene-codecs' 'lucene-facet' 'lucene-grouping' 'lucene-highlighter' 'lucene-join' 'lucene-memory' 'lucene-misc' 'lucene-queries' 'lucene-queryparser' 'lucene-sandbox' 'lucene-spatial' 'lucene-spatial3d' 'luckybackup' 'lugaru' 'lugaru-data' 'luvcview' 'lv' 'lv2' 'lv2-calf-debuginfo' 'lv2-devel' 'lv2-docs' 'lv2-examples' 'lv2-guitarix' 'lv2-linuxsampler' 'lv2-linuxsampler-debuginfo' 'lv2-swh-plugins' 'lvm2-clvm' 'lvm2-cmirrord' 'lvm2-devel' 'lvm2-lockd' 'lvm2-testsuite' 'lxappearance' 'lxappearance-devel' 'lxappearance-lang' 'lxappearance-obconf' 'lxappearance-obconf-lang' 'lxc' 'lxc-bash-completion' 'lxcc' 'lxcfs' 'lxcfs-hooks-lxc' 'lxd' 'lxd-bash-completion' 'lxde' 'lxde-common' 'lxde-common-branding-openSUSE' 'lxde-common-branding-upstream' 'lxdvdrip' 'lxdvdrip' 'lxdvdrip-debuginfo' 'lxdvdrip-debugsource' 'lximage-qt' 'lximage-qt-lang' 'lxinput' 'lxinput-lang' 'lxlauncher' 'lxmenu-data' 'lxmusic' 'lxmusic-lang' 'lxpanel' 'lxpanel-devel' 'lxpanel-lang' 'lxqt' 'lxqt-about' 'lxqt-about-lang' 'lxqt-build-tools-devel' 'lxqt-config' 'lxqt-config-lang' 'lxqt-globalkeys' 'lxqt-globalkeys-devel' 'lxqt-globalkeys-lang' 'lxqt-notificationd' 'lxqt-notificationd-lang' 'lxqt-openssh-askpass' 'lxqt-openssh-askpass-lang' 'lxqt-panel' 'lxqt-panel-devel' 'lxqt-panel-lang' 'lxqt-policykit' 'lxqt-policykit-lang' 'lxqt-powermanagement' 'lxqt-powermanagement-lang' 'lxqt-qtplugin' 'lxqt-runner' 'lxqt-runner-lang' 'lxqt-session' 'lxqt-session-lang' 'lxqt-sudo' 'lxqt-sudo-lang' 'lxqt-theme-openSUSE-default' 'lxqt-theme-openSUSE-leaper' 'lxqt-theme-openSUSE-light' 'lxqt-themes' 'lxrandr' 'lxrandr-lang' 'lxsession' 'lxshortcut' 'lxtask' 'lxtask-lang' 'lxterminal' 'lxterminal-lang' 'lynis' 'lynx' 'lyx' 'lz4' 'lzfse' 'lzfse-devel' 'lzham_codec-devel' 'lzham_codec-libs' 'lzip' 'lziprecover' 'lzlib-devel' 'lzma-sdk-devel' 'lzo-devel' 'lzo-devel-32bit' 'lzo-devel-static' 'm17n-db' 'm17n-db-lang' 'm17n-lib' 'm17n-lib-devel' 'mISDNuser' 'mISDNuser-devel' 'mac' 'mac-debuginfo' 'mac-robber' 'macchanger' 'machinery' 'machinery-doc' 'macrofusion' 'madplay' 'madplay-lang' 'maelstrom' 'mail_server' 'mailcommon-devel' 'maildir-utils' 'mailgraph' 'mailimporter-devel' 'mailman' 'mailnag' 'mailnag-lang' 'mailprocessing' 'mailsync' 'mailutils' 'mailutils-devel' 'mailutils-imap4d' 'mailutils-mh' 'mailutils-notify' 'mailutils-pop3d' 'mairix' 'makebootfat' 'makedepend' 'makedev' 'makeinfo' 'makeinfo4' 'makemkv' 'makemkv' 'makeself' 'makewhat' 'mako' 'malaga-suomi' 'mame' 'mame-data' 'mame-mess' 'mame-tools' 'man-pages-de' 'man-pages-de' 'man-pages-fr' 'man-pages-fr-extra' 'man-pages-ja' 'man-pages-zh_CN' 'manaplus' 'manaplus-lang' 'manchu-fonts' 'mandvd' 'mandvd' 'mandvd-debuginfo' 'mandvd-debugsource' 'mangler' 'manpageeditor' 'manufacturer-PPDs' 'marble-devel' 'marble-qt' 'marco' 'marco-devel' 'marco-lang' 'marco-themes' 'mariadb-bench' 'mariadb-connector-odbc' 'mariadb-galera' 'mariadb-test' 'mariadb-tools' 'marisa' 'marisa-devel' 'mate' 'mate-applet-appmenu' 'mate-applet-dock' 'mate-applet-indicator' 'mate-applet-indicator-lang' 'mate-applet-sensors' 'mate-applet-sensors-devel' 'mate-applet-sensors-lang' 'mate-applet-softupd' 'mate-applet-softupd-lang' 'mate-applets' 'mate-applets-lang' 'mate-backgrounds' 'mate-backgrounds-lang' 'mate-calc' 'mate-calc-lang' 'mate-common' 'mate-control-center' 'mate-control-center-branding-openSUSE' 'mate-control-center-branding-upstream' 'mate-control-center-devel' 'mate-control-center-lang' 'mate-desktop' 'mate-desktop-devel' 'mate-desktop-gschemas' 'mate-desktop-gschemas-branding-openSUSE' 'mate-desktop-gschemas-branding-upstream' 'mate-desktop-lang' 'mate-dictionary' 'mate-disk-usage-analyzer' 'mate-eiciel' 'mate-eiciel-lang' 'mate-icon-theme' 'mate-icon-theme-faenza' 'mate-icon-theme-faenza-dark' 'mate-icon-theme-faenza-gray' 'mate-media' 'mate-media-lang' 'mate-menu' 'mate-menu-lang' 'mate-menus' 'mate-menus-branding-openSUSE' 'mate-menus-branding-upstream' 'mate-menus-devel' 'mate-menus-lang' 'mate-netbook' 'mate-netbook-lang' 'mate-notification-daemon' 'mate-notification-daemon-lang' 'mate-panel' 'mate-panel-branding-openSUSE' 'mate-panel-branding-upstream' 'mate-panel-devel' 'mate-panel-lang' 'mate-polkit' 'mate-polkit-lang' 'mate-power-manager' 'mate-power-manager-lang' 'mate-screensaver' 'mate-screensaver-devel' 'mate-screensaver-lang' 'mate-screenshot' 'mate-search-tool' 'mate-session-manager' 'mate-session-manager-branding-openSUSE' 'mate-session-manager-branding-upstream' 'mate-session-manager-gschemas' 'mate-session-manager-lang' 'mate-settings-daemon' 'mate-settings-daemon-devel' 'mate-settings-daemon-lang' 'mate-system-log' 'mate-system-monitor' 'mate-system-monitor-lang' 'mate-terminal' 'mate-terminal-lang' 'mate-themes' 'mate-tweak' 'mate-tweak-lang' 'mate-user-guide' 'mate-user-guide-lang' 'mate-user-share' 'mate-user-share-lang' 'mate-utils-common-lang' 'matekbd-common' 'materia-gtk-theme' 'mateweather-common' 'mathgl-cgi' 'mathgl-devel' 'mathgl-devel-static' 'mathgl-doc' 'mathgl-doc-pdf' 'mathgl-doc-ru' 'mathgl-examples' 'mathgl-fonts' 'mathgl-lang' 'mathgl-lua' 'mathgl-tex' 'mathgl-tex-doc' 'mathgl-tools' 'mathjax' 'mathjax-ams-fonts' 'mathjax-caligraphic-fonts' 'mathjax-fraktur-fonts' 'mathjax-main-fonts' 'mathjax-math-fonts' 'mathjax-sansserif-fonts' 'mathjax-script-fonts' 'mathjax-size1-fonts' 'mathjax-size2-fonts' 'mathjax-size3-fonts' 'mathjax-size4-fonts' 'mathjax-typewriter-fonts' 'mathjax-winchrome-fonts' 'mathjax-winie6-fonts' 'mathml-dtd' 'mathomatic' 'mathomatic-devel' 'matio-tools' 'matomo' 'matrix-quaternion' 'matrix-quaternion-lang' 'matthewlib-java' 'matthewlib-java-javadoc' 'maven' 'maven-ant-plugin' 'maven-ant-plugin-javadoc' 'maven-antrun-plugin' 'maven-antrun-plugin-javadoc' 'maven-archiver' 'maven-archiver-javadoc' 'maven-artifact' 'maven-artifact-manager' 'maven-artifact-resolver' 'maven-artifact-resolver-javadoc' 'maven-artifact-transfer' 'maven-artifact-transfer-javadoc' 'maven-assembly-plugin' 'maven-assembly-plugin-javadoc' 'maven-clean-plugin' 'maven-clean-plugin-javadoc' 'maven-common-artifact-filters' 'maven-common-artifact-filters-javadoc' 'maven-compiler-plugin' 'maven-compiler-plugin-bootstrap' 'maven-compiler-plugin-javadoc' 'maven-dependency-analyzer' 'maven-dependency-analyzer-javadoc' 'maven-dependency-plugin' 'maven-dependency-plugin-javadoc' 'maven-dependency-tree' 'maven-dependency-tree-javadoc' 'maven-deploy-plugin' 'maven-deploy-plugin-javadoc' 'maven-doxia-core' 'maven-doxia-javadoc' 'maven-doxia-logging-api' 'maven-doxia-module-apt' 'maven-doxia-module-confluence' 'maven-doxia-module-docbook-simple' 'maven-doxia-module-fml' 'maven-doxia-module-fo' 'maven-doxia-module-latex' 'maven-doxia-module-markdown' 'maven-doxia-module-rtf' 'maven-doxia-module-twiki' 'maven-doxia-module-xdoc' 'maven-doxia-module-xhtml' 'maven-doxia-sink-api' 'maven-doxia-sitetools' 'maven-doxia-sitetools-javadoc' 'maven-doxia-test-docs' 'maven-enforcer' 'maven-enforcer-api' 'maven-enforcer-javadoc' 'maven-enforcer-plugin' 'maven-enforcer-rules' 'maven-failsafe-plugin' 'maven-failsafe-plugin-bootstrap' 'maven-file-management' 'maven-file-management-javadoc' 'maven-filtering' 'maven-filtering-javadoc' 'maven-install-plugin' 'maven-install-plugin-javadoc' 'maven-invoker' 'maven-invoker-javadoc' 'maven-invoker-plugin' 'maven-invoker-plugin-javadoc' 'maven-jar-plugin' 'maven-jar-plugin-bootstrap' 'maven-jar-plugin-javadoc' 'maven-jarsigner-plugin' 'maven-jarsigner-plugin-javadoc' 'maven-javadoc' 'maven-javadoc-plugin' 'maven-javadoc-plugin-bootstrap' 'maven-javadoc-plugin-javadoc' 'maven-jlink-plugin' 'maven-jlink-plugin-javadoc' 'maven-jmod-plugin' 'maven-jmod-plugin-javadoc' 'maven-lib' 'maven-local' 'maven-mapping' 'maven-mapping-javadoc' 'maven-model' 'maven-monitor' 'maven-native' 'maven-native-components' 'maven-native-javadoc' 'maven-osgi' 'maven-osgi-javadoc' 'maven-parent' 'maven-plugin-annotations' 'maven-plugin-build-helper' 'maven-plugin-build-helper-javadoc' 'maven-plugin-bundle' 'maven-plugin-bundle-javadoc' 'maven-plugin-descriptor' 'maven-plugin-plugin' 'maven-plugin-plugin-bootstrap' 'maven-plugin-plugin-javadoc' 'maven-plugin-registry' 'maven-plugin-testing' 'maven-plugin-testing-harness' 'maven-plugin-testing-javadoc' 'maven-plugin-testing-tools' 'maven-plugin-tools-annotations' 'maven-plugin-tools-ant' 'maven-plugin-tools-api' 'maven-plugin-tools-beanshell' 'maven-plugin-tools-generators' 'maven-plugin-tools-java' 'maven-plugin-tools-javadoc' 'maven-plugin-tools-javadocs' 'maven-plugin-tools-model' 'maven-plugins-pom' 'maven-profile' 'maven-project' 'maven-remote-resources-plugin' 'maven-remote-resources-plugin-javadoc' 'maven-reporting-api' 'maven-reporting-api-javadoc' 'maven-reporting-exec' 'maven-reporting-exec-javadoc' 'maven-reporting-impl' 'maven-reporting-impl-javadoc' 'maven-resolver' 'maven-resolver-api' 'maven-resolver-connector-basic' 'maven-resolver-impl' 'maven-resolver-javadoc' 'maven-resolver-spi' 'maven-resolver-test-util' 'maven-resolver-transport-classpath' 'maven-resolver-transport-file' 'maven-resolver-transport-http' 'maven-resolver-transport-wagon' 'maven-resolver-util' 'maven-resources-plugin' 'maven-resources-plugin-bootstrap' 'maven-resources-plugin-javadoc' 'maven-script-ant' 'maven-script-beanshell' 'maven-script-interpreter' 'maven-script-interpreter-javadoc' 'maven-settings' 'maven-shade-plugin' 'maven-shade-plugin-javadoc' 'maven-shared' 'maven-shared-incremental' 'maven-shared-incremental-javadoc' 'maven-shared-io' 'maven-shared-io-javadoc' 'maven-shared-jarsigner' 'maven-shared-jarsigner-javadoc' 'maven-shared-utils' 'maven-shared-utils-javadoc' 'maven-source-plugin' 'maven-source-plugin-javadoc' 'maven-surefire' 'maven-surefire-javadoc' 'maven-surefire-plugin' 'maven-surefire-plugin-bootstrap' 'maven-surefire-plugins-javadoc' 'maven-surefire-provider-junit' 'maven-surefire-provider-junit5' 'maven-surefire-provider-junit5-javadoc' 'maven-surefire-provider-testng' 'maven-surefire-report-parser' 'maven-surefire-report-plugin' 'maven-surefire-report-plugin-bootstrap' 'maven-test-tools' 'maven-toolchain' 'maven-verifier' 'maven-verifier-javadoc' 'maven-wagon-file' 'maven-wagon-ftp' 'maven-wagon-http' 'maven-wagon-http-lightweight' 'maven-wagon-http-shared' 'maven-wagon-javadoc' 'maven-wagon-provider-api' 'maven-war-plugin' 'maven-war-plugin-javadoc' 'maven2-javadoc' 'mawk' 'maxima' 'maxima-exec-clisp' 'maxima-lang-de-utf8' 'maxima-lang-es-utf8' 'maxima-lang-pt-utf8' 'maxima-lang-pt_BR-utf8' 'maxima-xmaxima' 'mayavi' 'mayavi-doc' 'mbedtls-devel' 'mbrola' 'mbrola' 'mbrola-de1' 'mbrola-de1' 'mbrola-de2' 'mbrola-de2' 'mbrola-de3' 'mbrola-de3' 'mbrola-de4' 'mbrola-de4' 'mbrola-de5' 'mbrola-de5' 'mbrola-de6' 'mbrola-de6' 'mbrola-de7' 'mbrola-de7' 'mbrola-de8' 'mbrola-de8' 'mbrola-debuginfo' 'mbrola-debugsource' 'mbuffer' 'mc' 'mc-lang' 'mcabber' 'mcabber-devel' 'mccs' 'mchange-commons' 'mchange-commons-javadoc' 'mcjoin' 'mcomix' 'mcpp' 'mcpp-devel' 'mcs' 'mcs-debuginfo' 'mcstrans' 'mdbtools' 'mdbtools-devel' 'mdds-1_4-devel' 'mdds-1_5-devel' 'mdf2iso' 'mdf2iso' 'mdf2iso-debuginfo' 'mdf2iso-debugsource' 'mdtest' 'meabo' 'meanwhile-devel' 'meanwhile-doc' 'med' 'med' 'med-debuginfo' 'med-debugsource' 'med-devel' 'med-tools' 'med-tools-doc' 'mediainfo' 'mediainfo-gui' 'mediastreamer2' 'mediastreamer2-devel' 'mediatomb' 'mediatomb' 'mediatomb-debuginfo' 'mediatomb-debugsource' 'mediatomb-mysql' 'mediatomb-mysql-debuginfo' 'mediatomb-sqlite' 'mediatomb-sqlite-debuginfo' 'medit' 'medit-lang' 'mednafen' 'mednafen-doc' 'mednafen-lang' 'mednafen-server' 'meep' 'meep-devel' 'megaglest' 'megaglest-data' 'megatools' 'meld' 'meld-lang' 'melody' 'melody-lang' 'melt' 'memcached' 'memcached-devel' 'memkind' 'memkind-devel' 'memory-constraints' 'memphis-devel' 'memprof' 'memprof-lang' 'memtest86+' 'menu-cache' 'menu-cache-devel' 'menulibre' 'mercurial' 'mercurial-lang' 'meslo-lg-fonts' 'meson' 'meson-test' 'meson-tools' 'meson-vim' 'messagelib-devel' 'metacity' 'metacity-devel' 'metacity-lang' 'metacity-theme-adapta' 'metacity-theme-plata' 'metacity-tools' 'metallb-controller' 'metallb-k8s-yaml' 'metallb-speaker' 'metamath' 'metamath-book' 'metamath-data' 'metatheme-adapta-common' 'metatheme-ambiance-common' 'metatheme-ambiant-mate-common' 'metatheme-arc-common' 'metatheme-bluebird-common' 'metatheme-e17gtk-common' 'metatheme-elementary-common' 'metatheme-greybird-common' 'metatheme-greybird-geeko-common' 'metatheme-mint-common' 'metatheme-numix-common' 'metatheme-paper-common' 'metatheme-plata-common' 'metatheme-radiance-common' 'metatheme-radiant-mate-common' 'metatheme-sonar-common' 'metatheme-vertex-common' 'metatheme-yaru-common' 'metatheme-yuyo-common' 'meteo' 'meteo-lang' 'meterbridge' 'metis' 'metis-devel' 'metis-doc' 'metis-examples' 'metis-gnu-hpc' 'metis-gnu-hpc-devel' 'metis-gnu-hpc-doc' 'metis_5_1_0-gnu-hpc' 'metis_5_1_0-gnu-hpc-devel' 'metis_5_1_0-gnu-hpc-doc' 'metis_5_1_0-gnu-hpc-examples' 'metronome' 'metronome-lang' 'mfoc' 'mfsm' 'mftrace' 'mgdiff' 'mgetty' 'mgopen-fonts' 'mgp' 'mhash-devel' 'mhvtl' 'mhvtl-kmp-default' 'mhvtl-kmp-pae' 'miam-player' 'miam-player' 'miam-player-debuginfo' 'miam-player-debugsource' 'miam-player-devel' 'miao-fonts' 'microos-tools' 'microos_apparmor' 'microos_base' 'microos_cloud' 'microos_hardware' 'microos_ima_evm' 'microos_sssd_ldap' 'midori' 'midori-devel' 'midori-lang' 'mii-tool' 'mii-tool' 'mii-tool-debuginfo' 'mii-tool-debugsource' 'mikachan-fonts' 'miller' 'miltertest' 'mimic' 'mimic-devel' 'minder' 'minder-lang' 'mined' 'minetest' 'minetest-data' 'minetest-game' 'minetest-lang' 'minetestserver' 'mingetty' 'mingw32-filesystem' 'mingw32-filesystem' 'mingzat-fonts' 'minicom' 'minicom-lang' 'minidlna' 'minikube' 'minimodem' 'mininet' 'mininews' 'minisat' 'minisat-devel' 'minitube' 'minitube-lang' 'miniupnpc' 'minizip-devel' 'minuet' 'minuet-devel' 'minuet-lang' 'mipv6d' 'miredo-client' 'miredo-common' 'miredo-devel' 'miredo-server' 'mirisdr' 'mirisdr-udev' 'mirovideoconverter' 'mirovideoconverter' 'mirror' 'mirrormagic' 'mixxx-unstable' 'mixxx-unstable' 'mixxx-unstable-debuginfo' 'mixxx-unstable-debugsource' 'mjpg-streamer' 'mk-configure' 'mk-configure-doc' 'mkcomposecache' 'mkdud' 'mkelfImage' 'mkosi' 'mksh' 'mksusecd' 'mktorrent' 'mkvtoolnix' 'mkvtoolnix-gui' 'mlmmj' 'mlocate' 'mlocate-lang' 'mlterm' 'mlterm-canna' 'mlterm-ibus' 'mlterm-m17n' 'mlterm-scim' 'mlterm-uim' 'mlterm-wnn' 'mm-common' 'mm-common-docs' 'mmc-utils' 'mmdblookup' 'mmv' 'moarvm' 'moarvm-devel' 'mobidict' 'mobipocket-devel' 'moc' 'mockito' 'mockito-javadoc' 'modello' 'modello-javadoc' 'modello-maven-plugin' 'modello-maven-plugin-javadoc' 'modem-manager-gui' 'modem-manager-gui-lang' 'modglue-devel' 'modsecurity' 'modsecurity-devel' 'modulemd-validator' 'moe' 'moinmoin-wiki' 'mojave-gtk-theme' 'mojo-parent' 'moka-icon-theme' 'mokutil' 'molsketch' 'molsketch-devel' 'molsketch-doc' 'monapo-fonts' 'moneyplex-daten' 'moneyplex-suse' 'mongodb' 'mongodb-mongoperf' 'mongodb-mongos' 'mongodb-server' 'mongodb-shell' 'mongolian-fonts' 'monitor' 'monitor-lang' 'monitoring-plugins' 'monitoring-plugins-all' 'monitoring-plugins-apcupsd' 'monitoring-plugins-bind' 'monitoring-plugins-bind9' 'monitoring-plugins-bl' 'monitoring-plugins-bonding' 'monitoring-plugins-breeze' 'monitoring-plugins-by_ssh' 'monitoring-plugins-clamav' 'monitoring-plugins-cluster' 'monitoring-plugins-common' 'monitoring-plugins-contentage' 'monitoring-plugins-count_file' 'monitoring-plugins-cups' 'monitoring-plugins-dbi' 'monitoring-plugins-dbi-mysql' 'monitoring-plugins-dbi-pgsql' 'monitoring-plugins-dbi-sqlite3' 'monitoring-plugins-dhcp' 'monitoring-plugins-dig' 'monitoring-plugins-disk' 'monitoring-plugins-disk_smb' 'monitoring-plugins-dns' 'monitoring-plugins-dns.pl' 'monitoring-plugins-drbd9' 'monitoring-plugins-dummy' 'monitoring-plugins-extras' 'monitoring-plugins-fail2ban' 'monitoring-plugins-file_age' 'monitoring-plugins-flexlm' 'monitoring-plugins-fping' 'monitoring-plugins-haproxy' 'monitoring-plugins-hpjd' 'monitoring-plugins-http' 'monitoring-plugins-icmp' 'monitoring-plugins-ide_smart' 'monitoring-plugins-ifoperstatus' 'monitoring-plugins-ifstatus' 'monitoring-plugins-ipmi-sensor1' 'monitoring-plugins-ircd' 'monitoring-plugins-keepalived' 'monitoring-plugins-ldap' 'monitoring-plugins-load' 'monitoring-plugins-log' 'monitoring-plugins-mailq' 'monitoring-plugins-mailstat' 'monitoring-plugins-mem' 'monitoring-plugins-metadata' 'monitoring-plugins-mrtg' 'monitoring-plugins-mrtgtraf' 'monitoring-plugins-mysql' 'monitoring-plugins-mysql_health' 'monitoring-plugins-nagios' 'monitoring-plugins-nis' 'monitoring-plugins-nrpe' 'monitoring-plugins-nt' 'monitoring-plugins-ntp_peer' 'monitoring-plugins-ntp_time' 'monitoring-plugins-nwstat' 'monitoring-plugins-openvpn' 'monitoring-plugins-oracle' 'monitoring-plugins-overcr' 'monitoring-plugins-pgsql' 'monitoring-plugins-ping' 'monitoring-plugins-postgres' 'monitoring-plugins-procs' 'monitoring-plugins-qlogic_sanbox' 'monitoring-plugins-radius' 'monitoring-plugins-real' 'monitoring-plugins-repomd' 'monitoring-plugins-rpc' 'monitoring-plugins-rsync' 'monitoring-plugins-sar-perf' 'monitoring-plugins-sensors' 'monitoring-plugins-sentry3' 'monitoring-plugins-sip' 'monitoring-plugins-smart' 'monitoring-plugins-smtp' 'monitoring-plugins-snmp' 'monitoring-plugins-ssh' 'monitoring-plugins-swap' 'monitoring-plugins-tcp' 'monitoring-plugins-tftp' 'monitoring-plugins-time' 'monitoring-plugins-traffic_limit' 'monitoring-plugins-ups' 'monitoring-plugins-users' 'monitoring-plugins-wave' 'monitoring-plugins-zypper' 'mono-addins' 'mono-addins-devel' 'mono-addins-msbuild' 'mono-basic' 'mono-complete' 'mono-core' 'mono-data' 'mono-data-oracle' 'mono-data-sqlite' 'mono-debugger' 'mono-devel' 'mono-extras' 'mono-libkolabxml1' 'mono-locale-extras' 'mono-mvc' 'mono-nat' 'mono-nat-devel' 'mono-nunit' 'mono-reactive' 'mono-uia' 'mono-uia-devel' 'mono-upnp' 'mono-upnp-devel' 'mono-wcf' 'mono-web' 'mono-winforms' 'mono-winfxcore' 'mono-zeroconf' 'mono-zeroconf-devel' 'mono-zeroconf-doc' 'mono-zeroconf-provider-avahi' 'monodoc-core' 'mopac7' 'moreutils' 'moreutils-parallel' 'mosh' 'mosquitto' 'mosquitto-clients' 'mosquitto-devel' 'most' 'motif' 'motif-devel' 'motif-devel-32bit' 'motion' 'motoya-lcedar-fonts' 'motoya-lmaru-fonts' 'motv' 'mousepad' 'mousepad-lang' 'mousetweaks' 'mousetweaks-lang' 'moviethumbnailer' 'moviethumbnailer' 'movit-devel' 'movit8-data' 'mozaddon-devel' 'mozc' 'mozc-gui-tools' 'mozilla-jss' 'mozilla-jss-javadoc' 'mozilla-nspr-devel' 'mozilla-nss-devel' 'mozilla-nss-sysinit' 'mozilla-nss-sysinit-32bit' 'mozilla-nss-tools' 'mozjs38' 'mozjs38-devel' 'mozjs52' 'mozjs52-devel' 'mozjs60' 'mozjs60-devel' 'mozldap-devel' 'mozldap-libs' 'mozldap-tools' 'mozo' 'mozo-lang' 'mp' 'mp-gtk3' 'mp3_check' 'mp3blaster' 'mp3blaster' 'mp3blaster-debuginfo' 'mp3blaster-debugsource' 'mp3diags' 'mp3diags' 'mp3diags-debuginfo' 'mp3diags-debugsource' 'mp3diags-unstable' 'mp3diags-unstable' 'mp3diags-unstable-debuginfo' 'mp3diags-unstable-debugsource' 'mp3gain' 'mp3info' 'mp3info' 'mp3info-debuginfo' 'mp3info-debugsource' 'mp3splt' 'mp3splt' 'mp3splt-debuginfo' 'mp3splt-debugsource' 'mp3splt-gtk' 'mp3splt-gtk' 'mp3splt-gtk-debuginfo' 'mp3splt-gtk-debugsource' 'mp3val' 'mp3val' 'mp3val-debuginfo' 'mp3val-debugsource' 'mp3wrap' 'mp3wrap' 'mp3wrap-debuginfo' 'mp3wrap-debugsource' 'mp4als' 'mp4als' 'mp4als-debuginfo' 'mpDris2' 'mpDris2-lang' 'mpc-devel' 'mpc-devel-32bit' 'mpc-qt' 'mpclient' 'mpeg2dec' 'mpeg2demux' 'mpeg2demux-debuginfo' 'mpeg4ip' 'mpeg4ip' 'mpeg4ip-debuginfo' 'mpeg4ip-debugsource' 'mpfc' 'mpfc' 'mpfc-debuginfo' 'mpfc-debugsource' 'mpfi-devel' 'mpfr-devel' 'mpfr-devel-32bit' 'mpg123' 'mpg123-devel' 'mpg123-devel-32bit' 'mpg123-jack-32bit' 'mpg123-openal-32bit' 'mpg123-portaudio' 'mpg123-portaudio-32bit' 'mpg123-pulse-32bit' 'mpg123-sdl' 'mpg123-sdl-32bit' 'mpgtx' 'mpgtx' 'mpi-selector' 'mpiP-gnu-mpich-hpc' 'mpiP-gnu-mpich-hpc-doc' 'mpiP-gnu-mvapich2-hpc' 'mpiP-gnu-mvapich2-hpc-doc' 'mpiP-gnu-openmpi1-hpc' 'mpiP-gnu-openmpi1-hpc-doc' 'mpiP-gnu-openmpi2-hpc' 'mpiP-gnu-openmpi2-hpc-doc' 'mpiP-gnu-openmpi3-hpc' 'mpiP-gnu-openmpi3-hpc-doc' 'mpiP_3_4_1-gnu-mpich-hpc' 'mpiP_3_4_1-gnu-mpich-hpc-devel-static' 'mpiP_3_4_1-gnu-mpich-hpc-doc' 'mpiP_3_4_1-gnu-mvapich2-hpc' 'mpiP_3_4_1-gnu-mvapich2-hpc-devel-static' 'mpiP_3_4_1-gnu-mvapich2-hpc-doc' 'mpiP_3_4_1-gnu-openmpi1-hpc' 'mpiP_3_4_1-gnu-openmpi1-hpc-devel-static' 'mpiP_3_4_1-gnu-openmpi1-hpc-doc' 'mpiP_3_4_1-gnu-openmpi2-hpc' 'mpiP_3_4_1-gnu-openmpi2-hpc-devel-static' 'mpiP_3_4_1-gnu-openmpi2-hpc-doc' 'mpiP_3_4_1-gnu-openmpi3-hpc' 'mpiP_3_4_1-gnu-openmpi3-hpc-devel-static' 'mpiP_3_4_1-gnu-openmpi3-hpc-doc' 'mpibash' 'mpibash-examples' 'mpich' 'mpich-devel' 'mpich-gnu-hpc' 'mpich-gnu-hpc-devel' 'mpich-gnu-hpc-devel-static' 'mpich-gnu-hpc-macros-devel' 'mpich-ofi' 'mpich-ofi-devel' 'mpich-ofi-gnu-hpc' 'mpich-ofi-gnu-hpc-devel' 'mpich-ofi-gnu-hpc-devel-static' 'mpich-ofi-gnu-hpc-macros-devel' 'mpich-ofi_3_3-gnu-hpc' 'mpich-ofi_3_3-gnu-hpc-devel' 'mpich-ofi_3_3-gnu-hpc-devel-static' 'mpich-ofi_3_3-gnu-hpc-macros-devel' 'mpich_3_3-gnu-hpc' 'mpich_3_3-gnu-hpc-devel' 'mpich_3_3-gnu-hpc-devel-static' 'mpich_3_3-gnu-hpc-macros-devel' 'mpitests' 'mpitests-mpich' 'mpitests-mpich-gnu-hpc' 'mpitests-mpich-ofi' 'mpitests-mpich-ofi-gnu-hpc' 'mpitests-mvapich2' 'mpitests-mvapich2-gnu-hpc' 'mpitests-mvapich2-psm' 'mpitests-mvapich2-psm-gnu-hpc' 'mpitests-mvapich2-psm2' 'mpitests-mvapich2-psm2-gnu-hpc' 'mpitests-openmpi' 'mpitests-openmpi1-gnu-hpc' 'mpitests-openmpi2' 'mpitests-openmpi2-gnu-hpc' 'mpitests-openmpi3' 'mpitests-openmpi3-gnu-hpc' 'mplus-fonts' 'mppenc' 'mppenc' 'mppenc-debuginfo' 'mppenc-debugsource' 'mpt-firmware' 'mpv-devel' 'mr' 'mraa' 'mraa-devel' 'mraa-examples' 'mrboom' 'mrouted' 'mrrescue' 'mrsh' 'mrsh-rsh-compat' 'mrsh-rsh-server-compat' 'mrsh-server' 'ms-sys' 'ms-sys' 'ms-sys-debuginfo' 'ms-sys-debugsource' 'mscgen' 'msgpack-devel' 'msitools' 'msitools-devel' 'msitools-lang' 'msmtp' 'msmtp-doc' 'msmtp-mta' 'mspack-examples' 'msr-tools' 'mstflint' 'msv-demo' 'msv-javadoc' 'msv-manual' 'msv-msv' 'msv-rngconv' 'msv-xmlgen' 'msv-xsdlib' 'mt-st' 'mtd-utils' 'mtdev' 'mtdev-devel' 'mtools-doc' 'mtp-tools' 'mtpaint' 'mtpaint-handbook' 'mtpaint-lang' 'mtpfs' 'mtpfs' 'mtpfs-debuginfo' 'mtpfs-debugsource' 'mtr' 'mtr-gtk' 'mtree' 'mtx' 'mu4e' 'muffin' 'muffin-devel' 'muffin-lang' 'mugshot' 'multimon-ng' 'multipath-tools-devel' 'multitail' 'multus' 'mumble' 'mumble-32bit' 'mumble-server' 'mumps-devel' 'mumps-devel-static' 'mumps-doc' 'mumps-examples' 'mumps-gnu-mpich-hpc-devel' 'mumps-gnu-mpich-hpc-doc' 'mumps-gnu-mpich-hpc-examples' 'mumps-gnu-mvapich2-hpc-devel' 'mumps-gnu-mvapich2-hpc-doc' 'mumps-gnu-mvapich2-hpc-examples' 'mumps-gnu-openmpi1-hpc-devel' 'mumps-gnu-openmpi1-hpc-doc' 'mumps-gnu-openmpi1-hpc-examples' 'mumps-gnu-openmpi2-hpc-devel' 'mumps-gnu-openmpi2-hpc-doc' 'mumps-gnu-openmpi2-hpc-examples' 'mumps-gnu-openmpi3-hpc-devel' 'mumps-gnu-openmpi3-hpc-doc' 'mumps-gnu-openmpi3-hpc-examples' 'mumps-mvapich2-5-compat' 'mumps-mvapich2-devel' 'mumps-mvapich2-devel-static' 'mumps-mvapich2-devel-static-compat' 'mumps-mvapich2-examples' 'mumps-openmpi-5-compat' 'mumps-openmpi-devel' 'mumps-openmpi-devel-static' 'mumps-openmpi-devel-static-compat' 'mumps-openmpi-examples' 'mumps-openmpi2-5-compat' 'mumps-openmpi2-devel' 'mumps-openmpi2-devel-static' 'mumps-openmpi2-devel-static-compat' 'mumps-openmpi2-examples' 'mumps-ptscotch-openmpi-5-compat' 'mumps-ptscotch-openmpi-devel' 'mumps-ptscotch-openmpi-devel-static' 'mumps-ptscotch-openmpi-devel-static-compat' 'mumps-ptscotch-openmpi-examples' 'mumps-ptscotch-openmpi2-5-compat' 'mumps-ptscotch-openmpi2-devel' 'mumps-ptscotch-openmpi2-devel-static' 'mumps-ptscotch-openmpi2-devel-static-compat' 'mumps-ptscotch-openmpi2-examples' 'mumps-scotch-devel' 'mumps-scotch-devel-static' 'mumps-scotch-examples' 'mumps_5_1_2-gnu-mpich-hpc-devel' 'mumps_5_1_2-gnu-mpich-hpc-devel-static' 'mumps_5_1_2-gnu-mpich-hpc-doc' 'mumps_5_1_2-gnu-mpich-hpc-examples' 'mumps_5_1_2-gnu-mvapich2-hpc-devel' 'mumps_5_1_2-gnu-mvapich2-hpc-devel-static' 'mumps_5_1_2-gnu-mvapich2-hpc-doc' 'mumps_5_1_2-gnu-mvapich2-hpc-examples' 'mumps_5_1_2-gnu-openmpi1-hpc-devel' 'mumps_5_1_2-gnu-openmpi1-hpc-devel-static' 'mumps_5_1_2-gnu-openmpi1-hpc-doc' 'mumps_5_1_2-gnu-openmpi1-hpc-examples' 'mumps_5_1_2-gnu-openmpi2-hpc-devel' 'mumps_5_1_2-gnu-openmpi2-hpc-devel-static' 'mumps_5_1_2-gnu-openmpi2-hpc-doc' 'mumps_5_1_2-gnu-openmpi2-hpc-examples' 'mumps_5_1_2-gnu-openmpi3-hpc-devel' 'mumps_5_1_2-gnu-openmpi3-hpc-devel-static' 'mumps_5_1_2-gnu-openmpi3-hpc-doc' 'mumps_5_1_2-gnu-openmpi3-hpc-examples' 'munge' 'munge-devel' 'munge-devel-32bit' 'munge-maven-plugin' 'munge-maven-plugin-javadoc' 'munin' 'munin-node' 'muparser-devel' 'muparser-devel-32bit' 'mupdf' 'mupdf-devel-static' 'muroar' 'muroar' 'muroar-debuginfo' 'muroar-debugsource' 'muroar-devel' 'muroard' 'muroard' 'muroard-debuginfo' 'muroard-debugsource' 'muroard-devel' 'museic' 'musepack' 'musepack-devel' 'musescore' 'musescore-fonts' 'mutt' 'mutt-doc' 'mutt-lang' 'mutter' 'mutter-data' 'mutter-devel' 'mutter-lang' 'mvapich2' 'mvapich2-devel' 'mvapich2-devel-static' 'mvapich2-doc' 'mvapich2-gnu-hpc' 'mvapich2-gnu-hpc-devel' 'mvapich2-gnu-hpc-doc' 'mvapich2-gnu-hpc-macros-devel' 'mvapich2-psm' 'mvapich2-psm-devel' 'mvapich2-psm-devel-static' 'mvapich2-psm-doc' 'mvapich2-psm-gnu-hpc' 'mvapich2-psm-gnu-hpc-devel' 'mvapich2-psm-gnu-hpc-doc' 'mvapich2-psm-gnu-hpc-macros-devel' 'mvapich2-psm2' 'mvapich2-psm2-devel' 'mvapich2-psm2-devel-static' 'mvapich2-psm2-doc' 'mvapich2-psm2-gnu-hpc' 'mvapich2-psm2-gnu-hpc-devel' 'mvapich2-psm2-gnu-hpc-doc' 'mvapich2-psm2-gnu-hpc-macros-devel' 'mvapich2-psm2_2_3_1-gnu-hpc' 'mvapich2-psm2_2_3_1-gnu-hpc-devel' 'mvapich2-psm2_2_3_1-gnu-hpc-devel-static' 'mvapich2-psm2_2_3_1-gnu-hpc-doc' 'mvapich2-psm2_2_3_1-gnu-hpc-macros-devel' 'mvapich2-psm_2_3_1-gnu-hpc' 'mvapich2-psm_2_3_1-gnu-hpc-devel' 'mvapich2-psm_2_3_1-gnu-hpc-devel-static' 'mvapich2-psm_2_3_1-gnu-hpc-doc' 'mvapich2-psm_2_3_1-gnu-hpc-macros-devel' 'mvapich2_2_3_1-gnu-hpc' 'mvapich2_2_3_1-gnu-hpc-devel' 'mvapich2_2_3_1-gnu-hpc-devel-static' 'mvapich2_2_3_1-gnu-hpc-doc' 'mvapich2_2_3_1-gnu-hpc-macros-devel' 'mwic' 'mx4j' 'mxml' 'mxml-devel' 'mxml-doc' 'mybashburn' 'mybashburn' 'mycroft-core' 'mylvmbackup' 'myman' 'mypaint' 'mypaint-brushes' 'mypaint-brushes-devel' 'mypaint-lang' 'mypy' 'myspell-af_NA' 'myspell-af_ZA' 'myspell-an' 'myspell-an_ES' 'myspell-ar' 'myspell-ar_AE' 'myspell-ar_BH' 'myspell-ar_DZ' 'myspell-ar_EG' 'myspell-ar_IQ' 'myspell-ar_JO' 'myspell-ar_KW' 'myspell-ar_LB' 'myspell-ar_LY' 'myspell-ar_MA' 'myspell-ar_OM' 'myspell-ar_QA' 'myspell-ar_SA' 'myspell-ar_SD' 'myspell-ar_SY' 'myspell-ar_TN' 'myspell-ar_YE' 'myspell-be_BY' 'myspell-bg_BG' 'myspell-bn_BD' 'myspell-bn_IN' 'myspell-bo' 'myspell-bo_CN' 'myspell-bo_IN' 'myspell-br_FR' 'myspell-bs' 'myspell-bs_BA' 'myspell-ca' 'myspell-ca_AD' 'myspell-ca_ES' 'myspell-ca_ES_valencia' 'myspell-ca_FR' 'myspell-ca_IT' 'myspell-cs_CZ' 'myspell-da_DK' 'myspell-de' 'myspell-de_AT' 'myspell-de_CH' 'myspell-de_DE' 'myspell-el_GR' 'myspell-en_AU' 'myspell-en_BS' 'myspell-en_BZ' 'myspell-en_CA' 'myspell-en_GH' 'myspell-en_IE' 'myspell-en_IN' 'myspell-en_JM' 'myspell-en_MW' 'myspell-en_NA' 'myspell-en_NZ' 'myspell-en_PH' 'myspell-en_TT' 'myspell-en_ZA' 'myspell-en_ZW' 'myspell-es' 'myspell-es_AR' 'myspell-es_BO' 'myspell-es_CL' 'myspell-es_CO' 'myspell-es_CR' 'myspell-es_CU' 'myspell-es_DO' 'myspell-es_EC' 'myspell-es_ES' 'myspell-es_GT' 'myspell-es_HN' 'myspell-es_MX' 'myspell-es_NI' 'myspell-es_PA' 'myspell-es_PE' 'myspell-es_PR' 'myspell-es_PY' 'myspell-es_SV' 'myspell-es_UY' 'myspell-es_VE' 'myspell-et_EE' 'myspell-fr_BE' 'myspell-fr_CA' 'myspell-fr_CH' 'myspell-fr_FR' 'myspell-fr_LU' 'myspell-fr_MC' 'myspell-gd_GB' 'myspell-german-old' 'myspell-gl' 'myspell-gl_ES' 'myspell-gu_IN' 'myspell-gug' 'myspell-gug_PY' 'myspell-he_IL' 'myspell-hi_IN' 'myspell-hr_HR' 'myspell-hu_HU' 'myspell-id' 'myspell-id_ID' 'myspell-is' 'myspell-is_IS' 'myspell-it_IT' 'myspell-kmr_Latn' 'myspell-kmr_Latn_SY' 'myspell-kmr_Latn_TR' 'myspell-lightproof-hu_HU' 'myspell-lightproof-pt_BR' 'myspell-lightproof-ru_RU' 'myspell-lo_LA' 'myspell-lt_LT' 'myspell-lv_LV' 'myspell-nb_NO' 'myspell-ne_NP' 'myspell-nl_BE' 'myspell-nl_NL' 'myspell-nn_NO' 'myspell-no' 'myspell-oc_FR' 'myspell-pl_PL' 'myspell-pt_AO' 'myspell-pt_BR' 'myspell-pt_PT' 'myspell-ro' 'myspell-ro_RO' 'myspell-ru_RU' 'myspell-si_LK' 'myspell-sk_SK' 'myspell-sl_SI' 'myspell-sq_AL' 'myspell-sr' 'myspell-sr_CS' 'myspell-sr_Latn_CS' 'myspell-sr_Latn_RS' 'myspell-sr_RS' 'myspell-sv_FI' 'myspell-sv_SE' 'myspell-sw_TZ' 'myspell-te' 'myspell-te_IN' 'myspell-th_TH' 'myspell-tr' 'myspell-tr_TR' 'myspell-uk_UA' 'myspell-vi' 'myspell-vi_VN' 'myspell-zu_ZA' 'mysql-connector-java' 'mysql-workbench' 'mythes-devel' 'mythplugins-mytharchive' 'mythplugins-mytharchive-debuginfo' 'mythplugins-mythbrowser' 'mythplugins-mythbrowser-debuginfo' 'mythplugins-mythgallery' 'mythplugins-mythgallery-debuginfo' 'mythplugins-mythgame' 'mythplugins-mythgame-debuginfo' 'mythplugins-mythmusic' 'mythplugins-mythmusic-debuginfo' 'mythplugins-mythnews' 'mythplugins-mythnews-debuginfo' 'mythplugins-mythweather' 'mythplugins-mythweather-debuginfo' 'mythplugins-mythzoneminder' 'mythplugins-mythzoneminder-debuginfo' 'mythtv' 'mythtv-backend' 'mythtv-backend-debuginfo' 'mythtv-base-themes' 'mythtv-common' 'mythtv-common-debuginfo' 'mythtv-debuginfo' 'mythtv-debugsource' 'mythtv-devel' 'mythtv-docs' 'mythtv-frontend' 'mythtv-frontend-debuginfo' 'mythtv-setup' 'mythtv-setup-debuginfo' 'mythweb' 'mythweb' 'mythweb-0_28' 'mythweb-0_28' 'mytop' 'naev' 'naev-data' 'nagios' 'nagios-contrib' 'nagios-devel' 'nagios-rpm-macros' 'nagios-theme-exfoliation' 'nagios-theme-switcher' 'nagios-www' 'nagios-www-dch' 'nagstamon' 'namdhinggo-fonts' 'nano-icinga2' 'nano-plugin-conky' 'nanomsg-devel' 'nanopb-devel' 'nanopb-source' 'nanoxml' 'nanoxml-javadoc' 'nanoxml-lite' 'nanoxml-manual' 'nanoxml-manual-lite' 'nant' 'nant-devel' 'nanum-fonts' 'nanum-gothic-coding-fonts' 'nasc' 'nasm' 'nast' 'native-maven-plugin' 'nautilus' 'nautilus-deja-dup' 'nautilus-devel' 'nautilus-eiciel' 'nautilus-evince' 'nautilus-extension-actions' 'nautilus-extension-dropbox' 'nautilus-extension-folder-color' 'nautilus-extension-nextcloud' 'nautilus-extension-nitroshare' 'nautilus-extension-seahorse' 'nautilus-extension-terminal' 'nautilus-extension-tilix' 'nautilus-image-converter' 'nautilus-image-converter-lang' 'nautilus-lang' 'nautilus-plugin-easytag' 'nautilus-sendto' 'nautilus-sendto-lang' 'nautilus-share' 'nautilus-share-lang' 'nautilus-terminal' 'nauty' 'nauty-devel' 'nbd' 'ncat' 'ncdc' 'ncdc' 'ncdc-debuginfo' 'ncdc-debugsource' 'ncftp' 'ncmpc' 'ncmpc' 'ncmpc-debuginfo' 'ncmpc-debugsource' 'ncmpc-lang' 'ncmpcpp' 'ncompress' 'ncrack' 'ncrack' 'ncrack-debuginfo' 'ncrack-debugsource' 'ncurses-devel' 'ncurses-devel-32bit' 'ncurses-devel-static' 'ncurses5-devel' 'ncurses5-devel-32bit' 'ncurses5-devel-static' 'ndctl' 'ndesk-dbus' 'ndesk-dbus-glib' 'ndesk-dbus-glib-devel' 'ndpi-tools' 'ndpmon' 'ndppd' 'neard' 'neard-devel' 'neard-test' 'nedit' 'neko' 'neko-devel' 'neko-mysql' 'nemesis' 'nemiver' 'nemiver-devel' 'nemiver-lang' 'nemo' 'nemo-devel' 'nemo-extension-actions' 'nemo-extension-audio-tab' 'nemo-extension-compare' 'nemo-extension-dropbox' 'nemo-extension-emblems' 'nemo-extension-fileroller' 'nemo-extension-gtkhash' 'nemo-extension-image-converter' 'nemo-extension-nextcloud' 'nemo-extension-nitroshare' 'nemo-extension-pastebin' 'nemo-extension-preview' 'nemo-extension-repairer' 'nemo-extension-seahorse' 'nemo-extension-share' 'nemo-extension-terminal' 'nemo-extensions-lang' 'nemo-lang' 'neomutt' 'neomutt-doc' 'neomutt-lang' 'neovim' 'neovim-lang' 'nero-aac' 'nested' 'nestopia' 'net-snmp-devel' 'net-snmp-devel-32bit' 'net-tools-deprecated' 'net6' 'net6-devel' 'net6-lang' 'netbeans-javaparser' 'netbeans-resolver' 'netbeans-svnclientadapter' 'netcdf' 'netcdf-cxx4-gnu-hpc-tools' 'netcdf-cxx4-tools' 'netcdf-cxx4_4_3_0-gnu-hpc-tools' 'netcdf-devel' 'netcdf-devel-data' 'netcdf-devel-static' 'netcdf-fortran-gnu-mpich-hpc' 'netcdf-fortran-gnu-mpich-hpc-devel' 'netcdf-fortran-gnu-openmpi1-hpc' 'netcdf-fortran-gnu-openmpi1-hpc-devel' 'netcdf-fortran-gnu-openmpi2-hpc' 'netcdf-fortran-gnu-openmpi2-hpc-devel' 'netcdf-fortran-gnu-openmpi3-hpc' 'netcdf-fortran-gnu-openmpi3-hpc-devel' 'netcdf-fortran_4_4_4-gnu-mpich-hpc' 'netcdf-fortran_4_4_4-gnu-mpich-hpc-devel' 'netcdf-fortran_4_4_4-gnu-mpich-hpc-devel-static' 'netcdf-fortran_4_4_4-gnu-openmpi1-hpc' 'netcdf-fortran_4_4_4-gnu-openmpi1-hpc-devel' 'netcdf-fortran_4_4_4-gnu-openmpi1-hpc-devel-static' 'netcdf-fortran_4_4_4-gnu-openmpi2-hpc' 'netcdf-fortran_4_4_4-gnu-openmpi2-hpc-devel' 'netcdf-fortran_4_4_4-gnu-openmpi2-hpc-devel-static' 'netcdf-fortran_4_4_4-gnu-openmpi3-hpc' 'netcdf-fortran_4_4_4-gnu-openmpi3-hpc-devel' 'netcdf-fortran_4_4_4-gnu-openmpi3-hpc-devel-static' 'netcdf-gnu-hpc' 'netcdf-gnu-hpc-devel' 'netcdf-gnu-mpich-hpc' 'netcdf-gnu-mpich-hpc-devel' 'netcdf-gnu-mvapich2-hpc' 'netcdf-gnu-mvapich2-hpc-devel' 'netcdf-gnu-openmpi1-hpc' 'netcdf-gnu-openmpi1-hpc-devel' 'netcdf-gnu-openmpi2-hpc' 'netcdf-gnu-openmpi2-hpc-devel' 'netcdf-gnu-openmpi3-hpc' 'netcdf-gnu-openmpi3-hpc-devel' 'netcdf-openmpi' 'netcdf-openmpi-devel' 'netcdf-openmpi-devel-static' 'netcdf-openmpi2' 'netcdf-openmpi2-devel' 'netcdf-openmpi2-devel-static' 'netcdf_4_6_1-gnu-hpc' 'netcdf_4_6_1-gnu-hpc-devel' 'netcdf_4_6_1-gnu-hpc-devel-data' 'netcdf_4_6_1-gnu-hpc-devel-static' 'netcdf_4_6_1-gnu-mpich-hpc' 'netcdf_4_6_1-gnu-mpich-hpc-devel' 'netcdf_4_6_1-gnu-mpich-hpc-devel-static' 'netcdf_4_6_1-gnu-mvapich2-hpc' 'netcdf_4_6_1-gnu-mvapich2-hpc-devel' 'netcdf_4_6_1-gnu-mvapich2-hpc-devel-static' 'netcdf_4_6_1-gnu-openmpi1-hpc' 'netcdf_4_6_1-gnu-openmpi1-hpc-devel' 'netcdf_4_6_1-gnu-openmpi1-hpc-devel-static' 'netcdf_4_6_1-gnu-openmpi2-hpc' 'netcdf_4_6_1-gnu-openmpi2-hpc-devel' 'netcdf_4_6_1-gnu-openmpi2-hpc-devel-static' 'netcdf_4_6_1-gnu-openmpi3-hpc' 'netcdf_4_6_1-gnu-openmpi3-hpc-devel' 'netcdf_4_6_1-gnu-openmpi3-hpc-devel-static' 'netceiver-tools' 'netceiver-tools-debuginfo' 'netcomponents' 'netcomponents-javadoc' 'netconsole-tools' 'netdata' 'netdate' 'netdiscover' 'netgen' 'netgen-devel' 'nethogs' 'netlabel-tools' 'netperf' 'netsniff-ng' 'netsurf-buildsystem' 'nettle' 'network-autoconfig' 'network_admin' 'neverball' 'neverball-doc' 'neverball-mapc' 'neverball-neverputt' 'newlib' 'newsboat' 'newsboat-lang' 'newt' 'newt-devel' 'newt-doc' 'newt-static' 'newtonsoft-json' 'newtonsoft-json-devel' 'nextcloud' 'nextcloud-client' 'nextcloud-client-doc' 'nextcloud-client-dolphin' 'nextcloud-client-lang' 'nf3d' 'nfacct' 'nfc-eventd' 'nfcutils' 'nfoview' 'nfoview-lang' 'nfs-doc' 'nfs-ganesha' 'nfs-ganesha-ceph' 'nfs-ganesha-mount-9P' 'nfs-ganesha-nullfs' 'nfs-ganesha-proxy' 'nfs-ganesha-rados-grace' 'nfs-ganesha-rgw' 'nfs-ganesha-vfs' 'nfs-ganesha-xfs' 'nfs4-acl-tools' 'nfsidmap-devel' 'nfswatch' 'nftables-devel' 'nghttp2' 'nginx' 'nginx-source' 'ngrep' 'ngspice' 'ngspice-doc' 'ngspice-scripts' 'ngspice-xspice-cm' 'ngspice-xspice-cm-devel' 'nh2ps' 'nicotine-plus' 'nicotine-plus' 'nicotine-plus-debuginfo' 'nicotine-plus-debugsource' 'nilfs-utils' 'nilfs-utils-devel' 'nim' 'nimbus-icon-theme' 'nini' 'ninja' 'ninvaders' 'nip2' 'nitrogen' 'nitrogen-lang' 'nitroshare' 'nitroshare-kde' 'nkf' 'nload' 'nlohmann_json-devel' 'nlopt-devel' 'nm-tray' 'nm-tray-lang' 'nma-data' 'nmap' 'nmapsi4' 'nmcli-dmenu' 'nmh' 'nml' 'nmon' 'nnn' 'no-more-secrets' 'nodejs-emojione' 'nodejs-emojione-awesome' 'nodejs-emojione-demo' 'nodejs-emojione-meteor' 'nodejs-emojione-python' 'nodejs-emojione-swift' 'nodejs-packaging' 'nodejs-underscore' 'nodejs10-docs' 'nodejs12' 'nodejs12-devel' 'nodejs12-docs' 'nodejs8' 'nodejs8-devel' 'nodejs8-docs' 'nomacs' 'nomacs-lang' 'non-mixer' 'non-ntk' 'non-ntk-devel' 'non-ntk-fluid' 'non-sequencer' 'non-session-manager' 'non-timeline' 'non_oss' 'noping' 'nordlicht' 'nordlicht' 'nordlicht-debuginfo' 'nordlicht-debugsource' 'nordlicht-devel' 'normaliz' 'normaliz-devel' 'normalize' 'normalize' 'normalize-debuginfo' 'normalize-debugsource' 'noson-app' 'noson-devel' 'notejot' 'notejot-lang' 'notepadqq' 'notes-up' 'notes-up-lang' 'notify-osd' 'notify-sharp' 'notify-sharp-devel' 'notify-sharp3' 'notify-sharp3-devel' 'notmuch' 'notmuch-devel' 'notmuch-doc' 'notmuch-emacs' 'noto-kufiarabic-fonts' 'noto-mono-fonts' 'noto-naskharabic-fonts' 'noto-naskharabic-ui-fonts' 'noto-nastaliqurdu-fonts' 'noto-sans-adlam-fonts' 'noto-sans-adlamunjoined-fonts' 'noto-sans-anatolianhieroglyphs-fonts' 'noto-sans-arabic-fonts' 'noto-sans-arabic-ui-fonts' 'noto-sans-armenian-fonts' 'noto-sans-avestan-fonts' 'noto-sans-balinese-fonts' 'noto-sans-bamum-fonts' 'noto-sans-batak-fonts' 'noto-sans-bengali-fonts' 'noto-sans-bengali-ui-fonts' 'noto-sans-brahmi-fonts' 'noto-sans-buginese-fonts' 'noto-sans-buhid-fonts' 'noto-sans-canadianaboriginal-fonts' 'noto-sans-carian-fonts' 'noto-sans-chakma-fonts' 'noto-sans-cham-fonts' 'noto-sans-cherokee-fonts' 'noto-sans-cjk-fonts' 'noto-sans-coptic-fonts' 'noto-sans-cuneiform-fonts' 'noto-sans-cypriot-fonts' 'noto-sans-deseret-fonts' 'noto-sans-devanagari-fonts' 'noto-sans-devanagari-ui-fonts' 'noto-sans-display-fonts' 'noto-sans-egyptianhieroglyphs-fonts' 'noto-sans-ethiopic-fonts' 'noto-sans-georgian-fonts' 'noto-sans-glagolitic-fonts' 'noto-sans-gothic-fonts' 'noto-sans-gujarati-fonts' 'noto-sans-gujarati-ui-fonts' 'noto-sans-gurmukhi-fonts' 'noto-sans-gurmukhi-ui-fonts' 'noto-sans-hanunoo-fonts' 'noto-sans-hebrew-fonts' 'noto-sans-imperialaramaic-fonts' 'noto-sans-inscriptionalpahlavi-fonts' 'noto-sans-inscriptionalparthian-fonts' 'noto-sans-javanese-fonts' 'noto-sans-jp-black-fonts' 'noto-sans-jp-bold-fonts' 'noto-sans-jp-demilight-fonts' 'noto-sans-jp-fonts' 'noto-sans-jp-fonts-full' 'noto-sans-jp-light-fonts' 'noto-sans-jp-medium-fonts' 'noto-sans-jp-mono-fonts' 'noto-sans-jp-regular-fonts' 'noto-sans-jp-thin-fonts' 'noto-sans-kaithi-fonts' 'noto-sans-kannada-fonts' 'noto-sans-kannada-ui-fonts' 'noto-sans-kayahli-fonts' 'noto-sans-kharoshthi-fonts' 'noto-sans-khmer-fonts' 'noto-sans-khmer-ui-fonts' 'noto-sans-kr-black-fonts' 'noto-sans-kr-bold-fonts' 'noto-sans-kr-demilight-fonts' 'noto-sans-kr-fonts' 'noto-sans-kr-fonts-full' 'noto-sans-kr-light-fonts' 'noto-sans-kr-medium-fonts' 'noto-sans-kr-mono-fonts' 'noto-sans-kr-regular-fonts' 'noto-sans-kr-thin-fonts' 'noto-sans-lao-fonts' 'noto-sans-lao-ui-fonts' 'noto-sans-lepcha-fonts' 'noto-sans-limbu-fonts' 'noto-sans-linearb-fonts' 'noto-sans-lisu-fonts' 'noto-sans-lycian-fonts' 'noto-sans-lydian-fonts' 'noto-sans-malayalam-fonts' 'noto-sans-malayalam-ui-fonts' 'noto-sans-mandaic-fonts' 'noto-sans-meeteimayek-fonts' 'noto-sans-mongolian-fonts' 'noto-sans-mono-fonts' 'noto-sans-myanmar-fonts' 'noto-sans-myanmar-ui-fonts' 'noto-sans-newtailue-fonts' 'noto-sans-nko-fonts' 'noto-sans-ogham-fonts' 'noto-sans-olchiki-fonts' 'noto-sans-olditalic-fonts' 'noto-sans-oldpersian-fonts' 'noto-sans-oldsoutharabian-fonts' 'noto-sans-oldturkic-fonts' 'noto-sans-oriya-fonts' 'noto-sans-oriya-ui-fonts' 'noto-sans-osage-fonts' 'noto-sans-osmanya-fonts' 'noto-sans-phagspa-fonts' 'noto-sans-phoenician-fonts' 'noto-sans-rejang-fonts' 'noto-sans-runic-fonts' 'noto-sans-samaritan-fonts' 'noto-sans-saurashtra-fonts' 'noto-sans-sc-black-fonts' 'noto-sans-sc-bold-fonts' 'noto-sans-sc-demilight-fonts' 'noto-sans-sc-fonts' 'noto-sans-sc-fonts-full' 'noto-sans-sc-light-fonts' 'noto-sans-sc-medium-fonts' 'noto-sans-sc-mono-fonts' 'noto-sans-sc-regular-fonts' 'noto-sans-sc-thin-fonts' 'noto-sans-shavian-fonts' 'noto-sans-sinhala-fonts' 'noto-sans-sinhala-ui-fonts' 'noto-sans-sundanese-fonts' 'noto-sans-sylotinagri-fonts' 'noto-sans-symbols-fonts' 'noto-sans-symbols2-fonts' 'noto-sans-syriaceastern-fonts' 'noto-sans-syriacestrangela-fonts' 'noto-sans-syriacwestern-fonts' 'noto-sans-tagalog-fonts' 'noto-sans-tagbanwa-fonts' 'noto-sans-taile-fonts' 'noto-sans-taitham-fonts' 'noto-sans-taiviet-fonts' 'noto-sans-tamil-fonts' 'noto-sans-tamil-ui-fonts' 'noto-sans-tc-black-fonts' 'noto-sans-tc-bold-fonts' 'noto-sans-tc-demilight-fonts' 'noto-sans-tc-fonts' 'noto-sans-tc-fonts-full' 'noto-sans-tc-light-fonts' 'noto-sans-tc-medium-fonts' 'noto-sans-tc-mono-fonts' 'noto-sans-tc-regular-fonts' 'noto-sans-tc-thin-fonts' 'noto-sans-telugu-fonts' 'noto-sans-telugu-ui-fonts' 'noto-sans-thaana-fonts' 'noto-sans-thai-fonts' 'noto-sans-thai-ui-fonts' 'noto-sans-tibetan-fonts' 'noto-sans-tifinagh-fonts' 'noto-sans-ugaritic-fonts' 'noto-sans-vai-fonts' 'noto-sans-yi-fonts' 'noto-serif-armenian-fonts' 'noto-serif-bengali-fonts' 'noto-serif-devanagari-fonts' 'noto-serif-display-fonts' 'noto-serif-ethiopic-fonts' 'noto-serif-fonts' 'noto-serif-georgian-fonts' 'noto-serif-gujarati-fonts' 'noto-serif-hebrew-fonts' 'noto-serif-jp-black-fonts' 'noto-serif-jp-bold-fonts' 'noto-serif-jp-extralight-fonts' 'noto-serif-jp-fonts' 'noto-serif-jp-fonts-full' 'noto-serif-jp-light-fonts' 'noto-serif-jp-medium-fonts' 'noto-serif-jp-regular-fonts' 'noto-serif-jp-semibold-fonts' 'noto-serif-kannada-fonts' 'noto-serif-khmer-fonts' 'noto-serif-kr-black-fonts' 'noto-serif-kr-bold-fonts' 'noto-serif-kr-extralight-fonts' 'noto-serif-kr-fonts' 'noto-serif-kr-fonts-full' 'noto-serif-kr-light-fonts' 'noto-serif-kr-medium-fonts' 'noto-serif-kr-regular-fonts' 'noto-serif-kr-semibold-fonts' 'noto-serif-lao-fonts' 'noto-serif-malayalam-fonts' 'noto-serif-myanmar-fonts' 'noto-serif-sc-black-fonts' 'noto-serif-sc-bold-fonts' 'noto-serif-sc-extralight-fonts' 'noto-serif-sc-fonts' 'noto-serif-sc-fonts-full' 'noto-serif-sc-light-fonts' 'noto-serif-sc-medium-fonts' 'noto-serif-sc-regular-fonts' 'noto-serif-sc-semibold-fonts' 'noto-serif-sinhala-fonts' 'noto-serif-tamil-fonts' 'noto-serif-tc-black-fonts' 'noto-serif-tc-bold-fonts' 'noto-serif-tc-extralight-fonts' 'noto-serif-tc-fonts' 'noto-serif-tc-fonts-full' 'noto-serif-tc-light-fonts' 'noto-serif-tc-medium-fonts' 'noto-serif-tc-regular-fonts' 'noto-serif-tc-semibold-fonts' 'noto-serif-telugu-fonts' 'noto-serif-thai-fonts' 'novdoc' 'novnc' 'novprog' 'novprog-lang' 'nping' 'npkg' 'npm12' 'npm8' 'npth-devel' 'nqp' 'nrpe' 'nrpe-doc' 'nsd' 'nsjail' 'nsnake' 'nss-myhostname' 'nss-myhostname-32bit' 'nss-mymachines' 'nss-mymachines-32bit' 'nss-pam-ldapd' 'nss-pam-ldapd-32bit' 'nss-resolve' 'nss-shared-helper-devel' 'nss-systemd' 'nss_ldap' 'nss_ldap-32bit' 'nss_wrapper' 'ntfsprogs-extra' 'ntl-devel' 'ntl-doc' 'ntp-doc' 'ntp2chrony' 'ntpsec' 'ntpsec-utils' 'nudoku' 'nudoku-lang' 'nulloy' 'nulloy-gstreamer' 'nulloy-phonon' 'nulloy-taglib' 'nulloy-vlc' 'numatop' 'nunit' 'nunit-devel' 'nuntius' 'nuntius-lang' 'nuosu-fonts' 'nuoveXT2-icon-theme' 'nut' 'nut-cgi' 'nut-devel' 'nut-drivers-net' 'nvdock' 'nvidia-computeG04' 'nvidia-gfxG04-kmp-default' 'nvidia-gfxG04-kmp-pae' 'nvidia-glG04' 'nvidia-texture-tools' 'nvme-cli' 'nvme-cli-regress-script' 'nvmetcli' 'nvptx-tools' 'nxtvepg' 'o2locktop' 'o2scl-devel' 'o2scl-doc' 'oaml-devel' 'oath-toolkit' 'oath-toolkit-xml' 'obantoo' 'obby' 'obby-devel' 'obby-lang' 'obconf' 'obconf-qt' 'obconf-qt-lang' 'obex-data-server' 'obexd' 'obexd-client' 'obexd-server' 'obexfs' 'obexftp' 'obexftp-devel' 'objectweb-anttask' 'objectweb-asm' 'objectweb-asm-javadoc' 'objectweb-pom' 'objenesis' 'objenesis-javadoc' 'obs-service-appimage' 'obs-service-download_files' 'obs-service-download_url' 'obs-service-extract_file' 'obs-service-format_spec_file' 'obs-service-kiwi_label_helper' 'obs-service-kiwi_metainfo_helper' 'obs-service-obs_scm' 'obs-service-obs_scm-common' 'obs-service-product_converter' 'obs-service-recompress' 'obs-service-refresh_patches' 'obs-service-replace_using_package_version' 'obs-service-rust2rpm' 'obs-service-set_version' 'obs-service-snapcraft' 'obs-service-source_validator' 'obs-service-tar' 'obs-service-tar_scm' 'obs-service-verify_file' 'obs-studio' 'obs-studio' 'obs-studio-debuginfo' 'obs-studio-debugsource' 'obs-studio-devel' 'obs-v4l2sink' 'obs-v4l2sink' 'obs-v4l2sink-debuginfo' 'obs-v4l2sink-debugsource' 'ocaml' 'ocaml-benchmark' 'ocaml-benchmark-devel' 'ocaml-brlapi' 'ocaml-calendar' 'ocaml-calendar-devel' 'ocaml-camlp4' 'ocaml-camlp4-devel' 'ocaml-camlp5' 'ocaml-camlp5-devel' 'ocaml-camomile' 'ocaml-camomile-data' 'ocaml-camomile-devel' 'ocaml-cmdliner' 'ocaml-cmdliner-devel' 'ocaml-compiler-libs' 'ocaml-compiler-libs-devel' 'ocaml-cppo' 'ocaml-cppo-devel' 'ocaml-csv' 'ocaml-csv-devel' 'ocaml-cudf' 'ocaml-cudf-devel' 'ocaml-curses' 'ocaml-curses-devel' 'ocaml-dose' 'ocaml-dose-devel' 'ocaml-dune' 'ocaml-easy-format' 'ocaml-easy-format-devel' 'ocaml-emacs' 'ocaml-extlib' 'ocaml-extlib-devel' 'ocaml-facile' 'ocaml-facile-devel' 'ocaml-fileutils' 'ocaml-fileutils-devel' 'ocaml-findlib' 'ocaml-findlib-camlp4' 'ocaml-findlib-devel' 'ocaml-gen' 'ocaml-gen-devel' 'ocaml-gettext' 'ocaml-gettext-camomile' 'ocaml-gettext-camomile-devel' 'ocaml-gettext-devel' 'ocaml-gettext-stub' 'ocaml-gettext-stub-devel' 'ocaml-hivex' 'ocaml-hivex-devel' 'ocaml-jsonm' 'ocaml-jsonm-devel' 'ocaml-lablgl' 'ocaml-lablgl-devel' 'ocaml-lablgtk2' 'ocaml-lablgtk2-devel' 'ocaml-labltk' 'ocaml-labltk-devel' 'ocaml-libguestfs' 'ocaml-libguestfs-devel' 'ocaml-libvirt' 'ocaml-libvirt-devel' 'ocaml-mccs' 'ocaml-mccs-devel' 'ocaml-menhir' 'ocaml-menhir-devel' 'ocaml-migrate-parsetree' 'ocaml-migrate-parsetree-devel' 'ocaml-oasis' 'ocaml-oasis-devel' 'ocaml-obuild' 'ocaml-ocamlbuild' 'ocaml-ocamlbuild-devel' 'ocaml-ocamldoc' 'ocaml-ocamlgraph' 'ocaml-ocamlgraph-devel' 'ocaml-odn' 'ocaml-odn-devel' 'ocaml-ounit' 'ocaml-ounit-devel' 'ocaml-parmap' 'ocaml-parmap-devel' 'ocaml-pcre' 'ocaml-pcre-devel' 'ocaml-ppx_derivers' 'ocaml-ppx_derivers-devel' 'ocaml-ppx_tools_versioned' 'ocaml-ppx_tools_versioned-devel' 'ocaml-ptmap' 'ocaml-ptmap-devel' 'ocaml-qcheck' 'ocaml-qcheck-devel' 'ocaml-qtest' 'ocaml-qtest-devel' 'ocaml-re' 'ocaml-re-devel' 'ocaml-result' 'ocaml-result-devel' 'ocaml-rope' 'ocaml-rope-devel' 'ocaml-rpm-macros' 'ocaml-runtime' 'ocaml-sedlex' 'ocaml-sedlex-devel' 'ocaml-sha' 'ocaml-sha-devel' 'ocaml-source' 'ocaml-type-conv' 'ocaml-type-conv-devel' 'ocaml-uutf' 'ocaml-uutf-devel' 'ocaml-x11' 'ocaml-xml-light' 'ocaml-xml-light-devel' 'ocamlify' 'ocamlmod' 'occt' 'occt-DRAWEXE' 'occt-devel' 'occt-devel-doc' 'oce' 'oce-DRAWEXE' 'oce-devel' 'ocfs2-tools' 'ocfs2-tools-devel' 'ocfs2-tools-devel-static' 'ocfs2-tools-o2cb' 'ocl-icd-devel' 'oclock' 'ocp' 'ocp' 'ocp-debuginfo' 'ocp-debugsource' 'ocr-gnu-hpc' 'ocr-gnu-hpc-devel' 'ocr-gnu-hpc-doc' 'ocr-gnu-hpc-examples' 'ocr-gnu-mpich-hpc' 'ocr-gnu-mpich-hpc-devel' 'ocr-gnu-mpich-hpc-doc' 'ocr-gnu-mpich-hpc-examples' 'ocr-gnu-mvapich2-hpc' 'ocr-gnu-mvapich2-hpc-devel' 'ocr-gnu-mvapich2-hpc-doc' 'ocr-gnu-mvapich2-hpc-examples' 'ocr-gnu-openmpi1-hpc' 'ocr-gnu-openmpi1-hpc-devel' 'ocr-gnu-openmpi1-hpc-doc' 'ocr-gnu-openmpi1-hpc-examples' 'ocr-gnu-openmpi2-hpc' 'ocr-gnu-openmpi2-hpc-devel' 'ocr-gnu-openmpi2-hpc-doc' 'ocr-gnu-openmpi2-hpc-examples' 'ocr-gnu-openmpi3-hpc' 'ocr-gnu-openmpi3-hpc-devel' 'ocr-gnu-openmpi3-hpc-doc' 'ocr-gnu-openmpi3-hpc-examples' 'ocr_1_0_1-gnu-hpc' 'ocr_1_0_1-gnu-hpc-devel' 'ocr_1_0_1-gnu-hpc-doc' 'ocr_1_0_1-gnu-hpc-examples' 'ocr_1_0_1-gnu-mpich-hpc' 'ocr_1_0_1-gnu-mpich-hpc-devel' 'ocr_1_0_1-gnu-mpich-hpc-doc' 'ocr_1_0_1-gnu-mpich-hpc-examples' 'ocr_1_0_1-gnu-mvapich2-hpc' 'ocr_1_0_1-gnu-mvapich2-hpc-devel' 'ocr_1_0_1-gnu-mvapich2-hpc-doc' 'ocr_1_0_1-gnu-mvapich2-hpc-examples' 'ocr_1_0_1-gnu-openmpi1-hpc' 'ocr_1_0_1-gnu-openmpi1-hpc-devel' 'ocr_1_0_1-gnu-openmpi1-hpc-doc' 'ocr_1_0_1-gnu-openmpi1-hpc-examples' 'ocr_1_0_1-gnu-openmpi2-hpc' 'ocr_1_0_1-gnu-openmpi2-hpc-devel' 'ocr_1_0_1-gnu-openmpi2-hpc-doc' 'ocr_1_0_1-gnu-openmpi2-hpc-examples' 'ocr_1_0_1-gnu-openmpi3-hpc' 'ocr_1_0_1-gnu-openmpi3-hpc-devel' 'ocr_1_0_1-gnu-openmpi3-hpc-doc' 'ocr_1_0_1-gnu-openmpi3-hpc-examples' 'ocrad' 'ocrad-devel' 'ocserv' 'octave' 'octave-CSXCAD' 'octave-cli' 'octave-devel' 'octave-doc' 'octave-forge-bim' 'octave-forge-cgi' 'octave-forge-communications' 'octave-forge-control' 'octave-forge-data-smoothing' 'octave-forge-database' 'octave-forge-dataframe' 'octave-forge-divand' 'octave-forge-doctest' 'octave-forge-econometrics' 'octave-forge-financial' 'octave-forge-fits' 'octave-forge-fpl' 'octave-forge-fuzzy-logic-toolkit' 'octave-forge-ga' 'octave-forge-general' 'octave-forge-generate_html' 'octave-forge-geometry' 'octave-forge-gsl' 'octave-forge-image' 'octave-forge-image-acquisition' 'octave-forge-instrument-control' 'octave-forge-interval' 'octave-forge-io' 'octave-forge-level-set' 'octave-forge-linear-algebra' 'octave-forge-lssa' 'octave-forge-ltfat' 'octave-forge-mapping' 'octave-forge-mechanics' 'octave-forge-miscellaneous' 'octave-forge-msh' 'octave-forge-mvn' 'octave-forge-nan' 'octave-forge-ncarray' 'octave-forge-netcdf' 'octave-forge-nurbs' 'octave-forge-octclip' 'octave-forge-optics' 'octave-forge-optim' 'octave-forge-parallel' 'octave-forge-quaternion' 'octave-forge-queueing' 'octave-forge-secs1d' 'octave-forge-secs2d' 'octave-forge-secs3d' 'octave-forge-signal' 'octave-forge-sockets' 'octave-forge-specfun' 'octave-forge-splines' 'octave-forge-statistics' 'octave-forge-stk' 'octave-forge-strings' 'octave-forge-struct' 'octave-forge-symbolic' 'octave-forge-tisean' 'octave-forge-tsa' 'octave-forge-vrml' 'octave-nlopt_optimize' 'octave-openEMS' 'ode-devel' 'odp-devel' 'odp-libs' 'odt2txt' 'odvr' 'odvr' 'odvr-debuginfo' 'odvr-debugsource' 'offlineimap' 'offlineimap-htmldoc' 'ofl' 'ofono' 'ofono-devel' 'ofono-tests' 'oggfwd' 'oggfwd' 'oggfwd-debuginfo' 'oggvideotools' 'oggvideotools' 'oggvideotools-debuginfo' 'oggvideotools-debugsource' 'oggz-tools' 'ogmrip' 'ogmrip' 'ogmrip-ac3' 'ogmrip-ac3' 'ogmrip-ac3-debuginfo' 'ogmrip-ac3-debugsource' 'ogmrip-ac3-lang' 'ogmrip-debuginfo' 'ogmrip-debugsource' 'ogmrip-dirac' 'ogmrip-dirac' 'ogmrip-dirac-debuginfo' 'ogmrip-dirac-debugsource' 'ogmrip-dirac-lang' 'ogmrip-flac' 'ogmrip-flac' 'ogmrip-flac-debuginfo' 'ogmrip-flac-debugsource' 'ogmrip-lang' 'ogmrip-mpeg' 'ogmrip-mpeg' 'ogmrip-mpeg-debuginfo' 'ogmrip-mpeg-debugsource' 'ogmrip-nero-aac' 'ogmrip-nero-aac' 'ogmrip-nero-aac-lang' 'ogmrip-oggz' 'ogmrip-oggz' 'ogmrip-oggz-debuginfo' 'ogmrip-oggz-debugsource' 'ogmrip-oggz-lang' 'ogmrip-profiles' 'ogmrip-profiles' 'ogmrip-video-copy' 'ogmrip-video-copy' 'ogmrip-video-copy-debuginfo' 'ogmrip-video-copy-debugsource' 'ogmtools' 'ogre-demos' 'ogre-demos-devel' 'ogre-docs' 'ogre-tools' 'ohpc' 'oidentd' 'okteta' 'okteta-data' 'okteta-devel' 'okteta-lang' 'okteta-part' 'okteta-part-lang' 'okular-devel' 'okular-spectre' 'omnisharp-server' 'omping' 'onboard' 'onboard-data' 'onboard-lang' 'oneko' 'oniguruma-devel' 'onscripter' 'onscripter' 'onscripter-debuginfo' 'onscripter-debugsource' 'ooRexx' 'ooRexx-devel' 'opa-address-resolution' 'opa-address-resolution-devel' 'opa-basic-tools' 'opa-fastfabric' 'opa-fm' 'opa-fmgui' 'opa-snapconfig' 'opae' 'opae-devel' 'opam' 'opam-file-format-devel' 'opam-installer' 'open-iscsi-devel' 'open-isns' 'open-isns-devel' 'open-lldp' 'open-lldp-devel' 'open-vm-tools' 'open-vm-tools-desktop' 'openCryptoki' 'openCryptoki-32bit' 'openCryptoki-64bit' 'openCryptoki-devel' 'openEMS' 'openEMS-devel' 'openEMS-matlab' 'openQA' 'openQA-bootstrap' 'openQA-client' 'openQA-common' 'openQA-doc' 'openQA-local-db' 'openQA-worker' 'openSUSE-Addon-NonOss' 'openSUSE-Addon-NonOss-release' 'openSUSE-EULAs' 'openSUSE-MicroOS' 'openSUSE-MicroOS-release' 'openSUSE-MicroOS-release-appliance' 'openSUSE-MicroOS-release-appliance-kubic' 'openSUSE-MicroOS-release-dvd' 'openSUSE-MicroOS-release-kubic-dvd' 'openSUSE-appdata-extra' 'openSUSE-appstream-process' 'openSUSE-release-tools' 'openSUSE-release-tools-abichecker' 'openSUSE-release-tools-announcer' 'openSUSE-release-tools-check-source' 'openSUSE-release-tools-devel' 'openSUSE-release-tools-leaper' 'openSUSE-release-tools-maintenance' 'openSUSE-release-tools-metrics' 'openSUSE-release-tools-metrics-access' 'openSUSE-release-tools-obs-operator' 'openSUSE-release-tools-origin-manager' 'openSUSE-release-tools-pkglistgen' 'openSUSE-release-tools-repo-checker' 'openSUSE-release-tools-staging-bot' 'openSUSE-xfce-icon-theme' 'openafs' 'openafs-authlibs' 'openafs-authlibs-devel' 'openafs-client' 'openafs-devel' 'openafs-fuse_client' 'openafs-kernel-source' 'openafs-kmp-default' 'openafs-server' 'openal-soft-devel' 'openal-soft-devel-32bit' 'openal-soft-makehrtf' 'openarena' 'openarena-data' 'openbabel' 'openbabel-devel' 'openblas-devel' 'openblas-devel-headers' 'openblas-pthreads_0_3_7-gnu-hpc-devel-static' 'openblas_0_3_7-gnu-hpc-devel-static' 'openblas_openmp-devel-static' 'openblas_pthreads-devel-static' 'openblas_serial-devel-static' 'openbox' 'openbox-adwaita-ob-theme' 'openbox-devel' 'openbox-gnome' 'openbox-kde' 'openbox-theme-adapta' 'openbox-theme-plata' 'openbsc' 'openbsc-bs11-utils' 'openbsc-bsc-sccplite' 'opencc' 'opencc-data' 'opencc-devel' 'opencensus-proto-source' 'opencl-cpp-headers' 'opencl-headers' 'opencl-headers-1_2' 'openclonk' 'openclonk-data' 'openconnect-devel' 'openconnect-doc' 'opencore-amr' 'opencore-amr-debugsource' 'opencsg-devel' 'opencv' 'opencv-devel' 'opencv-doc' 'opencv3' 'opencv3-devel' 'opencv3-doc' 'opendchub' 'opendkim' 'opendkim-devel' 'opendvdproducer' 'opendvdproducer' 'openexr' 'openexr-devel' 'openexr-doc' 'openfortivpn' 'opengl-games-utils' 'opengost-otf-fonts' 'opengost-ttf-fonts' 'openh264' 'openh264-debugsource' 'openh264-devel' 'openhpi' 'openhpi-clients' 'openhpi-daemon' 'openhpi-devel' 'openjade' 'openjade-devel' 'openjpeg' 'openjpeg-devel' 'openjpeg-devel-32bit' 'openjpeg2' 'openjpeg2-devel' 'openkim-models' 'openldap2' 'openldap2-back-meta' 'openldap2-back-perl' 'openldap2-back-sock' 'openldap2-back-sql' 'openldap2-contrib' 'openldap2-devel' 'openldap2-devel-32bit' 'openldap2-devel-static' 'openldap2-doc' 'openldap2-ppolicy-check-password' 'openlibm-devel' 'openlierox' 'openlmi' 'openlmi-account' 'openlmi-fan' 'openlmi-hardware' 'openlmi-journald' 'openlmi-locale' 'openlmi-logicalfile' 'openlmi-networking' 'openlmi-pcp' 'openlmi-pegasus-compat' 'openlmi-powermanagement' 'openlmi-providers' 'openlmi-providers-devel' 'openlmi-providers-doc' 'openlmi-providers-libs' 'openlmi-python-base' 'openlmi-python-providers' 'openlmi-python-test' 'openlmi-service' 'openlmi-software' 'openlmi-sssd' 'openmarkup' 'openmarkup-javadoc' 'openmarkup-manual' 'openmpi' 'openmpi-config' 'openmpi-devel' 'openmpi-libs' 'openmpi-libs-32bit' 'openmpi-testsuite' 'openmpi1-gnu-hpc' 'openmpi1-gnu-hpc-devel' 'openmpi1-gnu-hpc-devel-static' 'openmpi1-gnu-hpc-macros-devel' 'openmpi2' 'openmpi2-config' 'openmpi2-devel' 'openmpi2-docs' 'openmpi2-gnu-hpc' 'openmpi2-gnu-hpc-devel' 'openmpi2-gnu-hpc-devel-static' 'openmpi2-gnu-hpc-docs' 'openmpi2-gnu-hpc-macros-devel' 'openmpi2-libs' 'openmpi2-libs-32bit' 'openmpi2-testsuite' 'openmpi3' 'openmpi3-config' 'openmpi3-devel' 'openmpi3-docs' 'openmpi3-gnu-hpc' 'openmpi3-gnu-hpc-devel' 'openmpi3-gnu-hpc-devel-static' 'openmpi3-gnu-hpc-docs' 'openmpi3-gnu-hpc-macros-devel' 'openmpi3-libs' 'openmpi3-libs-32bit' 'openmpi3-testsuite' 'openmpi_1_10_7-gnu-hpc' 'openmpi_1_10_7-gnu-hpc-devel' 'openmpi_1_10_7-gnu-hpc-devel-static' 'openmpi_1_10_7-gnu-hpc-macros-devel' 'openmpi_1_10_7-gnu-hpc-testsuite' 'openmpi_2_1_6-gnu-hpc' 'openmpi_2_1_6-gnu-hpc-devel' 'openmpi_2_1_6-gnu-hpc-devel-static' 'openmpi_2_1_6-gnu-hpc-docs' 'openmpi_2_1_6-gnu-hpc-macros-devel' 'openmpi_2_1_6-gnu-hpc-testsuite' 'openmpi_3_1_4-gnu-hpc' 'openmpi_3_1_4-gnu-hpc-devel' 'openmpi_3_1_4-gnu-hpc-devel-static' 'openmpi_3_1_4-gnu-hpc-docs' 'openmpi_3_1_4-gnu-hpc-macros-devel' 'openmpi_3_1_4-gnu-hpc-testsuite' 'openmpt123' 'openmw' 'openobex-apps' 'openobex-devel' 'openocd' 'openocd-data' 'openomf' 'openpgm-devel' 'openrct2' 'openrct2-titlesequences' 'openrdate' 'openresolv' 'opensaml-bin' 'opensaml-schemas' 'opensc' 'opensc-32bit' 'openscad' 'openscap' 'openscap-content' 'openscap-devel' 'openscap-docker' 'openscap-utils' 'openshot-qt' 'openslide-doc' 'openslide-tools' 'openslp-devel' 'openslp-server' 'opensm' 'opensm-devel' 'opensm-devel-32bit' 'opensnc' 'opensnc' 'opensnc-debuginfo' 'opensnc-debugsource' 'opensp' 'opensp-devel' 'opensp-doc' 'openspades' 'openspades' 'openspades-debuginfo' 'openspades-debugsource' 'openspecfun-devel' 'openssh-cavs' 'openssh-fips' 'openssl-1_0_0' 'openssl-1_0_0-cavs' 'openssl-1_0_0-doc' 'openssl-1_1-doc' 'openssl-cbs-devel' 'openssl-engine-libp11' 'openssl-ibmpkcs11' 'openssl_tpm_engine' 'openstack-macros' 'openstack-suse-macros' 'openstack-suse-sudo' 'openstack-tempest' 'openstack-tempest-doc' 'openstack-utils' 'opentest4j' 'opentest4j-javadoc' 'opentoonz' 'opentracing-cpp-devel' 'opentracing-cpp-source' 'openttd' 'openttd-data' 'openttd-dedicated' 'openttd-opengfx' 'openttd-openmsx' 'openttd-opensfx' 'openucx-tools' 'openvpn-auth-pam-plugin' 'openvpn-devel' 'openvpn-down-root-plugin' 'openvswitch' 'openvswitch-devel' 'openvswitch-doc' 'openvswitch-ipsec' 'openvswitch-ovn-central' 'openvswitch-ovn-common' 'openvswitch-ovn-docker' 'openvswitch-ovn-host' 'openvswitch-ovn-vtep' 'openvswitch-pki' 'openvswitch-test' 'openvswitch-vtep' 'openwsman-java' 'openwsman-perl' 'openwsman-ruby' 'openwsman-ruby-docs' 'openwsman-server' 'openwsman-server-plugin-ruby' 'openxcom' 'openxcom-doc' 'opera' 'opera-uget-integrator' 'opi' 'opie' 'opie-32bit' 'oping' 'opmsg' 'oprofile' 'oprofile-32bit' 'oprofile-devel' 'optee-client' 'optee-client-devel' 'optipng' 'opus-tools' 'opusfile-devel' 'orage' 'orage-doc' 'orage-lang' 'orbit2' 'orbit2-32bit' 'orbit2-devel' 'orbit2-doc' 'orc' 'orc-doc' 'orca' 'orca-lang' 'orcania-devel' 'origami-icon-theme' 'orkhon-fonts' 'oro' 'oro-javadoc' 'ortp' 'ortp-devel' 'os-autoinst' 'os-autoinst-distri-opensuse-deps' 'os-autoinst-openvswitch' 'os-service-types-doc' 'osc' 'osc-plugin-collab' 'osc-plugin-cycle' 'osc-plugin-install' 'osc-plugin-origin' 'osc-plugin-staging' 'osc-plugin-vdelreq' 'osclib' 'osdlyrics' 'osdlyrics-lang' 'osgi-annotation' 'osgi-annotation-javadoc' 'osgi-compendium' 'osgi-compendium-javadoc' 'osgi-core' 'osgi-core-javadoc' 'osinfo-db-tools' 'osl.imageio1_9' 'osmo-bsc' 'osmo-bsc-abisip-find' 'osmo-bsc-bs11-utils' 'osmo-bsc-ipaccess-utils' 'osmo-bsc-meas-utils' 'osmo-bts' 'osmo-bts-omldummy' 'osmo-bts-virtual' 'osmo-fl2k' 'osmo-fl2k-devel' 'osmo-fl2k-udev' 'osmo-gbproxy' 'osmo-ggsn' 'osmo-gtphub' 'osmo-hlr' 'osmo-iuh' 'osmo-mgw' 'osmo-msc' 'osmo-pcu' 'osmo-sgsn' 'osmo-sip-connector' 'osmo-stp' 'osmo-trx' 'osmo-trx-lms' 'osmo-trx-uhd' 'osmo-trx-usrp1' 'osmosdr' 'osmosdr-devel' 'osslsigncode' 'ossp-uuid' 'oto' 'otrs' 'otrs-doc' 'otrs-itsm' 'otter-browser' 'ovirt-guest-agent-common' 'ovmf-tools' 'owasp-modsecurity-crs' 'owasp-modsecurity-crs-base_rules' 'owasp-modsecurity-crs-experimental_rules' 'owasp-modsecurity-crs-optional_rules' 'owasp-modsecurity-crs-slr_rules' 'owncloud-client' 'owncloud-client-caja' 'owncloud-client-dolphin' 'owncloud-client-l10n' 'owncloud-client-nautilus' 'owncloud-client-nemo' 'oxygen4-cursors' 'oxygen5' 'oxygen5-cursors' 'oxygen5-decoration' 'oxygen5-icon-theme-scalable' 'oxygen5-lang' 'oxygen5-style' 'oxygen5-style-32bit' 'oyranos' 'oyranos-monitor' 'oyranos-profile-graph' 'oyranos-qcmsevents' 'oyranos-ui-fltk' 'p0f' 'p11-kit-nss-trust' 'p11-kit-nss-trust-32bit' 'p11-kit-server' 'p7zip-doc' 'p8-platform-devel' 'pacemaker' 'pacemaker-cli' 'pacemaker-cts' 'pacemaker-remote' 'packETH' 'package-translations' 'package-update-indicator' 'package-update-indicator-lang' 'packit' 'pacpl' 'pacpl' 'paexec' 'paexec-examples' 'pagein' 'pagemon' 'pagetools' 'paglinawan-quicksand-fonts' 'pagul-fonts' 'pagure' 'pagure-ci' 'pagure-ev' 'pagure-loadjson' 'pagure-logcom' 'pagure-milters' 'pagure-mirror' 'pagure-theme-chameleon' 'pagure-theme-default-openSUSE' 'pagure-theme-default-upstream' 'pagure-theme-pagureio' 'pagure-theme-srcfpo' 'pagure-theme-upstream' 'pagure-webhook' 'palapeli' 'palapeli-data' 'palapeli-devel' 'palapeli-lang' 'palaura' 'palette' 'palette-lang' 'palm-db-tools' 'pam-devel' 'pam-devel-32bit' 'pam-doc' 'pam-python' 'pam_apparmor' 'pam_apparmor-32bit' 'pam_cap' 'pam_cap-32bit' 'pam_ccreds' 'pam_ccreds-32bit' 'pam_cgfs' 'pam_chroot' 'pam_chroot-32bit' 'pam_cifscreds' 'pam_csync' 'pam_csync-32bit' 'pam_dbus' 'pam_krb5' 'pam_krb5-32bit' 'pam_kwallet' 'pam_kwallet-32bit' 'pam_kwallet-common' 'pam_mktemp' 'pam_mktemp-32bit' 'pam_mount' 'pam_mount-32bit' 'pam_oath' 'pam_p11' 'pam_p11-32bit' 'pam_passwdqc' 'pam_passwdqc-32bit' 'pam_pkcs11' 'pam_pkcs11-32bit' 'pam_pkcs11-devel-doc' 'pam_pwquality' 'pam_radius' 'pam_radius-32bit' 'pam_script' 'pam_snapper' 'pam_ssh' 'pam_ssh-32bit' 'pam_u2f' 'pam_userpass' 'pam_userpass-32bit' 'pam_wrapper' 'pam_yubico' 'pamix' 'pamixer' 'pan' 'pan-lang' 'pandoc' 'pandoc-pdf' 'pango-devel' 'pango-devel-32bit' 'pango-tools' 'pangomm-devel' 'pangomm-doc' 'pangomm1_4-devel' 'pangomm1_4-doc' 'pangox-compat' 'pangox-devel' 'panini' 'pantheon-wallpapers-branding-upstream' 'paper-icon-theme' 'paperclips' 'paperclips-javadoc' 'paperkey' 'paperwork' 'papi' 'papi-devel' 'papi-devel-32bit' 'papi-devel-static' 'papi-hpc' 'papi-hpc-devel' 'papi_5_7_0-hpc' 'papi_5_7_0-hpc-devel' 'papi_5_7_0-hpc-devel-static' 'papirus-icon-theme' 'paprefs' 'paprefs-lang' 'paps' 'par' 'par2cmdline' 'parallel-netcdf-devel-data' 'parallel-netcdf-openmpi' 'parallel-netcdf-openmpi-devel' 'parallel-netcdf-openmpi-devel-static' 'paratype-pt-mono-fonts' 'paratype-pt-sans-fonts' 'paratype-pt-serif-fonts' 'paraview' 'paraview-devel' 'paraviewdata' 'parboiled' 'parboiled-javadoc' 'parboiled-scala' 'parcellite' 'pari-devel' 'pari-elldata' 'pari-galdata' 'pari-galpol' 'pari-gp' 'pari-nftables' 'pari-seadata' 'parkverbot' 'parlatype' 'parlatype-lang' 'parley' 'parley-lang' 'parole' 'parole-devel' 'parole-lang' 'parpack-openmpi' 'parpack-openmpi-devel' 'parpack-openmpi-devel-32bit' 'partclone' 'partclone-lang' 'parted-devel' 'parti' 'partitionmanager' 'partitionmanager-lang' 'parzip' 'pass-otp' 'passwdqc' 'passwdqc-devel' 'password-store' 'password-store-dmenu' 'pasystray' 'patch2mail' 'patchelf' 'patchutils' 'patool' 'patool-bash-completion' 'patterns-base-32bit' 'patterns-base-apparmor-32bit' 'patterns-base-base-32bit' 'patterns-base-basic_desktop' 'patterns-base-console' 'patterns-base-documentation' 'patterns-base-enhanced_base-32bit' 'patterns-base-minimal_base-32bit' 'patterns-base-sw_management-32bit' 'patterns-base-transactional_base' 'patterns-base-update_test' 'patterns-base-x11-32bit' 'patterns-base-x11_enhanced-32bit' 'patterns-ceph-containers-ceph_base' 'patterns-containers-container_runtime' 'patterns-containers-container_runtime_kubernetes' 'patterns-containers-kubeadm' 'patterns-containers-kubernetes_utilities' 'patterns-containers-kubic_admin' 'patterns-containers-kubic_loadbalancer' 'patterns-containers-kubic_worker' 'patterns-desktop-imaging' 'patterns-desktop-imaging_opt' 'patterns-desktop-laptop' 'patterns-desktop-technical_writing' 'patterns-devel-C-C++-devel_C_C++' 'patterns-devel-base-devel_basis' 'patterns-devel-base-devel_basis-32bit' 'patterns-devel-base-devel_kernel' 'patterns-devel-base-devel_kernel-32bit' 'patterns-devel-base-devel_rpm_build' 'patterns-devel-base-devel_web' 'patterns-devel-java-devel_java' 'patterns-devel-mono-devel_mono' 'patterns-devel-osc-devel_osc_build' 'patterns-devel-perl-devel_perl' 'patterns-devel-python-devel_python3' 'patterns-devel-ruby-devel_ruby' 'patterns-devel-tcl-devel_tcl' 'patterns-enlightenment-enlightenment' 'patterns-gnome-devel_gnome' 'patterns-gnome-gnome' 'patterns-gnome-gnome_basic' 'patterns-gnome-gnome_basis' 'patterns-gnome-gnome_basis_opt' 'patterns-gnome-gnome_games' 'patterns-gnome-gnome_ide' 'patterns-gnome-gnome_imaging' 'patterns-gnome-gnome_internet' 'patterns-gnome-gnome_multimedia' 'patterns-gnome-gnome_office' 'patterns-gnome-gnome_utilities' 'patterns-gnome-gnome_x11' 'patterns-gnome-gnome_yast' 'patterns-gnome-sw_management_gnome' 'patterns-hpc-compute_node' 'patterns-hpc-development_node' 'patterns-hpc-libraries' 'patterns-hpc-workload_server' 'patterns-kde-devel_kde_frameworks' 'patterns-kde-devel_qt5' 'patterns-kde-kde_edutainment' 'patterns-kde-kde_ide' 'patterns-kde-kde_imaging' 'patterns-kde-kde_telepathy' 'patterns-leechcraft-leechcraft' 'patterns-leechcraft-leechcraft_browser' 'patterns-leechcraft-leechcraft_media' 'patterns-leechcraft-leechcraft_messenger' 'patterns-leechcraft-leechcraft_netutils' 'patterns-leechcraft-leechcraft_office' 'patterns-leechcraft-leechcraft_utilities' 'patterns-lxde-lxde' 'patterns-lxde-lxde_laptop' 'patterns-lxde-lxde_office' 'patterns-lxqt-lxqt' 'patterns-mate-mate' 'patterns-mate-mate_admin' 'patterns-mate-mate_basis' 'patterns-mate-mate_internet' 'patterns-mate-mate_laptop' 'patterns-mate-mate_office' 'patterns-mate-mate_office_opt' 'patterns-mate-mate_utilities' 'patterns-media-rest_cd_core' 'patterns-media-rest_cd_gnome' 'patterns-media-rest_cd_kde' 'patterns-media-rest_cd_x11' 'patterns-media-rest_core_dvd' 'patterns-media-rest_dvd' 'patterns-microos-alt_onlyDVD' 'patterns-microos-apparmor' 'patterns-microos-base' 'patterns-microos-basesystem' 'patterns-microos-cloud' 'patterns-microos-defaults' 'patterns-microos-hardware' 'patterns-microos-ima_evm' 'patterns-microos-onlyDVD' 'patterns-microos-selinux' 'patterns-microos-sssd_ldap' 'patterns-network-network_admin' 'patterns-non_oss' 'patterns-non_oss_opt' 'patterns-rpm-macros' 'patterns-server-dhcp_dns_server' 'patterns-server-dhcp_dns_server-32bit' 'patterns-server-directory_server' 'patterns-server-directory_server-32bit' 'patterns-server-file_server' 'patterns-server-file_server-32bit' 'patterns-server-gateway_server' 'patterns-server-gateway_server-32bit' 'patterns-server-lamp_server' 'patterns-server-lamp_server-32bit' 'patterns-server-mail_server' 'patterns-server-mail_server-32bit' 'patterns-server-printing' 'patterns-server-printing-32bit' 'patterns-server-xen_server' 'patterns-server-xen_tools' 'patterns-xfce-xfce' 'patterns-xfce-xfce_basis' 'patterns-xfce-xfce_laptop' 'patterns-xfce-xfce_office' 'patterns-yast-devel_yast' 'patterns-yast-yast2_install_wf' 'pavucontrol' 'pavucontrol-lang' 'pavucontrol-qt' 'pavucontrol-qt-lang' 'pavumeter' 'pax-utils' 'pbm2l7k' 'pbuilder' 'pbzip2' 'pcapdump' 'pcapinfo' 'pcaudiolib-devel' 'pcb' 'pcb-doc' 'pcc' 'pcfclock' 'pcfclock-kmp-default' 'pcfclock-kmp-pae' 'pciutils-devel' 'pciutils-devel-32bit' 'pcm' 'pcmanfm' 'pcmanfm-devel' 'pcmanfm-lang' 'pcmanfm-qt' 'pcmanfm-qt-lang' 'pcmanx-gtk2' 'pcmciautils' 'pcp' 'pcp-conf' 'pcp-devel' 'pcp-doc' 'pcp-export-pcp2elasticsearch' 'pcp-export-pcp2graphite' 'pcp-export-pcp2influxdb' 'pcp-export-pcp2json' 'pcp-export-pcp2spark' 'pcp-export-pcp2xml' 'pcp-export-pcp2zabbix' 'pcp-export-zabbix-agent' 'pcp-gui' 'pcp-import-collectl2pcp' 'pcp-import-ganglia2pcp' 'pcp-import-iostat2pcp' 'pcp-import-mrtg2pcp' 'pcp-import-sar2pcp' 'pcp-manager' 'pcp-pmda-activemq' 'pcp-pmda-apache' 'pcp-pmda-bash' 'pcp-pmda-bind2' 'pcp-pmda-bonding' 'pcp-pmda-cifs' 'pcp-pmda-cisco' 'pcp-pmda-dbping' 'pcp-pmda-dm' 'pcp-pmda-docker' 'pcp-pmda-ds389' 'pcp-pmda-ds389log' 'pcp-pmda-elasticsearch' 'pcp-pmda-gfs2' 'pcp-pmda-gluster' 'pcp-pmda-gpfs' 'pcp-pmda-gpsd' 'pcp-pmda-haproxy' 'pcp-pmda-infiniband' 'pcp-pmda-json' 'pcp-pmda-lmsensors' 'pcp-pmda-logger' 'pcp-pmda-lustre' 'pcp-pmda-lustrecomm' 'pcp-pmda-mailq' 'pcp-pmda-memcache' 'pcp-pmda-mic' 'pcp-pmda-mounts' 'pcp-pmda-mysql' 'pcp-pmda-named' 'pcp-pmda-netfilter' 'pcp-pmda-news' 'pcp-pmda-nfsclient' 'pcp-pmda-nginx' 'pcp-pmda-nutcracker' 'pcp-pmda-nvidia-gpu' 'pcp-pmda-oracle' 'pcp-pmda-pdns' 'pcp-pmda-perfevent' 'pcp-pmda-postfix' 'pcp-pmda-prometheus' 'pcp-pmda-redis' 'pcp-pmda-roomtemp' 'pcp-pmda-rpm' 'pcp-pmda-rsyslog' 'pcp-pmda-samba' 'pcp-pmda-sendmail' 'pcp-pmda-shping' 'pcp-pmda-slurm' 'pcp-pmda-smart' 'pcp-pmda-snmp' 'pcp-pmda-summary' 'pcp-pmda-systemd' 'pcp-pmda-trace' 'pcp-pmda-unbound' 'pcp-pmda-vmware' 'pcp-pmda-weblog' 'pcp-pmda-zimbra' 'pcp-pmda-zswap' 'pcp-system-tools' 'pcp-testsuite' 'pcp-webapi' 'pcp-zeroconf' 'pcre-devel' 'pcre-devel-static' 'pcre-doc' 'pcre-tools' 'pcre2-devel' 'pcre2-devel-static' 'pcre2-doc' 'pcre2-tools' 'pcsc-acr38' 'pcsc-acr38-devel' 'pcsc-acsccid' 'pcsc-asedriveiiie-serial' 'pcsc-asedriveiiie-usb' 'pcsc-asekey' 'pcsc-ccid' 'pcsc-cyberjack' 'pcsc-eco5000' 'pcsc-gempc' 'pcsc-lite-devel' 'pcsc-reflex60' 'pcsc-tools' 'pcsc-towitoko' 'pcsc-towitoko-devel' 'pcsx2' 'pcsx2' 'pcsx2-32bit' 'pcsx2-32bit-debuginfo' 'pcsx2-debuginfo' 'pcsx2-debugsource' 'pcsxr' 'pcsxr' 'pcsxr-debuginfo' 'pcsxr-debugsource' 'pdf2djvu' 'pdf2djvu-lang' 'pdf2svg' 'pdfgrep' 'pdfmod' 'pdfmod-lang' 'pdftk' 'pdftk' 'pdftk-debuginfo' 'pdftk-debugsource' 'pdftk-qgui' 'pdftk-qgui' 'pdftk-qgui-debuginfo' 'pdi2iso' 'pdi2iso' 'pdi2iso-debuginfo' 'pdns' 'pdns-backend-geoip' 'pdns-backend-godbc' 'pdns-backend-ldap' 'pdns-backend-lua' 'pdns-backend-mydns' 'pdns-backend-mysql' 'pdns-backend-postgresql' 'pdns-backend-remote' 'pdns-backend-sqlite3' 'pdns-common' 'pdns-recursor' 'pdnsd' 'pdnsd-doc' 'pdsh' 'pdsh-dshgroup' 'pdsh-genders' 'pdsh-machines' 'pdsh-netgroup' 'pdsh-slurm' 'peazip' 'peazip-kf5' 'peek' 'peek-lang' 'pegdown' 'pegdown-javadoc' 'pegtl-devel' 'peksystray' 'pen' 'pencil' 'pentaho-libxml-javadoc' 'pentaho-reporting-flow-engine-javadoc' 'pepper' 'percona-toolkit' 'perf' 'performous' 'performous' 'performous-debuginfo' 'performous-debugsource' 'perftest' 'perl-Acme-Damn' 'perl-Algorithm-Annotate' 'perl-Algorithm-C3' 'perl-Algorithm-CheckDigits' 'perl-Algorithm-Combinatorics' 'perl-Algorithm-Diff' 'perl-Alien-SDL' 'perl-Alien-Tidyp' 'perl-Alien-wxWidgets' 'perl-Any-Moose' 'perl-AnyEvent' 'perl-AnyEvent-HTTP' 'perl-AnyEvent-I3' 'perl-Apache-AuthCookie' 'perl-Apache-DBI' 'perl-Apache-Filter' 'perl-Apache-LogFormat-Compiler' 'perl-Apache-Session' 'perl-Apache-SessionX' 'perl-Apache2-AuthCookieDBI' 'perl-App-Ack' 'perl-App-CELL' 'perl-App-CLI' 'perl-App-Cmd' 'perl-App-Dochazka-CLI' 'perl-App-Dochazka-Common' 'perl-App-Dochazka-REST' 'perl-App-Dochazka-WWW' 'perl-App-FatPacker' 'perl-App-MFILE' 'perl-App-MFILE-WWW' 'perl-App-Nopaste' 'perl-App-Rad' 'perl-App-Rad-Plugin-MoreHelp' 'perl-App-cpanminus' 'perl-App-perlbrew' 'perl-AppConfig' 'perl-Archive-Cpio' 'perl-Archive-Extract' 'perl-Archive-Peek' 'perl-Archive-Tar-Wrapper' 'perl-Array-Unique' 'perl-Audio-FLAC-Header' 'perl-Audio-FLAC-Header' 'perl-Audio-Musepack' 'perl-Audio-Musepack' 'perl-Audio-RPLD' 'perl-Audio-Scan' 'perl-Audio-Scan' 'perl-Audio-Scan-debuginfo' 'perl-Audio-Scan-debugsource' 'perl-Audio-WMA' 'perl-Audio-WMA' 'perl-Authen-DecHpwd' 'perl-Authen-Passphrase' 'perl-Authen-SASL-Cyrus' 'perl-B-Debug' 'perl-B-Hooks-EndOfScope' 'perl-B-Hooks-OP-Annotation' 'perl-B-Hooks-OP-Check' 'perl-B-Hooks-OP-PPAddr' 'perl-B-Keywords' 'perl-B-Utils' 'perl-BIND-Conf_Parser' 'perl-BSD-Resource' 'perl-Benchmark-Timer' 'perl-BerkeleyDB' 'perl-Bit-Vector' 'perl-Boost-Geometry-Utils' 'perl-Bootloader-YAML' 'perl-Browser-Open' 'perl-Business-ISBN' 'perl-Business-ISBN-Data' 'perl-Business-ISMN' 'perl-Business-ISSN' 'perl-CBOR-XS' 'perl-CBOR-XS' 'perl-CBOR-XS-debuginfo' 'perl-CBOR-XS-debugsource' 'perl-CDDB' 'perl-CDDB' 'perl-CDDB_get' 'perl-CGI' 'perl-CGI-Ajax' 'perl-CGI-Application' 'perl-CGI-FastTemplate' 'perl-CGI-FormBuilder' 'perl-CGI-Session' 'perl-CGI-Simple' 'perl-CHI' 'perl-CLASS' 'perl-CPAN-DistnameInfo' 'perl-CPAN-Meta-Check' 'perl-CPAN-Meta-Requirements' 'perl-CPAN-Mini' 'perl-CPAN-Perl-Releases' 'perl-CPAN-Uploader' 'perl-CSS-Minifier-XS' 'perl-CSS-Tiny' 'perl-Cache-Cache' 'perl-Cache-LRU' 'perl-Cache-Memcached' 'perl-Cairo' 'perl-Cairo-GObject' 'perl-Calendar-Simple' 'perl-Canary-Stability' 'perl-Capture-Tiny' 'perl-Carp-Always' 'perl-Carp-Assert' 'perl-Carp-Assert-More' 'perl-Carp-Clan' 'perl-Carton' 'perl-Catalyst-Manual' 'perl-Chart' 'perl-Class-Accessor' 'perl-Class-Accessor-Chained' 'perl-Class-Accessor-Grouped' 'perl-Class-Accessor-Lite' 'perl-Class-Adapter' 'perl-Class-Autouse' 'perl-Class-Base' 'perl-Class-C3' 'perl-Class-C3-Adopt-NEXT' 'perl-Class-C3-Componentised' 'perl-Class-C3-XS' 'perl-Class-Container' 'perl-Class-DBI' 'perl-Class-Data-Inheritable' 'perl-Class-Date' 'perl-Class-ErrorHandler' 'perl-Class-Factory-Util' 'perl-Class-ISA' 'perl-Class-Inner' 'perl-Class-Inspector' 'perl-Class-Load' 'perl-Class-Load-XS' 'perl-Class-MakeMethods' 'perl-Class-Method-Modifiers' 'perl-Class-Method-Modifiers-Fast' 'perl-Class-MethodMaker' 'perl-Class-Mix' 'perl-Class-Multimethods' 'perl-Class-ReturnValue' 'perl-Class-Singleton' 'perl-Class-Spiffy' 'perl-Class-Std' 'perl-Class-Tiny' 'perl-Class-Trigger' 'perl-Class-Unload' 'perl-Class-WhiteHole' 'perl-Class-XPath' 'perl-Class-XSAccessor' 'perl-Clone' 'perl-Clone-Choose' 'perl-Clone-PP' 'perl-Code-DRY' 'perl-CommonMark' 'perl-Compress-Bzip2' 'perl-Compress-Raw-Lzma' 'perl-Config-Any' 'perl-Config-Auto' 'perl-Config-AutoConf' 'perl-Config-Crontab' 'perl-Config-General' 'perl-Config-GitLike' 'perl-Config-Grammar' 'perl-Config-INI' 'perl-Config-IniFiles' 'perl-Config-MVP' 'perl-Config-MVP-Reader-INI' 'perl-Config-MySQL' 'perl-Config-Simple' 'perl-Config-Std' 'perl-Config-Tiny' 'perl-Const-Fast' 'perl-Context-Preserve' 'perl-Contextual-Return' 'perl-Convert-ASN1' 'perl-Convert-BER' 'perl-Convert-BinHex' 'perl-Convert-TNEF' 'perl-Convert-UUlib' 'perl-Cookie-Baker' 'perl-Crypt-Blowfish' 'perl-Crypt-CBC' 'perl-Crypt-DES' 'perl-Crypt-DH-GMP' 'perl-Crypt-Eksblowfish' 'perl-Crypt-MySQL' 'perl-Crypt-OpenSSL-Bignum' 'perl-Crypt-OpenSSL-Guess' 'perl-Crypt-OpenSSL-RSA' 'perl-Crypt-OpenSSL-Random' 'perl-Crypt-PasswdMD5' 'perl-Crypt-RC4' 'perl-Crypt-Rijndael' 'perl-Crypt-Rot13' 'perl-Crypt-SSLeay' 'perl-Crypt-SaltedHash' 'perl-Crypt-Twofish' 'perl-Crypt-Twofish' 'perl-Crypt-Twofish-debuginfo' 'perl-Crypt-Twofish-debugsource' 'perl-Crypt-UnixCrypt_XS' 'perl-CryptX' 'perl-Curses' 'perl-CursesWidgets' 'perl-Cwd-Guard' 'perl-Cyrus-IMAP' 'perl-Cyrus-SIEVE-managesieve' 'perl-DBD-CSV' 'perl-DBD-MariaDB' 'perl-DBD-ODBC' 'perl-DBD-Pg' 'perl-DBD-XBase' 'perl-DBD-mysql' 'perl-DBICx-TestDatabase' 'perl-DBIx-Class' 'perl-DBIx-Class-DeploymentHandler' 'perl-DBIx-Class-DynamicDefault' 'perl-DBIx-Class-Fixtures' 'perl-DBIx-Class-InflateColumn-FS' 'perl-DBIx-Class-IntrospectableM2M' 'perl-DBIx-Class-OptimisticLocking' 'perl-DBIx-Class-Schema-Config' 'perl-DBIx-Class-Schema-Loader' 'perl-DBIx-Class-UUIDColumns' 'perl-DBIx-Connector' 'perl-DBIx-ContextualFetch' 'perl-DBIx-Simple' 'perl-DBIx-Transaction' 'perl-DBM-Deep' 'perl-DNS-LDNS' 'perl-Daemon-Generic' 'perl-Data-Clone' 'perl-Data-Compare' 'perl-Data-Dump' 'perl-Data-Dump-Streamer' 'perl-Data-Dumper-Concise' 'perl-Data-Entropy' 'perl-Data-Float' 'perl-Data-Hexify' 'perl-Data-Hierarchy' 'perl-Data-Integer' 'perl-Data-ObjectDriver' 'perl-Data-OptList' 'perl-Data-Page' 'perl-Data-Peek' 'perl-Data-Perl' 'perl-Data-Printer' 'perl-Data-Random' 'perl-Data-Section' 'perl-Data-Section-Simple' 'perl-Data-ShowTable' 'perl-Data-Structure-Util' 'perl-Data-Tumbler' 'perl-Data-Uniqid' 'perl-Data-Util' 'perl-Data-Validate-Domain' 'perl-Data-Validate-IP' 'perl-Data-Visitor' 'perl-Date-Calc' 'perl-Date-Holidays-CZ' 'perl-Date-Manip' 'perl-Date-Simple' 'perl-Date-Tiny' 'perl-DateTime' 'perl-DateTime-Calendar-Julian' 'perl-DateTime-Calendar-Mayan' 'perl-DateTime-Format-Builder' 'perl-DateTime-Format-DateParse' 'perl-DateTime-Format-Flexible' 'perl-DateTime-Format-ISO8601' 'perl-DateTime-Format-Mail' 'perl-DateTime-Format-MySQL' 'perl-DateTime-Format-Natural' 'perl-DateTime-Format-Pg' 'perl-DateTime-Format-SQLite' 'perl-DateTime-Format-Strptime' 'perl-DateTime-Format-W3CDTF' 'perl-DateTime-Locale' 'perl-DateTime-TimeZone' 'perl-DateTime-Tiny' 'perl-Debug-Trace' 'perl-Declare-Constraints-Simple' 'perl-Devel-Caller' 'perl-Devel-CheckBin' 'perl-Devel-CheckCompiler' 'perl-Devel-CheckLib' 'perl-Devel-CheckOS' 'perl-Devel-Confess' 'perl-Devel-CoreStack' 'perl-Devel-Cover' 'perl-Devel-Cover-Report-Codecov' 'perl-Devel-Cycle' 'perl-Devel-Declare' 'perl-Devel-FindPerl' 'perl-Devel-GlobalDestruction' 'perl-Devel-GlobalPhase' 'perl-Devel-Hide' 'perl-Devel-Leak' 'perl-Devel-LexAlias' 'perl-Devel-NYTProf' 'perl-Devel-OverloadInfo' 'perl-Devel-PPPort' 'perl-Devel-PartialDump' 'perl-Devel-PatchPerl' 'perl-Devel-REPL' 'perl-Devel-StackTrace' 'perl-Devel-StackTrace-AsHTML' 'perl-Devel-TakeHashArgs' 'perl-Devel-Trace' 'perl-Device-SerialPort' 'perl-Digest-CRC' 'perl-Digest-JHash' 'perl-Digest-MD5' 'perl-Digest-Perl-MD5' 'perl-Dist-CheckConflicts' 'perl-Dist-Zilla' 'perl-Dumbbench' 'perl-Email-Abstract' 'perl-Email-Address' 'perl-Email-Address-XS' 'perl-Email-Date-Format' 'perl-Email-Find' 'perl-Email-Find' 'perl-Email-MIME' 'perl-Email-MIME-ContentType' 'perl-Email-MIME-Encodings' 'perl-Email-MessageID' 'perl-Email-Reply' 'perl-Email-Send' 'perl-Email-Sender' 'perl-Email-Simple' 'perl-Email-Valid' 'perl-Encode' 'perl-Encode-Detect' 'perl-Encode-EUCJPASCII' 'perl-Encode-HanExtra' 'perl-Encode-JIS2K' 'perl-Eval-Closure' 'perl-Eval-LineNumbers' 'perl-Event' 'perl-Event-ExecFlow' 'perl-Event-ExecFlow' 'perl-Event-RPC' 'perl-Event-RPC' 'perl-Exception-Base' 'perl-Exception-Class' 'perl-Expect' 'perl-Export-Attrs' 'perl-Exporter-Declare' 'perl-Exporter-Lite' 'perl-Exporter-Tidy' 'perl-Exporter-Tiny' 'perl-ExtUtils-CBuilder' 'perl-ExtUtils-CChecker' 'perl-ExtUtils-Config' 'perl-ExtUtils-CppGuess' 'perl-ExtUtils-Depends' 'perl-ExtUtils-F77' 'perl-ExtUtils-Helpers' 'perl-ExtUtils-InstallPaths' 'perl-ExtUtils-LibBuilder' 'perl-ExtUtils-MakeMaker' 'perl-ExtUtils-MakeMaker-CPANfile' 'perl-ExtUtils-Manifest' 'perl-ExtUtils-PkgConfig' 'perl-ExtUtils-Typemaps-Default' 'perl-ExtUtils-XSpp' 'perl-FastCGI' 'perl-Feed-Find' 'perl-Fennec-Lite' 'perl-File-BaseDir' 'perl-File-Basename-Object' 'perl-File-Comments' 'perl-File-Copy-Recursive' 'perl-File-Copy-Recursive-Reduced' 'perl-File-DesktopEntry' 'perl-File-Find-Rule' 'perl-File-Find-Rule-Perl' 'perl-File-Finder' 'perl-File-Flock' 'perl-File-HomeDir' 'perl-File-LibMagic' 'perl-File-MMagic' 'perl-File-MimeInfo' 'perl-File-Mork' 'perl-File-Next' 'perl-File-Path' 'perl-File-Path-Tiny' 'perl-File-ReadBackwards' 'perl-File-Remove' 'perl-File-Rsync' 'perl-File-ShareDir' 'perl-File-ShareDir-Install' 'perl-File-ShareDir-ProjectDistDir' 'perl-File-Slurp' 'perl-File-Slurp-Tiny' 'perl-File-Slurp-Unicode' 'perl-File-Slurper' 'perl-File-Sync' 'perl-File-Tail' 'perl-File-Temp' 'perl-File-Touch' 'perl-File-Type' 'perl-File-Unpack' 'perl-File-Which' 'perl-File-chdir' 'perl-File-pushd' 'perl-FileHandle-Unget' 'perl-Filesys-Df' 'perl-Filesys-Notify-Simple' 'perl-Filesys-Statvfs' 'perl-Finance-Quote' 'perl-FindBin-Real' 'perl-Font-AFM' 'perl-Font-FreeType' 'perl-Font-TTF' 'perl-FreezeThaw' 'perl-Furl' 'perl-Fuse' 'perl-Future' 'perl-GD' 'perl-GD-Barcode' 'perl-GD-Graph3d' 'perl-GDGraph' 'perl-GDTextUtil' 'perl-GStreamer1' 'perl-Geo-Coordinates-UTM' 'perl-Geography-Countries' 'perl-Getopt-ArgvFile' 'perl-Getopt-Long-Descriptive' 'perl-Getopt-Tabular' 'perl-Git-Version-Compare' 'perl-Glib' 'perl-Glib-Object-Introspection' 'perl-Gnome2' 'perl-Gnome2-Canvas' 'perl-Gnome2-VFS' 'perl-Gnome2-Wnck' 'perl-GnuPG-Interface' 'perl-Graph' 'perl-GraphViz' 'perl-Graphics-ColorUtils' 'perl-GraphicsMagick' 'perl-Gravatar-URL' 'perl-Growl-GNTP' 'perl-Gtk2' 'perl-Gtk2-AppIndicator' 'perl-Gtk2-Ex-FormFactory' 'perl-Gtk2-Ex-FormFactory' 'perl-Gtk2-GladeXML' 'perl-Gtk2-GladeXML' 'perl-Gtk2-GladeXML-debuginfo' 'perl-Gtk2-GladeXML-debugsource' 'perl-Gtk2-ImageView' 'perl-Gtk2-Notify' 'perl-Gtk2-Notify' 'perl-Gtk2-Notify-debuginfo' 'perl-Gtk2-Notify-debugsource' 'perl-Gtk2-TrayIcon' 'perl-Gtk2-TrayIcon' 'perl-Gtk2-TrayIcon-debuginfo' 'perl-Gtk2-TrayIcon-debugsource' 'perl-Gtk2-Unique' 'perl-Gtk3' 'perl-Guard' 'perl-HTML-Clean' 'perl-HTML-Element-Extended' 'perl-HTML-Encoding' 'perl-HTML-FillInForm' 'perl-HTML-Form' 'perl-HTML-FormHandler' 'perl-HTML-Format' 'perl-HTML-FormatText-WithLinks' 'perl-HTML-FromText' 'perl-HTML-FromText' 'perl-HTML-RewriteAttributes' 'perl-HTML-Scrubber' 'perl-HTML-SimpleParse' 'perl-HTML-Stream' 'perl-HTML-Strip' 'perl-HTML-Strip' 'perl-HTML-Strip-debuginfo' 'perl-HTML-Strip-debugsource' 'perl-HTML-TableExtract' 'perl-HTML-Template' 'perl-HTML-Tidy' 'perl-HTML-TokeParser-Simple' 'perl-HTML-Tree' 'perl-HTTP-Body' 'perl-HTTP-Cache-Transparent' 'perl-HTTP-Cache-Transparent' 'perl-HTTP-DAV' 'perl-HTTP-Headers-ActionPack' 'perl-HTTP-Headers-Fast' 'perl-HTTP-Lite' 'perl-HTTP-Parser-XS' 'perl-HTTP-Request-AsCGI' 'perl-HTTP-Server-Simple' 'perl-HTTP-Thin' 'perl-HTTP-Tiny' 'perl-HTTPS-Daemon' 'perl-Hamlib' 'perl-Hash-Merge' 'perl-Hash-Merge-Simple' 'perl-Hash-MoreUtils' 'perl-Hash-MultiValue' 'perl-Hash-Util-FieldHash-Compat' 'perl-Hook-LexWrap' 'perl-IO-All' 'perl-IO-Async' 'perl-IO-CaptureOutput' 'perl-IO-Event' 'perl-IO-Handle-Util' 'perl-IO-Interactive' 'perl-IO-Interface' 'perl-IO-Multiplex' 'perl-IO-Pager' 'perl-IO-Pipely' 'perl-IO-SessionData' 'perl-IO-Socket-INET6' 'perl-IO-Socket-Multicast' 'perl-IO-Socket-PortState' 'perl-IO-Socket-Timeout' 'perl-IO-String' 'perl-IO-Stty' 'perl-IO-Tee' 'perl-IO-TieCombine' 'perl-IO-Tty' 'perl-IO-stringy' 'perl-IP-Country' 'perl-IPC-Run' 'perl-IPC-Run3' 'perl-IPC-ShareLite' 'perl-IPC-System-Simple' 'perl-IRI' 'perl-Ima-DBI' 'perl-Image-Info' 'perl-Image-Sane' 'perl-Image-Size' 'perl-Import-Into' 'perl-Importer' 'perl-Inline' 'perl-Inline-C' 'perl-Inline-C' 'perl-Inline-Python' 'perl-Iterator' 'perl-Iterator-Util' 'perl-JSON' 'perl-JSON-Any' 'perl-JSON-DWIW' 'perl-JSON-MaybeXS' 'perl-JSON-RPC' 'perl-JSON-Validator' 'perl-JSON-XS' 'perl-JavaScript-Minifier-XS' 'perl-LWP-Online' 'perl-Lexical-Persistence' 'perl-Lexical-SealRequireHints' 'perl-Lingua-EN-FindNumber' 'perl-Lingua-EN-Inflect' 'perl-Lingua-EN-Inflect-Number' 'perl-Lingua-EN-Inflect-Phrase' 'perl-Lingua-EN-Number-IsOrdinal' 'perl-Lingua-EN-Numbers-Ordinate' 'perl-Lingua-EN-Numbers-Ordinate' 'perl-Lingua-EN-Sentence' 'perl-Lingua-EN-Tagger' 'perl-Lingua-EN-Words2Nums' 'perl-Lingua-PT-Stemmer' 'perl-Lingua-Preferred' 'perl-Lingua-Preferred' 'perl-Lingua-Stem' 'perl-Lingua-Stem-Fr' 'perl-Lingua-Stem-It' 'perl-Lingua-Stem-Ru' 'perl-Lingua-Stem-Snowball' 'perl-Lingua-Stem-Snowball-Da' 'perl-Lingua-Translit' 'perl-Linux-DesktopFiles' 'perl-Linux-Inotify2' 'perl-Linux-Pid' 'perl-List-AllUtils' 'perl-List-MoreUtils' 'perl-List-MoreUtils-XS' 'perl-List-SomeUtils' 'perl-List-SomeUtils-XS' 'perl-List-UtilsBy' 'perl-Locale-Maketext-Gettext' 'perl-Locale-Maketext-Lexicon' 'perl-Locale-Msgfmt' 'perl-Locale-US' 'perl-LockFile-Simple' 'perl-Log-Any' 'perl-Log-Contextual' 'perl-Log-Dispatch' 'perl-Log-Dispatch-Array' 'perl-Log-Dispatch-Config' 'perl-Log-Dispatch-FileRotate' 'perl-Log-Dispatchouli' 'perl-Log-Log4perl' 'perl-Log-Message' 'perl-Log-Message-Simple' 'perl-Log-TraceMessages' 'perl-Log-TraceMessages' 'perl-MCE' 'perl-MIME-Charset' 'perl-MIME-EncWords' 'perl-MIME-Lite' 'perl-MIME-Types' 'perl-MIME-tools' 'perl-MLDBM' 'perl-MLDBM-Sync' 'perl-MP3-Info' 'perl-MP3-Info' 'perl-MP3-Tag' 'perl-MP3-Tag' 'perl-MP4-Info' 'perl-MP4-Info' 'perl-MRO-Compat' 'perl-Mac-PropertyList' 'perl-Mail-DKIM' 'perl-Mail-IMAPClient' 'perl-Mail-Mbox-MessageParser' 'perl-Mail-SPF' 'perl-Mail-SPF-Test' 'perl-Mail-Sender' 'perl-Mail-Sendmail' 'perl-Mail-SpamAssassin' 'perl-Mail-SpamAssassin-Plugin-iXhash2' 'perl-Mason' 'perl-Math-Base-Convert' 'perl-Math-BigInt' 'perl-Math-BigInt-GMP' 'perl-Math-Calc-Units' 'perl-Math-Clipper' 'perl-Math-ConvexHull' 'perl-Math-ConvexHull-MonotoneChain' 'perl-Math-Geometry-Voronoi' 'perl-Math-Libm' 'perl-Math-PlanePath' 'perl-Math-Random-ISAAC' 'perl-Math-Round' 'perl-Memoize-ExpireLRU' 'perl-Meta-Builder' 'perl-Method-Signatures' 'perl-Method-Signatures-Simple' 'perl-Minion' 'perl-Minion-Backend-SQLite' 'perl-Mixin-Linewise' 'perl-Mo' 'perl-Mock-Config' 'perl-Mock-Quick' 'perl-Modern-Perl' 'perl-Module-Build' 'perl-Module-Build-Deprecated' 'perl-Module-Build-Tiny' 'perl-Module-Build-WithXSpp' 'perl-Module-Build-XSUtil' 'perl-Module-CPANfile' 'perl-Module-Depends' 'perl-Module-Find' 'perl-Module-Implementation' 'perl-Module-Info' 'perl-Module-Install' 'perl-Module-Install-AuthorTests' 'perl-Module-Install-ExtraTests' 'perl-Module-Load-Conditional' 'perl-Module-Metadata' 'perl-Module-Path' 'perl-Module-Pluggable' 'perl-Module-Reader' 'perl-Module-Refresh' 'perl-Module-Runtime' 'perl-Module-Runtime-Conflicts' 'perl-Module-ScanDeps' 'perl-Module-Signature' 'perl-Module-Starter' 'perl-Module-Util' 'perl-Mojo-IOLoop-ReadWriteProcess' 'perl-Mojo-Pg' 'perl-Mojo-RabbitMQ-Client' 'perl-Mojo-Redis' 'perl-Mojo-SQLite' 'perl-Mojolicious' 'perl-Mojolicious-Plugin-AssetPack' 'perl-Mojolicious-Plugin-CHI' 'perl-Mojolicious-Plugin-NYTProf' 'perl-Mojolicious-Plugin-RenderFile' 'perl-Mojolicious-Plugin-Status' 'perl-Monitoring-Plugin' 'perl-Moo' 'perl-MooX-HandlesVia' 'perl-MooX-Types-MooseLike' 'perl-MooX-Types-MooseLike-Numeric' 'perl-MooX-late' 'perl-Moose' 'perl-Moose-Autobox' 'perl-MooseX-Aliases' 'perl-MooseX-App-Cmd' 'perl-MooseX-ArrayRef' 'perl-MooseX-Attribute-ENV' 'perl-MooseX-AttributeHelpers' 'perl-MooseX-AuthorizedMethods' 'perl-MooseX-ClassAttribute' 'perl-MooseX-Clone' 'perl-MooseX-ConfigFromFile' 'perl-MooseX-Daemonize' 'perl-MooseX-Declare' 'perl-MooseX-Getopt' 'perl-MooseX-GlobRef' 'perl-MooseX-Has-Options' 'perl-MooseX-HasDefaults' 'perl-MooseX-InsideOut' 'perl-MooseX-Iterator' 'perl-MooseX-LazyLogDispatch' 'perl-MooseX-LazyRequire' 'perl-MooseX-Log-Log4perl' 'perl-MooseX-LogDispatch' 'perl-MooseX-MarkAsMethods' 'perl-MooseX-Meta-TypeConstraint-ForceCoercion' 'perl-MooseX-Method-Signatures' 'perl-MooseX-MultiInitArg' 'perl-MooseX-NonMoose' 'perl-MooseX-Object-Pluggable' 'perl-MooseX-OneArgNew' 'perl-MooseX-POE' 'perl-MooseX-Param' 'perl-MooseX-Params-Validate' 'perl-MooseX-Role-Cmd' 'perl-MooseX-Role-Parameterized' 'perl-MooseX-Role-TraitConstructor' 'perl-MooseX-Role-WithOverloading' 'perl-MooseX-SemiAffordanceAccessor' 'perl-MooseX-SetOnce' 'perl-MooseX-SimpleConfig' 'perl-MooseX-Singleton' 'perl-MooseX-Storage' 'perl-MooseX-StrictConstructor' 'perl-MooseX-Traits' 'perl-MooseX-TransactionalMethods' 'perl-MooseX-Types' 'perl-MooseX-Types-Common' 'perl-MooseX-Types-DateTime' 'perl-MooseX-Types-LoadableClass' 'perl-MooseX-Types-Path-Class' 'perl-MooseX-Types-Path-Tiny' 'perl-MooseX-Types-Perl' 'perl-MooseX-Types-Set-Object' 'perl-MooseX-Types-Stringlike' 'perl-MooseX-Types-Structured' 'perl-MooseX-Workers' 'perl-Mouse' 'perl-MouseX-ConfigFromFile' 'perl-MouseX-SimpleConfig' 'perl-MouseX-Types' 'perl-MouseX-Types-Path-Class' 'perl-Mozilla-LDAP' 'perl-MusicBrainz-DiscID' 'perl-NKF' 'perl-Nagios-Plugin' 'perl-Net-AMQP' 'perl-Net-CIDR-Lite' 'perl-Net-CIDR-Set' 'perl-Net-DBus-GLib' 'perl-Net-DBus-GLib' 'perl-Net-DBus-GLib-debuginfo' 'perl-Net-DBus-GLib-debugsource' 'perl-Net-DNS' 'perl-Net-DNS-Resolver-Mock' 'perl-Net-DNS-Resolver-Programmable' 'perl-Net-Daemon' 'perl-Net-Domain-TLD' 'perl-Net-Dropbox-API' 'perl-Net-HTTPServer' 'perl-Net-IDN-Encode' 'perl-Net-IDN-Nameprep' 'perl-Net-INET6Glue' 'perl-Net-IP' 'perl-Net-IPv4Addr' 'perl-Net-Ident' 'perl-Net-Jabber' 'perl-Net-LibIDN' 'perl-Net-Libproxy' 'perl-Net-Netmask' 'perl-Net-OAuth' 'perl-Net-OpenID-Common' 'perl-Net-OpenID-Consumer' 'perl-Net-OpenStack-Compute' 'perl-Net-Oping' 'perl-Net-Patricia' 'perl-Net-Pcap' 'perl-Net-SNMP' 'perl-Net-SSH2' 'perl-Net-SSLGlue' 'perl-Net-Server' 'perl-Net-TFTP' 'perl-Net-Telnet' 'perl-Net-Twitter' 'perl-Net-UPnP' 'perl-Net-UPnP' 'perl-Net-Whois-RIPE' 'perl-Net-Whois-Raw' 'perl-Net-XMPP' 'perl-NetAddr-IP' 'perl-NetPacket' 'perl-NetxAP' 'perl-Number-Compare' 'perl-Number-Format' 'perl-Number-WithError' 'perl-OLE-Storage_Lite' 'perl-OSSP-uuid' 'perl-Object-Pluggable' 'perl-Object-Signature' 'perl-Ogg-Vorbis-Header' 'perl-Ogg-Vorbis-Header' 'perl-Ogg-Vorbis-Header-PurePerl' 'perl-Ogg-Vorbis-Header-PurePerl' 'perl-Ogg-Vorbis-Header-debuginfo' 'perl-Ogg-Vorbis-Header-debugsource' 'perl-OpenGL' 'perl-PAR' 'perl-PAR-Dist' 'perl-PAR-Packer' 'perl-PCP-LogImport' 'perl-PCP-LogSummary' 'perl-PCP-MMV' 'perl-PCP-PMDA' 'perl-PDA-Pilot' 'perl-PDF-API2' 'perl-PHP-Serialization' 'perl-POE' 'perl-POE-Test-Loops' 'perl-POSIX-strftime-Compiler' 'perl-PPI' 'perl-PPIx-QuoteLike' 'perl-PPIx-Regexp' 'perl-PPIx-Utilities' 'perl-Package-DeprecationManager' 'perl-Package-Generator' 'perl-Package-Stash' 'perl-Package-Stash-XS' 'perl-Package-Variant' 'perl-PadWalker' 'perl-Pango' 'perl-Parallel-ForkManager' 'perl-Parallel-ForkManager' 'perl-Params-Classify' 'perl-Params-Coerce' 'perl-Params-Util' 'perl-Params-Validate' 'perl-Params-ValidationCompiler' 'perl-Parse-CPAN-Packages' 'perl-Parse-Method-Signatures' 'perl-Parse-PMFile' 'perl-Parse-Win32Registry' 'perl-Parse-Yapp' 'perl-PatchReader' 'perl-Path-Class' 'perl-Path-FindDev' 'perl-Path-IsDev' 'perl-Path-Router' 'perl-Path-Tiny' 'perl-PathTools' 'perl-Pegex' 'perl-Pegex' 'perl-Perl-Critic' 'perl-Perl-Critic-Freenode' 'perl-Perl-Critic-Policy-Variables-ProhibitLoopOnHash' 'perl-Perl-Critic-Pulp' 'perl-Perl-PrereqScanner' 'perl-Perl-Tidy' 'perl-Perl-Version' 'perl-Perl6-Junction' 'perl-PerlIO-gzip' 'perl-PerlIO-locale' 'perl-PerlIO-utf8_strict' 'perl-PerlIO-via-Timeout' 'perl-PerlIO-via-dynamic' 'perl-PerlMagick' 'perl-Plack' 'perl-Plack-Middleware-LogErrors' 'perl-Plack-Middleware-Session' 'perl-Pod-Coverage-Moose' 'perl-Pod-Coverage-TrustPod' 'perl-Pod-Eventual' 'perl-Pod-HtmlPsPdf' 'perl-Pod-Markdown' 'perl-Pod-MinimumVersion' 'perl-Pod-POM' 'perl-Pod-Readme' 'perl-Pod-Spell' 'perl-Pod-Usage' 'perl-PostScript-Simple' 'perl-Prima' 'perl-Probe-Perl' 'perl-Proc-Fork' 'perl-Proc-ProcessTable' 'perl-Proc-Simple' 'perl-Protocol-Redis' 'perl-Protocol-Redis-Faster' 'perl-Protocol-WebSocket' 'perl-Quantum-Superpositions' 'perl-RDF-Trine' 'perl-RPC-XML' 'perl-RPM-Header-PurePerl' 'perl-RPM2' 'perl-Readonly' 'perl-Readonly-XS' 'perl-Redis' 'perl-Regexp-Assemble' 'perl-Regexp-Common' 'perl-Regexp-IPv6' 'perl-Regexp-Shellish' 'perl-Return-Value' 'perl-Role-HasMessage' 'perl-Role-Identifiable' 'perl-Role-Tiny' 'perl-Rose-Object' 'perl-Router-Simple' 'perl-SDL' 'perl-SGML-Parser-OpenSP' 'perl-SGMLS' 'perl-SOAP-Lite' 'perl-SQL-Abstract' 'perl-SQL-ReservedWords' 'perl-SQL-SplitStatement' 'perl-SQL-Statement' 'perl-SQL-Tokenizer' 'perl-SQL-Translator' 'perl-SUPER' 'perl-SVG' 'perl-SVN-Simple' 'perl-Safe-Isa' 'perl-Scalar-List-Utils' 'perl-Scalar-String' 'perl-Scope-Guard' 'perl-Scope-Upper' 'perl-Selenium-Remote-Driver' 'perl-Sereal' 'perl-Sereal-Decoder' 'perl-Sereal-Encoder' 'perl-Set-Crontab' 'perl-Set-Object' 'perl-Set-Scalar' 'perl-Smart-Comments' 'perl-Snowball-Norwegian' 'perl-Snowball-Swedish' 'perl-Socket-MsgHdr' 'perl-Socket6' 'perl-Software-License' 'perl-Sort-Key' 'perl-Sort-Naturally' 'perl-Sort-Versions' 'perl-Specio' 'perl-Spiffy' 'perl-Spooky-Patterns-XS' 'perl-Spreadsheet-ParseExcel' 'perl-Spreadsheet-ParseXLSX' 'perl-Spreadsheet-Read' 'perl-Spreadsheet-ReadSXC' 'perl-Spreadsheet-XLSX' 'perl-Starman' 'perl-Statistics-CaseResampling' 'perl-Statistics-Descriptive' 'perl-Stream-Buffered' 'perl-String-Approx' 'perl-String-CRC32' 'perl-String-CamelCase' 'perl-String-Errf' 'perl-String-Escape' 'perl-String-Flogger' 'perl-String-Format' 'perl-String-Formatter' 'perl-String-RewritePrefix' 'perl-String-ShellQuote' 'perl-String-ToIdentifier-EN' 'perl-String-Truncate' 'perl-Struct-Dumb' 'perl-Sub-Delete' 'perl-Sub-Exporter' 'perl-Sub-Exporter-ForMethods' 'perl-Sub-Exporter-GlobExporter' 'perl-Sub-Exporter-Progressive' 'perl-Sub-Identify' 'perl-Sub-Info' 'perl-Sub-Install' 'perl-Sub-Name' 'perl-Sub-Override' 'perl-Sub-Quote' 'perl-Sub-Retry' 'perl-Sub-Spec' 'perl-Sub-Uplevel' 'perl-Switch' 'perl-Symbol-Table' 'perl-Symbol-Util' 'perl-Syntax-Keyword-Junction' 'perl-Syntax-Keyword-Try' 'perl-Sys-CPU' 'perl-Sys-Guestfs' 'perl-Sys-Hostname-Long' 'perl-Sys-LoadAvg' 'perl-Sys-SigAction' 'perl-Sys-Virt' 'perl-Sysadm-Install' 'perl-Task-Kensho-Async' 'perl-Task-Kensho-CLI' 'perl-Task-Kensho-Config' 'perl-Task-Kensho-Dates' 'perl-Task-Kensho-Exceptions' 'perl-Task-Kensho-ModuleDev' 'perl-Task-Kensho-OOP' 'perl-Task-Kensho-Scalability' 'perl-Task-Kensho-Testing' 'perl-Task-Kensho-XML' 'perl-Task-Moose' 'perl-Task-Weaken' 'perl-Template-GD' 'perl-Template-Toolkit' 'perl-Term-Encoding' 'perl-Term-ProgressBar' 'perl-Term-ReadPassword' 'perl-Term-Table' 'perl-Term-UI' 'perl-Test-Assert' 'perl-Test-Base' 'perl-Test-CChecker' 'perl-Test-CPAN-Meta' 'perl-Test-CheckChanges' 'perl-Test-CheckDeps' 'perl-Test-CheckManifest' 'perl-Test-Class' 'perl-Test-Class-Most' 'perl-Test-ClassAPI' 'perl-Test-CleanNamespaces' 'perl-Test-Command' 'perl-Test-Compile' 'perl-Test-Deep' 'perl-Test-Deep-Type' 'perl-Test-Differences' 'perl-Test-Directory' 'perl-Test-EOL' 'perl-Test-Exception' 'perl-Test-Exception-LessClever' 'perl-Test-FailWarnings' 'perl-Test-Fatal' 'perl-Test-File' 'perl-Test-File-Contents' 'perl-Test-File-ShareDir' 'perl-Test-HasVersion' 'perl-Test-Identity' 'perl-Test-InDistDir' 'perl-Test-Inter' 'perl-Test-JSON' 'perl-Test-Kit' 'perl-Test-LWP-UserAgent' 'perl-Test-LeakTrace' 'perl-Test-LectroTest' 'perl-Test-LongString' 'perl-Test-Manifest' 'perl-Test-Memory-Cycle' 'perl-Test-Mock-Guard' 'perl-Test-Mock-LWP' 'perl-Test-Mock-Time' 'perl-Test-MockModule' 'perl-Test-MockObject' 'perl-Test-MockRandom' 'perl-Test-MockTime' 'perl-Test-Mojo-Pg' 'perl-Test-More-UTF8' 'perl-Test-Most' 'perl-Test-Needs' 'perl-Test-NoTabs' 'perl-Test-NoWarnings' 'perl-Test-Number-Delta' 'perl-Test-Object' 'perl-Test-Output' 'perl-Test-Perl-Critic' 'perl-Test-PerlTidy' 'perl-Test-Refcount' 'perl-Test-Requires' 'perl-Test-Requires-Git' 'perl-Test-RequiresInternet' 'perl-Test-Script' 'perl-Test-SharedFork' 'perl-Test-Signature' 'perl-Test-Signature' 'perl-Test-Simple' 'perl-Test-Spec' 'perl-Test-Spelling' 'perl-Test-Strict' 'perl-Test-SubCalls' 'perl-Test-Synopsis' 'perl-Test-TCP' 'perl-Test-Taint' 'perl-Test-TempDir-Tiny' 'perl-Test-Time' 'perl-Test-Trap' 'perl-Test-Unit' 'perl-Test-Unit-Lite' 'perl-Test-UseAllModules' 'perl-Test-WWW-Mechanize' 'perl-Test-WWW-Selenium' 'perl-Test-Warn' 'perl-Test-Warnings' 'perl-Test-Without-Module' 'perl-Test-WriteVariants' 'perl-Test-YAML' 'perl-Test-YAML-Valid' 'perl-Test-utf8' 'perl-Test2-Plugin-NoWarnings' 'perl-Test2-Suite' 'perl-Text-Aligner' 'perl-Text-Autoformat' 'perl-Text-BibTeX' 'perl-Text-BibTeX-devel' 'perl-Text-Brew' 'perl-Text-CSV' 'perl-Text-CSV_XS' 'perl-Text-Capitalize' 'perl-Text-ChaSen' 'perl-Text-CharWidth' 'perl-Text-DelimMatch' 'perl-Text-Diff' 'perl-Text-German' 'perl-Text-Glob' 'perl-Text-Hunspell' 'perl-Text-Iconv' 'perl-Text-Kakasi' 'perl-Text-Markdown' 'perl-Text-Patch' 'perl-Text-RecordParser' 'perl-Text-Reform' 'perl-Text-Roman' 'perl-Text-Soundex' 'perl-Text-SpellChecker' 'perl-Text-Sprintf-Named' 'perl-Text-Table' 'perl-Text-TabularDisplay' 'perl-Text-Template' 'perl-Text-Unidecode' 'perl-Text-WrapI18N' 'perl-Text-Wrapper' 'perl-TheSchwartz' 'perl-Throwable' 'perl-Tie-Cache' 'perl-Tie-Cycle' 'perl-Tie-Hash-DBD' 'perl-Tie-Hash-Method' 'perl-Tie-IxHash' 'perl-Tie-RefHash-Weak' 'perl-Tie-Simple' 'perl-Tie-ToObject' 'perl-Time-Clock' 'perl-Time-Duration' 'perl-Time-Duration-Parse' 'perl-Time-Mock' 'perl-Time-Moment' 'perl-Time-Out' 'perl-Time-Period' 'perl-Time-Tiny' 'perl-Time-modules' 'perl-Tk' 'perl-Tk-Clock' 'perl-Tk-FontDialog' 'perl-Tk-FontDialog' 'perl-Tk-devel' 'perl-Tree-DAG_Node' 'perl-TryCatch' 'perl-Type-Tiny' 'perl-Types-Serialiser' 'perl-UNIVERSAL-can' 'perl-UNIVERSAL-isa' 'perl-UNIVERSAL-moniker' 'perl-UNIVERSAL-require' 'perl-URI-Fetch' 'perl-URI-Find' 'perl-URI-Nested' 'perl-URI-Template' 'perl-URI-db' 'perl-Unicode-Collate' 'perl-Unicode-LineBreak' 'perl-Unicode-Map' 'perl-Unicode-Map8' 'perl-Unicode-Normalize' 'perl-Unicode-String' 'perl-Unicode-Stringprep' 'perl-Unix-Syslog' 'perl-Variable-Magic' 'perl-Verilog-Perl' 'perl-WWW-Form-UrlEncoded' 'perl-WWW-Mechanize' 'perl-WWW-PAUSE-CleanUpHomeDir' 'perl-WWW-Pastebin-PastebinCom-Create' 'perl-WWW-Shorten' 'perl-Want' 'perl-WeakRef' 'perl-Web-MREST' 'perl-Web-MREST-CLI' 'perl-Web-Machine' 'perl-WebService-MusicBrainz' 'perl-Win-Hivex' 'perl-Wx' 'perl-X11-Protocol-Other' 'perl-XML-Atom' 'perl-XML-Atom-SimpleFeed' 'perl-XML-Bare' 'perl-XML-CommonNS' 'perl-XML-DOM' 'perl-XML-DOM-XPath' 'perl-XML-Entities' 'perl-XML-Feed' 'perl-XML-Filter-BufferText' 'perl-XML-Generator-PerlData' 'perl-XML-Handler-YAWriter' 'perl-XML-LibXML-PrettyPrint' 'perl-XML-LibXML-Simple' 'perl-XML-LibXSLT' 'perl-XML-Namespace' 'perl-XML-NamespaceFactory' 'perl-XML-NodeFilter' 'perl-XML-Parser-Lite' 'perl-XML-RSS' 'perl-XML-RSS-LibXML' 'perl-XML-RSS-LibXML' 'perl-XML-RegExp' 'perl-XML-SAX-ExpatXS' 'perl-XML-SAX-Writer' 'perl-XML-SemanticDiff' 'perl-XML-SimpleObject-LibXML' 'perl-XML-Stream' 'perl-XML-Structured' 'perl-XML-Writer' 'perl-XML-Writer-String' 'perl-XML-XPathEngine' 'perl-XML-XSLT' 'perl-XMLRPC-Lite' 'perl-XSLoader' 'perl-YAML' 'perl-YAML-LibYAML' 'perl-YAML-Syck' 'perl-YAML-Tiny' 'perl-aliased' 'perl-asa' 'perl-autobox' 'perl-autovivification' 'perl-bareword-filehandles' 'perl-base-32bit' 'perl-biber' 'perl-boolean' 'perl-checkbot' 'perl-common-sense' 'perl-constant-boolean' 'perl-constant-defer' 'perl-curry' 'perl-doc' 'perl-experimental' 'perl-forks' 'perl-gdal' 'perl-genders' 'perl-getdata' 'perl-homedir' 'perl-indirect' 'perl-ldap' 'perl-libconfigfile' 'perl-libintl-perl' 'perl-libprelude' 'perl-libxml-perl' 'perl-local-lib' 'perl-marisa' 'perl-mousex-getopt' 'perl-multidimensional' 'perl-mythtv' 'perl-namespace-autoclean' 'perl-namespace-clean' 'perl-obexftp' 'perl-pcsc' 'perl-prefork' 'perl-qpid' 'perl-qpid-proton' 'perl-razor-agents' 'perl-rrdtool' 'perl-slurm' 'perl-solv' 'perl-strictures' 'perl-subunit' 'perl-syntax' 'perl-thrift' 'perl-version' 'perl-warewulf-cluster' 'perl-warewulf-common' 'perl-warewulf-ipmi' 'perl-warewulf-provision' 'perl-warewulf-provision-server' 'perl-xfconf' 'perl-xmltv' 'perl-xrood-client-admin' 'perl-yui' 'perlref' 'permissions-zypp-plugin' 'permlib-devel' 'perseus-sdr-tools' 'pesign' 'pesign-obs-integration' 'petsc-devel' 'petsc-doc' 'petsc-gnu-mpich-hpc-devel' 'petsc-gnu-mvapich2-hpc-devel' 'petsc-gnu-openmpi1-hpc-devel' 'petsc-gnu-openmpi2-hpc-devel' 'petsc-gnu-openmpi3-hpc-devel' 'petsc-openmpi-devel' 'petsc_3_11_3-gnu-mpich-hpc-devel' 'petsc_3_11_3-gnu-mpich-hpc-saws' 'petsc_3_11_3-gnu-mvapich2-hpc-devel' 'petsc_3_11_3-gnu-mvapich2-hpc-saws' 'petsc_3_11_3-gnu-openmpi1-hpc-devel' 'petsc_3_11_3-gnu-openmpi1-hpc-saws' 'petsc_3_11_3-gnu-openmpi2-hpc-devel' 'petsc_3_11_3-gnu-openmpi2-hpc-saws' 'petsc_3_11_3-gnu-openmpi3-hpc-devel' 'petsc_3_11_3-gnu-openmpi3-hpc-saws' 'pfscalibration' 'pfsglview' 'pfstmo' 'pfstools' 'pfstools-devel' 'pfstools-exr' 'pfstools-imgmagick' 'pfstools-octave' 'pfsview' 'pg_comparator' 'pgaccess' 'pgadmin4' 'pgadmin4-doc' 'pgadmin4-web' 'pgloader' 'pgn-extract' 'phalanx' 'phetsarath-fonts' 'phobos-devel' 'phobos-devel-static' 'phodav-devel' 'phonon-backend-vlc' 'phonon-devel' 'phonon4qt5-backend-mpv' 'phonon4qt5-backend-mpv' 'phonon4qt5-backend-vlc' 'phonon4qt5-backend-vlc-lang' 'phonon4qt5-devel' 'phonon4qt5-devel-32bit' 'phoronix-test-suite' 'photoqt' 'photorec' 'php-Icinga' 'php-composer' 'php-cs-fixer' 'php-mapi' 'php-mythtv' 'php7' 'php7-APCu' 'php7-bcmath' 'php7-bz2' 'php7-calendar' 'php7-ctype' 'php7-curl' 'php7-dba' 'php7-devel' 'php7-dom' 'php7-embed' 'php7-enchant' 'php7-exif' 'php7-fastcgi' 'php7-fileinfo' 'php7-firebird' 'php7-fpm' 'php7-ftp' 'php7-gd' 'php7-geoip' 'php7-gettext' 'php7-gmagick' 'php7-gmp' 'php7-ice' 'php7-iconv' 'php7-imagick' 'php7-intl' 'php7-json' 'php7-ldap' 'php7-maxminddb' 'php7-mbstring' 'php7-memcached' 'php7-mysql' 'php7-odbc' 'php7-opcache' 'php7-openssl' 'php7-pcntl' 'php7-pdo' 'php7-pear' 'php7-pear-Auth_SASL' 'php7-pear-MDB2' 'php7-pear-MDB2_Driver_mysqli' 'php7-pear-Mail_Mime' 'php7-pear-Net_IDNA2' 'php7-pear-Net_LDAP2' 'php7-pear-Net_SMTP' 'php7-pear-Net_Sieve' 'php7-pear-Net_Socket' 'php7-pear-XML_Parser' 'php7-pgsql' 'php7-phalcon' 'php7-phar' 'php7-phpunit8' 'php7-posix' 'php7-readline' 'php7-redis' 'php7-shmop' 'php7-smbclient' 'php7-snmp' 'php7-soap' 'php7-sockets' 'php7-sodium' 'php7-sqlite' 'php7-sysvmsg' 'php7-sysvsem' 'php7-sysvshm' 'php7-tidy' 'php7-tokenizer' 'php7-uuid' 'php7-wddx' 'php7-xdebug' 'php7-xmlreader' 'php7-xmlrpc' 'php7-xmlwriter' 'php7-xsl' 'php7-zip' 'php7-zlib' 'phpMyAdmin' 'phpPgAdmin' 'pia' 'pianobar' 'picmi' 'picmi-lang' 'pico' 'picocom' 'picojson-devel' 'pidentd' 'pidgin' 'pidgin-devel' 'pidgin-plugin-advanced-sound-notification' 'pidgin-plugin-advanced-sound-notification-lang' 'pidgin-plugin-birthday-reminder' 'pidgin-plugin-birthday-reminder-lang' 'pidgin-plugin-guifications' 'pidgin-plugin-guifications-lang' 'pidgin-plugin-indicator' 'pidgin-plugin-indicator-lang' 'pidgin-plugin-libnotify' 'pidgin-plugin-libnotify-lang' 'pidgin-plugin-libsteam' 'pidgin-plugin-mattermost' 'pidgin-plugin-mrim' 'pidgin-plugin-otr' 'pidgin-plugin-otr-lang' 'pidgin-plugin-pack' 'pidgin-plugin-pack-extras' 'pidgin-plugin-privacy-please' 'pidgin-plugin-privacy-please-lang' 'pidgin-plugin-prpltwtr' 'pidgin-plugin-rocketchat' 'pidgin-plugin-sipe' 'pidgin-plugin-skypeweb' 'pidgin-plugin-telegram' 'pidgin-plugin-xmpp-receipts' 'piglit' 'pilot' 'pilot-link' 'pimcommon-devel' 'pin' 'pinentry-emacs' 'pinentry-fltk' 'pinentry-gnome3' 'pinentry-gtk2' 'pinfo' 'pingtunnel' 'pingus' 'pink-pony' 'pink-pony-data' 'pinpoint' 'pinta' 'pinta-lang' 'pipenightdreams' 'piper' 'pipewire-devel' 'pithos' 'pitivi' 'pitivi-lang' 'pix' 'pix-devel' 'pix-lang' 'pixd' 'pixmap' 'pixz' 'pkTriggerCord' 'pkcs11-helper-devel' 'pkg2zip' 'pkg2zip' 'pkgdiff' 'pkipplib' 'plank' 'plank-devel' 'plank-docklets' 'plank-lang' 'plank-metatheme-elementary' 'plank-theme-adapta' 'plank-theme-elementary' 'plank-theme-plata' 'plantuml' 'plasma-applet-weather-widget' 'plasma-applet-weather-widget-lang' 'plasma-framework-32bit' 'plasma-framework-components-32bit' 'plasma-framework-devel' 'plasma-framework-devel-32bit' 'plasma-mycroft' 'plasma-nm5-fortisslvpn' 'plasma-nm5-iodine' 'plasma-nm5-openswan' 'plasma-nm5-ssh' 'plasma-nm5-sstp' 'plasma-nm5-strongswan' 'plasma-nm5-vpnc' 'plasma-pass' 'plasma-pass-lang' 'plasma-theme-oxygen' 'plasma-vault' 'plasma-vault-backend-cryfs' 'plasma-vault-backend-encfs' 'plasma-vault-lang' 'plasma5-addons-devel' 'plasma5-beclock-widget' 'plasma5-beclock-widget' 'plasma5-dynamic-wallpaper' 'plasma5-dynamic-wallpaper' 'plasma5-dynamic-wallpaper-lang' 'plasma5-radiotray' 'plasma5-radiotray' 'plasma5-radiotray-debuginfo' 'plasma5-radiotray-debugsource' 'plasma5-radiotray-lang' 'plasma5-sdk' 'plasma5-sdk-lang' 'plasma5-session-wayland' 'plasma5-weather-widget' 'plasma5-weather-widget' 'plasma5-weather-widget-lang' 'plasma5-workspace-devel' 'plasma5-workspace-libs-32bit' 'plasma5-workspace-wallpapers' 'plasmaengineexplorer5' 'plater' 'platformsh-cli' 'playerctl' 'playerctl-devel' 'playerctl-doc' 'plee-the-bear' 'plee-the-bear-data' 'plexus-ant-factory' 'plexus-ant-factory-javadoc' 'plexus-archiver' 'plexus-archiver-javadoc' 'plexus-bsh-factory' 'plexus-bsh-factory-javadoc' 'plexus-build-api' 'plexus-build-api-javadoc' 'plexus-cipher' 'plexus-cipher-javadoc' 'plexus-classworlds' 'plexus-classworlds-javadoc' 'plexus-cli' 'plexus-cli-javadoc' 'plexus-compiler' 'plexus-compiler-extras' 'plexus-compiler-javadoc' 'plexus-component-api' 'plexus-component-api-javadoc' 'plexus-component-factories-pom' 'plexus-component-metadata' 'plexus-component-metadata-javadoc' 'plexus-components-pom' 'plexus-containers-component-annotations' 'plexus-containers-component-javadoc' 'plexus-containers-container-default' 'plexus-containers-javadoc' 'plexus-i18n' 'plexus-i18n-javadoc' 'plexus-interactivity-api' 'plexus-interactivity-javadoc' 'plexus-interactivity-jline' 'plexus-interpolation' 'plexus-interpolation-javadoc' 'plexus-io' 'plexus-io-javadoc' 'plexus-languages' 'plexus-languages-javadoc' 'plexus-metadata-generator' 'plexus-metadata-generator-javadoc' 'plexus-pom' 'plexus-resources' 'plexus-resources-javadoc' 'plexus-sec-dispatcher' 'plexus-sec-dispatcher-javadoc' 'plexus-utils' 'plexus-utils-javadoc' 'plexus-velocity' 'plexus-velocity-javadoc' 'plib-devel' 'plistutil' 'plotutils' 'plotutils-devel' 'plowshare' 'plplot-common' 'plplot-devel' 'plplot-doc' 'plplot-driver-cairo' 'plplot-driver-ntk' 'plplot-driver-ps' 'plplot-driver-psttf' 'plplot-driver-svg' 'plplot-driver-xfig' 'plplot-driver-xwin' 'plplot-java' 'plplot-lua' 'plplot-python3-qt' 'plplot-tcltk-devel' 'plplot-tcltk-libs' 'plplot-wxwidgets' 'plplotada-devel' 'plplotcxx-devel' 'plplotfortran-devel' 'plplotqt-devel' 'plplotwxwidgets-devel' 'pluma' 'pluma-devel' 'pluma-lang' 'plymouth-devel' 'plymouth-plugin-fade-throbber' 'plymouth-plugin-space-flares' 'plymouth-plugin-throbgress' 'plymouth-plugin-tribar' 'plymouth-theme-breeze' 'plymouth-theme-breeze-plugin-breeze' 'plymouth-theme-fade-in' 'plymouth-theme-script' 'plymouth-theme-solar' 'plymouth-theme-spinfinity' 'plymouth-theme-tribar' 'plzip' 'pmacct' 'pmdk-convert' 'pmdk-devel-doc' 'pmdk-tools' 'pmidi' 'pmount' 'pmount' 'pmount-debuginfo' 'pmount-debugsource' 'pmount-lang' 'pms' 'pms' 'pms-debuginfo' 'pms-debugsource' 'png++-devel' 'pngcheck' 'pngcrush' 'pnglite-devel' 'pngtoico' 'pnm2ppa' 'po-utils' 'po4a' 'po4a-lang' 'pocketsphinx' 'pocketsphinx-devel' 'pocl' 'pocl-devel' 'podman' 'podman-cni-config' 'podofo' 'poedit' 'poedit-lang' 'poezio' 'poezio-doc' 'pogo' 'pogo' 'polari' 'polari-lang' 'policycoreutils' 'policycoreutils-devel' 'policycoreutils-lang' 'policycoreutils-newrole' 'polkit-devel' 'polkit-doc' 'polkit-gnome' 'polkit-gnome-lang' 'polkit-whitelisting' 'pology' 'pology-lang' 'polyglot' 'polyglot' 'polyglot-debuginfo' 'polyglot-debugsource' 'pommed' 'pongix' 'popt-devel' 'popt-devel-32bit' 'portaudio-devel' 'portmidi' 'portmidi-devel' 'portmidi-java' 'posix_cc' 'posixovl' 'post-build-checks' 'poster' 'postfish' 'postfix-devel' 'postfix-doc' 'postfix-lmdb' 'postfix-mysql' 'postfix-postgresql' 'postfixadmin' 'postgresql' 'postgresql-contrib' 'postgresql-devel' 'postgresql-docs' 'postgresql-llvmjit' 'postgresql-plperl' 'postgresql-plpython' 'postgresql-pltcl' 'postgresql-server' 'postgresql-server-devel' 'postgresql-test' 'postgresql10' 'postgresql10-contrib' 'postgresql10-devel' 'postgresql10-docs' 'postgresql10-pg_cron' 'postgresql10-pgagent' 'postgresql10-plperl' 'postgresql10-plpython' 'postgresql10-plr' 'postgresql10-plr-doc' 'postgresql10-pltcl' 'postgresql10-server' 'postgresql10-test' 'postgresql10-timescaledb' 'postgresql11' 'postgresql11-contrib' 'postgresql11-devel' 'postgresql11-docs' 'postgresql11-llvmjit' 'postgresql11-pg_cron' 'postgresql11-pg_cron-llvmjit' 'postgresql11-pgagent' 'postgresql11-plperl' 'postgresql11-plpython' 'postgresql11-plr' 'postgresql11-plr-doc' 'postgresql11-pltcl' 'postgresql11-server' 'postgresql11-server-devel' 'postgresql11-test' 'postgresql11-timescaledb' 'postgresql94' 'postgresql94-contrib' 'postgresql94-devel' 'postgresql94-docs' 'postgresql94-pgagent' 'postgresql94-plperl' 'postgresql94-plpython' 'postgresql94-plr' 'postgresql94-plr-doc' 'postgresql94-pltcl' 'postgresql94-server' 'postgresql94-test' 'postgresql95' 'postgresql95-contrib' 'postgresql95-devel' 'postgresql95-docs' 'postgresql95-pg_cron' 'postgresql95-pgagent' 'postgresql95-plperl' 'postgresql95-plpython' 'postgresql95-plr' 'postgresql95-plr-doc' 'postgresql95-pltcl' 'postgresql95-server' 'postgresql95-test' 'postgresql96' 'postgresql96-contrib' 'postgresql96-devel' 'postgresql96-docs' 'postgresql96-pg_cron' 'postgresql96-pgagent' 'postgresql96-plperl' 'postgresql96-plpython' 'postgresql96-plr' 'postgresql96-plr-doc' 'postgresql96-pltcl' 'postgresql96-server' 'postgresql96-test' 'postgresql96-timescaledb' 'postgrey' 'postsrsd' 'pothana2000-fonts' 'potrace' 'potrace-devel' 'pound' 'pound-doc' 'povray' 'powdertoy' 'powerd' 'powerline' 'powerline-docs' 'powerman' 'powerman-devel' 'powermanga' 'powermock-api-easymock' 'powermock-api-mockito' 'powermock-api-support' 'powermock-common' 'powermock-core' 'powermock-javadoc' 'powermock-junit4' 'powermock-reflect' 'powermock-testng' 'powerstat' 'powertop' 'powertop-lang' 'poxml-lang' 'ppp-devel' 'ppp-modem' 'ppp-userpass' 'pps-tools' 'pps-tools-devel' 'pptpd' 'praat' 'pragha' 'pragha-lang' 'pragha-plugins' 'pragha-plugins-devel' 'prboom-plus' 'prelude-correlator-core' 'prelude-lml' 'prelude-lml-devel' 'prelude-lml-rules' 'prelude-manager' 'prelude-manager-db-plugin' 'prelude-manager-devel' 'prelude-manager-smtp-plugin' 'prelude-manager-xml-plugin' 'prelude-tools' 'preludedb-tools' 'premake4' 'presage' 'presage-data' 'prewikka-core' 'prewikka-lang' 'primesieve' 'primus' 'primus-32bit' 'print_server' 'printer-driver-brlaser' 'printproto-devel' 'prison-qt5-devel' 'prison-qt5-devel-32bit' 'privoxy' 'privoxy-doc' 'procdump' 'procmeter' 'procmeter-devel' 'procps-devel' 'product-builder' 'product-builder-plugin-Tumbleweed' 'profanity' 'profanity-mini' 'profanity-standard' 'proftpd' 'proftpd-devel' 'proftpd-doc' 'proftpd-lang' 'proftpd-ldap' 'proftpd-mysql' 'proftpd-pgsql' 'proftpd-radius' 'proftpd-sqlite' 'progress' 'proj' 'proj-devel' 'projectM' 'projectM-data' 'projectM-devel' 'projectlibre' 'prometheus-client-model-source' 'pronsole' 'pronterface' 'prosody' 'proteus' 'protobuf-c' 'protobuf-devel' 'protobuf-java' 'protobuf-source' 'protoc-gen-go' 'protoc-gen-go-source' 'protoc-gen-gogo' 'protoc-gen-gogo-source' 'protoc-gen-validate' 'protoc-gen-validate-source' 'proxychains-ng' 'prozgui' 'prun-ohpc' 'psgml' 'psgplay' 'psi+' 'psi+-data' 'psi+-iconsets' 'psi+-iconsets' 'psi+-lang' 'psi+-plugins-attentionplugin' 'psi+-plugins-autoreplyplugin' 'psi+-plugins-birthdayreminderplugin' 'psi+-plugins-chessplugin' 'psi+-plugins-cleanerplugin' 'psi+-plugins-clientswitcherplugin' 'psi+-plugins-conferenceloggerplugin' 'psi+-plugins-contentdownloaderplugin' 'psi+-plugins-devel' 'psi+-plugins-enummessagesplugin' 'psi+-plugins-extendedmenuplugin' 'psi+-plugins-extendedoptionsplugin' 'psi+-plugins-gnupgplugin' 'psi+-plugins-gomokugameplugin' 'psi+-plugins-historykeeperplugin' 'psi+-plugins-icqdieplugin' 'psi+-plugins-imageplugin' 'psi+-plugins-imagepreviewplugin' 'psi+-plugins-jabberdiskplugin' 'psi+-plugins-juickplugin' 'psi+-plugins-messagefilterplugin' 'psi+-plugins-omemoplugin' 'psi+-plugins-otrplugin' 'psi+-plugins-pepchangenotifyplugin' 'psi+-plugins-qipxstatusesplugin' 'psi+-plugins-screenshotplugin' 'psi+-plugins-skinsplugin' 'psi+-plugins-stopspamplugin' 'psi+-plugins-storagenotesplugin' 'psi+-plugins-translateplugin' 'psi+-plugins-videostatusplugin' 'psi+-plugins-watcherplugin' 'psiconv' 'psiconv-devel' 'psl' 'psl-make-dafsa' 'pspg' 'pspp' 'pspp-devel' 'pssh' 'pstoedit' 'pstoedit-devel' 'pthread-stubs-devel' 'ptokax' 'ptpd' 'ptscotch-gnu-mpich-hpc' 'ptscotch-gnu-mpich-hpc-devel' 'ptscotch-gnu-mvapich2-hpc' 'ptscotch-gnu-mvapich2-hpc-devel' 'ptscotch-gnu-openmpi1-hpc' 'ptscotch-gnu-openmpi1-hpc-devel' 'ptscotch-gnu-openmpi2-hpc' 'ptscotch-gnu-openmpi2-hpc-devel' 'ptscotch-gnu-openmpi3-hpc' 'ptscotch-gnu-openmpi3-hpc-devel' 'ptscotch-mpich' 'ptscotch-mpich-devel' 'ptscotch-mpich-devel-static' 'ptscotch-mvapich2' 'ptscotch-mvapich2-devel' 'ptscotch-mvapich2-devel-static' 'ptscotch-openmpi' 'ptscotch-openmpi-devel' 'ptscotch-openmpi-devel-static' 'ptscotch-openmpi2' 'ptscotch-openmpi2-devel' 'ptscotch-openmpi2-devel-static' 'ptscotch-parmetis-mpich-devel' 'ptscotch-parmetis-mvapich2-devel' 'ptscotch-parmetis-openmpi-devel' 'ptscotch-parmetis-openmpi2-devel' 'ptscotch_6_0_6-gnu-mpich-hpc' 'ptscotch_6_0_6-gnu-mpich-hpc-devel' 'ptscotch_6_0_6-gnu-mpich-hpc-devel-static' 'ptscotch_6_0_6-gnu-mvapich2-hpc' 'ptscotch_6_0_6-gnu-mvapich2-hpc-devel' 'ptscotch_6_0_6-gnu-mvapich2-hpc-devel-static' 'ptscotch_6_0_6-gnu-openmpi1-hpc' 'ptscotch_6_0_6-gnu-openmpi1-hpc-devel' 'ptscotch_6_0_6-gnu-openmpi1-hpc-devel-static' 'ptscotch_6_0_6-gnu-openmpi2-hpc' 'ptscotch_6_0_6-gnu-openmpi2-hpc-devel' 'ptscotch_6_0_6-gnu-openmpi2-hpc-devel-static' 'ptscotch_6_0_6-gnu-openmpi3-hpc' 'ptscotch_6_0_6-gnu-openmpi3-hpc-devel' 'ptscotch_6_0_6-gnu-openmpi3-hpc-devel-static' 'pugixml-devel' 'pullin-bcm43xx-firmware' 'pulseaudio-dlna' 'pulseaudio-dlna' 'pulseaudio-equalizer' 'pulseaudio-esound-compat' 'pulseaudio-gdm-hooks' 'pulseaudio-module-gsettings' 'pulseaudio-module-jack' 'pulseaudio-module-lirc' 'pulseaudio-qt-devel' 'pulseaudio-system-wide' 'pulseaudio-zsh-completion' 'pulseview' 'pumpa' 'pure-ftpd' 'purpose-32bit' 'purpose-devel' 'purpose-devel-32bit' 'putty' 'pw3270' 'pw3270-devel' 'pw3270-plugin-dbus' 'pwgen' 'py-fishcrypt' 'pybugz-common' 'pydb' 'pydb' 'pydf' 'pyenv' 'pyenv-bash-completion' 'pyenv-fish-completion' 'pyenv-zsh-completion' 'pymilter-common' 'pymp3cut' 'pymp3cut' 'pyprompter' 'pyspacewar' 'pythia-devel' 'pythia-doc' 'python-32bit' 'python-3parclient' 'python-Babel-doc' 'python-Brownie' 'python-Cheetah' 'python-Genshi-doc' 'python-Hamlib' 'python-Jinja2-emacs' 'python-Jinja2-vim' 'python-Kivy-doc' 'python-LHAPDF' 'python-M2Crypto-doc' 'python-OpenColorIO' 'python-OpenColorIO-devel' 'python-PyWavelets-doc' 'python-Rivet' 'python-SHERPA-MC' 'python-SQLAlchemy-doc' 'python-Scrapy-doc' 'python-SpeechRecognition-common-en-US' 'python-Sphinx-doc-html' 'python-Sphinx-doc-man' 'python-Twisted-doc' 'python-WTForms-doc' 'python-WebError' 'python-WebOb-doc' 'python-WebTest-doc' 'python-Whoosh-doc' 'python-YODA' 'python-Yapsy-doc' 'python-ZODB-doc' 'python-acitoolkit-doc' 'python-acitoolkit-doc-applications' 'python-acitoolkit-doc-samples' 'python-aiohttp-doc' 'python-altgraph-doc' 'python-antlr3_runtime' 'python-aodhclient' 'python-aodhclient-doc' 'python-apfel' 'python-atomicwrites-doc' 'python-automaton-doc' 'python-azure-agent' 'python-azure-agent-test' 'python-azure-sdk' 'python-barbicanclient-doc' 'python-base-32bit' 'python-beautifulsoup4-doc' 'python-billiard-doc' 'python-blinker-doc' 'python-boost_parallel_mpi' 'python-bottle-doc' 'python-bpython-common' 'python-bpython-doc' 'python-braille' 'python-caja-devel' 'python-caja-lang' 'python-castellan-doc' 'python-ceph-cfg' 'python-chewing' 'python-cinderclient-doc' 'python-cliff-doc' 'python-congressclient' 'python-congressclient-doc' 'python-cotyledon-doc' 'python-curses' 'python-cwiid' 'python-dbus-python-common-devel' 'python-debtcollector-doc' 'python-demo' 'python-designateclient' 'python-designateclient-doc' 'python-devel' 'python-dfVFS' 'python-dfwinreg' 'python-dialog' 'python-djvulibre-doc' 'python-doc' 'python-doc-pdf' 'python-ecasound' 'python-efilter' 'python-enum34' 'python-espressopp' 'python-falcon-doc' 'python-fastcluster-doc' 'python-faulthandler' 'python-fedmsg-base' 'python-fedmsg-doc' 'python-fityk' 'python-flake8-doc' 'python-flup-doc' 'python-fpconst' 'python-fpconst' 'python-freezerclient-doc' 'python-funcsigs' 'python-functools32' 'python-gamin' 'python-gcs-oauth2-boto-plugin' 'python-gdbm' 'python-genders' 'python-getdata' 'python-gevent-doc' 'python-gexiv2' 'python-glanceclient-doc' 'python-glareclient' 'python-glareclient-doc' 'python-glucat' 'python-gluster' 'python-gnome-dvb-daemon' 'python-gobject-common-devel' 'python-gobject2' 'python-gobject2-devel' 'python-gr-fcdproplus' 'python-gr-iqbal' 'python-gr-osmosdr' 'python-gtk' 'python-gtk-devel' 'python-gtk-doc' 'python-gtksourceview' 'python-gtksourceview-devel' 'python-gunicorn-doc' 'python-hachoir-core' 'python-hachoir-metadata' 'python-hachoir-parser' 'python-happybase-doc' 'python-heatclient-doc' 'python-hivex' 'python-ibus' 'python-idle' 'python-imagestore' 'python-imobiledevice' 'python-ipaddress' 'python-ipython-doc' 'python-ipywidgets-doc' 'python-ironic-inspector-client' 'python-ironicclient-doc' 'python-jaraco.stream-doc' 'python-jrnl' 'python-k8sclient' 'python-k8sclient-doc' 'python-kaa-base' 'python-kaa-metadata' 'python-katedj' 'python-keybinder' 'python-keystoneauth1-doc' 'python-keystoneclient-doc' 'python-keystonemiddleware-doc' 'python-kid-doc' 'python-ktoblzcheck' 'python-lammps' 'python-lash' 'python-lash-debuginfo' 'python-libaccounts' 'python-libaddrxlat' 'python-libcomps-doc' 'python-libesedb' 'python-libevt' 'python-libevtx' 'python-libexe' 'python-libfwsi' 'python-libgpiod' 'python-libkdumpfile' 'python-libkolabxml1' 'python-liblnk' 'python-libmsiecf' 'python-libolecf' 'python-libpff' 'python-libproxy' 'python-libregf' 'python-libteam' 'python-lmiwbem' 'python-logutils-doc' 'python-lxml-doc' 'python-magnumclient-doc' 'python-manilaclient-doc' 'python-marisa' 'python-marshmallow-docs' 'python-masakariclient' 'python-masakariclient-doc' 'python-mathgl' 'python-md2workflow-common' 'python-microversion_parse' 'python-microversion_parse-doc' 'python-mistralclient' 'python-mistralclient-doc' 'python-mlt' 'python-mongodict' 'python-mox3-doc' 'python-mpi4py-common-devel' 'python-mpi4py-doc' 'python-murano-pkg-check' 'python-muranoclient' 'python-muranoclient-doc' 'python-musicbrainz2' 'python-musicbrainz2' 'python-mythtv' 'python-nautilus-common-devel' 'python-nautilus-common-files' 'python-ncclient-doc' 'python-networkx-doc' 'python-neutronclient-doc' 'python-nlopt' 'python-notify' 'python-notify-devel' 'python-notmuch' 'python-notmuch-doc' 'python-novaclient-doc' 'python-obexftp' 'python-octaviaclient-doc' 'python-openbabel' 'python-openstack-doc-tools' 'python-openstackclient-doc' 'python-openstacksdk-doc' 'python-opensync' 'python-optcomplete' 'python-os-testr-doc' 'python-os-win-doc' 'python-osc-lib-doc' 'python-oslo-middleware-doc' 'python-oslo.cache-doc' 'python-oslo.concurrency-doc' 'python-oslo.config-doc' 'python-oslo.context-doc' 'python-oslo.db-doc' 'python-oslo.i18n-doc' 'python-oslo.log-doc' 'python-oslo.messaging-doc' 'python-oslo.policy-doc' 'python-oslo.privsep-doc' 'python-oslo.reports-doc' 'python-oslo.rootwrap-doc' 'python-oslo.serialization-doc' 'python-oslo.service-doc' 'python-oslo.utils-doc' 'python-oslo.versionedobjects-doc' 'python-oslo.vmware-doc' 'python-osprofiler-doc' 'python-ovsdbapp-doc' 'python-paramiko-doc' 'python-peppercorn-doc' 'python-pisock' 'python-plaso' 'python-plist' 'python-ply-doc' 'python-polib-doc' 'python-praatio-doc' 'python-presage' 'python-presagemate' 'python-proliantutils' 'python-pssh' 'python-py2pack-doc' 'python-pycadf-common' 'python-pycadf-doc' 'python-pycairo-common-devel' 'python-pycurl-doc' 'python-pygame-doc' 'python-pyghmi-doc' 'python-pygraphviz-doc' 'python-pyinsane' 'python-pylibacl' 'python-pylibacl-doc' 'python-pymetar' 'python-pymisp-doc' 'python-pymod2pkg-doc' 'python-pymp3cut' 'python-pynag' 'python-pyqtgraph-doc' 'python-pyrrd-docs' 'python-pyserial-doc' 'python-pysnmp-doc' 'python-pysqlite' 'python-pytest-doc' 'python-python-openid' 'python-qpid' 'python-qpid_messaging' 'python-qscintilla-qt5-sip' 'python-qt3d-qt5-api' 'python-qt3d-qt5-examples' 'python-qt3d-qt5-sip' 'python-qt4-doc' 'python-qt5-doc' 'python-qtcharts-qt5-api' 'python-qtcharts-qt5-examples' 'python-qtcharts-qt5-sip' 'python-qtdatavis3d-qt5-api' 'python-qtdatavis3d-qt5-examples' 'python-qtdatavis3d-qt5-sip' 'python-qtwebengine-qt5-api' 'python-rapi2' 'python-rapi2-debuginfo' 'python-rcssmin-docs' 'python-rdflib-doc' 'python-renderspec' 'python-renderspec-doc' 'python-requestbuilder' 'python-restkit' 'python-ruamel.ordereddict' 'python-ryu-common' 'python-saharaclient' 'python-saharaclient-doc' 'python-salt-testing' 'python-scapy' 'python-scapy' 'python-senlinclient-doc' 'python-shodan-doc' 'python-singledispatch' 'python-sip-doc' 'python-six-doc' 'python-solv' 'python-sqlalchemy-migrate-doc' 'python-stevedore-doc' 'python-sushy-doc' 'python-svneverever' 'python-swiftclient-doc' 'python-tables-doc' 'python-temps' 'python-testtools-doc' 'python-tk' 'python-tooz-doc' 'python-translationstring-doc' 'python-tre' 'python-trollius' 'python-troveclient' 'python-troveclient-doc' 'python-tvdb_api' 'python-tvrage' 'python-tvrage' 'python-txsocksx' 'python-typeshed' 'python-vips' 'python-volatility' 'python-watcherclient' 'python-watcherclient-doc' 'python-weakrefmethod' 'python-web.py' 'python-wxWidgets-3_0' 'python-wxWidgets-3_0-devel' 'python-wxWidgets-3_0-lang' 'python-xapian' 'python-xmms2' 'python-yaql' 'python-yui' 'python-zinnia' 'python-zope.deprecation-doc' 'python-zope.event-doc' 'python-zope.hookable-doc' 'python-zope.i18nmessageid-doc' 'python2-3to2' 'python2-APScheduler' 'python2-AnyQt' 'python2-Arpeggio' 'python2-Automat' 'python2-BTrees' 'python2-BTrees-devel' 'python2-BTrees-doc' 'python2-Babel' 'python2-Beaker' 'python2-BitVector' 'python2-Bottleneck' 'python2-Brotli' 'python2-CDDB' 'python2-CacheControl' 'python2-Cerberus' 'python2-Chameleon' 'python2-Cheetah3' 'python2-CommonMark' 'python2-Cycler' 'python2-Cython' 'python2-DataShape' 'python2-DateTime' 'python2-Delorean' 'python2-Deprecated' 'python2-Django1' 'python2-Durus' 'python2-EasyProcess' 'python2-EditorConfig' 'python2-ExifRead' 'python2-Fabric' 'python2-Fabric3' 'python2-Faker' 'python2-Fiona' 'python2-Flask' 'python2-Flask-Admin' 'python2-Flask-Babel' 'python2-Flask-BabelEx' 'python2-Flask-Bootstrap' 'python2-Flask-Cache' 'python2-Flask-Cache-doc' 'python2-Flask-Compress' 'python2-Flask-Cors' 'python2-Flask-Gravatar' 'python2-Flask-HTMLmin' 'python2-Flask-HTTPAuth' 'python2-Flask-Login' 'python2-Flask-Mail' 'python2-Flask-Migrate' 'python2-Flask-Paranoid' 'python2-Flask-Principal' 'python2-Flask-PyMongo' 'python2-Flask-RESTful' 'python2-Flask-RSTPages' 'python2-Flask-SQLAlchemy' 'python2-Flask-Script' 'python2-Flask-Security' 'python2-Flask-WTF' 'python2-Flask-doc' 'python2-FontTools' 'python2-FormEncode' 'python2-Frozen-Flask' 'python2-GDAL' 'python2-Genshi' 'python2-GeoIP' 'python2-GitPython' 'python2-Glances' 'python2-GooCalendar' 'python2-GridDataFormats' 'python2-HeapDict' 'python2-Jinja2' 'python2-Js2Py' 'python2-JsonWeb' 'python2-Kajiki' 'python2-Keras-Applications' 'python2-Keras-Preprocessing' 'python2-Kivy' 'python2-Kivy-devel' 'python2-LEPL' 'python2-Lektor' 'python2-Levenshtein' 'python2-Logbook' 'python2-M2Crypto' 'python2-Mako' 'python2-MapProxy' 'python2-Markdown' 'python2-MarkupSafe' 'python2-Markups' 'python2-Mathics' 'python2-MechanicalSoup' 'python2-Ming' 'python2-MiniMock' 'python2-Morfessor' 'python2-MulticoreTSNE' 'python2-OWSLib' 'python2-Parsley' 'python2-Paste' 'python2-PasteDeploy' 'python2-PasteScript' 'python2-Paver' 'python2-PeakUtils' 'python2-Pebble' 'python2-Pillow' 'python2-Pillow-tk' 'python2-Pint' 'python2-PrettyTable' 'python2-PsyLab' 'python2-PsychoPy' 'python2-PsychoPy-lang' 'python2-PyAudio' 'python2-PyAutoGUI' 'python2-PyBindGen' 'python2-PyBrowserID' 'python2-PyDispatcher' 'python2-PyECLib' 'python2-PyExecJS' 'python2-PyFxA' 'python2-PyGithub' 'python2-PyHamcrest' 'python2-PyICU' 'python2-PyJWT' 'python2-PyKMIP' 'python2-PyMeta3' 'python2-PyMsgBox' 'python2-PyMySQL' 'python2-PyNaCl' 'python2-PyNamecheap' 'python2-PyOgg' 'python2-PyOpenAL' 'python2-PyPDF2' 'python2-PyPrind' 'python2-PyQRCode' 'python2-PyRIC' 'python2-PySDL2' 'python2-PyScreeze' 'python2-PySocks' 'python2-PyTrie' 'python2-PyTweening' 'python2-PyVirtualDisplay' 'python2-PyWavelets' 'python2-PyWebDAV3' 'python2-PyX' 'python2-PyYAML' 'python2-Pydap' 'python2-Pygments' 'python2-Pykka' 'python2-Pympler' 'python2-Pyphen' 'python2-Pyrex' 'python2-Pyro4' 'python2-QDarkStyle' 'python2-Qt.py' 'python2-QtAwesome' 'python2-QtPy' 'python2-Quandl' 'python2-Routes' 'python2-SPARQLWrapper' 'python2-SQLAlchemy' 'python2-SQLAlchemy-Utils' 'python2-Scrapy' 'python2-SecretStorage' 'python2-Send2Trash' 'python2-Shapely' 'python2-SimpleWebSocketServer' 'python2-SoundFile' 'python2-SpeechRecognition' 'python2-Sphinx' 'python2-Sphinx-doc-html' 'python2-Sphinx-doc-man' 'python2-Sphinx-latex' 'python2-Tempita' 'python2-TermRecord' 'python2-Theano' 'python2-Trolly' 'python2-Trololio' 'python2-Twisted' 'python2-TxSNI' 'python2-URLObject' 'python2-UkPostcodeParser' 'python2-Unidecode' 'python2-WSGIProxy2' 'python2-WSME' 'python2-WTForms' 'python2-WebHelpers' 'python2-WebOb' 'python2-WebTest' 'python2-Werkzeug' 'python2-Whoosh' 'python2-XStatic' 'python2-XStatic-Angular-Schema-Form' 'python2-XStatic-jQuery' 'python2-XStatic-jquery-ui' 'python2-XStatic-objectpath' 'python2-XStatic-term.js' 'python2-XStatic-tv4' 'python2-XlsxWriter' 'python2-Yapsy' 'python2-ZConfig' 'python2-ZConfig-doc' 'python2-ZEO' 'python2-ZODB' 'python2-abclient' 'python2-abimap' 'python2-abimap-doc' 'python2-abseil' 'python2-aci-integration-module' 'python2-acitoolkit' 'python2-acme' 'python2-actdiag' 'python2-adal' 'python2-adapt-parser' 'python2-addict' 'python2-aenum' 'python2-aexpect' 'python2-affine' 'python2-agate' 'python2-agate-dbf' 'python2-agate-excel' 'python2-agate-lookup' 'python2-agate-remote' 'python2-agate-sql' 'python2-agate-stats' 'python2-aioeventlet' 'python2-aiohttp-theme' 'python2-akismet' 'python2-alabaster' 'python2-alembic' 'python2-alsa' 'python2-altair' 'python2-altair-widgets' 'python2-altgraph' 'python2-amqp' 'python2-amqplib' 'python2-amqpstorm' 'python2-ana' 'python2-aniso8601' 'python2-annoy' 'python2-ansel' 'python2-ansi2html' 'python2-ansicolor' 'python2-ansicolors' 'python2-ansiwrap' 'python2-antlr' 'python2-anyjson' 'python2-apache-libcloud' 'python2-apicapi' 'python2-apipkg' 'python2-appdirs' 'python2-appindicator' 'python2-applicationinsights' 'python2-apptools' 'python2-apsw' 'python2-arabic-reshaper' 'python2-argcomplete' 'python2-argh' 'python2-argon2-cffi' 'python2-argparse-manpage' 'python2-args' 'python2-arrow' 'python2-asciimatics' 'python2-asn1crypto' 'python2-aspectlib' 'python2-asteval' 'python2-astor' 'python2-astral' 'python2-astroid' 'python2-astunparse' 'python2-asv' 'python2-atlassian-python-api' 'python2-atom' 'python2-atomicwrites' 'python2-atspi' 'python2-attr' 'python2-attrs' 'python2-aubio' 'python2-audiogrep' 'python2-audiolazy' 'python2-audioread' 'python2-audit' 'python2-augeas' 'python2-autobahn' 'python2-autodoc' 'python2-autoflake' 'python2-automaton' 'python2-autopep8' 'python2-autoupgrade-ng' 'python2-av' 'python2-avocado' 'python2-avocado-plugins-glib' 'python2-avocado-plugins-golang' 'python2-avocado-plugins-loader-yaml' 'python2-avocado-plugins-output-html' 'python2-avocado-plugins-result-upload' 'python2-avocado-plugins-resultsdb' 'python2-avocado-plugins-runner-docker' 'python2-avocado-plugins-runner-remote' 'python2-avocado-plugins-runner-vm' 'python2-avocado-plugins-varianter-pict' 'python2-avocado-plugins-varianter-yaml-to-mux' 'python2-avocado-plugins-vt' 'python2-avro' 'python2-aws-sam-translator' 'python2-aws-xray-sdk' 'python2-aws-xray-sdk-Django' 'python2-aws-xray-sdk-Flask-SQLAlchemy' 'python2-aws-xray-sdk-SQLAlchemy' 'python2-aws-xray-sdk-all' 'python2-aws-xray-sdk-mysql-connector' 'python2-aws-xray-sdk-psycopg2' 'python2-aws-xray-sdk-pymongo' 'python2-aws-xray-sdk-pynamodb' 'python2-aws-xray-sdk-requests' 'python2-axolotl' 'python2-axolotl-curve25519' 'python2-ayatana-appindicator' 'python2-azure-applicationinsights' 'python2-azure-batch' 'python2-azure-cognitiveservices-knowledge-nspkg' 'python2-azure-cognitiveservices-knowledge-qnamaker' 'python2-azure-cognitiveservices-language-luis' 'python2-azure-cognitiveservices-language-nspkg' 'python2-azure-cognitiveservices-language-spellcheck' 'python2-azure-cognitiveservices-language-textanalytics' 'python2-azure-cognitiveservices-nspkg' 'python2-azure-cognitiveservices-search-autosuggest' 'python2-azure-cognitiveservices-search-customimagesearch' 'python2-azure-cognitiveservices-search-customsearch' 'python2-azure-cognitiveservices-search-entitysearch' 'python2-azure-cognitiveservices-search-imagesearch' 'python2-azure-cognitiveservices-search-newssearch' 'python2-azure-cognitiveservices-search-nspkg' 'python2-azure-cognitiveservices-search-videosearch' 'python2-azure-cognitiveservices-search-visualsearch' 'python2-azure-cognitiveservices-search-websearch' 'python2-azure-cognitiveservices-vision-computervision' 'python2-azure-cognitiveservices-vision-contentmoderator' 'python2-azure-cognitiveservices-vision-customvision' 'python2-azure-cognitiveservices-vision-nspkg' 'python2-azure-common' 'python2-azure-datalake-store' 'python2-azure-eventgrid' 'python2-azure-graphrbac' 'python2-azure-keyvault' 'python2-azure-loganalytics' 'python2-azure-mgmt' 'python2-azure-mgmt-advisor' 'python2-azure-mgmt-applicationinsights' 'python2-azure-mgmt-authorization' 'python2-azure-mgmt-batch' 'python2-azure-mgmt-batchai' 'python2-azure-mgmt-billing' 'python2-azure-mgmt-botservice' 'python2-azure-mgmt-cdn' 'python2-azure-mgmt-cognitiveservices' 'python2-azure-mgmt-commerce' 'python2-azure-mgmt-compute' 'python2-azure-mgmt-consumption' 'python2-azure-mgmt-containerinstance' 'python2-azure-mgmt-containerregistry' 'python2-azure-mgmt-containerservice' 'python2-azure-mgmt-cosmosdb' 'python2-azure-mgmt-datafactory' 'python2-azure-mgmt-datalake-analytics' 'python2-azure-mgmt-datalake-nspkg' 'python2-azure-mgmt-datalake-store' 'python2-azure-mgmt-datamigration' 'python2-azure-mgmt-devspaces' 'python2-azure-mgmt-devtestlabs' 'python2-azure-mgmt-dns' 'python2-azure-mgmt-documentdb' 'python2-azure-mgmt-eventgrid' 'python2-azure-mgmt-eventhub' 'python2-azure-mgmt-hanaonazure' 'python2-azure-mgmt-hdinsight' 'python2-azure-mgmt-iotcentral' 'python2-azure-mgmt-iothub' 'python2-azure-mgmt-iothubprovisioningservices' 'python2-azure-mgmt-keyvault' 'python2-azure-mgmt-kusto' 'python2-azure-mgmt-loganalytics' 'python2-azure-mgmt-logic' 'python2-azure-mgmt-machinelearningcompute' 'python2-azure-mgmt-managementgroups' 'python2-azure-mgmt-managementpartner' 'python2-azure-mgmt-maps' 'python2-azure-mgmt-marketplaceordering' 'python2-azure-mgmt-media' 'python2-azure-mgmt-monitor' 'python2-azure-mgmt-msi' 'python2-azure-mgmt-network' 'python2-azure-mgmt-notificationhubs' 'python2-azure-mgmt-nspkg' 'python2-azure-mgmt-policyinsights' 'python2-azure-mgmt-powerbiembedded' 'python2-azure-mgmt-rdbms' 'python2-azure-mgmt-recoveryservices' 'python2-azure-mgmt-recoveryservicesbackup' 'python2-azure-mgmt-redis' 'python2-azure-mgmt-relay' 'python2-azure-mgmt-reservations' 'python2-azure-mgmt-resource' 'python2-azure-mgmt-scheduler' 'python2-azure-mgmt-search' 'python2-azure-mgmt-security' 'python2-azure-mgmt-servermanager' 'python2-azure-mgmt-servicebus' 'python2-azure-mgmt-servicefabric' 'python2-azure-mgmt-signalr' 'python2-azure-mgmt-sql' 'python2-azure-mgmt-sqlvirtualmachine' 'python2-azure-mgmt-storage' 'python2-azure-mgmt-subscription' 'python2-azure-mgmt-trafficmanager' 'python2-azure-mgmt-web' 'python2-azure-monitor' 'python2-azure-multiapi-storage' 'python2-azure-nspkg' 'python2-azure-servicebus' 'python2-azure-servicefabric' 'python2-azure-servicemanagement-legacy' 'python2-azure-storage' 'python2-azure-storage-blob' 'python2-azure-storage-common' 'python2-azure-storage-file' 'python2-azure-storage-nspkg' 'python2-azure-storage-queue' 'python2-babelfish' 'python2-backcall' 'python2-backoff' 'python2-backports' 'python2-backports.csv' 'python2-backports.functools_lru_cache' 'python2-backports.functools_partialmethod' 'python2-backports.html' 'python2-backports.os' 'python2-backports.shutil_get_terminal_size' 'python2-backports.shutil_which' 'python2-backports.ssl_match_hostname' 'python2-backports.tempfile' 'python2-backports.test.support' 'python2-backports.time-perf-counter' 'python2-backports.unittest_mock' 'python2-backports.weakref' 'python2-backports_abc' 'python2-bandit' 'python2-barbicanclient' 'python2-baron' 'python2-bashate' 'python2-bcc' 'python2-bcolz' 'python2-bcrypt' 'python2-beautifulsoup4' 'python2-behave' 'python2-bencode' 'python2-beniget' 'python2-betamax' 'python2-betamax-matchers' 'python2-bibtexparser' 'python2-bidict' 'python2-billiard' 'python2-binary' 'python2-binaryornot' 'python2-bindep' 'python2-binplist' 'python2-biopython' 'python2-biplist' 'python2-bitstring' 'python2-bjoern' 'python2-bleach' 'python2-blessed' 'python2-blessings' 'python2-blindspin' 'python2-blinker' 'python2-blist' 'python2-blockdiag' 'python2-blosc' 'python2-bloscpack' 'python2-bobo' 'python2-bobodoctestumentation' 'python2-bokeh' 'python2-boltons' 'python2-boost_parallel_mpi1_69_0' 'python2-boto' 'python2-boto3' 'python2-botocore' 'python2-bottle' 'python2-bpython' 'python2-bqplot' 'python2-branca' 'python2-breathe' 'python2-brewer2mpl' 'python2-brotlipy' 'python2-bsddb3' 'python2-bsddb3-devel' 'python2-bson' 'python2-bugzilla' 'python2-bugzillatools' 'python2-bz2file' 'python2-cPyparsing' 'python2-cached-property' 'python2-cachetools' 'python2-cachey' 'python2-cairocffi' 'python2-cairocffi-pixbuf' 'python2-caja' 'python2-caldav' 'python2-cangjie' 'python2-canonicaljson' 'python2-capng' 'python2-capturer' 'python2-case' 'python2-cassandra-driver' 'python2-cassowary' 'python2-castellan' 'python2-casttube' 'python2-catkin-pkg' 'python2-cbor' 'python2-cbor2' 'python2-cdecimal' 'python2-celery' 'python2-celery-batches' 'python2-celerymon' 'python2-cerealizer' 'python2-certbot' 'python2-certbot-apache' 'python2-certbot-dns-cloudflare' 'python2-certbot-dns-cloudxns' 'python2-certbot-dns-digitalocean' 'python2-certbot-dns-dnsimple' 'python2-certbot-dns-dnsmadeeasy' 'python2-certbot-dns-google' 'python2-certbot-dns-luadns' 'python2-certbot-dns-nsone' 'python2-certbot-dns-rfc2136' 'python2-certbot-dns-route53' 'python2-certbot-nginx' 'python2-certifi' 'python2-certstream' 'python2-cffi' 'python2-cfgv' 'python2-cfn-lint' 'python2-cfscrape' 'python2-cftime' 'python2-chai' 'python2-chardet' 'python2-chart-studio' 'python2-check-manifest' 'python2-cheroot' 'python2-chest' 'python2-cinderclient' 'python2-ciscoconfparse' 'python2-cl' 'python2-cli-helpers' 'python2-click' 'python2-click-aliases' 'python2-click-completion' 'python2-click-didyoumean' 'python2-click-help-colors' 'python2-click-log' 'python2-click-plugins' 'python2-click-spinner' 'python2-click-threading' 'python2-cliff' 'python2-cligj' 'python2-clinkgrammar' 'python2-clint' 'python2-cloudflare' 'python2-cloudpickle' 'python2-cluster' 'python2-cluster-preflight-check' 'python2-clustershell' 'python2-cmarkgfm' 'python2-cmd2' 'python2-cmdln' 'python2-coards' 'python2-codecov' 'python2-cogapp' 'python2-colander' 'python2-colander-doc' 'python2-colander-lang' 'python2-colorama' 'python2-colorcet' 'python2-colorclass' 'python2-coloredlogs' 'python2-colorlog' 'python2-colorlover' 'python2-colormap' 'python2-colorspacious' 'python2-colour' 'python2-combi' 'python2-compizconfig' 'python2-concurrentloghandler' 'python2-configargparse' 'python2-configparser' 'python2-configshell-fb' 'python2-confluent-kafka' 'python2-confusable-homoglyphs' 'python2-constantly' 'python2-construct' 'python2-contexter' 'python2-contextlib2' 'python2-control' 'python2-cookies' 'python2-cooldict' 'python2-coreapi' 'python2-coreapi-cli' 'python2-coreschema' 'python2-cotyledon' 'python2-cov-core' 'python2-coverage' 'python2-coverage-config-reload-plugin' 'python2-coverage-env-plugin' 'python2-coveralls' 'python2-coveralls-check' 'python2-cppclean' 'python2-cpplint' 'python2-cracklib' 'python2-cram' 'python2-crayons' 'python2-crcmod' 'python2-croniter' 'python2-crumbs' 'python2-cryptography' 'python2-cryptography-vectors' 'python2-css-parser' 'python2-csscompressor' 'python2-cssselect' 'python2-cssutils' 'python2-csvkit' 'python2-ctypesgen' 'python2-cufflinks' 'python2-cursive' 'python2-curtsies' 'python2-cx_Freeze' 'python2-cymruwhois' 'python2-cyordereddict' 'python2-cytoolz' 'python2-d2to1' 'python2-daemonize' 'python2-daiquiri' 'python2-dash' 'python2-dask' 'python2-dask-all' 'python2-dask-array' 'python2-dask-bag' 'python2-dask-dataframe' 'python2-dask-distributed' 'python2-dask-dot' 'python2-dask-multiprocessing' 'python2-datrie' 'python2-dbf' 'python2-dbfread' 'python2-dbus-python-devel' 'python2-ddt' 'python2-debian' 'python2-debtcollector' 'python2-decorator' 'python2-defusedxml' 'python2-delegator' 'python2-delegator.py' 'python2-deltarpm' 'python2-demjson' 'python2-dennis' 'python2-deprecation' 'python2-derpconf' 'python2-dfdatetime' 'python2-dialite' 'python2-dicttoxml' 'python2-diff_match_patch' 'python2-digitalocean' 'python2-dill' 'python2-dirtyjson' 'python2-dis3' 'python2-discid' 'python2-discogs-client' 'python2-diskcache' 'python2-distlib' 'python2-distorm3' 'python2-distributed' 'python2-distro' 'python2-distroinfo' 'python2-distutils-extra' 'python2-dj-database-url' 'python2-django-allauth' 'python2-django-allauth-lang' 'python2-django-appconf' 'python2-django-auth-ldap' 'python2-django-avatar' 'python2-django-babel' 'python2-django-braces' 'python2-django-ckeditor' 'python2-django-classy-tags' 'python2-django-contrib-comments' 'python2-django-cors-headers' 'python2-django-crispy-forms' 'python2-django-debreach' 'python2-django-debug-toolbar' 'python2-django-environ' 'python2-django-extensions' 'python2-django-formtools' 'python2-django-grappelli' 'python2-django-guardian' 'python2-django-invitations' 'python2-django-jinja' 'python2-django-js-asset' 'python2-django-json-widget' 'python2-django-jsonfield' 'python2-django-minio-storage' 'python2-django-model-utils' 'python2-django-nine' 'python2-django-nose' 'python2-django-oauth-toolkit' 'python2-django-oidc-provider' 'python2-django-picklefield' 'python2-django-pipeline' 'python2-django-pyscss' 'python2-django-redis' 'python2-django-registration' 'python2-django-rest-framework-client' 'python2-django-rest-framework-social-oauth2' 'python2-django-rest-invitations' 'python2-django-rest-knox' 'python2-django-reversion' 'python2-django-seed' 'python2-django-sekizai' 'python2-django-silk' 'python2-django-storages' 'python2-django-tagging' 'python2-django-tastypie' 'python2-django-threadedcomments' 'python2-django-webpack-loader' 'python2-django-webtest' 'python2-django_compressor' 'python2-django_coverage_plugin' 'python2-djangorestframework' 'python2-djet' 'python2-djvulibre' 'python2-dns-lexicon' 'python2-dnspython' 'python2-docformatter' 'python2-docker' 'python2-docker-compose' 'python2-docker-pycreds' 'python2-dockerpty' 'python2-docopt' 'python2-docrepr' 'python2-docutils' 'python2-docutils-ast-writer' 'python2-dogpile.cache' 'python2-dominate' 'python2-dparse' 'python2-dpkt' 'python2-drf-jwt-knox' 'python2-drf-nested-routers' 'python2-drms' 'python2-dropbox' 'python2-duckduckgo2' 'python2-dukpy' 'python2-dukpy-kovidgoyal' 'python2-dulwich' 'python2-easydev' 'python2-easygui' 'python2-easypysmb' 'python2-easywatch' 'python2-ebcdic' 'python2-ecdsa' 'python2-ed25519ll' 'python2-editdistance' 'python2-editdistance-devel' 'python2-efl' 'python2-efl-doc' 'python2-efl-examples' 'python2-elasticsearch' 'python2-email_validator' 'python2-emoji' 'python2-empy' 'python2-enable' 'python2-enable-kiva' 'python2-enaml' 'python2-encore' 'python2-entrypoint2' 'python2-entrypoints' 'python2-environmental-override' 'python2-enzyme' 'python2-epubmerge' 'python2-eradicate' 'python2-espeak' 'python2-esptool' 'python2-et_xmlfile' 'python2-etcd' 'python2-etcd-test' 'python2-ethtool' 'python2-evdev' 'python2-evemu' 'python2-eventlet' 'python2-evtx' 'python2-exam' 'python2-execnet' 'python2-expects' 'python2-exrex' 'python2-extras' 'python2-ez_setup' 'python2-factory_boy' 'python2-fake-useragent' 'python2-fakeredis' 'python2-falcon' 'python2-fanficfare' 'python2-fann2' 'python2-fastcluster' 'python2-fasteners' 'python2-fastimport' 'python2-fastparquet' 'python2-fb-re2' 'python2-fedmsg' 'python2-feedgenerator' 'python2-feedparser' 'python2-fido2' 'python2-fields' 'python2-filelock' 'python2-finance_enums' 'python2-fire' 'python2-first' 'python2-fixtures' 'python2-flake8' 'python2-flake8-blind-except' 'python2-flake8-builtins' 'python2-flake8-class-newline' 'python2-flake8-debugger' 'python2-flake8-deprecated' 'python2-flake8-docstrings' 'python2-flake8-future-import' 'python2-flake8-import-order' 'python2-flake8-imports' 'python2-flake8-polyfill' 'python2-flake8-quotes' 'python2-flaky' 'python2-flasgger' 'python2-flask-jwt-extended' 'python2-flask-mongoengine' 'python2-flask-peewee' 'python2-flask-restplus' 'python2-flatbuffers' 'python2-flex' 'python2-flexmock' 'python2-flickrapi' 'python2-flower' 'python2-fluent' 'python2-fluidity-sm' 'python2-flup' 'python2-forbiddenfruit' 'python2-freetype-py' 'python2-freezegun' 'python2-freezerclient' 'python2-frozendict' 'python2-fs' 'python2-ftputil' 'python2-fudge' 'python2-funcparserlib' 'python2-funcy' 'python2-furl' 'python2-fuse' 'python2-fusepy' 'python2-future' 'python2-futures' 'python2-futurist' 'python2-fysom' 'python2-gTTS' 'python2-gTTS-token' 'python2-gabbi' 'python2-gast' 'python2-gear' 'python2-ged4py' 'python2-genty' 'python2-geographiclib' 'python2-geoip2' 'python2-geojson' 'python2-geolib' 'python2-geolinks' 'python2-geopy' 'python2-gevent' 'python2-geventhttpclient' 'python2-ggplot' 'python2-girder-client' 'python2-git-pw' 'python2-git-url-parse' 'python2-gitdb2' 'python2-github3.py' 'python2-gitlint' 'python2-glanceclient' 'python2-glean' 'python2-glfw' 'python2-glob2' 'python2-gmpy' 'python2-gmpy2' 'python2-gobject-Dee' 'python2-gobject-Gdk' 'python2-gobject-cairo' 'python2-gobject-devel' 'python2-gogs_client' 'python2-goocanvas' 'python2-goocanvas-devel' 'python2-google-api-core' 'python2-google-api-python-client' 'python2-google-auth' 'python2-google-auth-httplib2' 'python2-google-auth-oauthlib' 'python2-google-cloud-core' 'python2-google-cloud-kms' 'python2-google-cloud-speech' 'python2-google-cloud-storage' 'python2-google-resumable-media' 'python2-googleapis-common-protos' 'python2-googlemaps' 'python2-gpg' 'python2-gpgme' 'python2-gphoto2' 'python2-gpod' 'python2-gprof2dot' 'python2-gpsd' 'python2-grab' 'python2-graphviz' 'python2-greenlet' 'python2-greenlet-devel' 'python2-grpc-google-iam-v1' 'python2-grpcio' 'python2-grpcio-gcp' 'python2-gscholar' 'python2-gspread' 'python2-gssapi' 'python2-gst' 'python2-guessit' 'python2-gunicorn' 'python2-guzzle_sphinx_theme' 'python2-h11' 'python2-h2' 'python2-h5py' 'python2-hankel' 'python2-happybase' 'python2-hawkauthlib' 'python2-hdf5storage' 'python2-heatclient' 'python2-hetzner' 'python2-hexdump' 'python2-hiredis' 'python2-hkdf' 'python2-hl7apy' 'python2-holidays' 'python2-hpack' 'python2-html2text' 'python2-html5-parser' 'python2-html5lib' 'python2-htmlmin' 'python2-httmock' 'python2-http-parser' 'python2-httpbin' 'python2-httplib2' 'python2-httpretty' 'python2-httpsig_cffi' 'python2-httpstatus35' 'python2-humanfriendly' 'python2-humanhash3' 'python2-humanize' 'python2-hupper' 'python2-husl' 'python2-hyper' 'python2-hyperframe' 'python2-hyperlink' 'python2-hypothesis' 'python2-hypothesis-fspaths' 'python2-icalendar' 'python2-identify' 'python2-idna' 'python2-ifaddr' 'python2-imageio' 'python2-imagesize' 'python2-img2pdf' 'python2-iminuit' 'python2-importlab' 'python2-importlib-metadata' 'python2-importlib_resources' 'python2-imread' 'python2-incremental' 'python2-infinity' 'python2-inflect' 'python2-inflection' 'python2-influxdb' 'python2-inifile' 'python2-iniparse' 'python2-inspect2' 'python2-inspektor' 'python2-intervals' 'python2-intervaltree' 'python2-invocations' 'python2-invoke' 'python2-iocapture' 'python2-ioflo' 'python2-ipaddr' 'python2-ipdb' 'python2-iptables' 'python2-ipy' 'python2-ipykernel' 'python2-ipympl' 'python2-ipyparallel' 'python2-ipython' 'python2-ipython-iptest' 'python2-ipython_genutils' 'python2-ipywidgets' 'python2-ironicclient' 'python2-iso8601' 'python2-isodate' 'python2-isort' 'python2-itsdangerous' 'python2-itypes' 'python2-iwlib' 'python2-jaraco.base' 'python2-jaraco.classes' 'python2-jaraco.collections' 'python2-jaraco.functools' 'python2-jaraco.itertools' 'python2-jaraco.logging' 'python2-jaraco.packaging' 'python2-jaraco.stream' 'python2-jaraco.text' 'python2-jdcal' 'python2-jedi' 'python2-jedihttp' 'python2-jenkins-job-builder' 'python2-jenkinsapi' 'python2-jgraph' 'python2-jinja2-fsloader' 'python2-jinja2-time' 'python2-jira' 'python2-jirafs' 'python2-jmespath' 'python2-joblib' 'python2-josepy' 'python2-jplephem' 'python2-jsbeautifier' 'python2-json-rpc' 'python2-json5' 'python2-json_tricks' 'python2-jsondate' 'python2-jsondiff' 'python2-jsonextended' 'python2-jsonlines' 'python2-jsonpatch' 'python2-jsonpath-rw' 'python2-jsonpath-rw-ext' 'python2-jsonpickle' 'python2-jsonpointer' 'python2-jsonref' 'python2-jsonrpclib-pelix' 'python2-jsonschema' 'python2-junitxml' 'python2-jupyter-contrib-nbextensions' 'python2-jupyter-server' 'python2-jupyter_client' 'python2-jupyter_contrib_core' 'python2-jupyter_core' 'python2-jupyter_highlight_selected_word' 'python2-jupyter_latex_envs' 'python2-jupyter_nbextensions_configurator' 'python2-jupyter_sphinx' 'python2-jupyterlab-pygments' 'python2-jupytext' 'python2-jwcrypto' 'python2-k5test' 'python2-kafka-python' 'python2-kaitaistruct' 'python2-kazoo' 'python2-keepalive' 'python2-kerberos' 'python2-keyczar' 'python2-keyring' 'python2-keyrings.alt' 'python2-keystoneauth1' 'python2-keystoneclient' 'python2-keystonemiddleware' 'python2-kid' 'python2-killswitch' 'python2-kitchen' 'python2-kiwisolver' 'python2-kmatch' 'python2-kmod' 'python2-knack' 'python2-kombu' 'python2-kubernetes' 'python2-l20n' 'python2-lancet-ioam' 'python2-lark-parser' 'python2-latexcodec' 'python2-lazr.uri' 'python2-lazy' 'python2-lazy-object-proxy' 'python2-lazyarray' 'python2-ldap' 'python2-ldap3' 'python2-ldappool' 'python2-leather' 'python2-lesscpy' 'python2-leveldb' 'python2-lexicon' 'python2-lhafile' 'python2-libarchive' 'python2-libarchive-c' 'python2-libbde' 'python2-libewf' 'python2-libfsntfs' 'python2-libfvde' 'python2-libfwnt' 'python2-libguestfs' 'python2-liblarch' 'python2-liblarch-gtk' 'python2-libnacl' 'python2-libpamtest' 'python2-libpfm' 'python2-libprelude' 'python2-libpreludedb' 'python2-libqcow' 'python2-librosa' 'python2-libsass' 'python2-libscca' 'python2-libsigscan' 'python2-libsmdev' 'python2-libsmraw' 'python2-libtorrent-rasterbar' 'python2-libunity' 'python2-libusb1' 'python2-libvhdi' 'python2-libvirt-python' 'python2-libvmdk' 'python2-libvshadow' 'python2-libvslvm' 'python2-libxml2-python' 'python2-limnoria' 'python2-line_profiler' 'python2-linecache2' 'python2-lineup-widget' 'python2-linux-procfs' 'python2-lit' 'python2-llfuse' 'python2-llvmlite' 'python2-lmdb' 'python2-lmfit' 'python2-lml' 'python2-localzone' 'python2-locket' 'python2-lockfile' 'python2-logilab-astng' 'python2-logilab-common' 'python2-logutils' 'python2-logzero' 'python2-lupa' 'python2-lxml' 'python2-lxml-devel' 'python2-lz4' 'python2-lzmaffi' 'python2-m2r' 'python2-macholib' 'python2-magic' 'python2-magic-wormhole' 'python2-magic-wormhole-mailbox-server' 'python2-magic-wormhole-transit-relay' 'python2-magnumclient' 'python2-managesieve' 'python2-mando' 'python2-manilaclient' 'python2-manuel' 'python2-manuel-doc' 'python2-marathon' 'python2-markdown-math' 'python2-markdown2' 'python2-matplotlib' 'python2-matplotlib-gtk3' 'python2-matplotlib-latex' 'python2-matplotlib-qt-shared' 'python2-matplotlib-qt5' 'python2-matplotlib-tk' 'python2-matplotlib-web' 'python2-matplotlib-wx' 'python2-matrix-synapse-ldap3' 'python2-maxminddb' 'python2-mbstrdecoder' 'python2-mccabe' 'python2-md2workflow' 'python2-mechanize' 'python2-meld3' 'python2-memory_profiler' 'python2-metaextract' 'python2-metakernel' 'python2-mhash' 'python2-minio' 'python2-miniupnpc' 'python2-mistune' 'python2-moban' 'python2-mock' 'python2-mockito' 'python2-mockldap' 'python2-modernize' 'python2-mohawk' 'python2-moksha-common' 'python2-moksha-hub' 'python2-monascaclient' 'python2-mongoengine' 'python2-monotonic' 'python2-more-itertools' 'python2-moretools' 'python2-moto' 'python2-moviepy' 'python2-mox3' 'python2-mpi4py' 'python2-mpi4py-devel' 'python2-mpmath' 'python2-mraa' 'python2-msgpack' 'python2-msgpack-numpy' 'python2-msoffcrypto-tool' 'python2-msrest' 'python2-msrestazure' 'python2-mujson' 'python2-mulpyplexer' 'python2-multi_key_dict' 'python2-multipledispatch' 'python2-munch' 'python2-musicbrainzngs' 'python2-mutt-ics' 'python2-mygpoclient' 'python2-mypy_extensions' 'python2-mysql-connector-python' 'python2-mysqlclient' 'python2-nagiosplugin' 'python2-natsort' 'python2-nautilus' 'python2-nautilus-devel' 'python2-nbconvert' 'python2-nbdime' 'python2-nbformat' 'python2-nbindex-jupyter' 'python2-nbsmoke' 'python2-nbsphinx' 'python2-nbsphinx-link' 'python2-nbval' 'python2-nbxmpp' 'python2-nbxmpp-doc' 'python2-ncclient' 'python2-ndg-httpsclient' 'python2-nemo' 'python2-neovim' 'python2-net-snmp' 'python2-netCDF4' 'python2-netaddr' 'python2-netifaces' 'python2-netmiko' 'python2-networkx' 'python2-networkx-doc' 'python2-neutronclient' 'python2-newt' 'python2-nibabel' 'python2-nilearn' 'python2-nine' 'python2-nltk' 'python2-nose' 'python2-nose-cov' 'python2-nose-cover3' 'python2-nose-exclude' 'python2-nose-progressive' 'python2-nose-timer' 'python2-nose2' 'python2-nose_warnings_filters' 'python2-nosexcover' 'python2-notebook' 'python2-notebook-lang' 'python2-notify2' 'python2-novaclient' 'python2-nss' 'python2-ntlm-auth' 'python2-ntplib' 'python2-num2words' 'python2-numba' 'python2-numba-devel' 'python2-numericalunits' 'python2-numexpr' 'python2-numpy' 'python2-numpy-devel' 'python2-numpy-gnu-hpc' 'python2-numpy-gnu-hpc-devel' 'python2-numpy_1_16_4-gnu-hpc' 'python2-numpy_1_16_4-gnu-hpc-devel' 'python2-numpydoc' 'python2-nwdiag' 'python2-oauth2' 'python2-oauth2client' 'python2-oauth2client-flask' 'python2-oauth2client-gce' 'python2-oauthlib' 'python2-objgraph' 'python2-octaviaclient' 'python2-odfpy' 'python2-odorik' 'python2-olefile' 'python2-openapi-core' 'python2-openapi-spec-validator' 'python2-opencv' 'python2-opencv3' 'python2-opengl' 'python2-opengl-accelerate' 'python2-openmesh' 'python2-openpyxl' 'python2-openqa_client' 'python2-openqa_review' 'python2-openstack.nose_plugin' 'python2-openstackclient' 'python2-openstackdocstheme' 'python2-openstacksdk' 'python2-ordered-namespace' 'python2-ordered-set' 'python2-orderedmultidict' 'python2-os-api-ref' 'python2-os-client-config' 'python2-os-service-types' 'python2-os-testr' 'python2-os-win' 'python2-osc-lib' 'python2-oscrypto' 'python2-oslo.cache' 'python2-oslo.concurrency' 'python2-oslo.config' 'python2-oslo.context' 'python2-oslo.db' 'python2-oslo.i18n' 'python2-oslo.log' 'python2-oslo.messaging' 'python2-oslo.middleware' 'python2-oslo.policy' 'python2-oslo.privsep' 'python2-oslo.reports' 'python2-oslo.rootwrap' 'python2-oslo.serialization' 'python2-oslo.service' 'python2-oslo.utils' 'python2-oslo.versionedobjects' 'python2-oslo.vmware' 'python2-oslosphinx' 'python2-oslotest' 'python2-osmviz' 'python2-osprofiler' 'python2-outcome' 'python2-ovirt-engine-sdk' 'python2-ovs' 'python2-ovsdbapp' 'python2-pa-ringbuffer' 'python2-packaging' 'python2-paho-mqtt' 'python2-pako' 'python2-palettable' 'python2-pamqp' 'python2-pandas' 'python2-pandas-datareader' 'python2-pandocfilters' 'python2-panflute' 'python2-parallax' 'python2-param' 'python2-parameterized' 'python2-paramiko' 'python2-paramiko-expect' 'python2-parse' 'python2-parse_type' 'python2-parsedatetime' 'python2-parsel' 'python2-parso' 'python2-partd' 'python2-parted' 'python2-parver' 'python2-pass_python_keyring' 'python2-passa' 'python2-passivetotal' 'python2-passlib' 'python2-pastream' 'python2-path.py' 'python2-pathlib' 'python2-pathlib2' 'python2-pathspec' 'python2-pathtools' 'python2-patsy' 'python2-pbkdf2' 'python2-pbr' 'python2-pdfkit' 'python2-pdfrw' 'python2-pecan' 'python2-peewee' 'python2-pefile' 'python2-pelican' 'python2-pem' 'python2-pep517' 'python2-pep8-naming' 'python2-peppercorn' 'python2-persistent' 'python2-persistent-devel' 'python2-petact' 'python2-pexpect' 'python2-pgmagick' 'python2-phabricator' 'python2-phonenumbers' 'python2-phply' 'python2-phue' 'python2-pick' 'python2-pickleshare' 'python2-piexif' 'python2-pifpaf' 'python2-pika' 'python2-pika-pool' 'python2-pilkit' 'python2-pip' 'python2-pip-api' 'python2-pip-run' 'python2-pip-shims' 'python2-pipdeptree' 'python2-pipenv' 'python2-pipreqs' 'python2-piston-mini-client' 'python2-pivy' 'python2-pkgconfig' 'python2-pkginfo' 'python2-plaster' 'python2-plaster-pastedeploy' 'python2-plette' 'python2-plotly' 'python2-plotly-jupyter' 'python2-pluggy' 'python2-plumbum' 'python2-ply' 'python2-plyvel' 'python2-pmw' 'python2-pocketsphinx' 'python2-pocketsphinx-python' 'python2-podcastparser' 'python2-polib' 'python2-pony' 'python2-port-for' 'python2-portalocker' 'python2-portend' 'python2-portpicker' 'python2-positional' 'python2-posix_ipc' 'python2-power' 'python2-poyo' 'python2-pprintpp' 'python2-precise-runner' 'python2-preggy' 'python2-prelude-correlator' 'python2-premailer' 'python2-pretend' 'python2-prewikka' 'python2-proboscis' 'python2-process-tests' 'python2-proglog' 'python2-progress' 'python2-progressbar' 'python2-prometheus_client' 'python2-promise' 'python2-prompt_toolkit' 'python2-prompt_toolkit1' 'python2-proselint' 'python2-protobuf' 'python2-pscript' 'python2-psutil' 'python2-psycopg2' 'python2-ptpython' 'python2-ptyprocess' 'python2-publicsuffixlist' 'python2-pudb' 'python2-pulsectl' 'python2-pure-sasl' 'python2-purl' 'python2-pushy' 'python2-pwquality' 'python2-py' 'python2-py-cpuinfo' 'python2-py-espeak-ng' 'python2-py-radix' 'python2-py-ubjson' 'python2-py2pack' 'python2-py3status' 'python2-pyDOE2' 'python2-pyFFTW' 'python2-pyLibravatar' 'python2-pyModis' 'python2-pyOCD' 'python2-pyOpenSSL' 'python2-pyPEG2' 'python2-pyRFC3339' 'python2-pyScss' 'python2-pyVows' 'python2-pyacoustid' 'python2-pyaes' 'python2-pyalsaaudio' 'python2-pyaml' 'python2-pyannotate' 'python2-pyasn1' 'python2-pyasn1-modules' 'python2-pybars3' 'python2-pybeam' 'python2-pybind11' 'python2-pybind11-devel' 'python2-pyblake2' 'python2-pybluez' 'python2-pybtex' 'python2-pybugz' 'python2-pycadf' 'python2-pycairo' 'python2-pycairo-devel' 'python2-pycallgraph' 'python2-pycdio' 'python2-pycha' 'python2-pychm' 'python2-pycodestyle' 'python2-pycountry' 'python2-pycparser' 'python2-pycryptodome' 'python2-pycryptodomex' 'python2-pycsw' 'python2-pyct' 'python2-pycups' 'python2-pycurl' 'python2-pycxx' 'python2-pycxx-devel' 'python2-pydata-google-auth' 'python2-pydbus' 'python2-pydenticon' 'python2-pydicom' 'python2-pydns' 'python2-pydocstyle' 'python2-pydocumentdb' 'python2-pydot' 'python2-pydot3' 'python2-pydotplus' 'python2-pydub' 'python2-pyee' 'python2-pyelftools' 'python2-pyemd' 'python2-pyenchant' 'python2-pyface' 'python2-pyfakefs' 'python2-pyfeyn' 'python2-pyfiglet' 'python2-pyflakes' 'python2-pyftpdlib' 'python2-pygal' 'python2-pygaljs' 'python2-pygame' 'python2-pygame-devel' 'python2-pygerrit2' 'python2-pyghmi' 'python2-pygit2' 'python2-pyglet' 'python2-pygments-ansi-color' 'python2-pygments-pytest' 'python2-pygments-style-railscasts' 'python2-pygraphviz' 'python2-pyinotify' 'python2-pyinsane2' 'python2-pyjavaproperties' 'python2-pyjokes' 'python2-pyjsparser' 'python2-pyjwkest' 'python2-pykafka' 'python2-pykeepass' 'python2-pykerberos' 'python2-pykwalify' 'python2-pylama' 'python2-pylev' 'python2-pyliblzma' 'python2-pylibmc' 'python2-pylint' 'python2-pylons-sphinx-themes' 'python2-pylzma' 'python2-pymacaroons' 'python2-pymacaroons-pynacl' 'python2-pymad' 'python2-pymarc' 'python2-pymediainfo' 'python2-pymemcache' 'python2-pymisp' 'python2-pymod2pkg' 'python2-pymol' 'python2-pymongo' 'python2-pymssql' 'python2-pynamodb' 'python2-pyngus' 'python2-pyodbc' 'python2-pyosf' 'python2-pyotp' 'python2-pyparallel' 'python2-pyperclip' 'python2-pypiserver' 'python2-pypng' 'python2-pyprel' 'python2-pyprimes' 'python2-pyproj' 'python2-pypsexec' 'python2-pypuppetdb' 'python2-pyqtgraph' 'python2-pyquery' 'python2-pyramid' 'python2-pyreadstat' 'python2-pyroma' 'python2-pyroute2' 'python2-pyrrd' 'python2-pyrsistent' 'python2-pysaml2' 'python2-pyscard' 'python2-pysendfile' 'python2-pyserial' 'python2-pyshould' 'python2-pyshp' 'python2-pysmb' 'python2-pysmbc' 'python2-pysmi' 'python2-pysndfile' 'python2-pysnmp' 'python2-pysofaconventions' 'python2-pysrt' 'python2-pyssim' 'python2-pystache' 'python2-pysvn' 'python2-pytaglib' 'python2-pyte' 'python2-pytesseract' 'python2-pytest-arraydiff' 'python2-pytest-astropy' 'python2-pytest-attrib' 'python2-pytest-bdd' 'python2-pytest-benchmark' 'python2-pytest-check-links' 'python2-pytest-click' 'python2-pytest-codestyle' 'python2-pytest-console-scripts' 'python2-pytest-cov' 'python2-pytest-datadir' 'python2-pytest-django' 'python2-pytest-doctestplus' 'python2-pytest-dotenv' 'python2-pytest-env' 'python2-pytest-error-for-skips' 'python2-pytest-expect' 'python2-pytest-faulthandler' 'python2-pytest-fixture-config' 'python2-pytest-flake8' 'python2-pytest-flakes' 'python2-pytest-flask' 'python2-pytest-forked' 'python2-pytest-git' 'python2-pytest-helpers-namespace' 'python2-pytest-html' 'python2-pytest-httpbin' 'python2-pytest-instafail' 'python2-pytest-isort' 'python2-pytest-lazy-fixture' 'python2-pytest-localserver' 'python2-pytest-metadata' 'python2-pytest-mock' 'python2-pytest-mpl' 'python2-pytest-openfiles' 'python2-pytest-profiling' 'python2-pytest-pythonpath' 'python2-pytest-qt' 'python2-pytest-randomly' 'python2-pytest-relaxed' 'python2-pytest-remotedata' 'python2-pytest-reorder' 'python2-pytest-repeat' 'python2-pytest-reqs' 'python2-pytest-rerunfailures' 'python2-pytest-runner' 'python2-pytest-services' 'python2-pytest-shutil' 'python2-pytest-socket' 'python2-pytest-spec' 'python2-pytest-subtesthack' 'python2-pytest-sugar' 'python2-pytest-super-check' 'python2-pytest-svn' 'python2-pytest-testconfig' 'python2-pytest-timeout' 'python2-pytest-tldr' 'python2-pytest-tornado' 'python2-pytest-translations' 'python2-pytest-travis-fold' 'python2-pytest-vcr' 'python2-pytest-verbose-parametrize' 'python2-pytest-virtualenv' 'python2-pytest-xdist' 'python2-pytest-xvfb' 'python2-pytest3' 'python2-pytest4' 'python2-python-afl' 'python2-python-aiml' 'python2-python-bidi' 'python2-python-box' 'python2-python-cjson' 'python2-python-coveralls' 'python2-python-crfsuite' 'python2-python-daemon' 'python2-python-datamatrix' 'python2-python-dateutil' 'python2-python-dbusmock' 'python2-python-docs-theme' 'python2-python-dotenv' 'python2-python-editor' 'python2-python-fileinspector' 'python2-python-gammu' 'python2-python-gflags' 'python2-python-gitlab' 'python2-python-gnupg' 'python2-python-jenkins' 'python2-python-jose' 'python2-python-json-logger' 'python2-python-louvain' 'python2-python-lzo' 'python2-python-magic' 'python2-python-memcached' 'python2-python-mimeparse' 'python2-python-mpd2' 'python2-python-mpv' 'python2-python-openid-cla' 'python2-python-openid-teams' 'python2-python-pam' 'python2-python-pseudorandom' 'python2-python-ptrace' 'python2-python-qdatamatrix' 'python2-python-qnotifications' 'python2-python-qpid-proton' 'python2-python-qprogedit' 'python2-python-redmine' 'python2-python-slugify' 'python2-python-snappy' 'python2-python-sofa' 'python2-python-sql' 'python2-python-stdnum' 'python2-python-subunit' 'python2-python-twitter' 'python2-python-utils' 'python2-python-vlc' 'python2-python-whois' 'python2-python-xlib' 'python2-python-yubico' 'python2-python3-saml' 'python2-pythonfinder' 'python2-pythonwhois' 'python2-pytidylib' 'python2-pytils' 'python2-pytimeparse' 'python2-pytoml' 'python2-pytools' 'python2-pytricia' 'python2-pytz' 'python2-pyuca' 'python2-pyudev' 'python2-pyusb' 'python2-pyutf8' 'python2-pyviz-comms' 'python2-pyvmomi' 'python2-pywbem' 'python2-pywinrm' 'python2-pyxattr' 'python2-pyxb' 'python2-pyxdg' 'python2-pyzmq' 'python2-pyzmq-devel' 'python2-qgrid' 'python2-qrcode' 'python2-qscintilla-qt5' 'python2-qt3d-qt5' 'python2-qt4-devel' 'python2-qt5' 'python2-qt5-devel' 'python2-qtcharts-qt5' 'python2-qtconsole' 'python2-qtdatavis3d-qt5' 'python2-qtwebengine-qt5' 'python2-queuelib' 'python2-quicktions' 'python2-radon' 'python2-raet' 'python2-random2' 'python2-rarfile' 'python2-rarfile-doc' 'python2-ravello-sdk' 'python2-raven' 'python2-rawkit' 'python2-rcssmin' 'python2-rdflib' 'python2-readme_renderer' 'python2-readthedocs-sphinx-ext' 'python2-rebulk' 'python2-recommonmark' 'python2-redbaron' 'python2-redis' 'python2-rednose' 'python2-regex' 'python2-relatorio' 'python2-releases' 'python2-releases-test' 'python2-remoto' 'python2-rencode' 'python2-reno' 'python2-repex' 'python2-reportlab' 'python2-repoze.lru' 'python2-repoze.sphinx.autointerface' 'python2-repoze.who' 'python2-requests' 'python2-requests-aws' 'python2-requests-cache' 'python2-requests-download' 'python2-requests-file' 'python2-requests-ftp' 'python2-requests-futures' 'python2-requests-hawk' 'python2-requests-kerberos' 'python2-requests-mock' 'python2-requests-oauthlib' 'python2-requests-toolbelt' 'python2-requests-unixsocket' 'python2-requests_ntlm' 'python2-requestsexceptions' 'python2-requirements-detector' 'python2-requirements-parser' 'python2-requirementslib' 'python2-resampy' 'python2-resolvelib' 'python2-responses' 'python2-restructuredtext_lint' 'python2-resultsdb_api' 'python2-retry' 'python2-retry_decorator' 'python2-retrying' 'python2-rfc3986' 'python2-rfc3987' 'python2-rfc6266' 'python2-rjsmin' 'python2-rnginline' 'python2-rollbar' 'python2-roman' 'python2-rope' 'python2-rply' 'python2-rpm' 'python2-rpmfile' 'python2-rpyc' 'python2-rq' 'python2-rrdtool' 'python2-rsa' 'python2-rst.linker' 'python2-rstcheck' 'python2-rt' 'python2-rtslib-fb' 'python2-ruamel.base' 'python2-ruamel.std.argparse' 'python2-ruamel.std.pathlib' 'python2-ruamel.yaml' 'python2-ruamel.yaml.clib' 'python2-ruamel.yaml.cmd' 'python2-ruamel.yaml.convert' 'python2-ruffus' 'python2-ryu' 'python2-s3transfer' 'python2-salt' 'python2-samplerate' 'python2-sane' 'python2-sanlock' 'python2-sarge' 'python2-sas7bdat' 'python2-sasl' 'python2-scales' 'python2-scandir' 'python2-schedule' 'python2-schema' 'python2-scikit-build' 'python2-scikit-dsp-comm' 'python2-scikit-image' 'python2-scikit-learn' 'python2-scikit-sparse' 'python2-scikit-umfpack' 'python2-scikits.example' 'python2-scipy' 'python2-scipy-gnu-hpc' 'python2-scipy_1_2_1-gnu-hpc' 'python2-scitools' 'python2-scour' 'python2-scp' 'python2-scripttest' 'python2-scrypt' 'python2-scspell3k' 'python2-sdnotify' 'python2-seaborn' 'python2-selection' 'python2-selectors2' 'python2-selectors34' 'python2-selenium' 'python2-semanage' 'python2-semantic_version' 'python2-semver' 'python2-senlinclient' 'python2-sentry-sdk' 'python2-seqdiag' 'python2-serpent' 'python2-serpy' 'python2-serverfiles' 'python2-service_identity' 'python2-setproctitle' 'python2-setuptools' 'python2-setuptools-git' 'python2-setuptools_scm' 'python2-setuptools_scm_git_archive' 'python2-sge-pygame' 'python2-sh' 'python2-shaptools' 'python2-shellingham' 'python2-shijian' 'python2-shodan' 'python2-shortuuid' 'python2-shouldbe' 'python2-shutilwhich' 'python2-sievelib' 'python2-signedjson' 'python2-simplebayes' 'python2-simpleeval' 'python2-simplegeneric' 'python2-simplejson' 'python2-sip-devel' 'python2-siphashc' 'python2-sklearn-pandas' 'python2-sleekxmpp' 'python2-slimit' 'python2-slip' 'python2-slip-dbus' 'python2-slip-gtk' 'python2-slumber' 'python2-slycot' 'python2-smartypants' 'python2-smbprotocol' 'python2-smmap' 'python2-smmap2' 'python2-snakefood' 'python2-snowballstemmer' 'python2-snuggs' 'python2-social-auth-app-django' 'python2-social-auth-core' 'python2-socketpool' 'python2-softlayer' 'python2-sortedcollections' 'python2-sortedcontainers' 'python2-sortinghat' 'python2-soundcloud' 'python2-sounddevice' 'python2-soupsieve' 'python2-spake2' 'python2-spark_parser' 'python2-speaklater' 'python2-spec' 'python2-sphinx-bootstrap-theme' 'python2-sphinx-feature-classification' 'python2-sphinx-issues' 'python2-sphinx-removed-in' 'python2-sphinx-testing' 'python2-sphinx-version-warning' 'python2-sphinx_rtd_theme' 'python2-sphinxbase' 'python2-sphinxcontrib-actdiag' 'python2-sphinxcontrib-apidoc' 'python2-sphinxcontrib-asyncio' 'python2-sphinxcontrib-autoprogram' 'python2-sphinxcontrib-autoprogram-doc' 'python2-sphinxcontrib-blockdiag' 'python2-sphinxcontrib-documentedlist' 'python2-sphinxcontrib-github-alt' 'python2-sphinxcontrib-httpdomain' 'python2-sphinxcontrib-issuetracker' 'python2-sphinxcontrib-newsfeed' 'python2-sphinxcontrib-nwdiag' 'python2-sphinxcontrib-pecanwsme' 'python2-sphinxcontrib-programoutput' 'python2-sphinxcontrib-seqdiag' 'python2-sphinxcontrib-svg2pdfconverter' 'python2-sphinxcontrib-websupport' 'python2-spotipy' 'python2-sqlalchemy-migrate' 'python2-sqlitedict' 'python2-sqlparse' 'python2-ssdeep' 'python2-sshtunnel' 'python2-statistics' 'python2-statsd' 'python2-statsmodels' 'python2-stdeb' 'python2-stestr' 'python2-stevedore' 'python2-stomp.py' 'python2-stomper' 'python2-storm' 'python2-storm-django' 'python2-storm-mysql' 'python2-storm-postgresql' 'python2-storm-twisted' 'python2-straight-plugin' 'python2-streamz' 'python2-strict-rfc3339' 'python2-structlog' 'python2-subgrab' 'python2-subliminal' 'python2-subprocess32' 'python2-subst' 'python2-suds-jurko' 'python2-sure' 'python2-sushy' 'python2-svgwrite' 'python2-swapper' 'python2-swiftclient' 'python2-sybil' 'python2-sympy' 'python2-systemd' 'python2-tables' 'python2-tablib' 'python2-tabulate' 'python2-tagpy' 'python2-tap.py' 'python2-targetcli-fb' 'python2-tblib' 'python2-technicolor' 'python2-telepot' 'python2-template-remover' 'python2-tempora' 'python2-tenacity' 'python2-termcolor' 'python2-terminado' 'python2-terminaltables' 'python2-termstyle' 'python2-tesserocr' 'python2-testfixtures' 'python2-testflo' 'python2-testinfra' 'python2-testpath' 'python2-testrepository' 'python2-testresources' 'python2-testscenarios' 'python2-testtools' 'python2-text-unidecode' 'python2-textX' 'python2-textfsm' 'python2-textile' 'python2-texttable' 'python2-textwrap3' 'python2-thLib' 'python2-thrift' 'python2-thriftpy' 'python2-tinydb' 'python2-tinyrecord' 'python2-tinyrpc' 'python2-titlecase' 'python2-tkreadonly' 'python2-tld' 'python2-tldextract' 'python2-tmx' 'python2-toml' 'python2-tomlkit' 'python2-toolz' 'python2-tooz' 'python2-topy' 'python2-tornado' 'python2-tornado4' 'python2-tox' 'python2-tox-no-internet' 'python2-tox-travis' 'python2-tox-wheel' 'python2-tpfd' 'python2-tqdm' 'python2-traceback2' 'python2-traitlets' 'python2-traits' 'python2-traitsui' 'python2-traittypes' 'python2-transaction' 'python2-transip' 'python2-translation-finder' 'python2-translationstring' 'python2-translitcodec' 'python2-treq' 'python2-trustme' 'python2-tsk' 'python2-tvdb_api' 'python2-tweepy' 'python2-twine' 'python2-twitter.common.finagle-thrift' 'python2-twitter.common.lang' 'python2-twitter.common.rpc' 'python2-twodict' 'python2-twython' 'python2-txWS' 'python2-txZMQ' 'python2-txacme' 'python2-txaio' 'python2-txtorcon' 'python2-typing' 'python2-typing_extensions' 'python2-tzlocal' 'python2-u-msgpack-python' 'python2-ua-parser' 'python2-uamqp' 'python2-ucsmsdk' 'python2-ujson' 'python2-unbound' 'python2-uncertainties' 'python2-uncompyle6' 'python2-unicodecsv' 'python2-unidiff' 'python2-unify' 'python2-uniseg' 'python2-units' 'python2-unittest-mixins' 'python2-unittest-xml-reporting' 'python2-unittest2' 'python2-unpaddedbase64' 'python2-untokenize' 'python2-upm' 'python2-uritemplate' 'python2-urlgrabber' 'python2-urllib3' 'python2-urwid' 'python2-user-agents' 'python2-user_agent' 'python2-validate_email' 'python2-validators' 'python2-varlink' 'python2-vcrpy' 'python2-vcs' 'python2-vcversioner' 'python2-vega' 'python2-vega_datasets' 'python2-venusian' 'python2-venusian-doc' 'python2-verboselogs' 'python2-versioneer' 'python2-versiontools' 'python2-vim-vint' 'python2-vine' 'python2-virt-bootstrap' 'python2-virtkey' 'python2-virtualbmc' 'python2-virtualenv' 'python2-virtualenv-clone' 'python2-virtualenvwrapper' 'python2-visitor' 'python2-vispy' 'python2-vistir' 'python2-vobject' 'python2-voila' 'python2-voluptuous' 'python2-vulkan' 'python2-vulture' 'python2-w3lib' 'python2-wadllib' 'python2-waitress' 'python2-waitress-doc' 'python2-wakeonlan' 'python2-warlock' 'python2-watchdog' 'python2-watchdog-doc' 'python2-watermark' 'python2-wcwidth' 'python2-weave' 'python2-webassets' 'python2-webcolors' 'python2-webencodings' 'python2-weblib' 'python2-websocket-client' 'python2-websockify' 'python2-whatever' 'python2-whatthepatch' 'python2-wheel' 'python2-whichcraft' 'python2-whitenoise' 'python2-whois_similarity_distance' 'python2-wikipedia' 'python2-wiring' 'python2-wolframalpha' 'python2-wptools' 'python2-wrapt' 'python2-ws4py' 'python2-wsaccel' 'python2-wsgi_intercept' 'python2-wstools' 'python2-wtf-peewee' 'python2-wurlitzer' 'python2-wxPython' 'python2-wxPython-lang' 'python2-xapp' 'python2-xattr' 'python2-xcffib' 'python2-xdis' 'python2-xerox' 'python2-xhtml2pdf' 'python2-xlrd' 'python2-xlwt' 'python2-xmldiff' 'python2-xmlsec' 'python2-xmltodict' 'python2-xpybutil' 'python2-xsge_gui' 'python2-xsge_lighting' 'python2-xsge_particle' 'python2-xsge_path' 'python2-xsge_physics' 'python2-xsge_tmx' 'python2-xvfbwrapper' 'python2-xxhash' 'python2-yamldoc' 'python2-yamllint' 'python2-yapf' 'python2-yappi' 'python2-yara' 'python2-yarb' 'python2-yarg' 'python2-yaspin' 'python2-youtube-dl' 'python2-yq' 'python2-yum' 'python2-zake' 'python2-zc.buildout' 'python2-zc.customdoctests' 'python2-zc.lockfile' 'python2-zdaemon' 'python2-zeep' 'python2-zetup' 'python2-zict' 'python2-zipp' 'python2-zipstream' 'python2-zodbpickle' 'python2-zope.cachedescriptors' 'python2-zope.component' 'python2-zope.configuration' 'python2-zope.copy' 'python2-zope.deferredimport' 'python2-zope.deprecation' 'python2-zope.event' 'python2-zope.exceptions' 'python2-zope.hookable' 'python2-zope.i18nmessageid' 'python2-zope.interface' 'python2-zope.location' 'python2-zope.proxy' 'python2-zope.proxy-devel' 'python2-zope.schema' 'python2-zope.security' 'python2-zope.testbrowser' 'python2-zope.testing' 'python2-zope.testrunner' 'python2-zstandard' 'python2-zstd' 'python2-zypp-plugin' 'python3-32bit' 'python3-3to2' 'python3-APScheduler' 'python3-AnyQt' 'python3-Arpeggio' 'python3-BTrees' 'python3-BTrees-devel' 'python3-BTrees-doc' 'python3-Babel' 'python3-Babel-doc' 'python3-Beaker' 'python3-BitVector' 'python3-Bottleneck' 'python3-Brotli' 'python3-CacheControl' 'python3-CairoSVG' 'python3-Cerberus' 'python3-Chameleon' 'python3-Cheetah3' 'python3-CherryPy' 'python3-CommonMark' 'python3-Cycler' 'python3-Cython' 'python3-DataShape' 'python3-DateTime' 'python3-Delorean' 'python3-Deprecated' 'python3-Django' 'python3-Django1' 'python3-Durus' 'python3-EasyProcess' 'python3-EditorConfig' 'python3-ExifRead' 'python3-Fabric' 'python3-Fabric3' 'python3-Faker' 'python3-Fiona' 'python3-Flask' 'python3-Flask-Admin' 'python3-Flask-Babel' 'python3-Flask-BabelEx' 'python3-Flask-Bootstrap' 'python3-Flask-Cache' 'python3-Flask-Cache-doc' 'python3-Flask-Compress' 'python3-Flask-Cors' 'python3-Flask-Gravatar' 'python3-Flask-HTMLmin' 'python3-Flask-HTTPAuth' 'python3-Flask-Login' 'python3-Flask-Mail' 'python3-Flask-Migrate' 'python3-Flask-Paranoid' 'python3-Flask-Principal' 'python3-Flask-PyMongo' 'python3-Flask-RESTful' 'python3-Flask-RSTPages' 'python3-Flask-SQLAlchemy' 'python3-Flask-Script' 'python3-Flask-Security' 'python3-Flask-WTF' 'python3-Flask-doc' 'python3-FontTools' 'python3-FormEncode' 'python3-Frozen-Flask' 'python3-GDAL' 'python3-Genshi' 'python3-GeoIP' 'python3-GitPython' 'python3-GitgExt' 'python3-Glances' 'python3-GooCalendar' 'python3-GridDataFormats' 'python3-HTTPolice' 'python3-HeapDict' 'python3-IMDbPY' 'python3-Jinja2' 'python3-Js2Py' 'python3-JsonWeb' 'python3-Kajiki' 'python3-Keras-Applications' 'python3-Keras-Preprocessing' 'python3-Kivy' 'python3-Kivy-devel' 'python3-LEPL' 'python3-Lektor' 'python3-Levenshtein' 'python3-Logbook' 'python3-M2Crypto' 'python3-Mako' 'python3-MapProxy' 'python3-MarkupSafe' 'python3-Markups' 'python3-Mathics' 'python3-MechanicalSoup' 'python3-Ming' 'python3-MiniMock' 'python3-Morfessor' 'python3-MulticoreTSNE' 'python3-OWSLib' 'python3-Parsley' 'python3-Paste' 'python3-PasteDeploy' 'python3-PasteScript' 'python3-Paver' 'python3-PeakUtils' 'python3-Pebble' 'python3-Pillow-tk' 'python3-Pint' 'python3-PrettyTable' 'python3-PsyLab' 'python3-PsychoPy' 'python3-PsychoPy-lang' 'python3-Pweave' 'python3-PyAutoGUI' 'python3-PyBindGen' 'python3-PyBrowserID' 'python3-PyChromecast' 'python3-PyDispatcher' 'python3-PyECLib' 'python3-PyExecJS' 'python3-PyFxA' 'python3-PyGithub' 'python3-PyICU' 'python3-PyKMIP' 'python3-PyMeta3' 'python3-PyMsgBox' 'python3-PyMuPDF' 'python3-PyMySQL' 'python3-PyNaCl' 'python3-PyNamecheap' 'python3-PyOgg' 'python3-PyOpenAL' 'python3-PyPDF2' 'python3-PyPrind' 'python3-PyPrint' 'python3-PyQRCode' 'python3-PyRIC' 'python3-PySDL2' 'python3-PyScreeze' 'python3-PyTrie' 'python3-PyTweening' 'python3-PyVirtualDisplay' 'python3-PyWavelets' 'python3-PyWebDAV3' 'python3-PyWebDAV3-GNUHealth' 'python3-PyX' 'python3-Pydap' 'python3-Pygments' 'python3-Pykka' 'python3-Pympler' 'python3-Pyphen' 'python3-Pyro4' 'python3-QDarkStyle' 'python3-Qt.py' 'python3-QtAwesome' 'python3-QtPy' 'python3-Quandl' 'python3-RegexOrder' 'python3-Routes' 'python3-SPARQLWrapper' 'python3-SQLAlchemy' 'python3-SQLAlchemy-Utils' 'python3-Scrapy' 'python3-SecretStorage' 'python3-Shapely' 'python3-SimpleWebSocketServer' 'python3-SoapySDR' 'python3-SoundCard' 'python3-SoundFile' 'python3-SpeechRecognition' 'python3-Sphinx' 'python3-Sphinx-latex' 'python3-TagStats' 'python3-Tempita' 'python3-TermRecord' 'python3-Theano' 'python3-Transplant' 'python3-Trolly' 'python3-Trololio' 'python3-TxSNI' 'python3-URLObject' 'python3-UkPostcodeParser' 'python3-WSGIProxy2' 'python3-WSME' 'python3-WTForms' 'python3-WeasyPrint' 'python3-WebOb' 'python3-WebTest' 'python3-Werkzeug' 'python3-Whoosh' 'python3-XStatic' 'python3-XStatic-Angular-Schema-Form' 'python3-XStatic-jQuery' 'python3-XStatic-jquery-ui' 'python3-XStatic-objectpath' 'python3-XStatic-term.js' 'python3-XStatic-tv4' 'python3-XlsxWriter' 'python3-Yapsy' 'python3-ZConfig' 'python3-ZConfig-doc' 'python3-ZEO' 'python3-ZODB' 'python3-abclient' 'python3-abimap' 'python3-abimap-doc' 'python3-abseil' 'python3-acefile' 'python3-acitoolkit' 'python3-acme' 'python3-actdiag' 'python3-adal' 'python3-adapt-parser' 'python3-addict' 'python3-aeidon' 'python3-aenum' 'python3-aexpect' 'python3-affine' 'python3-agate' 'python3-agate-dbf' 'python3-agate-excel' 'python3-agate-lookup' 'python3-agate-remote' 'python3-agate-sql' 'python3-agate-stats' 'python3-aina' 'python3-aiobotocore' 'python3-aiodns' 'python3-aioeventlet' 'python3-aioftp' 'python3-aiohttp' 'python3-aiohttp-socks' 'python3-aiohttp-theme' 'python3-aioresponses' 'python3-aiorpcX' 'python3-akismet' 'python3-alabaster' 'python3-alembic' 'python3-alsa' 'python3-altair' 'python3-altair-widgets' 'python3-altgraph' 'python3-amqp' 'python3-amqplib' 'python3-amqpstorm' 'python3-ana' 'python3-aniso8601' 'python3-annoy' 'python3-ansel' 'python3-ansi2html' 'python3-ansicolor' 'python3-ansicolors' 'python3-ansiwrap' 'python3-anyjson' 'python3-apache-libcloud' 'python3-apipkg' 'python3-applicationinsights' 'python3-apptools' 'python3-apsw' 'python3-ara' 'python3-arabic-reshaper' 'python3-argcomplete' 'python3-argh' 'python3-argon2-cffi' 'python3-argparse-manpage' 'python3-args' 'python3-arrow' 'python3-asciimatics' 'python3-asdf' 'python3-aspectlib' 'python3-asteval' 'python3-astor' 'python3-astral' 'python3-astroid' 'python3-astropy' 'python3-astropy-helpers' 'python3-astunparse' 'python3-asv' 'python3-async_generator' 'python3-async_timeout' 'python3-asyncssh' 'python3-asynctest' 'python3-atlassian-python-api' 'python3-atom' 'python3-atomicwrites' 'python3-atpublic' 'python3-atspi' 'python3-attr' 'python3-aubio' 'python3-audiogrep' 'python3-audiolazy' 'python3-audiomate' 'python3-audit' 'python3-augeas' 'python3-autobahn' 'python3-autodoc' 'python3-autoflake' 'python3-automaton' 'python3-autopep8' 'python3-autoupgrade-ng' 'python3-av' 'python3-avahi' 'python3-avahi-gtk' 'python3-avocado' 'python3-avocado-plugins-glib' 'python3-avocado-plugins-golang' 'python3-avocado-plugins-loader-yaml' 'python3-avocado-plugins-output-html' 'python3-avocado-plugins-result-upload' 'python3-avocado-plugins-resultsdb' 'python3-avocado-plugins-runner-docker' 'python3-avocado-plugins-runner-remote' 'python3-avocado-plugins-runner-vm' 'python3-avocado-plugins-varianter-pict' 'python3-avocado-plugins-varianter-yaml-to-mux' 'python3-avocado-plugins-vt' 'python3-avro' 'python3-aws-sam-translator' 'python3-aws-xray-sdk' 'python3-aws-xray-sdk-Django' 'python3-aws-xray-sdk-Flask-SQLAlchemy' 'python3-aws-xray-sdk-SQLAlchemy' 'python3-aws-xray-sdk-aiobotocore' 'python3-aws-xray-sdk-aiohttp' 'python3-aws-xray-sdk-all' 'python3-aws-xray-sdk-mysql-connector' 'python3-aws-xray-sdk-psycopg2' 'python3-aws-xray-sdk-pymongo' 'python3-aws-xray-sdk-pynamodb' 'python3-aws-xray-sdk-requests' 'python3-axolotl' 'python3-axolotl-curve25519' 'python3-azure-applicationinsights' 'python3-azure-batch' 'python3-azure-cognitiveservices-knowledge-nspkg' 'python3-azure-cognitiveservices-knowledge-qnamaker' 'python3-azure-cognitiveservices-language-luis' 'python3-azure-cognitiveservices-language-nspkg' 'python3-azure-cognitiveservices-language-spellcheck' 'python3-azure-cognitiveservices-language-textanalytics' 'python3-azure-cognitiveservices-nspkg' 'python3-azure-cognitiveservices-search-autosuggest' 'python3-azure-cognitiveservices-search-customimagesearch' 'python3-azure-cognitiveservices-search-customsearch' 'python3-azure-cognitiveservices-search-entitysearch' 'python3-azure-cognitiveservices-search-imagesearch' 'python3-azure-cognitiveservices-search-newssearch' 'python3-azure-cognitiveservices-search-nspkg' 'python3-azure-cognitiveservices-search-videosearch' 'python3-azure-cognitiveservices-search-visualsearch' 'python3-azure-cognitiveservices-search-websearch' 'python3-azure-cognitiveservices-vision-computervision' 'python3-azure-cognitiveservices-vision-contentmoderator' 'python3-azure-cognitiveservices-vision-customvision' 'python3-azure-cognitiveservices-vision-nspkg' 'python3-azure-common' 'python3-azure-datalake-store' 'python3-azure-eventgrid' 'python3-azure-graphrbac' 'python3-azure-keyvault' 'python3-azure-loganalytics' 'python3-azure-mgmt' 'python3-azure-mgmt-advisor' 'python3-azure-mgmt-applicationinsights' 'python3-azure-mgmt-authorization' 'python3-azure-mgmt-batch' 'python3-azure-mgmt-batchai' 'python3-azure-mgmt-billing' 'python3-azure-mgmt-botservice' 'python3-azure-mgmt-cdn' 'python3-azure-mgmt-cognitiveservices' 'python3-azure-mgmt-commerce' 'python3-azure-mgmt-compute' 'python3-azure-mgmt-consumption' 'python3-azure-mgmt-containerinstance' 'python3-azure-mgmt-containerregistry' 'python3-azure-mgmt-containerservice' 'python3-azure-mgmt-cosmosdb' 'python3-azure-mgmt-datafactory' 'python3-azure-mgmt-datalake-analytics' 'python3-azure-mgmt-datalake-nspkg' 'python3-azure-mgmt-datalake-store' 'python3-azure-mgmt-datamigration' 'python3-azure-mgmt-devspaces' 'python3-azure-mgmt-devtestlabs' 'python3-azure-mgmt-dns' 'python3-azure-mgmt-documentdb' 'python3-azure-mgmt-eventgrid' 'python3-azure-mgmt-eventhub' 'python3-azure-mgmt-hanaonazure' 'python3-azure-mgmt-hdinsight' 'python3-azure-mgmt-iotcentral' 'python3-azure-mgmt-iothub' 'python3-azure-mgmt-iothubprovisioningservices' 'python3-azure-mgmt-keyvault' 'python3-azure-mgmt-kusto' 'python3-azure-mgmt-loganalytics' 'python3-azure-mgmt-logic' 'python3-azure-mgmt-machinelearningcompute' 'python3-azure-mgmt-managementgroups' 'python3-azure-mgmt-managementpartner' 'python3-azure-mgmt-maps' 'python3-azure-mgmt-marketplaceordering' 'python3-azure-mgmt-media' 'python3-azure-mgmt-monitor' 'python3-azure-mgmt-msi' 'python3-azure-mgmt-network' 'python3-azure-mgmt-notificationhubs' 'python3-azure-mgmt-nspkg' 'python3-azure-mgmt-policyinsights' 'python3-azure-mgmt-powerbiembedded' 'python3-azure-mgmt-rdbms' 'python3-azure-mgmt-recoveryservices' 'python3-azure-mgmt-recoveryservicesbackup' 'python3-azure-mgmt-redis' 'python3-azure-mgmt-relay' 'python3-azure-mgmt-reservations' 'python3-azure-mgmt-resource' 'python3-azure-mgmt-scheduler' 'python3-azure-mgmt-search' 'python3-azure-mgmt-security' 'python3-azure-mgmt-servermanager' 'python3-azure-mgmt-servicebus' 'python3-azure-mgmt-servicefabric' 'python3-azure-mgmt-signalr' 'python3-azure-mgmt-sql' 'python3-azure-mgmt-sqlvirtualmachine' 'python3-azure-mgmt-storage' 'python3-azure-mgmt-subscription' 'python3-azure-mgmt-trafficmanager' 'python3-azure-mgmt-web' 'python3-azure-monitor' 'python3-azure-multiapi-storage' 'python3-azure-nspkg' 'python3-azure-sdk' 'python3-azure-servicebus' 'python3-azure-servicefabric' 'python3-azure-servicemanagement-legacy' 'python3-azure-storage' 'python3-azure-storage-blob' 'python3-azure-storage-common' 'python3-azure-storage-file' 'python3-azure-storage-nspkg' 'python3-azure-storage-queue' 'python3-azurectl' 'python3-babelfish' 'python3-babeltrace' 'python3-backcall' 'python3-backoff' 'python3-backports' 'python3-backports.ssl_match_hostname' 'python3-backports_abc' 'python3-bandit' 'python3-barbicanclient' 'python3-baron' 'python3-base-32bit' 'python3-bashate' 'python3-bcc' 'python3-bcolz' 'python3-behave' 'python3-bencode' 'python3-beniget' 'python3-betamax' 'python3-betamax-matchers' 'python3-bibtexparser' 'python3-bidict' 'python3-billiard' 'python3-binary' 'python3-binaryornot' 'python3-bindep' 'python3-biopython' 'python3-biplist' 'python3-bitstring' 'python3-bjoern' 'python3-black' 'python3-bleach' 'python3-blessed' 'python3-blessings' 'python3-blindspin' 'python3-blist' 'python3-blockdiag' 'python3-blosc' 'python3-bloscpack' 'python3-bobo' 'python3-bobodoctestumentation' 'python3-bokeh' 'python3-boltons' 'python3-boost_parallel_mpi' 'python3-boost_parallel_mpi1_69_0' 'python3-botan' 'python3-boto' 'python3-boto3' 'python3-botocore' 'python3-bottle' 'python3-bpython' 'python3-bqplot' 'python3-branca' 'python3-breathe' 'python3-brewer2mpl' 'python3-brlapi' 'python3-bsddb3' 'python3-bsddb3-devel' 'python3-bson' 'python3-bugzilla' 'python3-bugzillatools' 'python3-buku' 'python3-buku-bash-completion' 'python3-buku-fish-completion' 'python3-buku-zsh-completion' 'python3-cPyparsing' 'python3-caca' 'python3-cached-property' 'python3-cachetools' 'python3-cachey' 'python3-caffe' 'python3-caffe-gnu-hpc' 'python3-caffe_1_0-gnu-hpc' 'python3-cairocffi' 'python3-cairocffi-pixbuf' 'python3-caldav' 'python3-calysto' 'python3-cangjie' 'python3-canonicaljson' 'python3-capng' 'python3-capturer' 'python3-case' 'python3-cassandra-driver' 'python3-cassowary' 'python3-castellan' 'python3-casttube' 'python3-catkin-pkg' 'python3-cbor' 'python3-cbor2' 'python3-ccm' 'python3-celery' 'python3-celery-batches' 'python3-celerymon' 'python3-ceph-argparse' 'python3-cephfs' 'python3-cerealizer' 'python3-certbot' 'python3-certbot-apache' 'python3-certbot-dns-cloudflare' 'python3-certbot-dns-cloudxns' 'python3-certbot-dns-digitalocean' 'python3-certbot-dns-dnsimple' 'python3-certbot-dns-dnsmadeeasy' 'python3-certbot-dns-google' 'python3-certbot-dns-luadns' 'python3-certbot-dns-nsone' 'python3-certbot-dns-rfc2136' 'python3-certbot-dns-route53' 'python3-certbot-nginx' 'python3-certstream' 'python3-cfgv' 'python3-cfn-lint' 'python3-cfscrape' 'python3-cftime' 'python3-chai' 'python3-chart-studio' 'python3-check-manifest' 'python3-cheroot' 'python3-chest' 'python3-cinderclient' 'python3-ciscoconfparse' 'python3-cl' 'python3-clang' 'python3-cli-helpers' 'python3-click' 'python3-click-aliases' 'python3-click-completion' 'python3-click-didyoumean' 'python3-click-help-colors' 'python3-click-log' 'python3-click-plugins' 'python3-click-spinner' 'python3-click-threading' 'python3-cliff' 'python3-cligj' 'python3-clinkgrammar' 'python3-clint' 'python3-cloud-init-seed' 'python3-cloudflare' 'python3-cloudpickle' 'python3-cluster' 'python3-cluster-preflight-check' 'python3-clustershell' 'python3-cmarkgfm' 'python3-cmd2' 'python3-coards' 'python3-coconut' 'python3-codecov' 'python3-cogapp' 'python3-colander' 'python3-colander-doc' 'python3-colander-lang' 'python3-colorama' 'python3-colorcet' 'python3-colorclass' 'python3-coloredlogs' 'python3-colorlog' 'python3-colorlover' 'python3-colormap' 'python3-colorspacious' 'python3-colour' 'python3-combi' 'python3-compizconfig' 'python3-concurrentloghandler' 'python3-configargparse' 'python3-configshell-fb' 'python3-confluent-kafka' 'python3-confusable-homoglyphs' 'python3-construct' 'python3-contexter' 'python3-contextlib2' 'python3-contextvars' 'python3-control' 'python3-cookies' 'python3-cooldict' 'python3-coreapi' 'python3-coreapi-cli' 'python3-coreschema' 'python3-cotyledon' 'python3-cov-core' 'python3-coverage' 'python3-coverage-config-reload-plugin' 'python3-coverage-env-plugin' 'python3-coveralls' 'python3-coveralls-check' 'python3-cppclean' 'python3-cpplint' 'python3-cracklib' 'python3-cram' 'python3-crayons' 'python3-crcmod' 'python3-croniter' 'python3-crumbs' 'python3-cryptography-vectors' 'python3-css-parser' 'python3-csscompressor' 'python3-cssselect' 'python3-cssselect2' 'python3-cssutils' 'python3-csvkit' 'python3-ctypesgen' 'python3-cufflinks' 'python3-curio' 'python3-cursive' 'python3-curtsies' 'python3-cx_Freeze' 'python3-cymruwhois' 'python3-cyordereddict' 'python3-cytoolz' 'python3-d2to1' 'python3-daemonize' 'python3-daiquiri' 'python3-dash' 'python3-dask' 'python3-dask-all' 'python3-dask-array' 'python3-dask-bag' 'python3-dask-dataframe' 'python3-dask-distributed' 'python3-dask-dot' 'python3-dask-multiprocessing' 'python3-datashader' 'python3-datrie' 'python3-dbf' 'python3-dbfread' 'python3-dbus-python-devel' 'python3-ddg3' 'python3-ddt' 'python3-debian' 'python3-debtcollector' 'python3-defusedxml' 'python3-delegator' 'python3-delegator.py' 'python3-deltarpm' 'python3-demjson' 'python3-dennis' 'python3-dephell-archive' 'python3-dephell-discover' 'python3-dephell-licenses' 'python3-dephell-links' 'python3-dephell-markers' 'python3-dephell-pythons' 'python3-dephell-shells' 'python3-dephell-specifier' 'python3-dephell-venvs' 'python3-deprecation' 'python3-derpconf' 'python3-devel' 'python3-dfdatetime' 'python3-dfwinreg' 'python3-dialite' 'python3-dicttoxml' 'python3-diff_match_patch' 'python3-digitalocean' 'python3-dill' 'python3-dirtyjson' 'python3-diskcache' 'python3-distlib' 'python3-distorm3' 'python3-distributed' 'python3-distro' 'python3-distroinfo' 'python3-distutils-extra' 'python3-dj-database-url' 'python3-django-allauth' 'python3-django-allauth-lang' 'python3-django-appconf' 'python3-django-auth-ldap' 'python3-django-avatar' 'python3-django-babel' 'python3-django-braces' 'python3-django-ckeditor' 'python3-django-classy-tags' 'python3-django-contrib-comments' 'python3-django-cors-headers' 'python3-django-crispy-forms' 'python3-django-debreach' 'python3-django-debug-toolbar' 'python3-django-environ' 'python3-django-extensions' 'python3-django-filter' 'python3-django-formtools' 'python3-django-grappelli' 'python3-django-guardian' 'python3-django-invitations' 'python3-django-jinja' 'python3-django-js-asset' 'python3-django-json-widget' 'python3-django-jsonfield' 'python3-django-minio-storage' 'python3-django-model-utils' 'python3-django-nine' 'python3-django-nose' 'python3-django-oauth-toolkit' 'python3-django-oidc-provider' 'python3-django-picklefield' 'python3-django-pipeline' 'python3-django-pyscss' 'python3-django-redis' 'python3-django-registration' 'python3-django-rest-framework-client' 'python3-django-rest-framework-social-oauth2' 'python3-django-rest-invitations' 'python3-django-rest-knox' 'python3-django-reversion' 'python3-django-seed' 'python3-django-sekizai' 'python3-django-silk' 'python3-django-storages' 'python3-django-tagging' 'python3-django-tastypie' 'python3-django-threadedcomments' 'python3-django-webpack-loader' 'python3-django-webtest' 'python3-django_compressor' 'python3-django_coverage_plugin' 'python3-djangorestframework' 'python3-djangorestframework-simplejwt' 'python3-djet' 'python3-djvulibre' 'python3-dnf' 'python3-dnf-plugin-leaves' 'python3-dnf-plugin-local' 'python3-dnf-plugin-rpmconf' 'python3-dnf-plugin-show-leaves' 'python3-dnf-plugin-snapper' 'python3-dnf-plugin-system-upgrade' 'python3-dnf-plugin-torproxy' 'python3-dnf-plugin-versionlock' 'python3-dnf-plugins-core' 'python3-dnf-plugins-extras-common' 'python3-dns-lexicon' 'python3-dnspython' 'python3-doc' 'python3-doc-devhelp' 'python3-docformatter' 'python3-docker' 'python3-docker-compose' 'python3-docker-pycreds' 'python3-dockerpty' 'python3-docopt' 'python3-docrepr' 'python3-docutils' 'python3-docutils-ast-writer' 'python3-dogpile.cache' 'python3-dominate' 'python3-dparse' 'python3-dpcontracts' 'python3-dpkt' 'python3-drf-jwt-knox' 'python3-drf-nested-routers' 'python3-drms' 'python3-dropbox' 'python3-duckduckgo2' 'python3-dukpy' 'python3-dukpy-kovidgoyal' 'python3-dulwich' 'python3-dynaconf' 'python3-easydev' 'python3-easygui' 'python3-easypysmb' 'python3-easywatch' 'python3-ebcdic' 'python3-ec2imgutils' 'python3-editdistance' 'python3-editdistance-devel' 'python3-efl' 'python3-efl-doc' 'python3-efl-examples' 'python3-elasticsearch' 'python3-eliot' 'python3-email_validator' 'python3-emoji' 'python3-empy' 'python3-enable' 'python3-enable-kiva' 'python3-enaml' 'python3-encore' 'python3-entrypoint2' 'python3-entrypoints' 'python3-environmental-override' 'python3-envisage' 'python3-enzyme' 'python3-eradicate' 'python3-espeak' 'python3-espressomd' 'python3-esptool' 'python3-et_xmlfile' 'python3-etcd' 'python3-etcd-test' 'python3-ethtool' 'python3-evemu' 'python3-eventlet' 'python3-evtx' 'python3-exam' 'python3-execnet' 'python3-exiv2' 'python3-expects' 'python3-experimentator' 'python3-exrex' 'python3-extras' 'python3-extratools' 'python3-ez_setup' 'python3-factory_boy' 'python3-fake-useragent' 'python3-fakeredis' 'python3-falcon' 'python3-fanficfare' 'python3-fann2' 'python3-fastTSNE' 'python3-fastcluster' 'python3-fasteners' 'python3-fastimport' 'python3-fastnumbers' 'python3-fastparquet' 'python3-fb-re2' 'python3-featureflow' 'python3-fedmsg' 'python3-feedgenerator' 'python3-feedparser' 'python3-fido2' 'python3-fields' 'python3-fife' 'python3-filelock' 'python3-finance_enums' 'python3-fire' 'python3-first' 'python3-fixtures' 'python3-flake8' 'python3-flake8-blind-except' 'python3-flake8-bugbear' 'python3-flake8-builtins' 'python3-flake8-class-newline' 'python3-flake8-comprehensions' 'python3-flake8-debugger' 'python3-flake8-deprecated' 'python3-flake8-docstrings' 'python3-flake8-future-import' 'python3-flake8-import-order' 'python3-flake8-imports' 'python3-flake8-polyfill' 'python3-flake8-pyi' 'python3-flake8-quotes' 'python3-flaky' 'python3-flasgger' 'python3-flask-jwt-extended' 'python3-flask-mongoengine' 'python3-flask-peewee' 'python3-flask-restplus' 'python3-flatbuffers' 'python3-flex' 'python3-flexmock' 'python3-flexx' 'python3-flickrapi' 'python3-flit' 'python3-flower' 'python3-fluent' 'python3-fluidity-sm' 'python3-flup' 'python3-forbiddenfruit' 'python3-freetype-py' 'python3-freezegun' 'python3-freezerclient' 'python3-frozendict' 'python3-fs' 'python3-fsspec' 'python3-ftfy' 'python3-ftputil' 'python3-fudge' 'python3-funcparserlib' 'python3-funcy' 'python3-furl' 'python3-fuse' 'python3-fusepy' 'python3-future' 'python3-futurist' 'python3-fysom' 'python3-gTTS' 'python3-gTTS-token' 'python3-gabbi' 'python3-gast' 'python3-gcemetadata' 'python3-gcsfs' 'python3-gcsfs-fuse' 'python3-gear' 'python3-ged4py' 'python3-gedit' 'python3-geis' 'python3-genty' 'python3-geographiclib' 'python3-geoip2' 'python3-geojson' 'python3-geolib' 'python3-geolinks' 'python3-geopy' 'python3-gevent' 'python3-geventhttpclient' 'python3-gexiv2' 'python3-ggplot' 'python3-girder-client' 'python3-git-pw' 'python3-git-url-parse' 'python3-gitdb2' 'python3-github3.py' 'python3-gitlint' 'python3-glanceclient' 'python3-glean' 'python3-glfw' 'python3-glob2' 'python3-glom' 'python3-gmconfig' 'python3-gmpy' 'python3-gmpy2' 'python3-gnucash' 'python3-gobject-Dee' 'python3-gobject-devel' 'python3-gobject2' 'python3-gobject2-devel' 'python3-gogs_client' 'python3-gom' 'python3-google-api-core' 'python3-google-api-python-client' 'python3-google-auth' 'python3-google-auth-httplib2' 'python3-google-auth-oauthlib' 'python3-google-cloud-core' 'python3-google-cloud-kms' 'python3-google-cloud-speech' 'python3-google-cloud-storage' 'python3-google-resumable-media' 'python3-googleapis-common-protos' 'python3-googlemaps' 'python3-gpg' 'python3-gpgme' 'python3-gphoto2' 'python3-gprof2dot' 'python3-gpsd' 'python3-grab' 'python3-graphviz' 'python3-greenlet' 'python3-greenlet-devel' 'python3-grpc-google-iam-v1' 'python3-grpcio' 'python3-grpcio-gcp' 'python3-gscholar' 'python3-gspread' 'python3-gssapi' 'python3-gst' 'python3-gsw' 'python3-guessit' 'python3-gunicorn' 'python3-guzzle_sphinx_theme' 'python3-h11' 'python3-h5py' 'python3-hankel' 'python3-happybase' 'python3-haproxyctl' 'python3-hawkauthlib' 'python3-hawkey' 'python3-hdf5storage' 'python3-heatclient' 'python3-hetzner' 'python3-hetznercloud' 'python3-hexdump' 'python3-hiredis' 'python3-hkdf' 'python3-hl7apy' 'python3-holidays' 'python3-holoviews' 'python3-html2text' 'python3-html5-parser' 'python3-html5lib' 'python3-htmlmin' 'python3-httmock' 'python3-http-parser' 'python3-httpbin' 'python3-httpie' 'python3-httplib2' 'python3-httpretty' 'python3-httpsig_cffi' 'python3-humanfriendly' 'python3-humanhash3' 'python3-humanize' 'python3-hupper' 'python3-husl' 'python3-hvplot' 'python3-hyper' 'python3-hypothesis' 'python3-hypothesis-fspaths' 'python3-icalendar' 'python3-identify' 'python3-idle' 'python3-idna_ssl' 'python3-ifaddr' 'python3-imageio' 'python3-imageio-ffmpeg' 'python3-imagesize' 'python3-imbox' 'python3-img2pdf' 'python3-iminuit' 'python3-immutables' 'python3-importlab' 'python3-importlib-metadata' 'python3-imread' 'python3-infinity' 'python3-inflect' 'python3-inflection' 'python3-influxdb' 'python3-inifile' 'python3-iniparse' 'python3-injector' 'python3-inspektor' 'python3-intake' 'python3-intervals' 'python3-intervaltree' 'python3-invocations' 'python3-invoke' 'python3-iocapture' 'python3-ioflo' 'python3-ipa' 'python3-ipa-tests' 'python3-ipa_hbac' 'python3-ipdb' 'python3-iptables' 'python3-ipy' 'python3-ipydatawidgets' 'python3-ipykernel' 'python3-ipyleaflet' 'python3-ipympl' 'python3-ipyparallel' 'python3-ipyscales' 'python3-ipysheet' 'python3-ipython' 'python3-ipython-iptest' 'python3-ipython_genutils' 'python3-ipyvolume' 'python3-ipywebrtc' 'python3-ipywidgets' 'python3-irc' 'python3-ironicclient' 'python3-iso8601' 'python3-isodate' 'python3-isort' 'python3-itsdangerous' 'python3-itypes' 'python3-iwlib' 'python3-jaraco.base' 'python3-jaraco.classes' 'python3-jaraco.collections' 'python3-jaraco.functools' 'python3-jaraco.itertools' 'python3-jaraco.logging' 'python3-jaraco.packaging' 'python3-jaraco.stream' 'python3-jaraco.text' 'python3-javapackages' 'python3-jdcal' 'python3-jedi' 'python3-jedihttp' 'python3-jeepney' 'python3-jenkins-job-builder' 'python3-jenkinsapi' 'python3-jgraph' 'python3-jinja2-fsloader' 'python3-jinja2-time' 'python3-jira' 'python3-jirafs' 'python3-jmespath' 'python3-joblib' 'python3-josepy' 'python3-jplephem' 'python3-jsbeautifier' 'python3-json-rpc' 'python3-json5' 'python3-json_tricks' 'python3-jsondate' 'python3-jsondiff' 'python3-jsonextended' 'python3-jsonlib-python3' 'python3-jsonlines' 'python3-jsonpatch' 'python3-jsonpath-rw' 'python3-jsonpath-rw-ext' 'python3-jsonpickle' 'python3-jsonpointer' 'python3-jsonref' 'python3-jsonrpclib-pelix' 'python3-jsonslicer' 'python3-junitxml' 'python3-jupyter-contrib-nbextensions' 'python3-jupyter-datatables' 'python3-jupyter-nbutils' 'python3-jupyter-protocol' 'python3-jupyter-require' 'python3-jupyter-server' 'python3-jupyter_client' 'python3-jupyter_console' 'python3-jupyter_contrib_core' 'python3-jupyter_core' 'python3-jupyter_highlight_selected_word' 'python3-jupyter_kernel_test' 'python3-jupyter_latex_envs' 'python3-jupyter_nbextensions_configurator' 'python3-jupyter_sphinx' 'python3-jupyterlab-pygments' 'python3-jupytext' 'python3-jwcrypto' 'python3-k5test' 'python3-kafka-python' 'python3-kaitaistruct' 'python3-kazoo' 'python3-keepalive' 'python3-kerberos' 'python3-keyczar' 'python3-keyring' 'python3-keyrings.alt' 'python3-keystoneauth1' 'python3-keystoneclient' 'python3-keystonemiddleware' 'python3-kitchen' 'python3-kiwi' 'python3-kiwisolver' 'python3-kmatch' 'python3-kmod' 'python3-knack' 'python3-kombu' 'python3-kopano' 'python3-kubernetes' 'python3-l20n' 'python3-lancet-ioam' 'python3-language-check' 'python3-lark-parser' 'python3-latexcodec' 'python3-lazr.uri' 'python3-lazy' 'python3-lazy-object-proxy' 'python3-lazyarray' 'python3-ldap' 'python3-ldap3' 'python3-ldappool' 'python3-ldb-32bit' 'python3-ldb-devel' 'python3-ldns' 'python3-leather' 'python3-lensfun' 'python3-lesscpy' 'python3-leveldb' 'python3-lexicon' 'python3-lhafile' 'python3-lib3to6' 'python3-libaccounts' 'python3-libarchive' 'python3-libarchive-c' 'python3-libbde' 'python3-libblockdev' 'python3-libbytesize' 'python3-libcec' 'python3-libcomps' 'python3-libdnf' 'python3-libewf' 'python3-libfsntfs' 'python3-libftdi1' 'python3-libfvde' 'python3-libfwnt' 'python3-libguestfs' 'python3-libixion' 'python3-liblarch' 'python3-liblarch-gtk' 'python3-libmodulemd' 'python3-libmount' 'python3-libnacl' 'python3-liborcus' 'python3-libpamtest' 'python3-libpfm' 'python3-libprelude' 'python3-libpreludedb' 'python3-libproxy' 'python3-libqcow' 'python3-librepo' 'python3-librosa' 'python3-libsass' 'python3-libscca' 'python3-libsigscan' 'python3-libsmdev' 'python3-libsmraw' 'python3-libsoc' 'python3-libstoragemgmt' 'python3-libstoragemgmt-clibs' 'python3-libtorrent-rasterbar' 'python3-libunity' 'python3-libusb1' 'python3-libvhdi' 'python3-libvmdk' 'python3-libvoikko' 'python3-libvshadow' 'python3-libvslvm' 'python3-lilv' 'python3-limnoria' 'python3-line_profiler' 'python3-linecache2' 'python3-lineup-widget' 'python3-lit' 'python3-lldb' 'python3-lldb6' 'python3-lldb7' 'python3-lldb8' 'python3-llfuse' 'python3-llvmlite' 'python3-lmdb' 'python3-lmfit' 'python3-lml' 'python3-localzone' 'python3-locket' 'python3-lockfile' 'python3-logilab-astng' 'python3-logilab-common' 'python3-logreduce' 'python3-loguru' 'python3-logutils' 'python3-logzero' 'python3-louis' 'python3-lttngust' 'python3-lupa' 'python3-lxml' 'python3-lxml-devel' 'python3-lz4' 'python3-lzmaffi' 'python3-m2r' 'python3-macholib' 'python3-magic' 'python3-magic-wormhole' 'python3-magic-wormhole-mailbox-server' 'python3-magic-wormhole-transit-relay' 'python3-magnumclient' 'python3-managesieve' 'python3-mando' 'python3-manilaclient' 'python3-manuel' 'python3-manuel-doc' 'python3-mapi' 'python3-marathon' 'python3-markdown-math' 'python3-markdown2' 'python3-marshmallow' 'python3-matplotlib' 'python3-matplotlib-cairo' 'python3-matplotlib-gtk3' 'python3-matplotlib-latex' 'python3-matplotlib-qt-shared' 'python3-matplotlib-qt5' 'python3-matplotlib-tk' 'python3-matplotlib-web' 'python3-matplotlib-wx' 'python3-matrix-synapse' 'python3-matrix-synapse-ldap3' 'python3-maxminddb' 'python3-mbstrdecoder' 'python3-mccabe' 'python3-md2workflow' 'python3-mechanize' 'python3-meld3' 'python3-memory_profiler' 'python3-metaextract' 'python3-metakernel' 'python3-metamagic.json' 'python3-mimesis' 'python3-minidb' 'python3-minio' 'python3-miniupnpc' 'python3-mistune' 'python3-moban' 'python3-mock' 'python3-mockldap' 'python3-modernize' 'python3-mohawk' 'python3-moksha-common' 'python3-moksha-hub' 'python3-monascaclient' 'python3-mongoengine' 'python3-monotonic' 'python3-more-itertools' 'python3-moretools' 'python3-moto' 'python3-moviepy' 'python3-mox3' 'python3-mpi4py' 'python3-mpi4py-devel' 'python3-mpmath' 'python3-mraa' 'python3-msgpack' 'python3-msgpack-numpy' 'python3-msk' 'python3-msm' 'python3-msoffcrypto-tool' 'python3-msrest' 'python3-msrestazure' 'python3-mujson' 'python3-mulpyplexer' 'python3-multi_key_dict' 'python3-multidict' 'python3-multipledispatch' 'python3-munch' 'python3-mutt-ics' 'python3-mygpoclient' 'python3-mypy_extensions' 'python3-mysql-connector-python' 'python3-nagiosplugin' 'python3-natsort' 'python3-nautilus' 'python3-nautilus-devel' 'python3-nbconvert' 'python3-nbdime' 'python3-nbformat' 'python3-nbindex-jupyter' 'python3-nbinteract' 'python3-nbsmoke' 'python3-nbsphinx' 'python3-nbsphinx-link' 'python3-nbval' 'python3-nbxmpp' 'python3-nbxmpp-doc' 'python3-ncclient' 'python3-neovim' 'python3-neovim-remote' 'python3-net-snmp' 'python3-netCDF4' 'python3-netaddr' 'python3-netifaces' 'python3-netmiko' 'python3-networkx' 'python3-neutronclient' 'python3-newt' 'python3-nghttp2' 'python3-nibabel' 'python3-nilearn' 'python3-nine' 'python3-nltk' 'python3-node-semver' 'python3-nose' 'python3-nose-cov' 'python3-nose-cover3' 'python3-nose-exclude' 'python3-nose-progressive' 'python3-nose-timer' 'python3-nose2' 'python3-nose_warnings_filters' 'python3-nosexcover' 'python3-notebook' 'python3-notebook-lang' 'python3-notify2' 'python3-notmuch' 'python3-novaclient' 'python3-nss' 'python3-ntfy' 'python3-ntlm-auth' 'python3-ntp' 'python3-ntplib' 'python3-num2words' 'python3-numba' 'python3-numba-devel' 'python3-numericalunits' 'python3-numexpr' 'python3-numpy' 'python3-numpy-devel' 'python3-numpy-gnu-hpc' 'python3-numpy-gnu-hpc-devel' 'python3-numpy_1_17_0-gnu-hpc' 'python3-numpy_1_17_0-gnu-hpc-devel' 'python3-numpydoc' 'python3-nwdiag' 'python3-oauth2' 'python3-oauth2client' 'python3-oauth2client-flask' 'python3-oauth2client-gce' 'python3-objgraph' 'python3-oct2py' 'python3-octave-kernel' 'python3-octaviaclient' 'python3-odfpy' 'python3-odorik' 'python3-oic' 'python3-onionshare' 'python3-openapi-core' 'python3-openapi-spec-validator' 'python3-opencv' 'python3-opencv3' 'python3-opengl' 'python3-opengl-accelerate' 'python3-openmesh' 'python3-openpyxl' 'python3-openqa_client' 'python3-openqa_review' 'python3-openshot' 'python3-openstack.nose_plugin' 'python3-openstackclient' 'python3-openstackdocstheme' 'python3-openstacksdk' 'python3-openwsman' 'python3-ordered-namespace' 'python3-ordered-set' 'python3-orderedmultidict' 'python3-os-api-ref' 'python3-os-client-config' 'python3-os-service-types' 'python3-os-testr' 'python3-os-win' 'python3-osc-lib' 'python3-oscrypto' 'python3-osdlyrics' 'python3-oslo.cache' 'python3-oslo.concurrency' 'python3-oslo.config' 'python3-oslo.context' 'python3-oslo.db' 'python3-oslo.i18n' 'python3-oslo.log' 'python3-oslo.messaging' 'python3-oslo.middleware' 'python3-oslo.policy' 'python3-oslo.privsep' 'python3-oslo.reports' 'python3-oslo.rootwrap' 'python3-oslo.serialization' 'python3-oslo.service' 'python3-oslo.utils' 'python3-oslo.versionedobjects' 'python3-oslo.vmware' 'python3-oslosphinx' 'python3-oslotest' 'python3-osmviz' 'python3-osprofiler' 'python3-outcome' 'python3-ovirt-engine-sdk' 'python3-ovs' 'python3-ovsdbapp' 'python3-pa-ringbuffer' 'python3-padaos' 'python3-padatious' 'python3-paho-mqtt' 'python3-pako' 'python3-palettable' 'python3-pampy' 'python3-pamqp' 'python3-pandas' 'python3-pandas-datareader' 'python3-pandocfilters' 'python3-panflute' 'python3-parallax' 'python3-param' 'python3-parameterized' 'python3-paramiko' 'python3-paramiko-expect' 'python3-parfive' 'python3-parse' 'python3-parse_type' 'python3-parsedatetime' 'python3-parsel' 'python3-parso' 'python3-partd' 'python3-parted' 'python3-parver' 'python3-pass_python_keyring' 'python3-passa' 'python3-passivetotal' 'python3-passlib' 'python3-pastream' 'python3-path.py' 'python3-pathlib' 'python3-pathlib2' 'python3-pathspec' 'python3-pathtools' 'python3-patsy' 'python3-pbkdf2' 'python3-pbr' 'python3-pcp' 'python3-pdd' 'python3-pdfkit' 'python3-pdfrw' 'python3-pecan' 'python3-peewee' 'python3-pefile' 'python3-pelican' 'python3-pem' 'python3-pep517' 'python3-pep8-naming' 'python3-peppercorn' 'python3-perfume-bench' 'python3-persistent' 'python3-persistent-devel' 'python3-petact' 'python3-pexpect' 'python3-pgmagick' 'python3-phabricator' 'python3-phonenumbers' 'python3-photutils' 'python3-phply' 'python3-phue' 'python3-pick' 'python3-pickleshare' 'python3-piexif' 'python3-pifpaf' 'python3-pika' 'python3-pika-pool' 'python3-pilkit' 'python3-pip-api' 'python3-pip-run' 'python3-pip-shims' 'python3-pipdeptree' 'python3-pipenv' 'python3-pipreqs' 'python3-piston-mini-client' 'python3-pivy' 'python3-pkgconfig' 'python3-pkginfo' 'python3-plaster' 'python3-plaster-pastedeploy' 'python3-plette' 'python3-plotly' 'python3-plotly-jupyter' 'python3-plplot' 'python3-pluggy' 'python3-plumbum' 'python3-plyvel' 'python3-pmw' 'python3-pocketsphinx-python' 'python3-podcastparser' 'python3-polib' 'python3-policycoreutils' 'python3-pony' 'python3-poppler-qt5' 'python3-port-for' 'python3-portalocker' 'python3-portend' 'python3-portpicker' 'python3-positional' 'python3-posix_ipc' 'python3-power' 'python3-poyo' 'python3-pprintpp' 'python3-praatio' 'python3-precis-i18n' 'python3-precise-runner' 'python3-preggy' 'python3-prelude-correlator' 'python3-premailer' 'python3-pretend' 'python3-prewikka' 'python3-proboscis' 'python3-process-tests' 'python3-proglog' 'python3-progress' 'python3-progressbar' 'python3-prometheus_client' 'python3-promise' 'python3-prompt_toolkit' 'python3-prompt_toolkit1' 'python3-proselint' 'python3-pscript' 'python3-psutil' 'python3-psycopg2' 'python3-ptpython' 'python3-ptpython-ptipython' 'python3-ptyprocess' 'python3-publicsuffixlist' 'python3-pudb' 'python3-pulsectl' 'python3-pure-sasl' 'python3-purl' 'python3-pwquality' 'python3-py-cpuinfo' 'python3-py-espeak-ng' 'python3-py-radix' 'python3-py-ubjson' 'python3-py2pack' 'python3-py3dns' 'python3-py3status' 'python3-pyDOE2' 'python3-pyFFTW' 'python3-pyLibravatar' 'python3-pyModis' 'python3-pyOCD' 'python3-pyPEG2' 'python3-pyRFC3339' 'python3-pyScss' 'python3-pyVows' 'python3-pyaes' 'python3-pyalsaaudio' 'python3-pyaml' 'python3-pyannotate' 'python3-pybars3' 'python3-pybeam' 'python3-pybind11' 'python3-pybind11-devel' 'python3-pyblake2' 'python3-pybluez' 'python3-pybtex' 'python3-pybugz' 'python3-pycadf' 'python3-pycairo-devel' 'python3-pycallgraph' 'python3-pycares' 'python3-pycdio' 'python3-pycha' 'python3-pycodestyle' 'python3-pycountry' 'python3-pycryptodome' 'python3-pycryptodomex' 'python3-pycsw' 'python3-pyct' 'python3-pycxx' 'python3-pycxx-devel' 'python3-pydata-google-auth' 'python3-pydbus' 'python3-pydenticon' 'python3-pydicom' 'python3-pydle' 'python3-pydocstyle' 'python3-pydocumentdb' 'python3-pydot' 'python3-pydot3' 'python3-pydotplus' 'python3-pydub' 'python3-pyee' 'python3-pyelftools' 'python3-pyemd' 'python3-pyenchant' 'python3-pyface' 'python3-pyfakefs' 'python3-pyfeyn' 'python3-pyfiglet' 'python3-pyflakes' 'python3-pyftpdlib' 'python3-pyfuse3' 'python3-pygal' 'python3-pygaljs' 'python3-pygame' 'python3-pygame-devel' 'python3-pygerrit2' 'python3-pyghmi' 'python3-pygit2' 'python3-pyglet' 'python3-pygments-ansi-color' 'python3-pygments-pytest' 'python3-pygments-style-railscasts' 'python3-pygraphviz' 'python3-pyhibp' 'python3-pyinotify' 'python3-pyinsane2' 'python3-pyjavaproperties' 'python3-pyjokes' 'python3-pyjsparser' 'python3-pyjwkest' 'python3-pykafka' 'python3-pykeepass' 'python3-pykerberos' 'python3-pykwalify' 'python3-pylama' 'python3-pylev' 'python3-pylibmc' 'python3-pylint' 'python3-pylons-sphinx-themes' 'python3-pylzma' 'python3-pymacaroons' 'python3-pymacaroons-pynacl' 'python3-pymarc' 'python3-pymediainfo' 'python3-pymemcache' 'python3-pymilter' 'python3-pymisp' 'python3-pymod2pkg' 'python3-pymol' 'python3-pymongo' 'python3-pymssql' 'python3-pynamodb' 'python3-pyngus' 'python3-pyo' 'python3-pyocr' 'python3-pyodbc' 'python3-pyosf' 'python3-pyotherside' 'python3-pyotp' 'python3-pyowm' 'python3-pyparallel' 'python3-pyperclip' 'python3-pypet' 'python3-pypiserver' 'python3-pypng' 'python3-pyppeteer' 'python3-pyprel' 'python3-pyprimes' 'python3-pyproj' 'python3-pypsexec' 'python3-pypuppetdb' 'python3-pyqtgraph' 'python3-pyquery' 'python3-pyramid' 'python3-pyreadstat' 'python3-pyroma' 'python3-pyroute2' 'python3-pyrsistent' 'python3-pysaml2' 'python3-pyscard' 'python3-pysendfile' 'python3-pyshould' 'python3-pyshp' 'python3-pyside2' 'python3-pyside2-devel' 'python3-pyside2-examples' 'python3-pysmb' 'python3-pysmbc' 'python3-pysmi' 'python3-pysndfile' 'python3-pysnmp' 'python3-pysofaconventions' 'python3-pysrt' 'python3-pyssim' 'python3-pystache' 'python3-pysvn' 'python3-pytaglib' 'python3-pyte' 'python3-pytesseract' 'python3-pytest' 'python3-pytest-aiohttp' 'python3-pytest-arraydiff' 'python3-pytest-astropy' 'python3-pytest-asyncio' 'python3-pytest-attrib' 'python3-pytest-bdd' 'python3-pytest-benchmark' 'python3-pytest-check-links' 'python3-pytest-click' 'python3-pytest-codestyle' 'python3-pytest-console-scripts' 'python3-pytest-cov' 'python3-pytest-datadir' 'python3-pytest-django' 'python3-pytest-doctestplus' 'python3-pytest-dotenv' 'python3-pytest-env' 'python3-pytest-error-for-skips' 'python3-pytest-expect' 'python3-pytest-faulthandler' 'python3-pytest-fixture-config' 'python3-pytest-flake8' 'python3-pytest-flake8dir' 'python3-pytest-flakes' 'python3-pytest-flask' 'python3-pytest-forked' 'python3-pytest-git' 'python3-pytest-helpers-namespace' 'python3-pytest-html' 'python3-pytest-httpbin' 'python3-pytest-httpserver' 'python3-pytest-instafail' 'python3-pytest-isort' 'python3-pytest-lazy-fixture' 'python3-pytest-localserver' 'python3-pytest-metadata' 'python3-pytest-mock' 'python3-pytest-mpl' 'python3-pytest-openfiles' 'python3-pytest-profiling' 'python3-pytest-pythonpath' 'python3-pytest-qt' 'python3-pytest-random-order' 'python3-pytest-randomly' 'python3-pytest-relaxed' 'python3-pytest-remotedata' 'python3-pytest-reorder' 'python3-pytest-repeat' 'python3-pytest-reqs' 'python3-pytest-rerunfailures' 'python3-pytest-runner' 'python3-pytest-services' 'python3-pytest-shutil' 'python3-pytest-socket' 'python3-pytest-spec' 'python3-pytest-subtesthack' 'python3-pytest-sugar' 'python3-pytest-super-check' 'python3-pytest-svn' 'python3-pytest-testconfig' 'python3-pytest-timeout' 'python3-pytest-tldr' 'python3-pytest-tornado' 'python3-pytest-translations' 'python3-pytest-travis-fold' 'python3-pytest-trio' 'python3-pytest-vcr' 'python3-pytest-verbose-parametrize' 'python3-pytest-virtualenv' 'python3-pytest-xdist' 'python3-pytest-xvfb' 'python3-pytest3' 'python3-pytest4' 'python3-python-afl' 'python3-python-aiml' 'python3-python-barcode' 'python3-python-bidi' 'python3-python-box' 'python3-python-cjson' 'python3-python-coveralls' 'python3-python-crfsuite' 'python3-python-daemon' 'python3-python-datamatrix' 'python3-python-dateutil' 'python3-python-dbusmock' 'python3-python-docs-theme' 'python3-python-dotenv' 'python3-python-editor' 'python3-python-fileinspector' 'python3-python-gammu' 'python3-python-gflags' 'python3-python-gitlab' 'python3-python-gnupg' 'python3-python-jenkins' 'python3-python-jose' 'python3-python-json-logger' 'python3-python-louvain' 'python3-python-lzo' 'python3-python-magic' 'python3-python-memcached' 'python3-python-mimeparse' 'python3-python-mpv' 'python3-python-openid-cla' 'python3-python-openid-teams' 'python3-python-pam' 'python3-python-pseudorandom' 'python3-python-ptrace' 'python3-python-qdatamatrix' 'python3-python-qnotifications' 'python3-python-qpid-proton' 'python3-python-qprogedit' 'python3-python-rapidjson' 'python3-python-redmine' 'python3-python-rpm-spec' 'python3-python-slugify' 'python3-python-snappy' 'python3-python-sofa' 'python3-python-sql' 'python3-python-stdnum' 'python3-python-subunit' 'python3-python-twitter' 'python3-python-utils' 'python3-python-vlc' 'python3-python-whois' 'python3-python-xlib' 'python3-python-yubico' 'python3-python3-openid' 'python3-python3-saml' 'python3-pythonfinder' 'python3-pythonwhois' 'python3-pythreejs' 'python3-pytidylib' 'python3-pytils' 'python3-pytimeparse' 'python3-pytlv' 'python3-pytoml' 'python3-pytools' 'python3-pytricia' 'python3-pytz' 'python3-pyuca' 'python3-pyusb' 'python3-pyverbs' 'python3-pyviz-comms' 'python3-pyvmomi' 'python3-pywbem' 'python3-pywinrm' 'python3-pyxattr' 'python3-pyxb' 'python3-pyzmq' 'python3-pyzmq-devel' 'python3-qet_tb_generator' 'python3-qgrid' 'python3-qrcode' 'python3-qscintilla-qt5' 'python3-qt3d-qt5' 'python3-qt4' 'python3-qt4-devel' 'python3-qt5-devel' 'python3-qtcharts-qt5' 'python3-qtconsole' 'python3-qtdatavis3d-qt5' 'python3-queuelib' 'python3-quicktions' 'python3-radon' 'python3-rados' 'python3-raet' 'python3-random2' 'python3-rarfile-doc' 'python3-ravello-sdk' 'python3-raven' 'python3-rawkit' 'python3-rbd' 'python3-rcssmin' 'python3-rdflib' 'python3-readme_renderer' 'python3-readthedocs-sphinx-ext' 'python3-rebulk' 'python3-recommonmark' 'python3-redbaron' 'python3-redis' 'python3-rednose' 'python3-regex' 'python3-relatorio' 'python3-releases' 'python3-releases-test' 'python3-remoto' 'python3-rencode' 'python3-reno' 'python3-repex' 'python3-reportlab' 'python3-repoze.lru' 'python3-repoze.sphinx.autointerface' 'python3-repoze.who' 'python3-requests-aws' 'python3-requests-cache' 'python3-requests-download' 'python3-requests-file' 'python3-requests-ftp' 'python3-requests-futures' 'python3-requests-hawk' 'python3-requests-html' 'python3-requests-kerberos' 'python3-requests-mock' 'python3-requests-toolbelt' 'python3-requests-unixsocket' 'python3-requests_ntlm' 'python3-requestsexceptions' 'python3-requirements-detector' 'python3-requirements-parser' 'python3-requirementslib' 'python3-resampy' 'python3-resolvelib' 'python3-responses' 'python3-restructuredtext_lint' 'python3-resultsdb_api' 'python3-retry' 'python3-retry_decorator' 'python3-retrying' 'python3-rfc3987' 'python3-rgw' 'python3-rjsmin' 'python3-rnginline' 'python3-rollbar' 'python3-roman' 'python3-rope' 'python3-rply' 'python3-rpmconf' 'python3-rpmfile' 'python3-rpy2' 'python3-rpyc' 'python3-rq' 'python3-rrdtool' 'python3-rsa' 'python3-rst.linker' 'python3-rstcheck' 'python3-rt' 'python3-rtslib-fb' 'python3-ruamel.base' 'python3-ruamel.std.argparse' 'python3-ruamel.std.pathlib' 'python3-ruamel.yaml' 'python3-ruamel.yaml.clib' 'python3-ruamel.yaml.cmd' 'python3-ruamel.yaml.convert' 'python3-ruffus' 'python3-rust2rpm' 'python3-rustcfg' 'python3-ryu' 'python3-s3fs' 'python3-s3transfer' 'python3-salt' 'python3-samplerate' 'python3-sane' 'python3-sanlock' 'python3-sarge' 'python3-sas7bdat' 'python3-sasl' 'python3-scales' 'python3-scandir' 'python3-schedule' 'python3-schema' 'python3-scikit-build' 'python3-scikit-dsp-comm' 'python3-scikit-image' 'python3-scikit-learn' 'python3-scikit-sound' 'python3-scikit-sparse' 'python3-scikit-umfpack' 'python3-scikits.example' 'python3-scipy' 'python3-scipy-gnu-hpc' 'python3-scipy_1_3_1-gnu-hpc' 'python3-scour' 'python3-scp' 'python3-scripttest' 'python3-scrypt' 'python3-scspell3k' 'python3-sdnotify' 'python3-seaborn' 'python3-selection' 'python3-selectors2' 'python3-selenium' 'python3-selinux' 'python3-semanage' 'python3-semantic_version' 'python3-semver' 'python3-senlinclient' 'python3-sentry-sdk' 'python3-seqdiag' 'python3-serpent' 'python3-serpy' 'python3-serverfiles' 'python3-setools' 'python3-setproctitle' 'python3-setuptools-git' 'python3-setuptools_scm' 'python3-setuptools_scm_git_archive' 'python3-sge-pygame' 'python3-sgmllib3k' 'python3-sh' 'python3-shaptools' 'python3-shellingham' 'python3-shijian' 'python3-shodan' 'python3-shortuuid' 'python3-shouldbe' 'python3-sidecar' 'python3-sievelib' 'python3-sigal' 'python3-signedjson' 'python3-simpleaudio' 'python3-simplebayes' 'python3-simpleeval' 'python3-simplegeneric' 'python3-simplejson' 'python3-sip-devel' 'python3-siphashc' 'python3-sklearn-pandas' 'python3-sleekxmpp' 'python3-slimit' 'python3-slixmpp' 'python3-slumber' 'python3-slycot' 'python3-smartypants' 'python3-smbios' 'python3-smbios-utils' 'python3-smbprotocol' 'python3-smmap' 'python3-smmap2' 'python3-sniffio' 'python3-snowballstemmer' 'python3-snuggs' 'python3-social-auth-app-django' 'python3-social-auth-core' 'python3-socketpool' 'python3-softlayer' 'python3-sortedcollections' 'python3-sortedcontainers' 'python3-sortinghat' 'python3-soundcloud' 'python3-sounddevice' 'python3-spake2' 'python3-spark_parser' 'python3-sparse' 'python3-speaklater' 'python3-spec' 'python3-speechd' 'python3-sphinx-autodoc-typehints' 'python3-sphinx-bootstrap-theme' 'python3-sphinx-feature-classification' 'python3-sphinx-issues' 'python3-sphinx-removed-in' 'python3-sphinx-testing' 'python3-sphinx-version-warning' 'python3-sphinx_rtd_theme' 'python3-sphinxcontrib-actdiag' 'python3-sphinxcontrib-apidoc' 'python3-sphinxcontrib-applehelp' 'python3-sphinxcontrib-asyncio' 'python3-sphinxcontrib-autoprogram' 'python3-sphinxcontrib-autoprogram-doc' 'python3-sphinxcontrib-blockdiag' 'python3-sphinxcontrib-devhelp' 'python3-sphinxcontrib-documentedlist' 'python3-sphinxcontrib-github-alt' 'python3-sphinxcontrib-htmlhelp' 'python3-sphinxcontrib-httpdomain' 'python3-sphinxcontrib-issuetracker' 'python3-sphinxcontrib-jsmath' 'python3-sphinxcontrib-newsfeed' 'python3-sphinxcontrib-nwdiag' 'python3-sphinxcontrib-pecanwsme' 'python3-sphinxcontrib-programoutput' 'python3-sphinxcontrib-qthelp' 'python3-sphinxcontrib-seqdiag' 'python3-sphinxcontrib-serializinghtml' 'python3-sphinxcontrib-svg2pdfconverter' 'python3-sphinxcontrib-trio' 'python3-sphinxcontrib-websupport' 'python3-splinter' 'python3-spotipy' 'python3-spyder-kernels' 'python3-sqlalchemy-migrate' 'python3-sqlitedict' 'python3-sqlparse' 'python3-ssdeep' 'python3-sshtunnel' 'python3-sss-murmur' 'python3-sss_nss_idmap' 'python3-sssd-config' 'python3-statsd' 'python3-statsmodels' 'python3-stdeb' 'python3-stem' 'python3-stestr' 'python3-stevedore' 'python3-stomp.py' 'python3-stomper' 'python3-straight-plugin' 'python3-streamz' 'python3-strict-rfc3339' 'python3-structlog' 'python3-subgrab' 'python3-subliminal' 'python3-subscene-api' 'python3-subst' 'python3-suds-jurko' 'python3-sunpy' 'python3-sure' 'python3-susepubliccloudinfo' 'python3-sushy' 'python3-svgwrite' 'python3-swapper' 'python3-swiftclient' 'python3-sybil' 'python3-sympy' 'python3-systemd' 'python3-tables' 'python3-tablib' 'python3-tabulate' 'python3-tagpy' 'python3-talloc-32bit' 'python3-talloc-devel' 'python3-tap.py' 'python3-targetcli-fb' 'python3-tbb' 'python3-tblib' 'python3-tdb-32bit' 'python3-technicolor' 'python3-telepot' 'python3-template-remover' 'python3-tempora' 'python3-tenacity' 'python3-termcolor' 'python3-terminado' 'python3-terminaltables' 'python3-termstyle' 'python3-tesserocr' 'python3-testfixtures' 'python3-testflo' 'python3-testinfra' 'python3-testpath' 'python3-testrepository' 'python3-testresources' 'python3-testscenarios' 'python3-testsuite' 'python3-testtools' 'python3-tevent-32bit' 'python3-text-unidecode' 'python3-textX' 'python3-textfsm' 'python3-textile' 'python3-texttable' 'python3-textwrap3' 'python3-thLib' 'python3-threevis' 'python3-thrift' 'python3-thriftpy' 'python3-tinycss2' 'python3-tinydb' 'python3-tinyrecord' 'python3-tinyrpc' 'python3-titlecase' 'python3-tk' 'python3-tkreadonly' 'python3-tld' 'python3-tldextract' 'python3-tmx' 'python3-tomate' 'python3-toml' 'python3-tomlkit' 'python3-tools' 'python3-toolz' 'python3-tooz' 'python3-topy' 'python3-tornado' 'python3-tornado4' 'python3-tox' 'python3-tox-no-internet' 'python3-tox-travis' 'python3-tox-wheel' 'python3-tpfd' 'python3-tqdm' 'python3-traceback2' 'python3-traitlets' 'python3-traits' 'python3-traitsui' 'python3-traittypes' 'python3-transaction' 'python3-transip' 'python3-translation-finder' 'python3-translationstring' 'python3-translitcodec' 'python3-treq' 'python3-trio' 'python3-trustme' 'python3-tsk' 'python3-tvdb_api' 'python3-tvtk' 'python3-tvtk-doc' 'python3-tweepy' 'python3-twine' 'python3-twitter.common.finagle-thrift' 'python3-twitter.common.lang' 'python3-twitter.common.rpc' 'python3-twodict' 'python3-twython' 'python3-txWS' 'python3-txZMQ' 'python3-txacme' 'python3-txaio' 'python3-txtorcon' 'python3-typed-ast' 'python3-typing_extensions' 'python3-tzlocal' 'python3-u-msgpack-python' 'python3-ua-parser' 'python3-uamqp' 'python3-ucsmsdk' 'python3-ujson' 'python3-unbound' 'python3-uncertainties' 'python3-uncompyle6' 'python3-unicodecsv' 'python3-unidiff' 'python3-unify' 'python3-uniseg' 'python3-units' 'python3-unittest-mixins' 'python3-unittest-xml-reporting' 'python3-unittest2' 'python3-unpaddedbase64' 'python3-untokenize' 'python3-upm' 'python3-uritemplate' 'python3-urlgrabber' 'python3-urwid' 'python3-user-agents' 'python3-user_agent' 'python3-uvloop' 'python3-validate_email' 'python3-validators' 'python3-varlink' 'python3-vcrpy' 'python3-vcversioner' 'python3-vdirsyncer' 'python3-vega' 'python3-vega_datasets' 'python3-venusian' 'python3-venusian-doc' 'python3-verboselogs' 'python3-versioneer' 'python3-versiontools' 'python3-veusz' 'python3-vim-vint' 'python3-vine' 'python3-virt-bootstrap' 'python3-virtkey' 'python3-virtualbmc' 'python3-virtualbox' 'python3-virtualenv' 'python3-virtualenv-clone' 'python3-virtualenvwrapper' 'python3-visitor' 'python3-vispy' 'python3-vistir' 'python3-vobject' 'python3-voila' 'python3-voluptuous' 'python3-voluptuous-serialize' 'python3-vtk' 'python3-vtk-openmpi' 'python3-vtk-openmpi2' 'python3-vulkan' 'python3-vulture' 'python3-w3lib' 'python3-wadllib' 'python3-waitress' 'python3-waitress-doc' 'python3-wakeonlan' 'python3-warlock' 'python3-watchdog' 'python3-watchdog-doc' 'python3-watermark' 'python3-wcwidth' 'python3-web_cache' 'python3-webassets' 'python3-webcolors' 'python3-webencodings' 'python3-weblib' 'python3-webruntime' 'python3-websocket-client' 'python3-websockets' 'python3-websockify' 'python3-whatever' 'python3-whatthepatch' 'python3-wheel' 'python3-whichcraft' 'python3-whitenoise' 'python3-whois_similarity_distance' 'python3-wikipedia' 'python3-wiring' 'python3-wolframalpha' 'python3-wptools' 'python3-wrapt' 'python3-ws4py' 'python3-wsaccel' 'python3-wsgi_intercept' 'python3-wsproto' 'python3-wstools' 'python3-wtf-peewee' 'python3-wurlitzer' 'python3-wxPython' 'python3-wxPython-lang' 'python3-xapian' 'python3-xapp' 'python3-xarray' 'python3-xattr' 'python3-xcb-proto-devel' 'python3-xcffib' 'python3-xdis' 'python3-xerox' 'python3-xhtml2pdf' 'python3-xlrd' 'python3-xlwt' 'python3-xmldiff' 'python3-xmlsec' 'python3-xmltodict' 'python3-xpybutil' 'python3-xsge_gui' 'python3-xsge_lighting' 'python3-xsge_particle' 'python3-xsge_path' 'python3-xsge_physics' 'python3-xsge_tmx' 'python3-xvfbwrapper' 'python3-xxhash' 'python3-yamldoc' 'python3-yamllint' 'python3-yang' 'python3-yapf' 'python3-yappi' 'python3-yara' 'python3-yarb' 'python3-yarg' 'python3-yarl' 'python3-yaspin' 'python3-youtube-dl' 'python3-yq' 'python3-yt' 'python3-z3' 'python3-zake' 'python3-zarafa' 'python3-zc.buildout' 'python3-zc.customdoctests' 'python3-zc.lockfile' 'python3-zdaemon' 'python3-zeep' 'python3-zeroconf' 'python3-zetup' 'python3-zict' 'python3-zipp' 'python3-zipstream' 'python3-zodbpickle' 'python3-zope.cachedescriptors' 'python3-zope.component' 'python3-zope.configuration' 'python3-zope.copy' 'python3-zope.deferredimport' 'python3-zope.deprecation' 'python3-zope.event' 'python3-zope.exceptions' 'python3-zope.hookable' 'python3-zope.i18nmessageid' 'python3-zope.location' 'python3-zope.proxy' 'python3-zope.proxy-devel' 'python3-zope.schema' 'python3-zope.security' 'python3-zope.testbrowser' 'python3-zope.testing' 'python3-zope.testrunner' 'python3-zstandard' 'python3-zstd' 'pyzy-db-android' 'pyzy-db-open-phrase' 'pyzy-devel' 'q4wine' 'q4wine-lang' 'qactus' 'qalculate' 'qbittorrent' 'qbittorrent-nox' 'qbs' 'qbs-devel' 'qcustomplot-devel' 'qcustomplot-doc' 'qd-devel' 'qdirstat' 'qdox' 'qdox-javadoc' 'qelectrotech' 'qemacs' 'qemu-arm' 'qemu-audio-alsa' 'qemu-audio-sdl' 'qemu-block-dmg' 'qemu-block-gluster' 'qemu-block-iscsi' 'qemu-block-nfs' 'qemu-extra' 'qemu-guest-agent' 'qemu-kvm' 'qemu-lang' 'qemu-linux-user' 'qemu-ovmf-ia32' 'qemu-ovmf-x86_64-debug' 'qemu-ppc' 'qemu-s390' 'qemu-testsuite' 'qgit' 'qgo' 'qgroundcontrol' 'qhexedit2' 'qhexedit2-devel' 'qhexedit2-doc' 'qhull' 'qhull-devel' 'qimgv' 'qiv' 'qjackctl' 'qjackctl-lang' 'qlipper' 'qlipper-lang' 'qm' 'qmelt' 'qml-box2d' 'qmltermwidget' 'qmmp' 'qmmp' 'qmmp-debuginfo' 'qmmp-debugsource' 'qmmp-plugin-pack' 'qmmp-plugin-pack-ffap' 'qmmp-plugin-pack-ffvideo' 'qmmp-plugin-pack-goom' 'qmmp-plugin-pack-samplerate' 'qmmp-plugin-pack-xmp' 'qmp3gain' 'qmp3gain' 'qmp3gain-debuginfo' 'qmp3gain-debugsource' 'qmp3gain-lang' 'qnapi' 'qoauth-qt5-devel' 'qore' 'qore-devel' 'qore-devel-doc' 'qore-doc' 'qore-json-module' 'qore-json-module-doc' 'qore-misc-tools' 'qore-mysql-module' 'qore-mysql-module-doc' 'qore-pgsql-module' 'qore-pgsql-module-doc' 'qore-sqlite3-module' 'qore-sqlite3-module-doc' 'qore-ssh2-module' 'qore-ssh2-module-doc' 'qore-uuid-module' 'qore-uuid-module-doc' 'qore-xml-module' 'qore-xml-module-doc' 'qore-yaml-module' 'qore-yaml-module-doc' 'qos' 'qpdf' 'qpdf-devel' 'qpdf-htmldoc' 'qpdfview' 'qpdfview-lang' 'qpdfview-plugin-djvu' 'qpdfview-plugin-image' 'qpdfview-plugin-pdf' 'qpdfview-plugin-ps' 'qperf' 'qphotorec' 'qpid-cpp-client' 'qpid-cpp-client-devel' 'qpid-cpp-client-devel-docs' 'qpid-cpp-server' 'qpid-cpp-server-ha' 'qpid-cpp-server-store' 'qpid-proton-devel' 'qpid-proton-devel-doc' 'qpid-qmf' 'qpid-qmf-devel' 'qpid-tests' 'qpid-tools' 'qpress' 'qprint' 'qps' 'qps-lang' 'qputty-qt5' 'qqc2-desktop-style-devel' 'qqwing' 'qqwing-devel' 'qrencode' 'qrencode-devel' 'qrupdate' 'qrupdate-devel' 'qrupdate-static' 'qsyncthingtray' 'qsynergy' 'qsynth' 'qsynth-lang' 'qt3' 'qt3' 'qt3-32bit' 'qt3-32bit-debuginfo' 'qt3-debuginfo' 'qt3-debugsource' 'qt3-devel' 'qt3-devel-32bit' 'qt3-devel-32bit-debuginfo' 'qt3-devel-debuginfo' 'qt4-assistant-adp' 'qt4-assistant-adp-devel' 'qt4-qtscript' 'qt4-qtscript-doc' 'qt4-style-fusion' 'qt4pas' 'qt4pas-devel' 'qt5ct' 'qtcurve-gtk2' 'qtcurve-gtk2-32bit' 'qtcurve-kde4' 'qtcurve-kde4-32bit' 'qtcurve-qt5' 'qtcurve-qt5-32bit' 'qtel' 'qterm' 'qterminal' 'qterminal-lang' 'qtermwidget-qt5-data' 'qtermwidget-qt5-devel' 'qtfm' 'qtile' 'qtkeychain-qt5-devel' 'qtodotxt' 'qtox' 'qtractor' 'qtsmbstatus' 'qtsmbstatus' 'qtsmbstatus-debuginfo' 'qtsmbstatus-debugsource' 'qtsmbstatus-lang' 'qtsmbstatus-light' 'qtsmbstatus-light-debuginfo' 'qtsmbstatus-server' 'qtsmbstatus-server-debuginfo' 'qtweetlib' 'qtweetlib-debugsource' 'qtweetlib-devel' 'quadrapassel' 'quadrapassel-lang' 'quagga' 'quagga-devel' 'quakespasm' 'quantum-espresso' 'quantum-espresso-doc' 'quantum-espresso-openmpi' 'quassel-base' 'quassel-client' 'quassel-client-qt5' 'quassel-core' 'quassel-mono' 'quazip-devel' 'quazip-doc' 'quilt' 'quilter' 'quilter-lang' 'quimup' 'quiterss' 'quiterss-lang' 'quota' 'quota-nfs' 'quotatool' 'qutebrowser' 'qutecom' 'qutecom' 'qutecom-debuginfo' 'qutecom-debugsource' 'quvi' 'qv4l2' 'qview' 'qwt-designer' 'qwt-devel' 'qwt-devel-doc' 'qwt6-designer' 'qwt6-devel' 'qwt6-devel-doc' 'qwt6-examples' 'qwtplot3d-devel' 'qx11grab' 'qx11grab' 'qx11grab-debuginfo' 'qx11grab-debugsource' 'qxmledit' 'qxmledit-devel' 'qxtglobalshortcut-devel' 'r8168' 'r8168-blacklist-r8169' 'r8168-debugsource' 'r8168-kmp-default' 'r8168-kmp-default-debuginfo' 'r8168-kmp-pae' 'r8168-kmp-pae-debuginfo' 'rabbitmq-java-client' 'rabbitmq-server' 'rabbitmq-server-plugins' 'racer' 'racket' 'racket-devel' 'racket-doc' 'radamsa' 'radcli' 'radcli-compat-devel' 'radcli-devel' 'radeontop' 'radeontop-lang' 'radiotray' 'radiotray-lang' 'rados-objclass-devel' 'rage' 'ragel' 'ragel-6' 'ragel-devel' 'rakkess' 'rakudo' 'raleway-fonts' 'ranger' 'rapi2-tools' 'rapi2-tools-debuginfo' 'rapid-photo-downloader' 'rapid-photo-downloader-lang' 'rapidjson-devel' 'raptor' 'rar' 'rarian' 'rarian-devel' 'rarian-scrollkeeper-compat' 'rarpd' 'rasdaemon' 'rash' 'rasmol' 'raspberrypi-firmware' 'raspberrypi-firmware-config' 'raspberrypi-firmware-dt' 'raspberrypi-firmware-extra' 'raspberrypi-firmware-extra-pi4' 'rasqal' 'ratbagd' 'ratslap' 'raw-thumbnailer' 'rawstudio' 'rawstudio-lang' 'raylib-devel' 'razercfg' 'razor-agents' 'rbac-lookup' 'rbac-manager' 'rbac-manager-k8s-yaml' 'rbd-fuse' 'rbd-mirror' 'rbd-nbd' 'rbutil' 'rcc-runtime' 'rcm' 'rcs' 'rdesktop' 'rdiff' 'rdiff-backup' 'rdma-core-devel' 'rdma-core-devel-32bit' 'rdma-ndd' 'rds-tools' 'rds-tools-devel' 're2-devel' 're2c' 'read-edid' 'read-only-root-fs' 'read-only-root-fs-volatile' 'readcd' 'readline-devel' 'readline-devel-32bit' 'readline-devel-static' 'readline5-devel' 'readline5-devel-32bit' 'readline6-devel' 'readline6-devel-32bit' 'realmd' 'realmd-lang' 'rear' 'reaver' 'reaver' 'reaver-debuginfo' 'reaver-debugsource' 'rebootmgr' 'recidivm' 'reco' 'reco-lang' 'recode' 'recode-devel' 'recorditnow' 'recorditnow' 'recorditnow-backend-ffmpeg' 'recorditnow-backend-ffmpeg-debuginfo' 'recorditnow-backend-mplayer' 'recorditnow-backend-mplayer-debuginfo' 'recorditnow-debuginfo' 'recorditnow-debugsource' 'recorditnow-lang' 'recordmydesktop' 'redeclipse' 'redeclipse-data' 'redis' 'redland' 'redland-storage-postgresql' 'rednotebook' 'rednotebook-lang' 'redsea' 'redshift-gtk' 'regexp' 'reiser4progs' 'reiser4progs-devel' 'relaxngDatatype' 'remake' 'remake-lang' 'remind' 'remmina' 'remmina-devel' 'remmina-kiosk' 'remmina-lang' 'remmina-plugin-exec' 'remmina-plugin-kwallet' 'remmina-plugin-rdp' 'remmina-plugin-secret' 'remmina-plugin-spice' 'remmina-plugin-st' 'remmina-plugin-vnc' 'remmina-plugin-www' 'remmina-plugin-xdmcp' 'rendercheck' 'rep-gtk' 'rep-gtk-devel' 'reptyr' 'resample' 'rescue' 'resolv_wrapper' 'resource-agents' 'restic' 'restic-bash-completion' 'restic-zsh-completion' 'restorecond' 'retext' 'retro-gtk-devel' 'reuse' 'reuse-lang' 'reveng' 'rfb' 'rfbplaymacro' 'rfbproxy' 'rfcdiff' 'rhash' 'rhash-devel' 'rhash-lang' 'rhino' 'rhino-demo' 'rhythmbox' 'rhythmbox-devel' 'rhythmbox-lang' 'rime' 'rime-plum' 'rinetd' 'ripgrep' 'ripgrep-bash-completion' 'ripgrep-fish-completion' 'ripgrep-zsh-completion' 'ripit' 'ristretto' 'ristretto-lang' 'rk-devel' 'rkward' 'rls' 'rlwrap' 'rmail' 'rmedigicontrol' 'rmt-server' 'rmt-server-config' 'rmt-server-pubcloud' 'rnd_jue' 'rnd_jue-data' 'rng-tools' 'roar-devel' 'roar-devel-debuginfo' 'roaraudio' 'roaraudio' 'roaraudio-compat2' 'roaraudio-debuginfo' 'roaraudio-debugsource' 'roaraudio-plugins' 'roaraudio-plugins-debuginfo' 'roarpld' 'roarpld' 'roarpld-codechelper-gst' 'roarpld-debuginfo' 'roarpld-debugsource' 'roarpld-devel' 'robinhood' 'robinhood-tests' 'robinhood-tools' 'robinhood-webgui' 'roccat-arvo' 'roccat-isku' 'roccat-iskufx' 'roccat-kiro' 'roccat-kone' 'roccat-koneplus' 'roccat-konepure' 'roccat-konextd' 'roccat-kova2016' 'roccat-kovaplus' 'roccat-lua' 'roccat-nyth' 'roccat-pyra' 'roccat-ryos' 'roccat-savu' 'roccat-skeltr' 'roccat-sova' 'roccat-suora' 'roccat-tools' 'roccat-tyon' 'rockdodger' 'rocksndiamonds' 'rocksndiamonds-data' 'rocs' 'rocs-devel' 'rocs-lang' 'rofi' 'rofi-calc' 'rofi-devel' 'rollback-helper' 'rook' 'rook-integration' 'rook-k8s-yaml' 'rook-rookflex' 'root-tail' 'rosa-media-player' 'rosa-media-player' 'rosa-media-player-debuginfo' 'rosa-media-player-debugsource' 'rosa-media-player-lang' 'rosegarden' 'rott' 'roundcubemail' 'rox-filer' 'rpcgen' 'rpcsvc-proto-devel' 'rpm-devel' 'rpmconf' 'rpmdevtools' 'rpmemd' 'rpmkey-packman' 'rpmkey-packman' 'rpmlint' 'rpmlint-Factory' 'rpmlint-Factory-strict' 'rpmlint-mini' 'rpmorphan' 'rpmrebuild' 'rrdtool' 'rrdtool-cached' 'rrdtool-devel' 'rrdtool-doc' 'rscsi' 'rsnapshot' 'rsocket' 'rsocket-32bit' 'rsound' 'rsound' 'rsound-debuginfo' 'rsound-debugsource' 'rss-glx' 'rss2email' 'rssguard' 'rsstail' 'rst2html5' 'rstart' 'rsvg-thumbnailer' 'rsvg-view' 'rsvg2-sharp' 'rsyslog-diag-tools' 'rsyslog-doc' 'rsyslog-module-dbi' 'rsyslog-module-elasticsearch' 'rsyslog-module-gcrypt' 'rsyslog-module-gssapi' 'rsyslog-module-gtls' 'rsyslog-module-mmnormalize' 'rsyslog-module-mysql' 'rsyslog-module-omamqp1' 'rsyslog-module-omhttpfs' 'rsyslog-module-omtcl' 'rsyslog-module-ossl' 'rsyslog-module-pgsql' 'rsyslog-module-relp' 'rsyslog-module-snmp' 'rsyslog-module-udpspoof' 'rt-tests' 'rt2860' 'rtags' 'rtaudio-devel' 'rtl-sdr' 'rtl-sdr-devel' 'rtl-sdr-udev' 'rtl8812au' 'rtl8812au-kmp-default' 'rtl8812au-kmp-pae' 'rtl_433' 'rtl_433-devel' 'rtmidi-devel' 'rtmpdump' 'rtmpdump' 'rtmpdump-debuginfo' 'rtmpdump-debugsource' 'rtmpgw' 'rtmpgw-debuginfo' 'rtmpsrv' 'rtmpsrv-debuginfo' 'rtmpsuck' 'rtmpsuck-debuginfo' 'rtorrent' 'rttr-devel' 'rttr-devel-doc' 'rubber' 'rubberband-cli' 'rubberband-ladspa-32bit' 'rubberband-vamp' 'rubberband-vamp-32bit' 'ruby-apparmor' 'ruby-bundled-gems-rpmhelper' 'ruby-common-rails' 'ruby-devel' 'ruby-ecasound' 'ruby-geos' 'ruby-libprelude' 'ruby-marisa' 'ruby-obexftp' 'ruby-rrdtool' 'ruby-selinux' 'ruby-xapian' 'ruby-yui' 'ruby2.6-devel' 'ruby2.6-devel-extra' 'ruby2.6-doc' 'ruby2.6-doc-ri' 'ruby2.6-rubygem-RedCloth' 'ruby2.6-rubygem-RedCloth-doc' 'ruby2.6-rubygem-RedCloth-testsuite' 'ruby2.6-rubygem-abstract' 'ruby2.6-rubygem-abstract-doc' 'ruby2.6-rubygem-abstract-testsuite' 'ruby2.6-rubygem-abstract_method-doc' 'ruby2.6-rubygem-actioncable-5.2' 'ruby2.6-rubygem-actioncable-5_0' 'ruby2.6-rubygem-actioncable-5_1' 'ruby2.6-rubygem-actioncable-6.0' 'ruby2.6-rubygem-actioncable-doc-5.2' 'ruby2.6-rubygem-actioncable-doc-5_0' 'ruby2.6-rubygem-actioncable-doc-5_1' 'ruby2.6-rubygem-actioncable-doc-6.0' 'ruby2.6-rubygem-actionmailbox-6.0' 'ruby2.6-rubygem-actionmailbox-doc-6.0' 'ruby2.6-rubygem-actionmailer-5.2' 'ruby2.6-rubygem-actionmailer-5_0' 'ruby2.6-rubygem-actionmailer-5_1' 'ruby2.6-rubygem-actionmailer-6.0' 'ruby2.6-rubygem-actionmailer-doc-5.2' 'ruby2.6-rubygem-actionmailer-doc-5_0' 'ruby2.6-rubygem-actionmailer-doc-5_1' 'ruby2.6-rubygem-actionmailer-doc-6.0' 'ruby2.6-rubygem-actionpack-5.2' 'ruby2.6-rubygem-actionpack-5_0' 'ruby2.6-rubygem-actionpack-5_1' 'ruby2.6-rubygem-actionpack-6.0' 'ruby2.6-rubygem-actionpack-doc-5.2' 'ruby2.6-rubygem-actionpack-doc-5_0' 'ruby2.6-rubygem-actionpack-doc-5_1' 'ruby2.6-rubygem-actionpack-doc-6.0' 'ruby2.6-rubygem-actiontext-6.0' 'ruby2.6-rubygem-actiontext-doc-6.0' 'ruby2.6-rubygem-actionview-5.2' 'ruby2.6-rubygem-actionview-5_0' 'ruby2.6-rubygem-actionview-5_1' 'ruby2.6-rubygem-actionview-6.0' 'ruby2.6-rubygem-actionview-doc-5.2' 'ruby2.6-rubygem-actionview-doc-5_0' 'ruby2.6-rubygem-actionview-doc-5_1' 'ruby2.6-rubygem-actionview-doc-6.0' 'ruby2.6-rubygem-activejob-5.2' 'ruby2.6-rubygem-activejob-5_0' 'ruby2.6-rubygem-activejob-5_1' 'ruby2.6-rubygem-activejob-6.0' 'ruby2.6-rubygem-activejob-doc-5.2' 'ruby2.6-rubygem-activejob-doc-5_0' 'ruby2.6-rubygem-activejob-doc-5_1' 'ruby2.6-rubygem-activejob-doc-6.0' 'ruby2.6-rubygem-activemodel-5.2' 'ruby2.6-rubygem-activemodel-5_0' 'ruby2.6-rubygem-activemodel-5_1' 'ruby2.6-rubygem-activemodel-6.0' 'ruby2.6-rubygem-activemodel-doc-5.2' 'ruby2.6-rubygem-activemodel-doc-5_0' 'ruby2.6-rubygem-activemodel-doc-5_1' 'ruby2.6-rubygem-activemodel-doc-6.0' 'ruby2.6-rubygem-activerecord-5.2' 'ruby2.6-rubygem-activerecord-5_0' 'ruby2.6-rubygem-activerecord-5_1' 'ruby2.6-rubygem-activerecord-6.0' 'ruby2.6-rubygem-activerecord-deprecated_finders' 'ruby2.6-rubygem-activerecord-deprecated_finders-doc' 'ruby2.6-rubygem-activerecord-doc-5.2' 'ruby2.6-rubygem-activerecord-doc-5_0' 'ruby2.6-rubygem-activerecord-doc-6.0' 'ruby2.6-rubygem-activestorage-5.2' 'ruby2.6-rubygem-activestorage-6.0' 'ruby2.6-rubygem-activestorage-doc-5.2' 'ruby2.6-rubygem-activestorage-doc-6.0' 'ruby2.6-rubygem-activesupport-5.2' 'ruby2.6-rubygem-activesupport-5_0' 'ruby2.6-rubygem-activesupport-5_1' 'ruby2.6-rubygem-activesupport-6.0' 'ruby2.6-rubygem-activesupport-doc-5.2' 'ruby2.6-rubygem-activesupport-doc-5_0' 'ruby2.6-rubygem-activesupport-doc-5_1' 'ruby2.6-rubygem-activesupport-doc-6.0' 'ruby2.6-rubygem-addressable' 'ruby2.6-rubygem-addressable-2_3' 'ruby2.6-rubygem-addressable-doc' 'ruby2.6-rubygem-addressable-doc-2_3' 'ruby2.6-rubygem-addressable-testsuite' 'ruby2.6-rubygem-addressable-testsuite-2_3' 'ruby2.6-rubygem-aes_key_wrap' 'ruby2.6-rubygem-aes_key_wrap-doc' 'ruby2.6-rubygem-airbrussh' 'ruby2.6-rubygem-airbrussh-doc' 'ruby2.6-rubygem-amq-protocol' 'ruby2.6-rubygem-amq-protocol-doc' 'ruby2.6-rubygem-amq-protocol-testsuite' 'ruby2.6-rubygem-amqp' 'ruby2.6-rubygem-amqp-doc' 'ruby2.6-rubygem-amqp-testsuite' 'ruby2.6-rubygem-archive-tar-minitar' 'ruby2.6-rubygem-archive-tar-minitar-doc' 'ruby2.6-rubygem-arel' 'ruby2.6-rubygem-arel-3_0' 'ruby2.6-rubygem-arel-6' 'ruby2.6-rubygem-arel-7' 'ruby2.6-rubygem-arel-8' 'ruby2.6-rubygem-arel-doc' 'ruby2.6-rubygem-arel-doc-3_0' 'ruby2.6-rubygem-arel-doc-6' 'ruby2.6-rubygem-arel-doc-7' 'ruby2.6-rubygem-arel-doc-8' 'ruby2.6-rubygem-arel-testsuite-3_0' 'ruby2.6-rubygem-asciidoctor' 'ruby2.6-rubygem-asciidoctor-doc' 'ruby2.6-rubygem-atomic' 'ruby2.6-rubygem-atomic-doc' 'ruby2.6-rubygem-atomic-testsuite' 'ruby2.6-rubygem-attr_required' 'ruby2.6-rubygem-attr_required-doc' 'ruby2.6-rubygem-attr_required-testsuite' 'ruby2.6-rubygem-autoprefixer-rails' 'ruby2.6-rubygem-autoprefixer-rails-doc' 'ruby2.6-rubygem-autoprefixer-rails-testsuite' 'ruby2.6-rubygem-axiom-types' 'ruby2.6-rubygem-axiom-types-doc' 'ruby2.6-rubygem-axiom-types-testsuite' 'ruby2.6-rubygem-base32' 'ruby2.6-rubygem-base32-doc' 'ruby2.6-rubygem-base32-testsuite' 'ruby2.6-rubygem-bcrypt' 'ruby2.6-rubygem-bcrypt-doc' 'ruby2.6-rubygem-bcrypt-ruby' 'ruby2.6-rubygem-bcrypt-ruby-doc' 'ruby2.6-rubygem-bcrypt-testsuite' 'ruby2.6-rubygem-bcrypt_pbkdf' 'ruby2.6-rubygem-bcrypt_pbkdf-doc' 'ruby2.6-rubygem-bcrypt_pbkdf-testsuite' 'ruby2.6-rubygem-bindata' 'ruby2.6-rubygem-bindata-doc' 'ruby2.6-rubygem-bindata-testsuite' 'ruby2.6-rubygem-bindex' 'ruby2.6-rubygem-bindex-doc' 'ruby2.6-rubygem-bindex-testsuite' 'ruby2.6-rubygem-binding_of_caller' 'ruby2.6-rubygem-binding_of_caller-doc' 'ruby2.6-rubygem-binding_of_caller-testsuite' 'ruby2.6-rubygem-bootsnap' 'ruby2.6-rubygem-bootsnap-doc' 'ruby2.6-rubygem-bootstrap-sass' 'ruby2.6-rubygem-bootstrap-sass-doc' 'ruby2.6-rubygem-bootstrap-sass-testsuite' 'ruby2.6-rubygem-buff-extensions' 'ruby2.6-rubygem-buff-extensions-doc' 'ruby2.6-rubygem-buff-extensions-testsuite' 'ruby2.6-rubygem-buff-ignore' 'ruby2.6-rubygem-buff-ignore-doc' 'ruby2.6-rubygem-buff-ignore-testsuite' 'ruby2.6-rubygem-buff-ruby_engine' 'ruby2.6-rubygem-buff-ruby_engine-doc' 'ruby2.6-rubygem-buff-ruby_engine-testsuite' 'ruby2.6-rubygem-builder' 'ruby2.6-rubygem-builder-doc' 'ruby2.6-rubygem-builder-testsuite' 'ruby2.6-rubygem-bundler' 'ruby2.6-rubygem-bundler-audit' 'ruby2.6-rubygem-bundler-audit-doc' 'ruby2.6-rubygem-bundler-audit-testsuite' 'ruby2.6-rubygem-bundler-doc' 'ruby2.6-rubygem-bunny' 'ruby2.6-rubygem-bunny-doc' 'ruby2.6-rubygem-bunny-testsuite' 'ruby2.6-rubygem-byebug' 'ruby2.6-rubygem-byebug-doc' 'ruby2.6-rubygem-capistrano' 'ruby2.6-rubygem-capistrano-doc' 'ruby2.6-rubygem-capistrano-harrow' 'ruby2.6-rubygem-capistrano-harrow-doc' 'ruby2.6-rubygem-capistrano-stats' 'ruby2.6-rubygem-capistrano-stats-doc' 'ruby2.6-rubygem-capistrano-testsuite' 'ruby2.6-rubygem-celluloid' 'ruby2.6-rubygem-celluloid-doc' 'ruby2.6-rubygem-celluloid-essentials' 'ruby2.6-rubygem-celluloid-essentials-doc' 'ruby2.6-rubygem-celluloid-extras' 'ruby2.6-rubygem-celluloid-extras-doc' 'ruby2.6-rubygem-celluloid-fsm' 'ruby2.6-rubygem-celluloid-fsm-doc' 'ruby2.6-rubygem-celluloid-pool' 'ruby2.6-rubygem-celluloid-pool-doc' 'ruby2.6-rubygem-celluloid-supervision' 'ruby2.6-rubygem-celluloid-supervision-doc' 'ruby2.6-rubygem-celluloid-testsuite' 'ruby2.6-rubygem-cfa-doc' 'ruby2.6-rubygem-cfa_grub2-doc' 'ruby2.6-rubygem-changelog_generator' 'ruby2.6-rubygem-changelog_generator-doc' 'ruby2.6-rubygem-changelog_generator-testsuite' 'ruby2.6-rubygem-cheetah-doc' 'ruby2.6-rubygem-childprocess' 'ruby2.6-rubygem-childprocess-0_6' 'ruby2.6-rubygem-childprocess-doc' 'ruby2.6-rubygem-childprocess-doc-0_6' 'ruby2.6-rubygem-childprocess-testsuite' 'ruby2.6-rubygem-childprocess-testsuite-0_6' 'ruby2.6-rubygem-ci_reporter' 'ruby2.6-rubygem-ci_reporter-doc' 'ruby2.6-rubygem-ci_reporter-testsuite' 'ruby2.6-rubygem-cleanroom' 'ruby2.6-rubygem-cleanroom-doc' 'ruby2.6-rubygem-cleanroom-testsuite' 'ruby2.6-rubygem-coderay' 'ruby2.6-rubygem-coderay-doc' 'ruby2.6-rubygem-coercible' 'ruby2.6-rubygem-coercible-doc' 'ruby2.6-rubygem-coercible-testsuite' 'ruby2.6-rubygem-coffee-rails' 'ruby2.6-rubygem-coffee-rails-doc' 'ruby2.6-rubygem-coffee-script' 'ruby2.6-rubygem-coffee-script-doc' 'ruby2.6-rubygem-coffee-script-source' 'ruby2.6-rubygem-coffee-script-source-doc' 'ruby2.6-rubygem-colorator' 'ruby2.6-rubygem-colorator-0' 'ruby2.6-rubygem-colorator-doc' 'ruby2.6-rubygem-colorator-doc-0' 'ruby2.6-rubygem-colorator-testsuite-0' 'ruby2.6-rubygem-colored' 'ruby2.6-rubygem-colored-doc' 'ruby2.6-rubygem-colored-testsuite' 'ruby2.6-rubygem-colorize' 'ruby2.6-rubygem-colorize-doc' 'ruby2.6-rubygem-colorize-testsuite' 'ruby2.6-rubygem-columnize' 'ruby2.6-rubygem-columnize-doc' 'ruby2.6-rubygem-columnize-testsuite' 'ruby2.6-rubygem-commander' 'ruby2.6-rubygem-commander-doc' 'ruby2.6-rubygem-commander-testsuite' 'ruby2.6-rubygem-concurrent-ruby' 'ruby2.6-rubygem-concurrent-ruby-doc' 'ruby2.6-rubygem-cool.io' 'ruby2.6-rubygem-cool.io-doc' 'ruby2.6-rubygem-cool.io-testsuite' 'ruby2.6-rubygem-crack' 'ruby2.6-rubygem-crack-doc' 'ruby2.6-rubygem-crack-testsuite' 'ruby2.6-rubygem-crass' 'ruby2.6-rubygem-crass-doc' 'ruby2.6-rubygem-crass-testsuite' 'ruby2.6-rubygem-cri' 'ruby2.6-rubygem-cri-doc' 'ruby2.6-rubygem-cri-testsuite' 'ruby2.6-rubygem-cssmin' 'ruby2.6-rubygem-cssmin-doc' 'ruby2.6-rubygem-daemon_controller' 'ruby2.6-rubygem-daemon_controller-doc' 'ruby2.6-rubygem-daemon_controller-testsuite' 'ruby2.6-rubygem-daemons' 'ruby2.6-rubygem-daemons-doc' 'ruby2.6-rubygem-debug_inspector' 'ruby2.6-rubygem-debug_inspector-doc' 'ruby2.6-rubygem-debug_inspector-testsuite' 'ruby2.6-rubygem-debugger-linecache' 'ruby2.6-rubygem-debugger-linecache-doc' 'ruby2.6-rubygem-debugger-linecache-testsuite' 'ruby2.6-rubygem-deep_merge' 'ruby2.6-rubygem-deep_merge-doc' 'ruby2.6-rubygem-deep_merge-testsuite' 'ruby2.6-rubygem-delayed_job' 'ruby2.6-rubygem-delayed_job-doc' 'ruby2.6-rubygem-delayed_job-testsuite' 'ruby2.6-rubygem-delayed_job_active_record' 'ruby2.6-rubygem-delayed_job_active_record-doc' 'ruby2.6-rubygem-descendants_tracker' 'ruby2.6-rubygem-descendants_tracker-doc' 'ruby2.6-rubygem-descendants_tracker-testsuite' 'ruby2.6-rubygem-devise' 'ruby2.6-rubygem-devise-doc' 'ruby2.6-rubygem-devise-i18n' 'ruby2.6-rubygem-devise-i18n-doc' 'ruby2.6-rubygem-devise_ldap_authenticatable' 'ruby2.6-rubygem-devise_ldap_authenticatable-doc' 'ruby2.6-rubygem-devise_ldap_authenticatable-testsuite' 'ruby2.6-rubygem-dice' 'ruby2.6-rubygem-dice-doc' 'ruby2.6-rubygem-diff-lcs' 'ruby2.6-rubygem-diff-lcs-doc' 'ruby2.6-rubygem-diff-lcs-testsuite' 'ruby2.6-rubygem-diffy' 'ruby2.6-rubygem-diffy-doc' 'ruby2.6-rubygem-diffy-testsuite' 'ruby2.6-rubygem-dig_rb' 'ruby2.6-rubygem-dig_rb-doc' 'ruby2.6-rubygem-docile' 'ruby2.6-rubygem-docile-1_1' 'ruby2.6-rubygem-docile-doc' 'ruby2.6-rubygem-docile-doc-1_1' 'ruby2.6-rubygem-docile-testsuite-1_1' 'ruby2.6-rubygem-domain_name' 'ruby2.6-rubygem-domain_name-doc' 'ruby2.6-rubygem-domain_name-testsuite' 'ruby2.6-rubygem-ed25519' 'ruby2.6-rubygem-ed25519-doc' 'ruby2.6-rubygem-em-websocket' 'ruby2.6-rubygem-em-websocket-doc' 'ruby2.6-rubygem-em-websocket-testsuite' 'ruby2.6-rubygem-equalizer' 'ruby2.6-rubygem-equalizer-doc' 'ruby2.6-rubygem-equalizer-testsuite' 'ruby2.6-rubygem-erubi' 'ruby2.6-rubygem-erubi-doc' 'ruby2.6-rubygem-erubi-testsuite' 'ruby2.6-rubygem-erubis' 'ruby2.6-rubygem-erubis-2_6' 'ruby2.6-rubygem-erubis-doc' 'ruby2.6-rubygem-erubis-doc-2_6' 'ruby2.6-rubygem-erubis-testsuite' 'ruby2.6-rubygem-erubis-testsuite-2_6' 'ruby2.6-rubygem-eventmachine' 'ruby2.6-rubygem-eventmachine-doc' 'ruby2.6-rubygem-exception_notification' 'ruby2.6-rubygem-exception_notification-doc' 'ruby2.6-rubygem-exception_notification-testsuite' 'ruby2.6-rubygem-excon' 'ruby2.6-rubygem-excon-doc' 'ruby2.6-rubygem-execjs' 'ruby2.6-rubygem-execjs-doc' 'ruby2.6-rubygem-extlib' 'ruby2.6-rubygem-extlib-doc' 'ruby2.6-rubygem-extlib-testsuite' 'ruby2.6-rubygem-factory_girl' 'ruby2.6-rubygem-factory_girl-doc' 'ruby2.6-rubygem-factory_girl_rails' 'ruby2.6-rubygem-factory_girl_rails-doc' 'ruby2.6-rubygem-fake_ftp' 'ruby2.6-rubygem-fake_ftp-0_1' 'ruby2.6-rubygem-fake_ftp-doc' 'ruby2.6-rubygem-fake_ftp-doc-0_1' 'ruby2.6-rubygem-fake_ftp-testsuite' 'ruby2.6-rubygem-fake_ftp-testsuite-0_1' 'ruby2.6-rubygem-faraday' 'ruby2.6-rubygem-faraday-0_12' 'ruby2.6-rubygem-faraday-doc' 'ruby2.6-rubygem-faraday-doc-0_12' 'ruby2.6-rubygem-faraday_middleware' 'ruby2.6-rubygem-faraday_middleware-doc' 'ruby2.6-rubygem-faraday_middleware-multi_json' 'ruby2.6-rubygem-faraday_middleware-multi_json-doc' 'ruby2.6-rubygem-faraday_middleware-multi_json-testsuite' 'ruby2.6-rubygem-fast_gettext-1.1' 'ruby2.6-rubygem-fast_gettext-doc' 'ruby2.6-rubygem-fast_gettext-doc-1.1' 'ruby2.6-rubygem-fast_xs' 'ruby2.6-rubygem-fast_xs-doc' 'ruby2.6-rubygem-fast_xs-testsuite' 'ruby2.6-rubygem-fastercsv' 'ruby2.6-rubygem-fastercsv-doc' 'ruby2.6-rubygem-fastercsv-testsuite' 'ruby2.6-rubygem-ffi' 'ruby2.6-rubygem-ffi-doc' 'ruby2.6-rubygem-file-tail' 'ruby2.6-rubygem-file-tail-doc' 'ruby2.6-rubygem-flog' 'ruby2.6-rubygem-flog-doc' 'ruby2.6-rubygem-flog-testsuite' 'ruby2.6-rubygem-fluentd' 'ruby2.6-rubygem-fluentd-doc' 'ruby2.6-rubygem-fluentd-testsuite' 'ruby2.6-rubygem-fog-core' 'ruby2.6-rubygem-fog-core-doc' 'ruby2.6-rubygem-fog-core-testsuite' 'ruby2.6-rubygem-fog-json' 'ruby2.6-rubygem-fog-json-doc' 'ruby2.6-rubygem-fog-json-testsuite' 'ruby2.6-rubygem-fog-libvirt' 'ruby2.6-rubygem-fog-libvirt-doc' 'ruby2.6-rubygem-fog-xml' 'ruby2.6-rubygem-fog-xml-doc' 'ruby2.6-rubygem-fog-xml-testsuite' 'ruby2.6-rubygem-font-awesome-rails' 'ruby2.6-rubygem-font-awesome-rails-doc' 'ruby2.6-rubygem-font-awesome-rails-testsuite' 'ruby2.6-rubygem-formatador' 'ruby2.6-rubygem-formatador-doc' 'ruby2.6-rubygem-forwardable-extended' 'ruby2.6-rubygem-forwardable-extended-doc' 'ruby2.6-rubygem-get_process_mem' 'ruby2.6-rubygem-get_process_mem-doc' 'ruby2.6-rubygem-get_process_mem-testsuite' 'ruby2.6-rubygem-gettext' 'ruby2.6-rubygem-gettext-doc' 'ruby2.6-rubygem-gettext-setup' 'ruby2.6-rubygem-gettext-setup-doc' 'ruby2.6-rubygem-gettext-setup-testsuite' 'ruby2.6-rubygem-gettext-testsuite' 'ruby2.6-rubygem-gettext_i18n_rails' 'ruby2.6-rubygem-gettext_i18n_rails-doc' 'ruby2.6-rubygem-gettext_i18n_rails_js' 'ruby2.6-rubygem-gettext_i18n_rails_js-doc' 'ruby2.6-rubygem-gettext_i18n_rails_js-testsuite' 'ruby2.6-rubygem-gli' 'ruby2.6-rubygem-gli-doc' 'ruby2.6-rubygem-gli-testsuite' 'ruby2.6-rubygem-globalid' 'ruby2.6-rubygem-globalid-doc' 'ruby2.6-rubygem-gpgme' 'ruby2.6-rubygem-gpgme-doc' 'ruby2.6-rubygem-gpgme-testsuite' 'ruby2.6-rubygem-grape' 'ruby2.6-rubygem-grape-doc' 'ruby2.6-rubygem-grape-testsuite' 'ruby2.6-rubygem-gravatar_image_tag' 'ruby2.6-rubygem-gravatar_image_tag-doc' 'ruby2.6-rubygem-gravatar_image_tag-testsuite' 'ruby2.6-rubygem-gssapi' 'ruby2.6-rubygem-gssapi-doc' 'ruby2.6-rubygem-gssapi-testsuite' 'ruby2.6-rubygem-gyoku' 'ruby2.6-rubygem-gyoku-doc' 'ruby2.6-rubygem-gyoku-testsuite' 'ruby2.6-rubygem-haml' 'ruby2.6-rubygem-haml-doc' 'ruby2.6-rubygem-haml-rails' 'ruby2.6-rubygem-haml-rails-doc' 'ruby2.6-rubygem-haml-rails-testsuite' 'ruby2.6-rubygem-has_mobile_views' 'ruby2.6-rubygem-has_mobile_views-doc' 'ruby2.6-rubygem-has_mobile_views-testsuite' 'ruby2.6-rubygem-hashdiff' 'ruby2.6-rubygem-hashdiff-doc' 'ruby2.6-rubygem-hashdiff-testsuite' 'ruby2.6-rubygem-hashicorp-checkpoint' 'ruby2.6-rubygem-hashicorp-checkpoint-doc' 'ruby2.6-rubygem-hashicorp-checkpoint-testsuite' 'ruby2.6-rubygem-hashie' 'ruby2.6-rubygem-hashie-doc' 'ruby2.6-rubygem-hashie-testsuite' 'ruby2.6-rubygem-highline' 'ruby2.6-rubygem-highline-1_6' 'ruby2.6-rubygem-highline-1_7' 'ruby2.6-rubygem-highline-doc' 'ruby2.6-rubygem-highline-doc-1_6' 'ruby2.6-rubygem-highline-doc-1_7' 'ruby2.6-rubygem-highline-testsuite-1_6' 'ruby2.6-rubygem-highline-testsuite-1_7' 'ruby2.6-rubygem-hike' 'ruby2.6-rubygem-hike-1_2' 'ruby2.6-rubygem-hike-doc' 'ruby2.6-rubygem-hike-doc-1_2' 'ruby2.6-rubygem-hitimes' 'ruby2.6-rubygem-hitimes-doc' 'ruby2.6-rubygem-hitimes-testsuite' 'ruby2.6-rubygem-hoe' 'ruby2.6-rubygem-hoe-doc' 'ruby2.6-rubygem-hoe-testsuite' 'ruby2.6-rubygem-hpricot' 'ruby2.6-rubygem-hpricot-doc' 'ruby2.6-rubygem-hpricot-testsuite' 'ruby2.6-rubygem-html2haml' 'ruby2.6-rubygem-html2haml-doc' 'ruby2.6-rubygem-html2haml-testsuite' 'ruby2.6-rubygem-http-cookie' 'ruby2.6-rubygem-http-cookie-doc' 'ruby2.6-rubygem-http-cookie-testsuite' 'ruby2.6-rubygem-http_accept_language' 'ruby2.6-rubygem-http_accept_language-doc' 'ruby2.6-rubygem-http_accept_language-testsuite' 'ruby2.6-rubygem-http_parser.rb' 'ruby2.6-rubygem-http_parser.rb-doc' 'ruby2.6-rubygem-http_parser.rb-testsuite' 'ruby2.6-rubygem-httpclient' 'ruby2.6-rubygem-httpclient-doc' 'ruby2.6-rubygem-httpclient-testsuite' 'ruby2.6-rubygem-i18n' 'ruby2.6-rubygem-i18n-0_6' 'ruby2.6-rubygem-i18n-0_9' 'ruby2.6-rubygem-i18n-1.1' 'ruby2.6-rubygem-i18n-doc' 'ruby2.6-rubygem-i18n-doc-0_6' 'ruby2.6-rubygem-i18n-doc-0_9' 'ruby2.6-rubygem-i18n-doc-1.1' 'ruby2.6-rubygem-i18n-testsuite-0_6' 'ruby2.6-rubygem-i18n-testsuite-0_9' 'ruby2.6-rubygem-i18n-testsuite-1.1' 'ruby2.6-rubygem-ice_nine' 'ruby2.6-rubygem-ice_nine-doc' 'ruby2.6-rubygem-ice_nine-testsuite' 'ruby2.6-rubygem-inifile' 'ruby2.6-rubygem-inifile-doc' 'ruby2.6-rubygem-inifile-testsuite' 'ruby2.6-rubygem-ipaddress' 'ruby2.6-rubygem-ipaddress-doc' 'ruby2.6-rubygem-ipaddress-testsuite' 'ruby2.6-rubygem-jbuilder' 'ruby2.6-rubygem-jbuilder-doc' 'ruby2.6-rubygem-jbuilder-testsuite' 'ruby2.6-rubygem-jekyll' 'ruby2.6-rubygem-jekyll-doc' 'ruby2.6-rubygem-jekyll-sass-converter' 'ruby2.6-rubygem-jekyll-sass-converter-doc' 'ruby2.6-rubygem-jekyll-watch' 'ruby2.6-rubygem-jekyll-watch-doc' 'ruby2.6-rubygem-jmespath' 'ruby2.6-rubygem-jmespath-doc' 'ruby2.6-rubygem-journey-1_0' 'ruby2.6-rubygem-journey-doc-1_0' 'ruby2.6-rubygem-journey-testsuite-1_0' 'ruby2.6-rubygem-jquery-rails' 'ruby2.6-rubygem-jquery-rails-doc' 'ruby2.6-rubygem-jquery-rails-testsuite' 'ruby2.6-rubygem-jquery-ui-rails' 'ruby2.6-rubygem-jquery-ui-rails-doc' 'ruby2.6-rubygem-js-routes' 'ruby2.6-rubygem-js-routes-doc' 'ruby2.6-rubygem-js-routes-testsuite' 'ruby2.6-rubygem-json' 'ruby2.6-rubygem-json-doc' 'ruby2.6-rubygem-json-jwt' 'ruby2.6-rubygem-json-jwt-doc' 'ruby2.6-rubygem-json-schema' 'ruby2.6-rubygem-json-schema-doc' 'ruby2.6-rubygem-json_pure' 'ruby2.6-rubygem-json_pure-doc' 'ruby2.6-rubygem-jwt' 'ruby2.6-rubygem-jwt-1_5' 'ruby2.6-rubygem-jwt-doc' 'ruby2.6-rubygem-jwt-doc-1_5' 'ruby2.6-rubygem-jwt-testsuite-1_5' 'ruby2.6-rubygem-kgio' 'ruby2.6-rubygem-kgio-doc' 'ruby2.6-rubygem-kgio-testsuite' 'ruby2.6-rubygem-kramdown' 'ruby2.6-rubygem-kramdown-doc' 'ruby2.6-rubygem-kramdown-testsuite' 'ruby2.6-rubygem-launchy' 'ruby2.6-rubygem-launchy-doc' 'ruby2.6-rubygem-launchy-testsuite' 'ruby2.6-rubygem-levenshtein' 'ruby2.6-rubygem-levenshtein-doc' 'ruby2.6-rubygem-levenshtein-testsuite' 'ruby2.6-rubygem-librarian' 'ruby2.6-rubygem-librarian-doc' 'ruby2.6-rubygem-librarian-testsuite' 'ruby2.6-rubygem-libyui-rake' 'ruby2.6-rubygem-libyui-rake-doc' 'ruby2.6-rubygem-lightbox2' 'ruby2.6-rubygem-lightbox2-doc' 'ruby2.6-rubygem-liquid' 'ruby2.6-rubygem-liquid-3' 'ruby2.6-rubygem-liquid-doc' 'ruby2.6-rubygem-liquid-doc-3' 'ruby2.6-rubygem-liquid-testsuite' 'ruby2.6-rubygem-liquid-testsuite-3' 'ruby2.6-rubygem-listen' 'ruby2.6-rubygem-listen-3_0' 'ruby2.6-rubygem-listen-doc' 'ruby2.6-rubygem-listen-doc-3_0' 'ruby2.6-rubygem-little-plugger' 'ruby2.6-rubygem-little-plugger-doc' 'ruby2.6-rubygem-little-plugger-testsuite' 'ruby2.6-rubygem-locale' 'ruby2.6-rubygem-locale-doc' 'ruby2.6-rubygem-locale-testsuite' 'ruby2.6-rubygem-log4r' 'ruby2.6-rubygem-log4r-doc' 'ruby2.6-rubygem-logging' 'ruby2.6-rubygem-logging-doc' 'ruby2.6-rubygem-logging-testsuite' 'ruby2.6-rubygem-loofah' 'ruby2.6-rubygem-loofah-doc' 'ruby2.6-rubygem-loofah-testsuite' 'ruby2.6-rubygem-mail' 'ruby2.6-rubygem-mail-2_5' 'ruby2.6-rubygem-mail-doc' 'ruby2.6-rubygem-mail-doc-2_5' 'ruby2.6-rubygem-manpages' 'ruby2.6-rubygem-manpages-doc' 'ruby2.6-rubygem-marcel' 'ruby2.6-rubygem-marcel-doc' 'ruby2.6-rubygem-memcache-client' 'ruby2.6-rubygem-memcache-client-doc' 'ruby2.6-rubygem-memcache-client-testsuite' 'ruby2.6-rubygem-mercenary' 'ruby2.6-rubygem-mercenary-doc' 'ruby2.6-rubygem-mercenary-testsuite' 'ruby2.6-rubygem-metaclass' 'ruby2.6-rubygem-metaclass-doc' 'ruby2.6-rubygem-metaclass-testsuite' 'ruby2.6-rubygem-method_source' 'ruby2.6-rubygem-method_source-doc' 'ruby2.6-rubygem-method_source-testsuite' 'ruby2.6-rubygem-micromachine' 'ruby2.6-rubygem-micromachine-doc' 'ruby2.6-rubygem-micromachine-testsuite' 'ruby2.6-rubygem-mime-types' 'ruby2.6-rubygem-mime-types-1' 'ruby2.6-rubygem-mime-types-data' 'ruby2.6-rubygem-mime-types-data-doc' 'ruby2.6-rubygem-mime-types-doc' 'ruby2.6-rubygem-mime-types-doc-1' 'ruby2.6-rubygem-mime-types-testsuite' 'ruby2.6-rubygem-mime-types-testsuite-1' 'ruby2.6-rubygem-mimemagic' 'ruby2.6-rubygem-mimemagic-doc' 'ruby2.6-rubygem-mimemagic-testsuite' 'ruby2.6-rubygem-mini_magick' 'ruby2.6-rubygem-mini_magick-doc' 'ruby2.6-rubygem-mini_mime' 'ruby2.6-rubygem-mini_mime-doc' 'ruby2.6-rubygem-mini_portile2' 'ruby2.6-rubygem-mini_portile2-2_3' 'ruby2.6-rubygem-mini_portile2-doc' 'ruby2.6-rubygem-mini_portile2-doc-2_3' 'ruby2.6-rubygem-mini_portile2-testsuite' 'ruby2.6-rubygem-mini_portile2-testsuite-2_3' 'ruby2.6-rubygem-minitar' 'ruby2.6-rubygem-minitar-doc' 'ruby2.6-rubygem-mixlib-authentication' 'ruby2.6-rubygem-mixlib-authentication-doc' 'ruby2.6-rubygem-mixlib-cli' 'ruby2.6-rubygem-mixlib-cli-doc' 'ruby2.6-rubygem-mixlib-config' 'ruby2.6-rubygem-mixlib-config-doc' 'ruby2.6-rubygem-mixlib-log' 'ruby2.6-rubygem-mixlib-log-doc' 'ruby2.6-rubygem-mixlib-shellout' 'ruby2.6-rubygem-mixlib-shellout-doc' 'ruby2.6-rubygem-mobileesp_converted' 'ruby2.6-rubygem-mobileesp_converted-doc' 'ruby2.6-rubygem-mobileesp_converted-testsuite' 'ruby2.6-rubygem-mocha' 'ruby2.6-rubygem-mocha-doc' 'ruby2.6-rubygem-mocha-testsuite' 'ruby2.6-rubygem-moneta' 'ruby2.6-rubygem-moneta-0_7' 'ruby2.6-rubygem-moneta-doc' 'ruby2.6-rubygem-moneta-doc-0_7' 'ruby2.6-rubygem-moneta-testsuite' 'ruby2.6-rubygem-moneta-testsuite-0_7' 'ruby2.6-rubygem-msgpack' 'ruby2.6-rubygem-msgpack-doc' 'ruby2.6-rubygem-msgpack-testsuite' 'ruby2.6-rubygem-multi_json' 'ruby2.6-rubygem-multi_json-doc' 'ruby2.6-rubygem-multi_xml' 'ruby2.6-rubygem-multi_xml-doc' 'ruby2.6-rubygem-multipart-post' 'ruby2.6-rubygem-multipart-post-doc' 'ruby2.6-rubygem-multipart-post-testsuite' 'ruby2.6-rubygem-mustache' 'ruby2.6-rubygem-mustache-doc' 'ruby2.6-rubygem-mustache-testsuite' 'ruby2.6-rubygem-mustermann' 'ruby2.6-rubygem-mustermann-doc' 'ruby2.6-rubygem-mustermann-grape' 'ruby2.6-rubygem-mustermann-grape-doc' 'ruby2.6-rubygem-mustermann-grape-testsuite' 'ruby2.6-rubygem-mustermann-testsuite' 'ruby2.6-rubygem-mysql2' 'ruby2.6-rubygem-mysql2-0.4' 'ruby2.6-rubygem-mysql2-doc' 'ruby2.6-rubygem-mysql2-doc-0.4' 'ruby2.6-rubygem-mysql2-testsuite' 'ruby2.6-rubygem-mysql2-testsuite-0.4' 'ruby2.6-rubygem-net-ldap' 'ruby2.6-rubygem-net-ldap-doc' 'ruby2.6-rubygem-net-ldap-testsuite' 'ruby2.6-rubygem-net-scp' 'ruby2.6-rubygem-net-scp-1_1' 'ruby2.6-rubygem-net-scp-1_2' 'ruby2.6-rubygem-net-scp-doc' 'ruby2.6-rubygem-net-scp-doc-1_1' 'ruby2.6-rubygem-net-scp-doc-1_2' 'ruby2.6-rubygem-net-scp-testsuite-1_1' 'ruby2.6-rubygem-net-scp-testsuite-1_2' 'ruby2.6-rubygem-net-sftp' 'ruby2.6-rubygem-net-sftp-doc' 'ruby2.6-rubygem-net-sftp-testsuite' 'ruby2.6-rubygem-net-ssh' 'ruby2.6-rubygem-net-ssh-4_1' 'ruby2.6-rubygem-net-ssh-5.1' 'ruby2.6-rubygem-net-ssh-doc' 'ruby2.6-rubygem-net-ssh-doc-4_1' 'ruby2.6-rubygem-net-ssh-doc-5.1' 'ruby2.6-rubygem-net-ssh-gateway' 'ruby2.6-rubygem-net-ssh-gateway-doc' 'ruby2.6-rubygem-net-ssh-multi' 'ruby2.6-rubygem-net-ssh-multi-1_1' 'ruby2.6-rubygem-net-ssh-multi-doc' 'ruby2.6-rubygem-net-ssh-multi-doc-1_1' 'ruby2.6-rubygem-net-ssh-multi-testsuite' 'ruby2.6-rubygem-net-ssh-multi-testsuite-1_1' 'ruby2.6-rubygem-netrc' 'ruby2.6-rubygem-netrc-doc' 'ruby2.6-rubygem-netrc-testsuite' 'ruby2.6-rubygem-nio4r' 'ruby2.6-rubygem-nio4r-doc' 'ruby2.6-rubygem-nio4r-testsuite' 'ruby2.6-rubygem-nokogiri' 'ruby2.6-rubygem-nokogiri-doc' 'ruby2.6-rubygem-nori' 'ruby2.6-rubygem-nori-doc' 'ruby2.6-rubygem-nori-testsuite' 'ruby2.6-rubygem-oauth' 'ruby2.6-rubygem-oauth-doc' 'ruby2.6-rubygem-oauth2' 'ruby2.6-rubygem-oauth2-doc' 'ruby2.6-rubygem-omniauth' 'ruby2.6-rubygem-omniauth-doc' 'ruby2.6-rubygem-omniauth-github' 'ruby2.6-rubygem-omniauth-github-doc' 'ruby2.6-rubygem-omniauth-github-testsuite' 'ruby2.6-rubygem-omniauth-gitlab' 'ruby2.6-rubygem-omniauth-gitlab-doc' 'ruby2.6-rubygem-omniauth-gitlab-testsuite' 'ruby2.6-rubygem-omniauth-google-oauth2' 'ruby2.6-rubygem-omniauth-google-oauth2-doc' 'ruby2.6-rubygem-omniauth-google-oauth2-testsuite' 'ruby2.6-rubygem-omniauth-oauth' 'ruby2.6-rubygem-omniauth-oauth-doc' 'ruby2.6-rubygem-omniauth-oauth-testsuite' 'ruby2.6-rubygem-omniauth-oauth2' 'ruby2.6-rubygem-omniauth-oauth2-doc' 'ruby2.6-rubygem-omniauth-oauth2-testsuite' 'ruby2.6-rubygem-open4' 'ruby2.6-rubygem-open4-doc' 'ruby2.6-rubygem-open4-testsuite' 'ruby2.6-rubygem-openid_connect' 'ruby2.6-rubygem-openid_connect-doc' 'ruby2.6-rubygem-openid_connect-testsuite' 'ruby2.6-rubygem-orm_adapter' 'ruby2.6-rubygem-orm_adapter-doc' 'ruby2.6-rubygem-orm_adapter-testsuite' 'ruby2.6-rubygem-owncloud-admin' 'ruby2.6-rubygem-owncloud-admin-doc' 'ruby2.6-rubygem-packaging_rake_tasks' 'ruby2.6-rubygem-packaging_rake_tasks-doc' 'ruby2.6-rubygem-paint' 'ruby2.6-rubygem-paint-doc' 'ruby2.6-rubygem-parallel' 'ruby2.6-rubygem-parallel-doc' 'ruby2.6-rubygem-parallel_tests' 'ruby2.6-rubygem-parallel_tests-doc' 'ruby2.6-rubygem-passenger' 'ruby2.6-rubygem-passenger-doc' 'ruby2.6-rubygem-path_expander' 'ruby2.6-rubygem-path_expander-doc' 'ruby2.6-rubygem-path_expander-testsuite' 'ruby2.6-rubygem-pathutil' 'ruby2.6-rubygem-pathutil-doc' 'ruby2.6-rubygem-pg' 'ruby2.6-rubygem-pg-doc' 'ruby2.6-rubygem-pg-testsuite' 'ruby2.6-rubygem-pkg-config' 'ruby2.6-rubygem-pkg-config-doc' 'ruby2.6-rubygem-pkg-config-testsuite' 'ruby2.6-rubygem-po_to_json' 'ruby2.6-rubygem-po_to_json-doc' 'ruby2.6-rubygem-po_to_json-testsuite' 'ruby2.6-rubygem-polyglot' 'ruby2.6-rubygem-polyglot-doc' 'ruby2.6-rubygem-pry' 'ruby2.6-rubygem-pry-doc' 'ruby2.6-rubygem-pry-doc-testsuite' 'ruby2.6-rubygem-pry_debug' 'ruby2.6-rubygem-pry_debug-doc' 'ruby2.6-rubygem-pry_debug-testsuite' 'ruby2.6-rubygem-public_suffix' 'ruby2.6-rubygem-public_suffix-3.1' 'ruby2.6-rubygem-public_suffix-doc' 'ruby2.6-rubygem-public_suffix-doc-3.1' 'ruby2.6-rubygem-public_suffix-testsuite' 'ruby2.6-rubygem-public_suffix-testsuite-3.1' 'ruby2.6-rubygem-puma' 'ruby2.6-rubygem-puma-doc' 'ruby2.6-rubygem-puma_worker_killer' 'ruby2.6-rubygem-puma_worker_killer-doc' 'ruby2.6-rubygem-puma_worker_killer-testsuite' 'ruby2.6-rubygem-pundit' 'ruby2.6-rubygem-pundit-doc' 'ruby2.6-rubygem-pundit-testsuite' 'ruby2.6-rubygem-rack' 'ruby2.6-rubygem-rack-1_3' 'ruby2.6-rubygem-rack-1_4' 'ruby2.6-rubygem-rack-1_6' 'ruby2.6-rubygem-rack-accept' 'ruby2.6-rubygem-rack-accept-doc' 'ruby2.6-rubygem-rack-accept-testsuite' 'ruby2.6-rubygem-rack-cache-1_2' 'ruby2.6-rubygem-rack-cache-doc-1_2' 'ruby2.6-rubygem-rack-cache-testsuite-1_2' 'ruby2.6-rubygem-rack-doc' 'ruby2.6-rubygem-rack-doc-1_3' 'ruby2.6-rubygem-rack-doc-1_4' 'ruby2.6-rubygem-rack-doc-1_6' 'ruby2.6-rubygem-rack-oauth2' 'ruby2.6-rubygem-rack-oauth2-doc' 'ruby2.6-rubygem-rack-oauth2-testsuite' 'ruby2.6-rubygem-rack-protection' 'ruby2.6-rubygem-rack-protection-doc' 'ruby2.6-rubygem-rack-ssl' 'ruby2.6-rubygem-rack-ssl-1_3' 'ruby2.6-rubygem-rack-ssl-doc' 'ruby2.6-rubygem-rack-ssl-doc-1_3' 'ruby2.6-rubygem-rack-test-0_6' 'ruby2.6-rubygem-rack-test-doc-0_6' 'ruby2.6-rubygem-rack-test-testsuite-0_6' 'ruby2.6-rubygem-rack-testsuite' 'ruby2.6-rubygem-rack-testsuite-1_3' 'ruby2.6-rubygem-rack-testsuite-1_4' 'ruby2.6-rubygem-rack-testsuite-1_6' 'ruby2.6-rubygem-rails-5.2' 'ruby2.6-rubygem-rails-5_0' 'ruby2.6-rubygem-rails-5_1' 'ruby2.6-rubygem-rails-6.0' 'ruby2.6-rubygem-rails-deprecated_sanitizer' 'ruby2.6-rubygem-rails-deprecated_sanitizer-doc' 'ruby2.6-rubygem-rails-deprecated_sanitizer-testsuite' 'ruby2.6-rubygem-rails-doc-5.2' 'ruby2.6-rubygem-rails-doc-5_0' 'ruby2.6-rubygem-rails-doc-5_1' 'ruby2.6-rubygem-rails-doc-6.0' 'ruby2.6-rubygem-rails-dom-testing' 'ruby2.6-rubygem-rails-dom-testing-doc' 'ruby2.6-rubygem-rails-dom-testing-testsuite' 'ruby2.6-rubygem-rails-html-sanitizer' 'ruby2.6-rubygem-rails-html-sanitizer-doc' 'ruby2.6-rubygem-rails-html-sanitizer-testsuite' 'ruby2.6-rubygem-rails-i18n' 'ruby2.6-rubygem-rails-i18n-doc' 'ruby2.6-rubygem-rails_stdout_logging' 'ruby2.6-rubygem-rails_stdout_logging-doc' 'ruby2.6-rubygem-rails_stdout_logging-testsuite' 'ruby2.6-rubygem-railties-5.2' 'ruby2.6-rubygem-railties-5_0' 'ruby2.6-rubygem-railties-5_1' 'ruby2.6-rubygem-railties-6.0' 'ruby2.6-rubygem-railties-doc-5.2' 'ruby2.6-rubygem-railties-doc-5_0' 'ruby2.6-rubygem-railties-doc-5_1' 'ruby2.6-rubygem-railties-doc-6.0' 'ruby2.6-rubygem-raindrops' 'ruby2.6-rubygem-raindrops-doc' 'ruby2.6-rubygem-raindrops-testsuite' 'ruby2.6-rubygem-rake-11_3' 'ruby2.6-rubygem-rake-12_0' 'ruby2.6-rubygem-rake-compiler' 'ruby2.6-rubygem-rake-compiler-doc' 'ruby2.6-rubygem-rake-compiler-testsuite' 'ruby2.6-rubygem-rake-doc-11_3' 'ruby2.6-rubygem-rake-doc-12_0' 'ruby2.6-rubygem-rb-fsevent' 'ruby2.6-rubygem-rb-fsevent-doc' 'ruby2.6-rubygem-rb-inotify' 'ruby2.6-rubygem-rb-inotify-doc' 'ruby2.6-rubygem-rb-inotify-testsuite' 'ruby2.6-rubygem-rb-kqueue' 'ruby2.6-rubygem-rb-kqueue-doc' 'ruby2.6-rubygem-rb-kqueue-testsuite' 'ruby2.6-rubygem-rdiscount' 'ruby2.6-rubygem-rdiscount-doc' 'ruby2.6-rubygem-rdiscount-testsuite' 'ruby2.6-rubygem-rdoc-4' 'ruby2.6-rubygem-rdoc-doc-4' 'ruby2.6-rubygem-rdoc-testsuite-4' 'ruby2.6-rubygem-responders' 'ruby2.6-rubygem-responders-doc' 'ruby2.6-rubygem-rest-client' 'ruby2.6-rubygem-rest-client-doc' 'ruby2.6-rubygem-rest-client-testsuite' 'ruby2.6-rubygem-restility' 'ruby2.6-rubygem-restility-doc' 'ruby2.6-rubygem-restility-testsuite' 'ruby2.6-rubygem-rgen' 'ruby2.6-rubygem-rgen-doc' 'ruby2.6-rubygem-rgen-testsuite' 'ruby2.6-rubygem-rice' 'ruby2.6-rubygem-rice-doc' 'ruby2.6-rubygem-rice-testsuite' 'ruby2.6-rubygem-ronn' 'ruby2.6-rubygem-ronn-doc' 'ruby2.6-rubygem-ronn-testsuite' 'ruby2.6-rubygem-rouge' 'ruby2.6-rubygem-rouge-1' 'ruby2.6-rubygem-rouge-doc' 'ruby2.6-rubygem-rouge-doc-1' 'ruby2.6-rubygem-rpm' 'ruby2.6-rubygem-rpm-doc' 'ruby2.6-rubygem-rpm-testsuite' 'ruby2.6-rubygem-rspec' 'ruby2.6-rubygem-rspec-3_5' 'ruby2.6-rubygem-rspec-core' 'ruby2.6-rubygem-rspec-core-3_5' 'ruby2.6-rubygem-rspec-core-doc' 'ruby2.6-rubygem-rspec-core-doc-3_5' 'ruby2.6-rubygem-rspec-doc' 'ruby2.6-rubygem-rspec-doc-3_5' 'ruby2.6-rubygem-rspec-expectations' 'ruby2.6-rubygem-rspec-expectations-3_5' 'ruby2.6-rubygem-rspec-expectations-doc' 'ruby2.6-rubygem-rspec-expectations-doc-3_5' 'ruby2.6-rubygem-rspec-its' 'ruby2.6-rubygem-rspec-its-doc' 'ruby2.6-rubygem-rspec-its-testsuite' 'ruby2.6-rubygem-rspec-mocks' 'ruby2.6-rubygem-rspec-mocks-3_5' 'ruby2.6-rubygem-rspec-mocks-doc' 'ruby2.6-rubygem-rspec-mocks-doc-3_5' 'ruby2.6-rubygem-rspec-support' 'ruby2.6-rubygem-rspec-support-3_5' 'ruby2.6-rubygem-rspec-support-doc' 'ruby2.6-rubygem-rspec-support-doc-3_5' 'ruby2.6-rubygem-ruby-augeas-doc' 'ruby2.6-rubygem-ruby-dbus-doc' 'ruby2.6-rubygem-ruby-dbus-testsuite' 'ruby2.6-rubygem-ruby-filemagic' 'ruby2.6-rubygem-ruby-filemagic-doc' 'ruby2.6-rubygem-ruby-filemagic-testsuite' 'ruby2.6-rubygem-ruby-libvirt' 'ruby2.6-rubygem-ruby-libvirt-doc' 'ruby2.6-rubygem-ruby-openid' 'ruby2.6-rubygem-ruby-openid-doc' 'ruby2.6-rubygem-ruby-openid-testsuite' 'ruby2.6-rubygem-ruby-shadow' 'ruby2.6-rubygem-ruby-shadow-doc' 'ruby2.6-rubygem-ruby_dep' 'ruby2.6-rubygem-ruby_dep-1_3' 'ruby2.6-rubygem-ruby_dep-doc' 'ruby2.6-rubygem-ruby_dep-doc-1_3' 'ruby2.6-rubygem-ruby_dig' 'ruby2.6-rubygem-ruby_dig-doc' 'ruby2.6-rubygem-ruby_dig-testsuite' 'ruby2.6-rubygem-ruby_parser' 'ruby2.6-rubygem-ruby_parser-doc' 'ruby2.6-rubygem-ruby_parser-testsuite' 'ruby2.6-rubygem-rubyforge' 'ruby2.6-rubygem-rubyforge-doc' 'ruby2.6-rubygem-rubyforge-testsuite' 'ruby2.6-rubygem-rubyntlm' 'ruby2.6-rubygem-rubyntlm-doc' 'ruby2.6-rubygem-rubyntlm-testsuite' 'ruby2.6-rubygem-rubyzip' 'ruby2.6-rubygem-rubyzip-doc' 'ruby2.6-rubygem-rubyzip-testsuite' 'ruby2.6-rubygem-safe_yaml' 'ruby2.6-rubygem-safe_yaml-doc' 'ruby2.6-rubygem-safe_yaml-testsuite' 'ruby2.6-rubygem-sass' 'ruby2.6-rubygem-sass-doc' 'ruby2.6-rubygem-sass-listen' 'ruby2.6-rubygem-sass-listen-doc' 'ruby2.6-rubygem-sass-rails' 'ruby2.6-rubygem-sass-rails-5.1' 'ruby2.6-rubygem-sass-rails-doc' 'ruby2.6-rubygem-sass-rails-doc-5.1' 'ruby2.6-rubygem-sassc' 'ruby2.6-rubygem-sassc-doc' 'ruby2.6-rubygem-sassc-rails' 'ruby2.6-rubygem-sassc-rails-doc' 'ruby2.6-rubygem-sassc-rails-testsuite' 'ruby2.6-rubygem-sassc-testsuite' 'ruby2.6-rubygem-sdoc' 'ruby2.6-rubygem-sdoc-doc' 'ruby2.6-rubygem-sdoc-testsuite' 'ruby2.6-rubygem-securecompare' 'ruby2.6-rubygem-securecompare-doc' 'ruby2.6-rubygem-securecompare-testsuite' 'ruby2.6-rubygem-serverengine' 'ruby2.6-rubygem-serverengine-doc' 'ruby2.6-rubygem-serverengine-testsuite' 'ruby2.6-rubygem-sexp_processor' 'ruby2.6-rubygem-sexp_processor-doc' 'ruby2.6-rubygem-sexp_processor-testsuite' 'ruby2.6-rubygem-sigdump' 'ruby2.6-rubygem-sigdump-doc' 'ruby2.6-rubygem-simple_oauth' 'ruby2.6-rubygem-simple_oauth-doc' 'ruby2.6-rubygem-simplecov' 'ruby2.6-rubygem-simplecov-doc' 'ruby2.6-rubygem-simplecov-html' 'ruby2.6-rubygem-simplecov-html-doc' 'ruby2.6-rubygem-simplecov-html-testsuite' 'ruby2.6-rubygem-simpleidn-doc' 'ruby2.6-rubygem-sinatra' 'ruby2.6-rubygem-sinatra-doc' 'ruby2.6-rubygem-slim' 'ruby2.6-rubygem-slim-doc' 'ruby2.6-rubygem-slim-testsuite' 'ruby2.6-rubygem-slop' 'ruby2.6-rubygem-slop-3' 'ruby2.6-rubygem-slop-3_3' 'ruby2.6-rubygem-slop-doc' 'ruby2.6-rubygem-slop-doc-3' 'ruby2.6-rubygem-slop-doc-3_3' 'ruby2.6-rubygem-slop-testsuite' 'ruby2.6-rubygem-slop-testsuite-3' 'ruby2.6-rubygem-slop-testsuite-3_3' 'ruby2.6-rubygem-spring' 'ruby2.6-rubygem-spring-doc' 'ruby2.6-rubygem-spring-watcher-listen' 'ruby2.6-rubygem-spring-watcher-listen-doc' 'ruby2.6-rubygem-spring-watcher-listen-testsuite' 'ruby2.6-rubygem-sprockets' 'ruby2.6-rubygem-sprockets-2_1' 'ruby2.6-rubygem-sprockets-2_2' 'ruby2.6-rubygem-sprockets-doc' 'ruby2.6-rubygem-sprockets-doc-2_1' 'ruby2.6-rubygem-sprockets-doc-2_2' 'ruby2.6-rubygem-sprockets-helpers' 'ruby2.6-rubygem-sprockets-helpers-doc' 'ruby2.6-rubygem-sprockets-helpers-testsuite' 'ruby2.6-rubygem-sprockets-rails' 'ruby2.6-rubygem-sprockets-rails-doc' 'ruby2.6-rubygem-sqlite3' 'ruby2.6-rubygem-sqlite3-doc' 'ruby2.6-rubygem-sqlite3-testsuite' 'ruby2.6-rubygem-sshkit' 'ruby2.6-rubygem-sshkit-doc' 'ruby2.6-rubygem-sshkit-testsuite' 'ruby2.6-rubygem-stackdeck' 'ruby2.6-rubygem-stackdeck-doc' 'ruby2.6-rubygem-stackdeck-testsuite' 'ruby2.6-rubygem-stomp' 'ruby2.6-rubygem-stomp-doc' 'ruby2.6-rubygem-stomp-testsuite' 'ruby2.6-rubygem-strptime' 'ruby2.6-rubygem-strptime-doc' 'ruby2.6-rubygem-swd' 'ruby2.6-rubygem-swd-doc' 'ruby2.6-rubygem-swd-testsuite' 'ruby2.6-rubygem-systemu' 'ruby2.6-rubygem-systemu-doc' 'ruby2.6-rubygem-systemu-testsuite' 'ruby2.6-rubygem-taskjuggler' 'ruby2.6-rubygem-taskjuggler-doc' 'ruby2.6-rubygem-taskjuggler-testsuite' 'ruby2.6-rubygem-temple' 'ruby2.6-rubygem-temple-doc' 'ruby2.6-rubygem-temple-testsuite' 'ruby2.6-rubygem-term-ansicolor' 'ruby2.6-rubygem-term-ansicolor-doc' 'ruby2.6-rubygem-text' 'ruby2.6-rubygem-text-doc' 'ruby2.6-rubygem-text-hyphen' 'ruby2.6-rubygem-text-hyphen-doc' 'ruby2.6-rubygem-text-hyphen-testsuite' 'ruby2.6-rubygem-text-testsuite' 'ruby2.6-rubygem-thor' 'ruby2.6-rubygem-thor-0_19' 'ruby2.6-rubygem-thor-doc' 'ruby2.6-rubygem-thor-doc-0_19' 'ruby2.6-rubygem-thread_safe' 'ruby2.6-rubygem-thread_safe-doc' 'ruby2.6-rubygem-thread_safe-testsuite' 'ruby2.6-rubygem-tilt' 'ruby2.6-rubygem-tilt-1_1' 'ruby2.6-rubygem-tilt-1_4' 'ruby2.6-rubygem-tilt-doc' 'ruby2.6-rubygem-tilt-doc-1_1' 'ruby2.6-rubygem-tilt-doc-1_4' 'ruby2.6-rubygem-tilt-testsuite' 'ruby2.6-rubygem-tilt-testsuite-1_1' 'ruby2.6-rubygem-tilt-testsuite-1_4' 'ruby2.6-rubygem-timers' 'ruby2.6-rubygem-timers-doc' 'ruby2.6-rubygem-timers-testsuite' 'ruby2.6-rubygem-tins' 'ruby2.6-rubygem-tins-doc' 'ruby2.6-rubygem-tmuxinator' 'ruby2.6-rubygem-tmuxinator-doc' 'ruby2.6-rubygem-tmuxinator-testsuite' 'ruby2.6-rubygem-tomlrb' 'ruby2.6-rubygem-tomlrb-doc' 'ruby2.6-rubygem-treetop' 'ruby2.6-rubygem-treetop-1_4' 'ruby2.6-rubygem-treetop-doc' 'ruby2.6-rubygem-treetop-doc-1_4' 'ruby2.6-rubygem-treetop-testsuite-1_4' 'ruby2.6-rubygem-trollop' 'ruby2.6-rubygem-trollop-doc' 'ruby2.6-rubygem-trollop-testsuite' 'ruby2.6-rubygem-turbolinks' 'ruby2.6-rubygem-turbolinks-doc' 'ruby2.6-rubygem-turbolinks-source' 'ruby2.6-rubygem-turbolinks-source-doc' 'ruby2.6-rubygem-tzinfo' 'ruby2.6-rubygem-tzinfo-0' 'ruby2.6-rubygem-tzinfo-1.2' 'ruby2.6-rubygem-tzinfo-data' 'ruby2.6-rubygem-tzinfo-data-doc' 'ruby2.6-rubygem-tzinfo-doc' 'ruby2.6-rubygem-tzinfo-doc-0' 'ruby2.6-rubygem-tzinfo-doc-1.2' 'ruby2.6-rubygem-tzinfo-testsuite-0' 'ruby2.6-rubygem-tzinfo-testsuite-1.2' 'ruby2.6-rubygem-uglifier' 'ruby2.6-rubygem-uglifier-doc' 'ruby2.6-rubygem-unf-doc' 'ruby2.6-rubygem-unf-testsuite' 'ruby2.6-rubygem-unf_ext-doc' 'ruby2.6-rubygem-unf_ext-testsuite' 'ruby2.6-rubygem-unicorn' 'ruby2.6-rubygem-unicorn-doc' 'ruby2.6-rubygem-unicorn-testsuite' 'ruby2.6-rubygem-unicorn-worker-killer' 'ruby2.6-rubygem-unicorn-worker-killer-doc' 'ruby2.6-rubygem-url_safe_base64' 'ruby2.6-rubygem-url_safe_base64-doc' 'ruby2.6-rubygem-url_safe_base64-testsuite' 'ruby2.6-rubygem-vagrant-spec' 'ruby2.6-rubygem-vagrant-spec-doc' 'ruby2.6-rubygem-vagrant-spec-testsuite' 'ruby2.6-rubygem-vagrant_cloud' 'ruby2.6-rubygem-vagrant_cloud-doc' 'ruby2.6-rubygem-validate_email' 'ruby2.6-rubygem-validate_email-doc' 'ruby2.6-rubygem-validate_url' 'ruby2.6-rubygem-validate_url-doc' 'ruby2.6-rubygem-virtus' 'ruby2.6-rubygem-virtus-doc' 'ruby2.6-rubygem-virtus-testsuite' 'ruby2.6-rubygem-warden' 'ruby2.6-rubygem-warden-doc' 'ruby2.6-rubygem-web-console' 'ruby2.6-rubygem-web-console-2' 'ruby2.6-rubygem-web-console-doc' 'ruby2.6-rubygem-web-console-doc-2' 'ruby2.6-rubygem-webfinger' 'ruby2.6-rubygem-webfinger-doc' 'ruby2.6-rubygem-webfinger-testsuite' 'ruby2.6-rubygem-webmock-1_2' 'ruby2.6-rubygem-webmock-2_3' 'ruby2.6-rubygem-webmock-doc-1_2' 'ruby2.6-rubygem-webmock-doc-2_3' 'ruby2.6-rubygem-webmock-testsuite-1_2' 'ruby2.6-rubygem-webmock-testsuite-2_3' 'ruby2.6-rubygem-websocket' 'ruby2.6-rubygem-websocket-doc' 'ruby2.6-rubygem-websocket-driver' 'ruby2.6-rubygem-websocket-driver-0_6' 'ruby2.6-rubygem-websocket-driver-doc' 'ruby2.6-rubygem-websocket-driver-doc-0_6' 'ruby2.6-rubygem-websocket-extensions' 'ruby2.6-rubygem-websocket-extensions-doc' 'ruby2.6-rubygem-websocket-testsuite' 'ruby2.6-rubygem-winrm-2_1' 'ruby2.6-rubygem-winrm-doc-2_1' 'ruby2.6-rubygem-winrm-elevated' 'ruby2.6-rubygem-winrm-elevated-doc' 'ruby2.6-rubygem-winrm-fs' 'ruby2.6-rubygem-winrm-fs-doc' 'ruby2.6-rubygem-xdg' 'ruby2.6-rubygem-xdg-doc' 'ruby2.6-rubygem-xml-simple' 'ruby2.6-rubygem-xml-simple-doc' 'ruby2.6-rubygem-xmlhash' 'ruby2.6-rubygem-xmlhash-doc' 'ruby2.6-rubygem-xmlhash-testsuite' 'ruby2.6-rubygem-yajl-ruby' 'ruby2.6-rubygem-yajl-ruby-doc' 'ruby2.6-rubygem-yajl-ruby-testsuite' 'ruby2.6-rubygem-yard' 'ruby2.6-rubygem-yard-doc' 'ruby2.6-rubygem-yard-testsuite' 'ruby2.6-rubygem-yast-rake' 'ruby2.6-rubygem-yast-rake-doc' 'ruby2.6-rubygem-zeitwerk' 'ruby2.6-rubygem-zeitwerk-doc' 'rubygem-builder-3_0' 'rubygem-builder-3_0-doc' 'rubygem-builder-3_0-testsuite' 'rubygem-cancan' 'rubygem-cancan-doc' 'rubygem-cancan-testsuite' 'rubygem-docker-api' 'rubygem-docker-api-doc' 'rubygem-docker-api-testsuite' 'rubygem-gettext_activerecord' 'rubygem-gettext_activerecord-doc' 'rubygem-gettext_activerecord-testsuite' 'rubygem-libguestfs' 'rubygem-libwebsocket' 'rubygem-libwebsocket-doc' 'rubygem-libwebsocket-testsuite' 'rubygem-mail-2_4' 'rubygem-mail-2_4-doc' 'rubygem-passenger' 'rubygem-passenger-apache2' 'rubygem-passenger-nginx' 'rubygem-ruby-fcgi' 'rubygem-ruby-fcgi-doc' 'rubygem-ruby-fcgi-testsuite' 'rubygem-sexp_processor-3_2' 'rubygem-sexp_processor-3_2-doc' 'rubygem-sexp_processor-3_2-testsuite' 'rubygem-shoes' 'rubygem-shoes-doc' 'rubygem-shoes-testsuite' 'rubygem-taskjuggler' 'runawk' 'runawk-examples' 'runc' 'runc-test' 'rungetty' 'rust' 'rust-analysis' 'rust-cbindgen' 'rust-doc' 'rust-gdb' 'rust-packaging' 'rust-src' 'rust-srpm-macros' 'rust-std-static' 'rustfmt' 'rxp' 'rxvt-unicode' 'rygel' 'rygel-devel' 'rygel-lang' 'rygel-plugin-gstreamer-renderer' 'rygel-plugin-tracker' 'rypper' 'rzip' 'rzsz' 's3backer' 's3fs' 'sablot' 'sablot-devel' 'sac-javadoc' 'safte-monitor' 'saidar' 'sakura' 'sakura-lang' 'salt' 'salt-api' 'salt-bash-completion' 'salt-cloud' 'salt-doc' 'salt-fish-completion' 'salt-master' 'salt-minion' 'salt-proxy' 'salt-shaptools' 'salt-ssh' 'salt-standalone-formulas-configuration' 'salt-syndic' 'salt-zsh-completion' 'samba-ad-dc' 'samba-ad-dc-32bit' 'samba-ceph' 'samba-core-devel' 'samba-doc' 'samba-dsdb-modules' 'samba-krb-printing' 'samba-libs-python3-32bit' 'samba-pidl' 'samba-test' 'samplicator' 'sane-backends-devel' 'sane-backends-devel-32bit' 'sanlk-reset' 'sanlock' 'sanlock-devel' 'saphanabootstrap-formula' 'sar2' 'sar2-data' 'sarg' 'sassc' 'sat4j' 'savannahice' 'savannahice' 'savannahice-debuginfo' 'savannahice-debugsource' 'saweri-fonts' 'sawfish' 'sawfish-devel' 'sawfish-pager' 'sawfish-sounds' 'sax3' 'saxon6' 'saxon6-aelfred' 'saxon6-demo' 'saxon6-fop' 'saxon6-javadoc' 'saxon6-jdom' 'saxon6-manual' 'saxon6-scripts' 'saxon8' 'saxon8-demo' 'saxon8-dom' 'saxon8-javadoc' 'saxon8-jdom' 'saxon8-manual' 'saxon8-scripts' 'saxon8-sql' 'saxon8-xom' 'saxon8-xpath' 'saxon9' 'saxon9-demo' 'saxon9-javadoc' 'saxon9-manual' 'saxon9-scripts' 'saxpath' 'sazanami-fonts' 'sbc-devel' 'sbcl' 'sbd' 'sbiload' 'sbl' 'sbl-orca' 'sblim-cim-client2' 'sblim-cim-client2-javadoc' 'sblim-cim-client2-manual' 'sblim-cmpi-base' 'sblim-cmpi-base-devel' 'sblim-cmpi-base-testsuite' 'sblim-cmpi-c++-devel' 'sblim-cmpi-devel' 'sblim-cmpi-ssh_service_profile' 'sblim-cmpiutil-devel' 'sblim-indication_helper' 'sblim-indication_helper-devel' 'sblim-sfcCommon-devel' 'sblim-sfcb' 'sblim-sfcc-devel' 'sblim-testsuite' 'sblim-tools-libra-devel' 'sblim-wbemcli' 'sc' 'sc-controller' 'sca-appliance-agent' 'sca-appliance-broker' 'sca-appliance-common' 'sca-appliance-patdev' 'sca-patterns-base' 'sca-patterns-edir' 'sca-patterns-filr' 'sca-patterns-groupwise' 'sca-patterns-hae' 'sca-patterns-oes' 'sca-patterns-sle09' 'sca-patterns-sle10' 'sca-patterns-sle11' 'sca-patterns-sle12' 'sca-patterns-sle15' 'sca-patterns-suma' 'sca-server-report' 'scala' 'scala-apidoc' 'scala-bootstrap' 'scala-bootstrap-apidoc' 'scala-bootstrap-swing' 'scala-swing' 'scalapack-mvapich2-test' 'scalapack-openmpi-test' 'scalapack-openmpi2-test' 'scalapack-openmpi3-test' 'scalapack_2_0_2-gnu-mpich-hpc-module' 'scalapack_2_0_2-gnu-mpich-hpc-test' 'scalapack_2_0_2-gnu-mvapich2-hpc-module' 'scalapack_2_0_2-gnu-mvapich2-hpc-test' 'scalapack_2_0_2-gnu-openmpi1-hpc-module' 'scalapack_2_0_2-gnu-openmpi1-hpc-test' 'scalapack_2_0_2-gnu-openmpi2-hpc-module' 'scalapack_2_0_2-gnu-openmpi2-hpc-test' 'scalapack_2_0_2-gnu-openmpi3-hpc-module' 'scalapack_2_0_2-gnu-openmpi3-hpc-test' 'scalpel' 'scamper' 'scanmem' 'scantailor' 'scap-workbench' 'scap-workbench-doc' 'scat' 'sccs' 'scdl' 'scdoc' 'schedtool' 'schedtop' 'schemaspy' 'scheme48' 'scheme48-devel' 'scheme48-doc' 'scheme48-prescheme' 'scheme48-vm' 'schily-mt' 'schily-rmt' 'schismtracker' 'schroedinger-devel' 'schroedinger-doc' 'scid' 'scid' 'scid-debuginfo' 'scid-debugsource' 'scidavis' 'scidavis-lang' 'scilab' 'scilab-devel' 'scilab-lang' 'scilab-modules' 'scilab-modules-doc' 'scilab-modules-doc-lang' 'scilab-tests' 'scim' 'scim-32bit' 'scim-anthy' 'scim-bridge' 'scim-bridge-gtk2' 'scim-bridge-gtk2-32bit' 'scim-canna' 'scim-chewing' 'scim-devel' 'scim-gtk' 'scim-gtk-32bit' 'scim-gtk3' 'scim-gtk3-32bit' 'scim-hangul' 'scim-input-pad' 'scim-lang' 'scim-m17n' 'scim-pinyin' 'scim-skk' 'scim-sunpinyin' 'scim-tables' 'scim-tables-additional' 'scim-tables-ja' 'scim-tables-ko' 'scim-tables-lang' 'scim-tables-zh' 'scim-tomoe' 'scim-uim' 'scim-unikey' 'scirenderer' 'scirenderer-javadoc' 'scite' 'scmon' 'scons' 'scorpio22' 'scorpio22' 'scorpio22-debuginfo' 'scorpio23' 'scorpio23' 'scorpio23-debuginfo' 'scorpio24' 'scorpio24' 'scorpio24-debuginfo' 'scorpio25' 'scorpio25' 'scorpio25-debuginfo' 'scorpio26' 'scorpio26' 'scorpio26-debuginfo' 'scotch' 'scotch-devel' 'scotch-devel-static' 'scotch-metis-devel' 'screen-message' 'screencast' 'screencast-lang' 'screenfetch' 'screengen' 'screengen' 'screengen-debuginfo' 'screengen-debugsource' 'screengrab' 'screengrab-lang' 'screenkey' 'scribus' 'scribus-devel' 'scrot' 'scrub' 'scrypt' 'scsh' 'scsh-base' 'scsirastools' 'scsires' 'scummvm' 'scummvm' 'scummvm-debuginfo' 'scummvm-debugsource' 'scummvm-extra' 'scummvm-extra-debuginfo' 'scummvm-tools' 'sdcc' 'sdcc-doc' 'sdcc-libc-sources' 'sdcv' 'sddm-branding-upstream' 'sdl-asylum' 'sdl-ball' 'sdl_bomber' 'sdlscavenger' 'sdparm' 'seahorse' 'seahorse-daemon' 'seahorse-lang' 'seahorse-nautilus-lang' 'seahorse-sharing' 'seahorse-sharing-lang' 'seamonkey' 'seamonkey-translations-common' 'seamonkey-translations-other' 'seccheck' 'sedutil' 'segv_handler' 'selene' 'selene' 'selene-debuginfo' 'selene-debugsource' 'selene-lang' 'selinux-tools' 'semantik' 'sendfax' 'sendmail' 'sendmail-devel' 'sendmail-starttls' 'sendxmpp' 'sensord' 'seq24' 'ser2net' 'serd-devel' 'serdi' 'serialdv-devel' 'servletapi4' 'servletapi4-javadoc' 'servletapi5' 'setconf' 'setools-console' 'setools-gui' 'sev-tool' 'sfftobmp' 'sffview' 'sfml2-devel' 'sfml2-doc' 'sgi-bitmap-fonts' 'sgmltool' 'sgmltools-lite' 'sgpio' 'sgrep' 'sha1collisiondetection' 'sha3sum' 'shaderc' 'shaderc-devel' 'shadowdive-devel' 'shadowsocks-libev' 'shadowsocks-libev-devel' 'shadowsocks-libev-doc' 'shairplay' 'shairplay' 'shairplay-debuginfo' 'shairplay-debugsource' 'shairplay-devel' 'shairport-sync' 'shapelib' 'shared-color-targets' 'shared-desktop-ontologies' 'shared-desktop-ontologies-devel' 'shellementary' 'shepherd' 'shepherd-bins' 'shibboleth-sp' 'shibboleth-sp-devel' 'shigofumi' 'shlomif-cmake-modules' 'shntool' 'shorewall' 'shorewall-core' 'shorewall-docs' 'shorewall-init' 'shorewall-lite' 'shorewall6' 'shorewall6-lite' 'shorten' 'shorten' 'shorten-debuginfo' 'shorten-debugsource' 'shotcut' 'shotcut-lang' 'shotwell' 'shotwell-lang' 'shoutsend' 'shoutsend' 'shoutsend-debuginfo' 'showfont' 'showfoto' 'shp' 'shunit2' 'shutdownscheduler' 'shutdownscheduler-lang' 'shutter' 'shutter-lang' 'siege' 'siga' 'sigil' 'signify' 'signing-party' 'signon-plugin-oauth2-devel' 'signon-plugins-32bit' 'signon-plugins-devel' 'signon-plugins-docs' 'signond-docs' 'signond-libs-32bit' 'signond-libs-devel' 'sigrok-cli' 'sigrok-firmware-fx2lafw' 'sil-abyssinica-fonts' 'sil-andika-fonts' 'sil-charis-fonts' 'sil-doulos-fonts' 'sil-gentium-fonts' 'sil-mondulkiri-fonts' 'sil-padauk-fonts' 'simh' 'simple-ccsm' 'simple-ccsm-lang' 'simple-mtpfs' 'simple-obfs' 'simple-obfs-doc' 'simple-scan' 'simple-scan-lang' 'simplescreenrecorder' 'singularity' 'sipcalc' 'sipp' 'siproxd' 'siproxd-doc' 'siren' 'siren' 'siren-debuginfo' 'siren-debugsource' 'sisctrl' 'sisu-inject' 'sisu-javadoc' 'sisu-plexus' 'sitar' 'sitecopy' 'sitecopy-lang' 'sk1' 'skelcd-control-Kubic' 'skelcd-control-MicroOS' 'skelcd-control-openSUSE-promo' 'skelcd-fallbackrepo-openSUSE' 'skelcd-installer-Kubic' 'skelcd-installer-MicroOS' 'skelcd-installer-net-Kubic' 'skelcd-installer-net-MicroOS' 'skelcd-installer-net-openSUSE' 'skelcd-installer-openSUSE' 'ski' 'skinlf' 'skinlf-demo' 'skinlf-javadoc' 'skkdic' 'skkdic-extra' 'skopeo' 'skrooge' 'skrooge-lang' 'sl' 'slade' 'slang-devel' 'slang-slsh' 'sleuth' 'sleuthkit' 'sleuthkit-devel' 'slf4j' 'slf4j-ext' 'slf4j-javadoc' 'slf4j-jcl' 'slf4j-jdk14' 'slf4j-log4j12' 'slf4j-manual' 'slf4j-sources' 'slib' 'slingshot' 'slirp4netns' 'slop' 'slop-devel' 'sloppy022' 'sloppy022' 'sloppy022-debuginfo' 'slowmoVideo' 'slowmoVideo' 'slowmoVideo-debuginfo' 'slowmoVideo-debugsource' 'slrn' 'slrn-lang' 'sluice' 'slurm' 'slurm-auth-none' 'slurm-config' 'slurm-config-man' 'slurm-cray' 'slurm-devel' 'slurm-doc' 'slurm-hdf5' 'slurm-lua' 'slurm-munge' 'slurm-node' 'slurm-openlava' 'slurm-pam_slurm' 'slurm-plugins' 'slurm-seff' 'slurm-sjstat' 'slurm-slurmdbd' 'slurm-sql' 'slurm-sview' 'slurm-torque' 'slurp' 'smake' 'smatch' 'smbios-utils' 'smc-tools' 'smcroute' 'smem' 'smemstat' 'smenu' 'smenu-tests' 'smictrl' 'smillaenlarger' 'smilutils' 'smlnj' 'smplayer' 'smplayer-lang' 'smplayer-skins' 'smplayer-skins' 'smplayer-theme-leo' 'smplayer-theme-leo' 'smplayer-themes' 'smplayer-themes' 'smproxy' 'smssend' 'smtpping' 'smtube' 'smtube' 'smtube-debuginfo' 'smtube-debugsource' 'smtube-lang' 'smuxi' 'smuxi-engine' 'smuxi-engine-campfire' 'smuxi-engine-campfire-lang' 'smuxi-engine-irc' 'smuxi-engine-irc-lang' 'smuxi-engine-jabbr' 'smuxi-engine-jabbr-lang' 'smuxi-engine-lang' 'smuxi-engine-twitter' 'smuxi-engine-twitter-lang' 'smuxi-engine-xmpp' 'smuxi-engine-xmpp-lang' 'smuxi-frontend' 'smuxi-frontend-gnome' 'smuxi-frontend-gnome-irc' 'smuxi-frontend-gnome-irc-lang' 'smuxi-frontend-gnome-lang' 'smuxi-frontend-gnome-twitter' 'smuxi-frontend-gnome-twitter-lang' 'smuxi-frontend-gnome-xmpp' 'smuxi-frontend-gnome-xmpp-lang' 'smuxi-frontend-lang' 'smuxi-frontend-stfl' 'smuxi-message-buffer' 'smuxi-message-buffer-lang' 'smuxi-server' 'smuxi-server-lang' 'snack' 'snakeyaml' 'snakeyaml-javadoc' 'snappy-devel' 'snd' 'snd_sf2' 'sndio' 'sndio-devel' 'sngrep' 'sni-qt-32bit' 'snipl' 'snmpsim' 'snorenotify-qt5' 'snorenotify-qt5-devel' 'snowmix' 'snowmix' 'snowmix-debuginfo' 'snowmix-debugsource' 'soapy-osmo-devel' 'soapy-sdr' 'soapy-sdr-devel' 'soapysdr0.7-module-airspy' 'soapysdr0.7-module-bladerf' 'soapysdr0.7-module-freesrp' 'soapysdr0.7-module-hackrf' 'soapysdr0.7-module-lms7' 'soapysdr0.7-module-mirisdr' 'soapysdr0.7-module-osmosdr' 'soapysdr0.7-module-remote' 'soapysdr0.7-module-rfspace' 'soapysdr0.7-module-rtlsdr' 'soapysdr0.7-module-uhd' 'soapysdr0.7-module-xtrx' 'sobby' 'socat' 'socket_wrapper' 'sofia-sip' 'sofia-sip-devel' 'softhsm' 'softhsm-devel' 'solaar' 'solaar-doc' 'solaar-udev' 'solarfighter' 'solarus' 'solarus-devel' 'solarus-gui' 'solarus-gui-lang' 'solarus-quest-editor' 'solarus-quest-editor-assets' 'solarus-quest-editor-lang' 'solarwolf' 'solarwolf_we' 'solfege' 'solid-devel' 'solid-devel-32bit' 'solo-udev' 'something-for-reddit' 'sonar-icon-theme' 'sonatype-oss-parent' 'sonatype-plugins-parent' 'sonic-visualiser' 'sonnet-devel' 'sonnet-devel-32bit' 'sonobuoy' 'sooperlooper' 'sooperlooper' 'sooperlooper-debuginfo' 'sooperlooper-debugsource' 'sopwith' 'sord' 'sord-devel' 'sound-juicer' 'sound-juicer-lang' 'sound-theme-yaru' 'soundconverter' 'soundconverter-lang' 'soundio' 'soundio-debugsource' 'soundtouch' 'soundtouch-devel' 'soup-sharp' 'soup-sharp-devel' 'source-highlight' 'source-highlight-cgi' 'sox' 'sox' 'sox-debuginfo' 'sox-debugsource' 'sox-devel' 'soxr-devel' 'spacefm' 'spacefm-lang' 'spacenavd' 'spamassassin' 'spandsp-devel' 'spandsp-doc' 'sparse' 'sparse-inspect' 'sparse-llvm' 'sparsehash-devel' 'spatialindex-devel' 'spawn-fcgi' 'spdlog-devel' 'spdylay' 'spdylay-devel' 'spec-cleaner' 'spec-cleaner-format_spec_file' 'spec-version-maven-plugin' 'spec-version-maven-plugin-javadoc' 'spectacle-doc' 'spectator' 'spectcl' 'speech-dispatcher' 'speech-dispatcher-configure' 'speech-dispatcher-module-espeak' 'speedcrunch' 'speex' 'speex-devel' 'speexdsp-devel' 'spek' 'spek-debuginfo' 'spek-debugsource' 'spek-lang' 'spew' 'sphinx' 'sphinxbase' 'sphinxbase-devel' 'spice-gtk' 'spice-gtk-devel' 'spice-gtk-lang' 'spice-html5' 'spice-parent' 'spice-protocol-devel' 'spice-up' 'spice-up-lang' 'spice-vdagent' 'spice-webdavd' 'spirv-cross' 'spirv-headers' 'spirv-tools' 'spirv-tools-devel' 'spirv-tools-devel-32bit' 'splint' 'splinter-devel' 'splix' 'spotify-installer' 'spotify-installer' 'spread-sheet-widget-devel' 'spu-tools' 'spyder' 'spyder-breakpoints' 'spyder-breakpoints-lang' 'spyder-dicom' 'spyder-hdf5' 'spyder-lang' 'spyder-line-profiler' 'spyder-memory-profiler' 'spyder-notebook' 'spyder-profiler' 'spyder-profiler-lang' 'spyder-pylint' 'spyder-pylint-lang' 'spyder-terminal' 'spyder-unittest' 'spyder3' 'spyder3-breakpoints' 'spyder3-breakpoints-lang' 'spyder3-dicom' 'spyder3-hdf5' 'spyder3-lang' 'spyder3-line-profiler' 'spyder3-memory-profiler' 'spyder3-notebook' 'spyder3-profiler' 'spyder3-profiler-lang' 'spyder3-pylint' 'spyder3-pylint-lang' 'spyder3-terminal' 'spyder3-unittest' 'sqlcipher' 'sqlcipher-devel' 'sqlite3' 'sqlite3-devel' 'sqlite3-doc' 'sqliteman' 'sqliteodbc' 'sqliteodbc-doc' 'sqtop' 'squid' 'squidGuard' 'squidGuard-doc' 'squidview' 'squirrel' 'squirrel-devel' 'squirrel-devel-static' 'squirrel-doc' 'squirrel-examples' 'sratom-devel' 'src_vipa' 'srecord' 'srecord-devel' 'srecord-doc' 'srm' 'srp_daemon' 'srt' 'srt-devel' 'sscape-ctl' 'ssdeep' 'ssdp-responder' 'ssh-contact' 'ssh-contact-client' 'ssh-contact-service' 'sshguard' 'sshpass' 'sshuttle' 'ssl-cert-check' 'ssldump' 'sslscan' 'sssd' 'sssd-32bit' 'sssd-ad' 'sssd-dbus' 'sssd-ipa' 'sssd-krb5' 'sssd-krb5-common' 'sssd-ldap' 'sssd-proxy' 'sssd-tools' 'sssd-wbclient' 'sssd-wbclient-devel' 'sssd-winbind-idmap' 'staging-build-key' 'stalonetray' 'stan' 'stardict' 'stardict-dic-enru-engcom' 'stardict-dic-enru-mueller7' 'stardict-sounds-wyabdcrealpeopletts' 'stardict-tools' 'starfighter' 'startup-notification-devel' 'statgrab' 'statserial' 'stax2-api' 'stax2-api-javadoc' 'stb-devel' 'stdman' 'steam-controller' 'steam-vr' 'steamcmd' 'stellarium' 'step' 'step-lang' 'stgit' 'stix-integrals-fonts' 'stix-pua-fonts' 'stix-sizes-fonts' 'stix-variants-fonts' 'stk' 'stk-debugsource' 'stlink' 'stlink-devel' 'stlink-gui' 'stm32flash' 'stockfish' 'stoken' 'stoken-devel' 'stoken-gui' 'storage-fixup' 'storeBackup' 'stow' 'stow-doc' 'stp' 'stp-devel' 'stp-python' 'strawberry' 'stream' 'streamripper' 'streamripper' 'streamripper-debuginfo' 'streamripper-debugsource' 'streamtuner2' 'streamtuner2' 'stress-ng' 'stress-ng-bash-completion' 'stressapptest' 'strip-nondeterminism' 'strongswan' 'strongswan-doc' 'strongswan-hmac' 'strongswan-mysql' 'strongswan-nm' 'strongswan-sqlite' 'stunnel' 'stunnel-doc' 'su-wrapper' 'submin' 'submin-apache' 'submin-svn' 'subnetcalc' 'subtitlecomposer' 'subtitlecomposer-lang' 'subtitleeditor' 'subtitleeditor-lang' 'subtitleripper' 'subtitleripper' 'subtitleripper-debuginfo' 'subtitleripper-debugsource' 'subunit' 'subunit-devel' 'subunit-filters' 'subunit-shell' 'subversion-devel' 'subversion-doc' 'subversion-python' 'subversion-python-ctypes' 'subversion-ruby' 'subversion-server' 'subversion-tools' 'suck' 'sudo-devel' 'sudo-test' 'sudoku-sensei' 'suil-devel' 'suil-plugin-gtk2-in-qt5' 'suil-plugin-qt5-in-gtk2' 'suil-plugin-x11' 'suil-plugin-x11-in-gtk2' 'suil-plugin-x11-in-gtk3' 'suil-plugin-x11-in-qt5' 'suitesparse-devel' 'suitesparse-devel-static' 'sundanese-unicode-fonts' 'sunpinyin-data' 'sunpinyin-devel' 'sunpinyin-tools' 'sunwait' 'sunxi-tools' 'superlu-devel' 'superlu-doc' 'superlu-examples' 'superlu-gnu-hpc-devel' 'superlu-gnu-hpc-doc' 'superlu-gnu-hpc-examples' 'superlu_5_2_1-gnu-hpc-devel' 'superlu_5_2_1-gnu-hpc-doc' 'superlu_5_2_1-gnu-hpc-examples' 'supertux2' 'supertuxkart' 'supertuxkart-data' 'supervisor' 'supportutils' 'surfraw-woffle' 'suru-plus-dark-icon-theme' 'suse-build-key' 'suse-hpc' 'suse-module-tools-legacy' 'suse-xsl-stylesheets' 'susefirewall2-to-firewalld' 'suseprime-appindicator' 'sushi' 'sushi-lang' 'svg-schema' 'svg-schema-doc' 'svgcleaner' 'svgcleaner-gui' 'svgpart' 'svgpart-lang' 'sview' 'sview' 'svn2git' 'svxlink-server' 'sway' 'swaybg' 'swayidle' 'swayidle-bash-completion' 'swayidle-fish-completion' 'swayidle-zsh-completion' 'swaylock' 'swaylock-bash-completion' 'swaylock-fish-completion' 'swaylock-zsh-completion' 'sweep' 'sweep' 'sweep-debuginfo' 'sweep-debugsource' 'sweeper' 'sweeper-lang' 'swell-foop' 'swell-foop-lang' 'swift-im' 'swiften-devel' 'swig' 'swig-doc' 'swig-examples' 'swing-layout' 'swing-layout-javadoc' 'swing-worker' 'swing-worker-demo' 'swing-worker-javadoc' 'swingx' 'swingx-javadoc' 'swipl' 'switch_sles_sle-hpc' 'switchboard' 'switchboard-devel' 'switchboard-lang' 'switcheroo-control' 'switcheroo-control-doc' 'sword' 'sword-devel' 'swtcalendar' 'swtchart' 'swtchart-javadoc' 'sxhkd' 'sxiv' 'sympol' 'sympol-devel' 'synapse' 'synapse-lang' 'syncthing' 'syncthing-gtk' 'syncthing-gtk-lang' 'syncthing-relaysrv' 'syndication-devel' 'synergy' 'synfig' 'synfig' 'synfig-debuginfo' 'synfig-debugsource' 'synfig-devel' 'synfig-doc' 'synfig-lang' 'synfig-modules' 'synfig-modules-debuginfo' 'synfigapp-devel' 'synfigstudio' 'synfigstudio' 'synfigstudio-debuginfo' 'synfigstudio-debugsource' 'synfigstudio-lang' 'synnefo' 'syntax-highlighting-devel' 'syntax-highlighting-devel-32bit' 'sysbench' 'sysdig' 'sysdig-kmp-default' 'sysdig-kmp-pae' 'sysfsutils' 'sysfsutils-32bit' 'sysfsutils-devel' 'sysinfo' 'syslog-ng' 'syslog-ng-curl' 'syslog-ng-devel' 'syslog-ng-geoip' 'syslog-ng-java' 'syslog-ng-python' 'syslog-ng-redis' 'syslog-ng-smtp' 'syslog-ng-sql' 'syslogd' 'sysprof' 'sysprof-capture-devel-static' 'sysprof-devel' 'sysprof-lang' 'sysstat' 'sysstat-isag' 'system-config-printer' 'system-config-printer-applet' 'system-config-printer-common' 'system-config-printer-common-lang' 'system-config-printer-dbus-service' 'system-group-obsolete' 'system-user-ftp' 'system-user-games' 'system-user-news' 'system-user-tftp' 'system-user-upsd' 'system-user-uucp' 'system-user-uuidd' 'system-user-wwwrun' 'systemd-coredump' 'systemd-devel' 'systemd-journal-remote' 'systemd-logger' 'systemd-mini-container' 'systemd-presets-branding-MicroOS' 'systemd-presets-branding-transactional-server' 'systemd-ui' 'systemd-zram-service' 'systemsettings5-devel' 'systemtap' 'systemtap-docs' 'systemtap-headers' 'systemtap-runtime' 'systemtap-sdt-devel' 'systemtap-server' 'systester' 'sysuser-tools' 'sz2-devel' 't-prot' 't1utils' 't38modem' 'tachyon' 'tack' 'tagbanwa-fonts' 'taglib' 'taglib-extras-devel' 'taglib-sharp' 'taglib-sharp-devel' 'tagsoup' 'tagsoup-javadoc' 'tai-heritage-pro-fonts' 'taisei' 'taisei-data' 'tali' 'tali-lang' 'talk' 'talk-server' 'talloc-man' 'tallow' 'tamago' 'tamil-gtk2im' 'tamil-gtk2im-32bit' 'tango-icon-theme' 'tanukiwrapper' 'tanukiwrapper-javadoc' 'tanukiwrapper-manual' 'tar-backup-scripts' 'tar-doc' 'tar-tests' 'tardy' 'target-isns' 'targetcli-fb-common' 'taskwarrior' 'tasque' 'tasque-lang' 'tayga' 'tbb-devel' 'tboot' 'tcd' 'tcl-32bit' 'tcl-Hamlib' 'tcl-brlapi' 'tcl-devel' 'tcl-rrdtool' 'tcl-sqlcipher' 'tcl-tktray' 'tcl8-xapian' 'tclap' 'tclap-doc' 'tclcurl' 'tcllib' 'tclplug' 'tclplug-32bit' 'tcludp' 'tclx' 'tcmu-runner' 'tcmu-runner-handler-glusterfs' 'tcmu-runner-handler-rbd' 'tcmu-runner-handler-zbc' 'tcpd' 'tcpd-devel' 'tcpflow' 'tcpreplay' 'tdb-tools' 'tdom' 'tdom-devel' 'tdu' 'tdu' 'tdu-debuginfo' 'tea' 'tealdeer' 'teamviewer' 'teamviewer-host' 'teamviewer-host-suse' 'technical_writing' 'technisat-usb2-firmware' 'tecla' 'tecla-devel' 'tecnoballz' 'teeworlds' 'tei-roma' 'tei-xsl-stylesheets' 'tei_4' 'telegraf' 'telegram-desktop' 'telegram-theme-adapta' 'telegram-theme-plata' 'telemetrics-client' 'telemetrics-client-devel' 'telepathy-accounts-signon' 'telepathy-farstream-devel' 'telepathy-gabble' 'telepathy-gabble-xmpp-console' 'telepathy-glib-devel' 'telepathy-glib-doc' 'telepathy-haze' 'telepathy-idle' 'telepathy-logger' 'telepathy-logger-devel' 'telepathy-logger-qt5-devel' 'telepathy-mission-control' 'telepathy-mission-control-devel' 'telepathy-mission-control-plugin-goa' 'telepathy-qt5-devel' 'telepathy-qt5-devel-32bit' 'telepathy-rakia' 'telepathy-rakia-devel' 'telepathy-sipe' 'tellico' 'tellico-lang' 'telnet-server' 'template-glib-devel' 'template-glib-lang' 'tennebon-dynamic-wallpaper' 'tensorflow' 'tensorflow-avx2-gnu-hpc' 'tensorflow-avx2-gnu-mvapich2-hpc' 'tensorflow-avx2-gnu-openmpi2-hpc' 'tensorflow-avx2_1_13_1-gnu-hpc' 'tensorflow-avx2_1_13_1-gnu-hpc-devel' 'tensorflow-avx2_1_13_1-gnu-hpc-doc' 'tensorflow-avx2_1_13_1-gnu-mvapich2-hpc' 'tensorflow-avx2_1_13_1-gnu-mvapich2-hpc-devel' 'tensorflow-avx2_1_13_1-gnu-mvapich2-hpc-doc' 'tensorflow-avx2_1_13_1-gnu-openmpi2-hpc' 'tensorflow-avx2_1_13_1-gnu-openmpi2-hpc-devel' 'tensorflow-avx2_1_13_1-gnu-openmpi2-hpc-doc' 'tensorflow-devel' 'tensorflow-doc' 'tensorflow-gnu-hpc' 'tensorflow-gnu-mvapich2-hpc' 'tensorflow-gnu-openmpi2-hpc' 'tensorflow-lite' 'tensorflow-lite-devel' 'tensorflow_1_13_1-gnu-hpc' 'tensorflow_1_13_1-gnu-hpc-devel' 'tensorflow_1_13_1-gnu-hpc-doc' 'tensorflow_1_13_1-gnu-mvapich2-hpc' 'tensorflow_1_13_1-gnu-mvapich2-hpc-devel' 'tensorflow_1_13_1-gnu-mvapich2-hpc-doc' 'tensorflow_1_13_1-gnu-openmpi2-hpc' 'tensorflow_1_13_1-gnu-openmpi2-hpc-devel' 'tensorflow_1_13_1-gnu-openmpi2-hpc-doc' 'tepl-4-lang' 'tepl-devel' 'termcap' 'termcap-32bit' 'terminator' 'terminator-lang' 'terminatorX' 'terminatorX' 'terminatorX-debuginfo' 'terminatorX-debugsource' 'terminfo-iterm' 'terminology' 'terminology-lang' 'terminology-theme-dark' 'terminology-theme-misc' 'terminology-theme-openSUSE' 'terminology-theme-openSUSE-oliveleaf' 'terminology-theme-upstream' 'terminus' 'terminus-bitmap-fonts' 'terminus-lang' 'termsyn-bitmap-fonts' 'terraform' 'teseq' 'tesseract' 'tesseract-data' 'tesseract-ocr' 'tesseract-ocr-devel' 'tesseract-ocr-traineddata-afrikaans' 'tesseract-ocr-traineddata-albanian' 'tesseract-ocr-traineddata-amharic' 'tesseract-ocr-traineddata-arabic' 'tesseract-ocr-traineddata-assamese' 'tesseract-ocr-traineddata-azerbaijani' 'tesseract-ocr-traineddata-azerbaijani_cyrillic' 'tesseract-ocr-traineddata-basque' 'tesseract-ocr-traineddata-belarusian' 'tesseract-ocr-traineddata-bengali' 'tesseract-ocr-traineddata-bosnian' 'tesseract-ocr-traineddata-bulgarian' 'tesseract-ocr-traineddata-burmese' 'tesseract-ocr-traineddata-catalan' 'tesseract-ocr-traineddata-cebuano' 'tesseract-ocr-traineddata-cherokee' 'tesseract-ocr-traineddata-chinese_simplified' 'tesseract-ocr-traineddata-chinese_traditional' 'tesseract-ocr-traineddata-croatian' 'tesseract-ocr-traineddata-czech' 'tesseract-ocr-traineddata-danish' 'tesseract-ocr-traineddata-dutch' 'tesseract-ocr-traineddata-dzongkha' 'tesseract-ocr-traineddata-english' 'tesseract-ocr-traineddata-english_middle' 'tesseract-ocr-traineddata-esperanto' 'tesseract-ocr-traineddata-estonian' 'tesseract-ocr-traineddata-finnish' 'tesseract-ocr-traineddata-frankish' 'tesseract-ocr-traineddata-french' 'tesseract-ocr-traineddata-french_middle' 'tesseract-ocr-traineddata-galician' 'tesseract-ocr-traineddata-georgian' 'tesseract-ocr-traineddata-georgian_old' 'tesseract-ocr-traineddata-german' 'tesseract-ocr-traineddata-greek' 'tesseract-ocr-traineddata-greek_ancient' 'tesseract-ocr-traineddata-gujarati' 'tesseract-ocr-traineddata-haitian' 'tesseract-ocr-traineddata-hebrew' 'tesseract-ocr-traineddata-hindi' 'tesseract-ocr-traineddata-hungarian' 'tesseract-ocr-traineddata-icelandic' 'tesseract-ocr-traineddata-indonese' 'tesseract-ocr-traineddata-inuktitut' 'tesseract-ocr-traineddata-irish' 'tesseract-ocr-traineddata-italian' 'tesseract-ocr-traineddata-italian_old' 'tesseract-ocr-traineddata-japanese' 'tesseract-ocr-traineddata-javanese' 'tesseract-ocr-traineddata-kannada' 'tesseract-ocr-traineddata-kazakh' 'tesseract-ocr-traineddata-khmer' 'tesseract-ocr-traineddata-korean' 'tesseract-ocr-traineddata-kurdish' 'tesseract-ocr-traineddata-kyrgyz' 'tesseract-ocr-traineddata-lao' 'tesseract-ocr-traineddata-latin' 'tesseract-ocr-traineddata-latvian' 'tesseract-ocr-traineddata-lithuanian' 'tesseract-ocr-traineddata-macedonian' 'tesseract-ocr-traineddata-malay' 'tesseract-ocr-traineddata-malayalam' 'tesseract-ocr-traineddata-maltese' 'tesseract-ocr-traineddata-marathi' 'tesseract-ocr-traineddata-math_equation' 'tesseract-ocr-traineddata-nepali' 'tesseract-ocr-traineddata-norwegian' 'tesseract-ocr-traineddata-orientation_and_script_detection' 'tesseract-ocr-traineddata-oriya' 'tesseract-ocr-traineddata-pashto' 'tesseract-ocr-traineddata-persian' 'tesseract-ocr-traineddata-polish' 'tesseract-ocr-traineddata-portuguese' 'tesseract-ocr-traineddata-punjabi' 'tesseract-ocr-traineddata-romanian' 'tesseract-ocr-traineddata-russian' 'tesseract-ocr-traineddata-sanskrit' 'tesseract-ocr-traineddata-serbian' 'tesseract-ocr-traineddata-serbian_latin' 'tesseract-ocr-traineddata-sinhala' 'tesseract-ocr-traineddata-slovak' 'tesseract-ocr-traineddata-slovenian' 'tesseract-ocr-traineddata-spanish' 'tesseract-ocr-traineddata-spanish_old' 'tesseract-ocr-traineddata-swahili' 'tesseract-ocr-traineddata-swedish' 'tesseract-ocr-traineddata-syriac' 'tesseract-ocr-traineddata-tagalog' 'tesseract-ocr-traineddata-tajik' 'tesseract-ocr-traineddata-tamil' 'tesseract-ocr-traineddata-telugu' 'tesseract-ocr-traineddata-thai' 'tesseract-ocr-traineddata-tibetan_standard' 'tesseract-ocr-traineddata-tigrinya' 'tesseract-ocr-traineddata-turkish' 'tesseract-ocr-traineddata-ukrainian' 'tesseract-ocr-traineddata-urdu' 'tesseract-ocr-traineddata-uyghur' 'tesseract-ocr-traineddata-uzbek' 'tesseract-ocr-traineddata-uzbek_cyrillic' 'tesseract-ocr-traineddata-vietnamese' 'tesseract-ocr-traineddata-welsh' 'tesseract-ocr-traineddata-yiddish' 'tesseract-server' 'testdisk' 'testng' 'testng-javadoc' 'tetrinet-server' 'tevent-man' 'texamator' 'texamator-lang' 'texi2html' 'texi2html-lang' 'texi2roff' 'texinfo' 'texinfo4' 'texlive' 'texlive-12many' 'texlive-12many-doc' 'texlive-2up' 'texlive-2up-doc' 'texlive-Asana-Math' 'texlive-Asana-Math-doc' 'texlive-Asana-Math-fonts' 'texlive-ESIEEcv' 'texlive-ESIEEcv-doc' 'texlive-FAQ-en' 'texlive-GS1' 'texlive-GS1-doc' 'texlive-HA-prosper' 'texlive-HA-prosper-doc' 'texlive-IEEEconf' 'texlive-IEEEconf-doc' 'texlive-IEEEtran' 'texlive-IEEEtran-doc' 'texlive-MemoirChapStyles' 'texlive-SIstyle' 'texlive-SIstyle-doc' 'texlive-SIunits' 'texlive-SIunits-doc' 'texlive-Tabbing' 'texlive-Tabbing-doc' 'texlive-Type1fonts' 'texlive-a0poster' 'texlive-a0poster-doc' 'texlive-a2ping' 'texlive-a2ping-bin' 'texlive-a2ping-doc' 'texlive-a4wide' 'texlive-a4wide-doc' 'texlive-a5comb' 'texlive-a5comb-doc' 'texlive-aastex' 'texlive-aastex-doc' 'texlive-abbr' 'texlive-abbr-doc' 'texlive-abc' 'texlive-abc-doc' 'texlive-abnt' 'texlive-abnt-doc' 'texlive-abntex2' 'texlive-abntex2-doc' 'texlive-abraces' 'texlive-abraces-doc' 'texlive-abstract' 'texlive-abstract-doc' 'texlive-abstyles' 'texlive-abstyles-doc' 'texlive-academicons' 'texlive-academicons-doc' 'texlive-academicons-fonts' 'texlive-accanthis' 'texlive-accanthis-doc' 'texlive-accanthis-fonts' 'texlive-accfonts' 'texlive-accfonts-bin' 'texlive-accfonts-doc' 'texlive-achemso' 'texlive-achemso-doc' 'texlive-acmart' 'texlive-acmart-doc' 'texlive-acmconf' 'texlive-acmconf-doc' 'texlive-acro' 'texlive-acro-doc' 'texlive-acronym' 'texlive-acronym-doc' 'texlive-acroterm' 'texlive-acroterm-doc' 'texlive-active-conf' 'texlive-active-conf-doc' 'texlive-actuarialangle' 'texlive-actuarialangle-doc' 'texlive-actuarialsymbol' 'texlive-actuarialsymbol-doc' 'texlive-addfont' 'texlive-addfont-doc' 'texlive-addlines' 'texlive-addlines-doc' 'texlive-adfathesis' 'texlive-adfathesis-doc' 'texlive-adforn' 'texlive-adforn-doc' 'texlive-adforn-fonts' 'texlive-adfsymbols' 'texlive-adfsymbols-doc' 'texlive-adfsymbols-fonts' 'texlive-adhocfilelist' 'texlive-adhocfilelist-bin' 'texlive-adhocfilelist-doc' 'texlive-adigraph' 'texlive-adigraph-doc' 'texlive-adjmulticol' 'texlive-adjmulticol-doc' 'texlive-adjustbox' 'texlive-adjustbox-doc' 'texlive-adobemapping' 'texlive-adrconv' 'texlive-adrconv-doc' 'texlive-adtrees' 'texlive-adtrees-doc' 'texlive-advdate' 'texlive-advdate-doc' 'texlive-ae' 'texlive-ae-doc' 'texlive-aecc' 'texlive-aecc-doc' 'texlive-aeguill' 'texlive-aeguill-doc' 'texlive-afm2pl' 'texlive-afm2pl-bin' 'texlive-afm2pl-doc' 'texlive-afparticle' 'texlive-afparticle-doc' 'texlive-afthesis' 'texlive-afthesis-doc' 'texlive-aguplus' 'texlive-aguplus-doc' 'texlive-aiaa' 'texlive-aiaa-doc' 'texlive-aichej' 'texlive-ajl' 'texlive-akktex' 'texlive-akktex-doc' 'texlive-akletter' 'texlive-akletter-doc' 'texlive-alegreya' 'texlive-alegreya-doc' 'texlive-alegreya-fonts' 'texlive-aleph' 'texlive-aleph-bin' 'texlive-alertmessage' 'texlive-alertmessage-doc' 'texlive-alg' 'texlive-alg-doc' 'texlive-algobox' 'texlive-algobox-doc' 'texlive-algolrevived' 'texlive-algolrevived-doc' 'texlive-algolrevived-fonts' 'texlive-algorithm2e' 'texlive-algorithm2e-doc' 'texlive-algorithmicx' 'texlive-algorithmicx-doc' 'texlive-algorithms' 'texlive-algorithms-doc' 'texlive-aligned-overset' 'texlive-aligned-overset-doc' 'texlive-alkalami' 'texlive-alkalami-doc' 'texlive-alkalami-fonts' 'texlive-allrunes' 'texlive-allrunes-doc' 'texlive-allrunes-fonts' 'texlive-almfixed' 'texlive-almfixed-doc' 'texlive-almfixed-fonts' 'texlive-alnumsec' 'texlive-alnumsec-doc' 'texlive-alpha-persian' 'texlive-alpha-persian-doc' 'texlive-alterqcm' 'texlive-alterqcm-doc' 'texlive-altfont' 'texlive-altfont-doc' 'texlive-ametsoc' 'texlive-ametsoc-doc' 'texlive-amiri' 'texlive-amiri-doc' 'texlive-amiri-fonts' 'texlive-amsaddr' 'texlive-amsaddr-doc' 'texlive-amscls' 'texlive-amscls-doc' 'texlive-amsfonts' 'texlive-amsfonts-doc' 'texlive-amsfonts-fonts' 'texlive-amslatex-primer' 'texlive-amsldoc-it' 'texlive-amsldoc-vn' 'texlive-amsmath' 'texlive-amsmath-doc' 'texlive-amsmath-it' 'texlive-amsrefs' 'texlive-amsrefs-doc' 'texlive-amstex' 'texlive-amstex-bin' 'texlive-amstex-doc' 'texlive-amsthdoc-it' 'texlive-animate' 'texlive-animate-doc' 'texlive-anonchap' 'texlive-anonchap-doc' 'texlive-anonymouspro' 'texlive-anonymouspro-doc' 'texlive-anonymouspro-fonts' 'texlive-answers' 'texlive-answers-doc' 'texlive-antiqua' 'texlive-antiqua-doc' 'texlive-antiqua-fonts' 'texlive-antomega' 'texlive-antomega-doc' 'texlive-antt' 'texlive-antt-doc' 'texlive-antt-fonts' 'texlive-anufinalexam' 'texlive-anyfontsize' 'texlive-anyfontsize-doc' 'texlive-anysize' 'texlive-anysize-doc' 'texlive-aobs-tikz' 'texlive-aobs-tikz-doc' 'texlive-aomart' 'texlive-aomart-doc' 'texlive-apa' 'texlive-apa-doc' 'texlive-apa6' 'texlive-apa6-doc' 'texlive-apa6e' 'texlive-apa6e-doc' 'texlive-apacite' 'texlive-apacite-doc' 'texlive-apalike-german' 'texlive-apalike-german-doc' 'texlive-apalike2' 'texlive-apnum' 'texlive-apnum-doc' 'texlive-appendix' 'texlive-appendix-doc' 'texlive-appendixnumberbeamer' 'texlive-appendixnumberbeamer-doc' 'texlive-apprends-latex' 'texlive-apptools' 'texlive-apptools-doc' 'texlive-apxproof' 'texlive-apxproof-doc' 'texlive-arabi' 'texlive-arabi-add' 'texlive-arabi-add-doc' 'texlive-arabi-doc' 'texlive-arabi-fonts' 'texlive-arabluatex' 'texlive-arabluatex-doc' 'texlive-arabtex' 'texlive-arabtex-doc' 'texlive-arabtex-fonts' 'texlive-arabxetex' 'texlive-arabxetex-doc' 'texlive-aramaic-serto' 'texlive-aramaic-serto-doc' 'texlive-aramaic-serto-fonts' 'texlive-arara' 'texlive-arara-bin' 'texlive-arara-doc' 'texlive-archaeologie' 'texlive-archaeologie-doc' 'texlive-archaic' 'texlive-archaic-doc' 'texlive-archaic-fonts' 'texlive-arcs' 'texlive-arcs-doc' 'texlive-arev' 'texlive-arev-doc' 'texlive-arev-fonts' 'texlive-arimo' 'texlive-arimo-doc' 'texlive-arimo-fonts' 'texlive-armtex' 'texlive-armtex-doc' 'texlive-armtex-fonts' 'texlive-around-the-bend' 'texlive-arphic' 'texlive-arphic-doc' 'texlive-arphic-fonts' 'texlive-arphic-ttf' 'texlive-arphic-ttf-doc' 'texlive-arphic-ttf-fonts' 'texlive-arrayjobx' 'texlive-arrayjobx-doc' 'texlive-arraysort' 'texlive-arraysort-doc' 'texlive-arsclassica' 'texlive-arsclassica-doc' 'texlive-articleingud' 'texlive-articleingud-doc' 'texlive-arydshln' 'texlive-arydshln-doc' 'texlive-asaetr' 'texlive-asaetr-doc' 'texlive-asapsym' 'texlive-asapsym-doc' 'texlive-asapsym-fonts' 'texlive-ascelike' 'texlive-ascelike-doc' 'texlive-ascii-chart' 'texlive-ascii-font' 'texlive-ascii-font-doc' 'texlive-ascii-font-fonts' 'texlive-asciilist' 'texlive-asciilist-doc' 'texlive-ascmac' 'texlive-ascmac-doc' 'texlive-ascmac-fonts' 'texlive-askmaps' 'texlive-askmaps-doc' 'texlive-asmeconf' 'texlive-asmeconf-doc' 'texlive-aspectratio' 'texlive-aspectratio-doc' 'texlive-aspectratio-fonts' 'texlive-assignment' 'texlive-assignment-doc' 'texlive-assoccnt' 'texlive-assoccnt-doc' 'texlive-astro' 'texlive-astro-doc' 'texlive-asyfig' 'texlive-asyfig-doc' 'texlive-asymptote' 'texlive-asymptote-bin' 'texlive-asymptote-by-example-zh-cn' 'texlive-asymptote-doc' 'texlive-asymptote-faq-zh-cn' 'texlive-asymptote-manual-zh-cn' 'texlive-asypictureb' 'texlive-asypictureb-doc' 'texlive-attachfile' 'texlive-attachfile-doc' 'texlive-aucklandthesis' 'texlive-aucklandthesis-doc' 'texlive-augie' 'texlive-augie-doc' 'texlive-augie-fonts' 'texlive-auncial-new' 'texlive-auncial-new-doc' 'texlive-auncial-new-fonts' 'texlive-aurical' 'texlive-aurical-doc' 'texlive-aurical-fonts' 'texlive-aurl' 'texlive-aurl-doc' 'texlive-authoraftertitle' 'texlive-authoraftertitle-doc' 'texlive-authorarchive' 'texlive-authorarchive-doc' 'texlive-authorindex' 'texlive-authorindex-bin' 'texlive-authorindex-doc' 'texlive-auto-pst-pdf' 'texlive-auto-pst-pdf-doc' 'texlive-auto-pst-pdf-lua' 'texlive-auto-pst-pdf-lua-doc' 'texlive-autoaligne' 'texlive-autoaligne-doc' 'texlive-autoarea' 'texlive-autoarea-doc' 'texlive-autobreak' 'texlive-autobreak-doc' 'texlive-automata' 'texlive-automata-doc' 'texlive-autonum' 'texlive-autonum-doc' 'texlive-autopdf' 'texlive-autopdf-doc' 'texlive-autosp' 'texlive-autosp-bin' 'texlive-avantgar' 'texlive-avantgar-fonts' 'texlive-avremu' 'texlive-avremu-doc' 'texlive-awesomebox' 'texlive-awesomebox-doc' 'texlive-axodraw2' 'texlive-axodraw2-bin' 'texlive-axodraw2-doc' 'texlive-b1encoding' 'texlive-b1encoding-doc' 'texlive-babel' 'texlive-babel-albanian' 'texlive-babel-albanian-doc' 'texlive-babel-azerbaijani' 'texlive-babel-azerbaijani-doc' 'texlive-babel-basque' 'texlive-babel-basque-doc' 'texlive-babel-belarusian' 'texlive-babel-belarusian-doc' 'texlive-babel-bosnian' 'texlive-babel-bosnian-doc' 'texlive-babel-breton' 'texlive-babel-breton-doc' 'texlive-babel-bulgarian' 'texlive-babel-bulgarian-doc' 'texlive-babel-catalan' 'texlive-babel-catalan-doc' 'texlive-babel-croatian' 'texlive-babel-croatian-doc' 'texlive-babel-czech' 'texlive-babel-czech-doc' 'texlive-babel-danish' 'texlive-babel-danish-doc' 'texlive-babel-doc' 'texlive-babel-dutch' 'texlive-babel-dutch-doc' 'texlive-babel-english' 'texlive-babel-english-doc' 'texlive-babel-esperanto' 'texlive-babel-esperanto-doc' 'texlive-babel-estonian' 'texlive-babel-estonian-doc' 'texlive-babel-finnish' 'texlive-babel-finnish-doc' 'texlive-babel-french' 'texlive-babel-french-doc' 'texlive-babel-friulan' 'texlive-babel-friulan-doc' 'texlive-babel-galician' 'texlive-babel-galician-doc' 'texlive-babel-georgian' 'texlive-babel-georgian-doc' 'texlive-babel-german' 'texlive-babel-german-doc' 'texlive-babel-greek' 'texlive-babel-greek-doc' 'texlive-babel-hebrew' 'texlive-babel-hebrew-doc' 'texlive-babel-hungarian' 'texlive-babel-hungarian-doc' 'texlive-babel-icelandic' 'texlive-babel-icelandic-doc' 'texlive-babel-indonesian' 'texlive-babel-indonesian-doc' 'texlive-babel-interlingua' 'texlive-babel-interlingua-doc' 'texlive-babel-irish' 'texlive-babel-irish-doc' 'texlive-babel-italian' 'texlive-babel-italian-doc' 'texlive-babel-japanese' 'texlive-babel-japanese-doc' 'texlive-babel-kurmanji' 'texlive-babel-kurmanji-doc' 'texlive-babel-latin' 'texlive-babel-latin-doc' 'texlive-babel-latvian' 'texlive-babel-latvian-doc' 'texlive-babel-macedonian' 'texlive-babel-macedonian-doc' 'texlive-babel-malay' 'texlive-babel-malay-doc' 'texlive-babel-norsk' 'texlive-babel-norsk-doc' 'texlive-babel-occitan' 'texlive-babel-occitan-doc' 'texlive-babel-piedmontese' 'texlive-babel-piedmontese-doc' 'texlive-babel-polish' 'texlive-babel-polish-doc' 'texlive-babel-portuges' 'texlive-babel-portuges-doc' 'texlive-babel-romanian' 'texlive-babel-romanian-doc' 'texlive-babel-romansh' 'texlive-babel-romansh-doc' 'texlive-babel-russian' 'texlive-babel-russian-doc' 'texlive-babel-samin' 'texlive-babel-samin-doc' 'texlive-babel-scottish' 'texlive-babel-scottish-doc' 'texlive-babel-serbian' 'texlive-babel-serbian-doc' 'texlive-babel-serbianc' 'texlive-babel-serbianc-doc' 'texlive-babel-slovak' 'texlive-babel-slovak-doc' 'texlive-babel-slovenian' 'texlive-babel-slovenian-doc' 'texlive-babel-sorbian' 'texlive-babel-sorbian-doc' 'texlive-babel-spanglish' 'texlive-babel-spanglish-doc' 'texlive-babel-spanish' 'texlive-babel-spanish-doc' 'texlive-babel-swedish' 'texlive-babel-swedish-doc' 'texlive-babel-thai' 'texlive-babel-thai-doc' 'texlive-babel-turkish' 'texlive-babel-turkish-doc' 'texlive-babel-ukrainian' 'texlive-babel-ukrainian-doc' 'texlive-babel-vietnamese' 'texlive-babel-vietnamese-doc' 'texlive-babel-welsh' 'texlive-babel-welsh-doc' 'texlive-babelbib' 'texlive-babelbib-doc' 'texlive-background' 'texlive-background-doc' 'texlive-backnaur' 'texlive-backnaur-doc' 'texlive-baekmuk' 'texlive-baekmuk-doc' 'texlive-baekmuk-fonts' 'texlive-bagpipe' 'texlive-bagpipe-doc' 'texlive-bangorcsthesis' 'texlive-bangorcsthesis-doc' 'texlive-bangorexam' 'texlive-bangorexam-doc' 'texlive-bangtex' 'texlive-bangtex-doc' 'texlive-bankstatement' 'texlive-bankstatement-doc' 'texlive-barcodes' 'texlive-barcodes-doc' 'texlive-bardiag' 'texlive-bardiag-doc' 'texlive-barr' 'texlive-barr-doc' 'texlive-bartel-chess-fonts' 'texlive-bartel-chess-fonts-doc' 'texlive-bashful' 'texlive-bashful-doc' 'texlive-basicarith' 'texlive-basicarith-doc' 'texlive-baskervald' 'texlive-baskervald-doc' 'texlive-baskervald-fonts' 'texlive-baskervaldx' 'texlive-baskervaldx-doc' 'texlive-baskervaldx-fonts' 'texlive-baskervillef' 'texlive-baskervillef-doc' 'texlive-baskervillef-fonts' 'texlive-basque-book' 'texlive-basque-book-doc' 'texlive-basque-date' 'texlive-basque-date-doc' 'texlive-bath-bst' 'texlive-bath-bst-doc' 'texlive-bbcard' 'texlive-bbcard-doc' 'texlive-bbding' 'texlive-bbding-doc' 'texlive-bbm' 'texlive-bbm-doc' 'texlive-bbm-macros' 'texlive-bbm-macros-doc' 'texlive-bbold' 'texlive-bbold-doc' 'texlive-bbold-type1' 'texlive-bbold-type1-doc' 'texlive-bbold-type1-fonts' 'texlive-bchart' 'texlive-bchart-doc' 'texlive-bclogo' 'texlive-bclogo-doc' 'texlive-beamer' 'texlive-beamer-FUBerlin' 'texlive-beamer-doc' 'texlive-beamer-rl' 'texlive-beamer-rl-doc' 'texlive-beamer-tut-pt' 'texlive-beamer-verona' 'texlive-beamer-verona-doc' 'texlive-beamer2thesis' 'texlive-beamer2thesis-doc' 'texlive-beameraudience' 'texlive-beameraudience-doc' 'texlive-beamercolorthemeowl' 'texlive-beamercolorthemeowl-doc' 'texlive-beamerdarkthemes' 'texlive-beamerdarkthemes-doc' 'texlive-beamerposter' 'texlive-beamerposter-doc' 'texlive-beamersubframe' 'texlive-beamersubframe-doc' 'texlive-beamerswitch' 'texlive-beamerswitch-doc' 'texlive-beamertheme-cuerna' 'texlive-beamertheme-cuerna-doc' 'texlive-beamertheme-detlevcm' 'texlive-beamertheme-detlevcm-doc' 'texlive-beamertheme-epyt' 'texlive-beamertheme-epyt-doc' 'texlive-beamertheme-focus' 'texlive-beamertheme-focus-doc' 'texlive-beamertheme-light' 'texlive-beamertheme-light-doc' 'texlive-beamertheme-metropolis' 'texlive-beamertheme-metropolis-doc' 'texlive-beamertheme-npbt' 'texlive-beamertheme-npbt-doc' 'texlive-beamertheme-phnompenh' 'texlive-beamertheme-phnompenh-doc' 'texlive-beamertheme-saintpetersburg' 'texlive-beamertheme-saintpetersburg-doc' 'texlive-beamertheme-upenn-bc' 'texlive-beamertheme-upenn-bc-doc' 'texlive-beamerthemejltree' 'texlive-beamerthemenirma' 'texlive-beamerthemenirma-doc' 'texlive-beebe' 'texlive-begingreek' 'texlive-begingreek-doc' 'texlive-begriff' 'texlive-begriff-doc' 'texlive-beilstein' 'texlive-beilstein-doc' 'texlive-belleek' 'texlive-belleek-doc' 'texlive-belleek-fonts' 'texlive-bengali' 'texlive-bengali-doc' 'texlive-bera' 'texlive-bera-doc' 'texlive-bera-fonts' 'texlive-berenisadf' 'texlive-berenisadf-doc' 'texlive-berenisadf-fonts' 'texlive-besjournals' 'texlive-besjournals-doc' 'texlive-bestpapers' 'texlive-bestpapers-doc' 'texlive-betababel' 'texlive-betababel-doc' 'texlive-beton' 'texlive-beton-doc' 'texlive-beuron' 'texlive-beuron-doc' 'texlive-beuron-fonts' 'texlive-bewerbung' 'texlive-bewerbung-doc' 'texlive-bez123' 'texlive-bez123-doc' 'texlive-bezierplot' 'texlive-bezierplot-doc' 'texlive-bezos' 'texlive-bezos-doc' 'texlive-bgreek' 'texlive-bgreek-doc' 'texlive-bgteubner' 'texlive-bgteubner-doc' 'texlive-bguq' 'texlive-bguq-doc' 'texlive-bguq-fonts' 'texlive-bhcexam' 'texlive-bhcexam-doc' 'texlive-bib-fr' 'texlive-bib-fr-doc' 'texlive-bib2gls' 'texlive-bib2gls-bin' 'texlive-bib2gls-doc' 'texlive-bibarts' 'texlive-bibarts-doc' 'texlive-biber' 'texlive-biber-bin' 'texlive-bibexport' 'texlive-bibexport-bin' 'texlive-bibexport-doc' 'texlive-bibhtml' 'texlive-bibhtml-doc' 'texlive-biblatex' 'texlive-biblatex-abnt' 'texlive-biblatex-abnt-doc' 'texlive-biblatex-anonymous' 'texlive-biblatex-anonymous-doc' 'texlive-biblatex-apa' 'texlive-biblatex-apa-doc' 'texlive-biblatex-archaeology' 'texlive-biblatex-archaeology-doc' 'texlive-biblatex-arthistory-bonn' 'texlive-biblatex-arthistory-bonn-doc' 'texlive-biblatex-bath' 'texlive-biblatex-bath-doc' 'texlive-biblatex-bookinarticle' 'texlive-biblatex-bookinarticle-doc' 'texlive-biblatex-bookinother' 'texlive-biblatex-bookinother-doc' 'texlive-biblatex-bwl' 'texlive-biblatex-bwl-doc' 'texlive-biblatex-caspervector' 'texlive-biblatex-caspervector-doc' 'texlive-biblatex-cheatsheet' 'texlive-biblatex-chem' 'texlive-biblatex-chem-doc' 'texlive-biblatex-chicago' 'texlive-biblatex-chicago-doc' 'texlive-biblatex-claves' 'texlive-biblatex-claves-doc' 'texlive-biblatex-doc' 'texlive-biblatex-dw' 'texlive-biblatex-dw-doc' 'texlive-biblatex-enc' 'texlive-biblatex-enc-doc' 'texlive-biblatex-ext' 'texlive-biblatex-ext-doc' 'texlive-biblatex-fiwi' 'texlive-biblatex-fiwi-doc' 'texlive-biblatex-gb7714-2015' 'texlive-biblatex-gb7714-2015-doc' 'texlive-biblatex-gost' 'texlive-biblatex-gost-doc' 'texlive-biblatex-historian' 'texlive-biblatex-historian-doc' 'texlive-biblatex-ieee' 'texlive-biblatex-ieee-doc' 'texlive-biblatex-ijsra' 'texlive-biblatex-ijsra-doc' 'texlive-biblatex-iso690' 'texlive-biblatex-iso690-doc' 'texlive-biblatex-juradiss' 'texlive-biblatex-juradiss-doc' 'texlive-biblatex-lni' 'texlive-biblatex-lni-doc' 'texlive-biblatex-luh-ipw' 'texlive-biblatex-luh-ipw-doc' 'texlive-biblatex-manuscripts-philology' 'texlive-biblatex-manuscripts-philology-doc' 'texlive-biblatex-mla' 'texlive-biblatex-mla-doc' 'texlive-biblatex-morenames' 'texlive-biblatex-morenames-doc' 'texlive-biblatex-multiple-dm' 'texlive-biblatex-multiple-dm-doc' 'texlive-biblatex-musuos' 'texlive-biblatex-musuos-doc' 'texlive-biblatex-nature' 'texlive-biblatex-nature-doc' 'texlive-biblatex-nejm' 'texlive-biblatex-nejm-doc' 'texlive-biblatex-nottsclassic' 'texlive-biblatex-nottsclassic-doc' 'texlive-biblatex-opcit-booktitle' 'texlive-biblatex-opcit-booktitle-doc' 'texlive-biblatex-oxref' 'texlive-biblatex-oxref-doc' 'texlive-biblatex-philosophy' 'texlive-biblatex-philosophy-doc' 'texlive-biblatex-phys' 'texlive-biblatex-phys-doc' 'texlive-biblatex-publist' 'texlive-biblatex-publist-doc' 'texlive-biblatex-realauthor' 'texlive-biblatex-realauthor-doc' 'texlive-biblatex-sbl' 'texlive-biblatex-sbl-doc' 'texlive-biblatex-science' 'texlive-biblatex-science-doc' 'texlive-biblatex-shortfields' 'texlive-biblatex-shortfields-doc' 'texlive-biblatex-socialscienceshuberlin' 'texlive-biblatex-socialscienceshuberlin-doc' 'texlive-biblatex-source-division' 'texlive-biblatex-source-division-doc' 'texlive-biblatex-subseries' 'texlive-biblatex-subseries-doc' 'texlive-biblatex-swiss-legal' 'texlive-biblatex-swiss-legal-doc' 'texlive-biblatex-trad' 'texlive-biblatex-trad-doc' 'texlive-biblatex-true-citepages-omit' 'texlive-biblatex-true-citepages-omit-doc' 'texlive-bibleref' 'texlive-bibleref-doc' 'texlive-bibleref-french' 'texlive-bibleref-french-doc' 'texlive-bibleref-german' 'texlive-bibleref-german-doc' 'texlive-bibleref-lds' 'texlive-bibleref-lds-doc' 'texlive-bibleref-mouth' 'texlive-bibleref-mouth-doc' 'texlive-bibleref-parse' 'texlive-bibleref-parse-doc' 'texlive-bibletext' 'texlive-bibletext-doc' 'texlive-biblist' 'texlive-biblist-doc' 'texlive-bibtex' 'texlive-bibtex-bin' 'texlive-bibtex-doc' 'texlive-bibtex8' 'texlive-bibtex8-bin' 'texlive-bibtex8-doc' 'texlive-bibtexperllibs' 'texlive-bibtexperllibs-doc' 'texlive-bibtexu' 'texlive-bibtexu-bin' 'texlive-bibtopic' 'texlive-bibtopic-doc' 'texlive-bibtopicprefix' 'texlive-bibtopicprefix-doc' 'texlive-bibunits' 'texlive-bibunits-doc' 'texlive-bidi' 'texlive-bidi-atbegshi' 'texlive-bidi-atbegshi-doc' 'texlive-bidi-doc' 'texlive-bidicontour' 'texlive-bidicontour-doc' 'texlive-bidihl' 'texlive-bidihl-doc' 'texlive-bidipagegrid' 'texlive-bidipagegrid-doc' 'texlive-bidipresentation' 'texlive-bidipresentation-doc' 'texlive-bidishadowtext' 'texlive-bidishadowtext-doc' 'texlive-bigfoot' 'texlive-bigfoot-doc' 'texlive-bigints' 'texlive-bigints-doc' 'texlive-bin-devel' 'texlive-binarytree' 'texlive-binarytree-doc' 'texlive-binomexp' 'texlive-binomexp-doc' 'texlive-biochemistry-colors' 'texlive-biochemistry-colors-doc' 'texlive-biocon' 'texlive-biocon-doc' 'texlive-biolett-bst' 'texlive-biolett-bst-doc' 'texlive-bitelist' 'texlive-bitelist-doc' 'texlive-bitpattern' 'texlive-bitpattern-doc' 'texlive-bizcard' 'texlive-bizcard-doc' 'texlive-blacklettert1' 'texlive-blacklettert1-doc' 'texlive-blindtext' 'texlive-blindtext-doc' 'texlive-blkarray' 'texlive-blkarray-doc' 'texlive-blochsphere' 'texlive-blochsphere-doc' 'texlive-block' 'texlive-block-doc' 'texlive-blockdraw_mp' 'texlive-blockdraw_mp-doc' 'texlive-bloques' 'texlive-bloques-doc' 'texlive-blowup' 'texlive-blowup-doc' 'texlive-blox' 'texlive-blox-doc' 'texlive-bnumexpr' 'texlive-bnumexpr-doc' 'texlive-bodegraph' 'texlive-bodegraph-doc' 'texlive-bohr' 'texlive-bohr-doc' 'texlive-boisik' 'texlive-boisik-doc' 'texlive-boites' 'texlive-boites-doc' 'texlive-bold-extra' 'texlive-bold-extra-doc' 'texlive-boldtensors' 'texlive-boldtensors-doc' 'texlive-bondgraph' 'texlive-bondgraph-doc' 'texlive-bondgraphs' 'texlive-bondgraphs-doc' 'texlive-bookcover' 'texlive-bookcover-doc' 'texlive-bookdb' 'texlive-bookdb-doc' 'texlive-bookest' 'texlive-bookest-doc' 'texlive-bookhands' 'texlive-bookhands-doc' 'texlive-bookhands-fonts' 'texlive-booklet' 'texlive-booklet-doc' 'texlive-bookman' 'texlive-bookman-fonts' 'texlive-booktabs' 'texlive-booktabs-de' 'texlive-booktabs-doc' 'texlive-booktabs-fr' 'texlive-boolexpr' 'texlive-boolexpr-doc' 'texlive-boondox' 'texlive-boondox-doc' 'texlive-boondox-fonts' 'texlive-bophook' 'texlive-bophook-doc' 'texlive-borceux' 'texlive-borceux-doc' 'texlive-bosisio' 'texlive-bosisio-doc' 'texlive-boxedminipage' 'texlive-boxedminipage-doc' 'texlive-boxedminipage2e' 'texlive-boxedminipage2e-doc' 'texlive-boxhandler' 'texlive-boxhandler-doc' 'texlive-bpchem' 'texlive-bpchem-doc' 'texlive-bpolynomial' 'texlive-bpolynomial-doc' 'texlive-br-lex' 'texlive-br-lex-doc' 'texlive-bracketkey' 'texlive-bracketkey-doc' 'texlive-braids' 'texlive-braids-doc' 'texlive-braille' 'texlive-braille-doc' 'texlive-braket' 'texlive-braket-doc' 'texlive-brandeis-dissertation' 'texlive-brandeis-dissertation-doc' 'texlive-brandeis-problemset' 'texlive-brandeis-problemset-doc' 'texlive-breakcites' 'texlive-breakcites-doc' 'texlive-breakurl' 'texlive-breakurl-doc' 'texlive-bredzenie' 'texlive-bredzenie-doc' 'texlive-breqn' 'texlive-breqn-doc' 'texlive-bropd' 'texlive-bropd-doc' 'texlive-brushscr' 'texlive-brushscr-doc' 'texlive-brushscr-fonts' 'texlive-bullcntr' 'texlive-bullcntr-doc' 'texlive-bundledoc' 'texlive-bundledoc-bin' 'texlive-bundledoc-doc' 'texlive-burmese' 'texlive-burmese-doc' 'texlive-burmese-fonts' 'texlive-businesscard-qrcode' 'texlive-businesscard-qrcode-doc' 'texlive-bussproofs' 'texlive-bussproofs-doc' 'texlive-bussproofs-extra' 'texlive-bussproofs-extra-doc' 'texlive-bxbase' 'texlive-bxbase-doc' 'texlive-bxcalc' 'texlive-bxcalc-doc' 'texlive-bxcjkjatype' 'texlive-bxcjkjatype-doc' 'texlive-bxdpx-beamer' 'texlive-bxdpx-beamer-doc' 'texlive-bxdvidriver' 'texlive-bxdvidriver-doc' 'texlive-bxeepic' 'texlive-bxeepic-doc' 'texlive-bxenclose' 'texlive-bxenclose-doc' 'texlive-bxjaholiday' 'texlive-bxjaholiday-doc' 'texlive-bxjalipsum' 'texlive-bxjalipsum-doc' 'texlive-bxjaprnind' 'texlive-bxjaprnind-doc' 'texlive-bxjscls' 'texlive-bxjscls-doc' 'texlive-bxnewfont' 'texlive-bxnewfont-doc' 'texlive-bxorigcapt' 'texlive-bxorigcapt-doc' 'texlive-bxpapersize' 'texlive-bxpapersize-doc' 'texlive-bxpdfver' 'texlive-bxpdfver-doc' 'texlive-bxtexlogo' 'texlive-bxtexlogo-doc' 'texlive-bxwareki' 'texlive-bxwareki-doc' 'texlive-bytefield' 'texlive-bytefield-doc' 'texlive-c-pascal' 'texlive-c-pascal-doc' 'texlive-c90' 'texlive-c90-doc' 'texlive-cabin' 'texlive-cabin-doc' 'texlive-cabin-fonts' 'texlive-cachepic' 'texlive-cachepic-bin' 'texlive-cachepic-doc' 'texlive-caladea' 'texlive-caladea-doc' 'texlive-caladea-fonts' 'texlive-calcage' 'texlive-calcage-doc' 'texlive-calctab' 'texlive-calctab-doc' 'texlive-calculation' 'texlive-calculation-doc' 'texlive-calculator' 'texlive-calculator-doc' 'texlive-calligra' 'texlive-calligra-doc' 'texlive-calligra-type1' 'texlive-calligra-type1-doc' 'texlive-calligra-type1-fonts' 'texlive-callouts' 'texlive-callouts-doc' 'texlive-calrsfs' 'texlive-calrsfs-doc' 'texlive-cals' 'texlive-cals-doc' 'texlive-calxxxx-yyyy' 'texlive-calxxxx-yyyy-doc' 'texlive-cancel' 'texlive-cancel-doc' 'texlive-canoniclayout' 'texlive-canoniclayout-doc' 'texlive-cantarell' 'texlive-cantarell-doc' 'texlive-cantarell-fonts' 'texlive-capt-of' 'texlive-capt-of-doc' 'texlive-captcont' 'texlive-captcont-doc' 'texlive-captdef' 'texlive-captdef-doc' 'texlive-caption' 'texlive-caption-doc' 'texlive-carbohydrates' 'texlive-carbohydrates-doc' 'texlive-carlisle' 'texlive-carlisle-doc' 'texlive-carlito' 'texlive-carlito-doc' 'texlive-carlito-fonts' 'texlive-carolmin-ps' 'texlive-carolmin-ps-doc' 'texlive-carolmin-ps-fonts' 'texlive-cascade' 'texlive-cascade-doc' 'texlive-cascadilla' 'texlive-cascadilla-doc' 'texlive-cases' 'texlive-cases-doc' 'texlive-casyl' 'texlive-casyl-doc' 'texlive-catchfilebetweentags' 'texlive-catchfilebetweentags-doc' 'texlive-catcodes' 'texlive-catcodes-doc' 'texlive-catechis' 'texlive-catechis-doc' 'texlive-catoptions' 'texlive-catoptions-doc' 'texlive-cbcoptic' 'texlive-cbcoptic-doc' 'texlive-cbcoptic-fonts' 'texlive-cbfonts' 'texlive-cbfonts-doc' 'texlive-cbfonts-fd' 'texlive-cbfonts-fd-doc' 'texlive-cbfonts-fonts' 'texlive-cc-pl' 'texlive-cc-pl-doc' 'texlive-cc-pl-fonts' 'texlive-ccaption' 'texlive-ccaption-doc' 'texlive-ccfonts' 'texlive-ccfonts-doc' 'texlive-ccicons' 'texlive-ccicons-doc' 'texlive-ccicons-fonts' 'texlive-cclicenses' 'texlive-cclicenses-doc' 'texlive-cd' 'texlive-cd-cover' 'texlive-cd-cover-doc' 'texlive-cd-doc' 'texlive-cdpbundl' 'texlive-cdpbundl-doc' 'texlive-cell' 'texlive-cell-doc' 'texlive-cellprops' 'texlive-cellprops-doc' 'texlive-cellspace' 'texlive-cellspace-doc' 'texlive-celtic' 'texlive-celtic-doc' 'texlive-censor' 'texlive-censor-doc' 'texlive-cesenaexam' 'texlive-cesenaexam-doc' 'texlive-cfr-initials' 'texlive-cfr-initials-doc' 'texlive-cfr-lm' 'texlive-cfr-lm-doc' 'texlive-changebar' 'texlive-changebar-doc' 'texlive-changelayout' 'texlive-changelayout-doc' 'texlive-changelog' 'texlive-changelog-doc' 'texlive-changepage' 'texlive-changepage-doc' 'texlive-changes' 'texlive-changes-doc' 'texlive-chappg' 'texlive-chappg-doc' 'texlive-chapterfolder' 'texlive-chapterfolder-doc' 'texlive-charter' 'texlive-charter-doc' 'texlive-charter-fonts' 'texlive-chbibref' 'texlive-chbibref-doc' 'texlive-cheatsheet' 'texlive-cheatsheet-doc' 'texlive-checkcites' 'texlive-checkcites-bin' 'texlive-checkcites-doc' 'texlive-checklistings' 'texlive-checklistings-bin' 'texlive-checklistings-doc' 'texlive-chem-journal' 'texlive-chemarrow' 'texlive-chemarrow-doc' 'texlive-chemarrow-fonts' 'texlive-chembst' 'texlive-chembst-doc' 'texlive-chemcompounds' 'texlive-chemcompounds-doc' 'texlive-chemcono' 'texlive-chemcono-doc' 'texlive-chemexec' 'texlive-chemexec-doc' 'texlive-chemfig' 'texlive-chemfig-doc' 'texlive-chemformula' 'texlive-chemformula-doc' 'texlive-chemgreek' 'texlive-chemgreek-doc' 'texlive-chemmacros' 'texlive-chemmacros-doc' 'texlive-chemnum' 'texlive-chemnum-doc' 'texlive-chemschemex' 'texlive-chemschemex-doc' 'texlive-chemsec' 'texlive-chemsec-doc' 'texlive-chemstyle' 'texlive-chemstyle-doc' 'texlive-cherokee' 'texlive-cherokee-doc' 'texlive-chess' 'texlive-chess-doc' 'texlive-chess-problem-diagrams' 'texlive-chess-problem-diagrams-doc' 'texlive-chessboard' 'texlive-chessboard-doc' 'texlive-chessfss' 'texlive-chessfss-doc' 'texlive-chet' 'texlive-chet-doc' 'texlive-chextras' 'texlive-chextras-doc' 'texlive-chicago' 'texlive-chicago-annote' 'texlive-chicago-annote-doc' 'texlive-chickenize' 'texlive-chickenize-doc' 'texlive-childdoc' 'texlive-childdoc-doc' 'texlive-chivo' 'texlive-chivo-doc' 'texlive-chivo-fonts' 'texlive-chkfloat' 'texlive-chkfloat-doc' 'texlive-chktex' 'texlive-chktex-bin' 'texlive-chktex-doc' 'texlive-chletter' 'texlive-chletter-doc' 'texlive-chngcntr' 'texlive-chngcntr-doc' 'texlive-chordbars' 'texlive-chordbars-doc' 'texlive-chronology' 'texlive-chronology-doc' 'texlive-chronosys' 'texlive-chronosys-doc' 'texlive-chs-physics-report' 'texlive-chs-physics-report-doc' 'texlive-chscite' 'texlive-chscite-doc' 'texlive-churchslavonic' 'texlive-churchslavonic-doc' 'texlive-cinzel' 'texlive-cinzel-doc' 'texlive-cinzel-fonts' 'texlive-circ' 'texlive-circ-doc' 'texlive-circuitikz' 'texlive-circuitikz-doc' 'texlive-cite' 'texlive-cite-doc' 'texlive-citeall' 'texlive-citeall-doc' 'texlive-citeref' 'texlive-citeref-doc' 'texlive-cje' 'texlive-cje-doc' 'texlive-cjhebrew' 'texlive-cjhebrew-doc' 'texlive-cjhebrew-fonts' 'texlive-cjk' 'texlive-cjk-doc' 'texlive-cjk-gs-integrate' 'texlive-cjk-gs-integrate-bin' 'texlive-cjk-gs-integrate-doc' 'texlive-cjk-ko' 'texlive-cjk-ko-doc' 'texlive-cjk-latex-extras' 'texlive-cjkpunct' 'texlive-cjkpunct-doc' 'texlive-cjkutils' 'texlive-cjkutils-bin' 'texlive-cjkutils-doc' 'texlive-classics' 'texlive-classics-doc' 'texlive-classicthesis' 'texlive-classicthesis-doc' 'texlive-classpack' 'texlive-classpack-doc' 'texlive-cleanthesis' 'texlive-cleanthesis-doc' 'texlive-clearsans' 'texlive-clearsans-doc' 'texlive-clearsans-fonts' 'texlive-clefval' 'texlive-clefval-doc' 'texlive-cleveref' 'texlive-cleveref-doc' 'texlive-clipboard' 'texlive-clipboard-doc' 'texlive-clock' 'texlive-clock-doc' 'texlive-cloze' 'texlive-cloze-doc' 'texlive-clrdblpg' 'texlive-clrdblpg-doc' 'texlive-clrscode' 'texlive-clrscode-doc' 'texlive-clrscode3e' 'texlive-clrscode3e-doc' 'texlive-clrstrip' 'texlive-clrstrip-doc' 'texlive-cluttex' 'texlive-cluttex-bin' 'texlive-cluttex-doc' 'texlive-cm' 'texlive-cm-doc' 'texlive-cm-lgc' 'texlive-cm-lgc-doc' 'texlive-cm-lgc-fonts' 'texlive-cm-mf-extra-bold' 'texlive-cm-super' 'texlive-cm-super-doc' 'texlive-cm-super-fonts' 'texlive-cm-unicode' 'texlive-cm-unicode-doc' 'texlive-cm-unicode-fonts' 'texlive-cmap' 'texlive-cmap-doc' 'texlive-cmarrows' 'texlive-cmarrows-doc' 'texlive-cmbright' 'texlive-cmbright-doc' 'texlive-cmcyr' 'texlive-cmcyr-doc' 'texlive-cmcyr-fonts' 'texlive-cmdstring' 'texlive-cmdstring-doc' 'texlive-cmdtrack' 'texlive-cmdtrack-doc' 'texlive-cmexb' 'texlive-cmexb-doc' 'texlive-cmexb-fonts' 'texlive-cmextra' 'texlive-cmll' 'texlive-cmll-doc' 'texlive-cmll-fonts' 'texlive-cmpica' 'texlive-cmpica-doc' 'texlive-cmpj' 'texlive-cmpj-doc' 'texlive-cmsd' 'texlive-cmsd-doc' 'texlive-cmsrb' 'texlive-cmsrb-doc' 'texlive-cmsrb-fonts' 'texlive-cmtiup' 'texlive-cmtiup-doc' 'texlive-cnbwp' 'texlive-cnbwp-doc' 'texlive-cnltx' 'texlive-cnltx-doc' 'texlive-cns' 'texlive-cns-doc' 'texlive-cntformats' 'texlive-cntformats-doc' 'texlive-cntperchap' 'texlive-cntperchap-doc' 'texlive-cochineal' 'texlive-cochineal-doc' 'texlive-cochineal-fonts' 'texlive-codedoc' 'texlive-codedoc-doc' 'texlive-codepage' 'texlive-codepage-doc' 'texlive-codesection' 'texlive-codesection-doc' 'texlive-codicefiscaleitaliano' 'texlive-codicefiscaleitaliano-doc' 'texlive-coelacanth' 'texlive-coelacanth-doc' 'texlive-coelacanth-fonts' 'texlive-collcell' 'texlive-collcell-doc' 'texlive-collectbox' 'texlive-collectbox-doc' 'texlive-collection-basic' 'texlive-collection-bibtexextra' 'texlive-collection-binextra' 'texlive-collection-context' 'texlive-collection-fontsextra' 'texlive-collection-fontsrecommended' 'texlive-collection-fontutils' 'texlive-collection-formatsextra' 'texlive-collection-games' 'texlive-collection-humanities' 'texlive-collection-langarabic' 'texlive-collection-langchinese' 'texlive-collection-langcjk' 'texlive-collection-langcyrillic' 'texlive-collection-langczechslovak' 'texlive-collection-langenglish' 'texlive-collection-langeuropean' 'texlive-collection-langfrench' 'texlive-collection-langgerman' 'texlive-collection-langgreek' 'texlive-collection-langitalian' 'texlive-collection-langjapanese' 'texlive-collection-langkorean' 'texlive-collection-langother' 'texlive-collection-langpolish' 'texlive-collection-langportuguese' 'texlive-collection-langspanish' 'texlive-collection-latex' 'texlive-collection-latexextra' 'texlive-collection-latexrecommended' 'texlive-collection-luatex' 'texlive-collection-mathscience' 'texlive-collection-metapost' 'texlive-collection-music' 'texlive-collection-pictures' 'texlive-collection-plaingeneric' 'texlive-collection-pstricks' 'texlive-collection-publishers' 'texlive-collection-xetex' 'texlive-collref' 'texlive-collref-doc' 'texlive-colophon' 'texlive-colophon-doc' 'texlive-colordoc' 'texlive-colordoc-doc' 'texlive-colorinfo' 'texlive-colorinfo-doc' 'texlive-coloring' 'texlive-coloring-doc' 'texlive-colorprofiles' 'texlive-colorprofiles-doc' 'texlive-colorsep' 'texlive-colorspace' 'texlive-colorspace-doc' 'texlive-colortab' 'texlive-colortab-doc' 'texlive-colortbl' 'texlive-colortbl-doc' 'texlive-colorwav' 'texlive-colorwav-doc' 'texlive-colorweb' 'texlive-colorweb-doc' 'texlive-colourchange' 'texlive-colourchange-doc' 'texlive-combelow' 'texlive-combelow-doc' 'texlive-combine' 'texlive-combine-doc' 'texlive-combinedgraphics' 'texlive-combinedgraphics-doc' 'texlive-combofont' 'texlive-combofont-doc' 'texlive-comfortaa' 'texlive-comfortaa-doc' 'texlive-comfortaa-fonts' 'texlive-comicneue' 'texlive-comicneue-doc' 'texlive-comicneue-fonts' 'texlive-comma' 'texlive-comma-doc' 'texlive-commado' 'texlive-commado-doc' 'texlive-commath' 'texlive-commath-doc' 'texlive-commedit' 'texlive-commedit-doc' 'texlive-comment' 'texlive-comment-doc' 'texlive-compactbib' 'texlive-competences' 'texlive-competences-doc' 'texlive-complexity' 'texlive-complexity-doc' 'texlive-components-of-TeX' 'texlive-comprehensive' 'texlive-computational-complexity' 'texlive-computational-complexity-doc' 'texlive-concepts' 'texlive-concepts-doc' 'texlive-concmath' 'texlive-concmath-doc' 'texlive-concmath-fonts' 'texlive-concmath-fonts-doc' 'texlive-concprog' 'texlive-concprog-doc' 'texlive-concrete' 'texlive-concrete-doc' 'texlive-confproc' 'texlive-confproc-doc' 'texlive-constants' 'texlive-constants-doc' 'texlive-conteq' 'texlive-conteq-doc' 'texlive-context' 'texlive-context-account' 'texlive-context-account-doc' 'texlive-context-algorithmic' 'texlive-context-algorithmic-doc' 'texlive-context-animation' 'texlive-context-animation-doc' 'texlive-context-annotation' 'texlive-context-annotation-doc' 'texlive-context-bin' 'texlive-context-bnf' 'texlive-context-bnf-doc' 'texlive-context-chromato' 'texlive-context-chromato-doc' 'texlive-context-cmscbf' 'texlive-context-cmscbf-doc' 'texlive-context-cmttbf' 'texlive-context-cmttbf-doc' 'texlive-context-construction-plan' 'texlive-context-construction-plan-doc' 'texlive-context-cyrillicnumbers' 'texlive-context-cyrillicnumbers-doc' 'texlive-context-degrade' 'texlive-context-degrade-doc' 'texlive-context-doc' 'texlive-context-fancybreak' 'texlive-context-fancybreak-doc' 'texlive-context-filter' 'texlive-context-filter-doc' 'texlive-context-fonts' 'texlive-context-french' 'texlive-context-french-doc' 'texlive-context-fullpage' 'texlive-context-fullpage-doc' 'texlive-context-gantt' 'texlive-context-gantt-doc' 'texlive-context-gnuplot' 'texlive-context-gnuplot-doc' 'texlive-context-handlecsv' 'texlive-context-handlecsv-doc' 'texlive-context-inifile' 'texlive-context-inifile-doc' 'texlive-context-layout' 'texlive-context-layout-doc' 'texlive-context-letter' 'texlive-context-letter-doc' 'texlive-context-lettrine' 'texlive-context-lettrine-doc' 'texlive-context-mathsets' 'texlive-context-mathsets-doc' 'texlive-context-notes-zh-cn' 'texlive-context-rst' 'texlive-context-rst-doc' 'texlive-context-ruby' 'texlive-context-ruby-doc' 'texlive-context-simplefonts' 'texlive-context-simplefonts-doc' 'texlive-context-simpleslides' 'texlive-context-simpleslides-doc' 'texlive-context-title' 'texlive-context-title-doc' 'texlive-context-transliterator' 'texlive-context-transliterator-doc' 'texlive-context-typearea' 'texlive-context-typearea-doc' 'texlive-context-typescripts' 'texlive-context-typescripts-doc' 'texlive-context-vim' 'texlive-context-vim-doc' 'texlive-context-visualcounter' 'texlive-context-visualcounter-doc' 'texlive-continue' 'texlive-continue-doc' 'texlive-contour' 'texlive-contour-doc' 'texlive-contracard' 'texlive-contracard-doc' 'texlive-conv-xkv' 'texlive-conv-xkv-doc' 'texlive-convbkmk' 'texlive-convbkmk-bin' 'texlive-convbkmk-doc' 'texlive-cooking' 'texlive-cooking-doc' 'texlive-cooking-units' 'texlive-cooking-units-doc' 'texlive-cookingsymbols' 'texlive-cookingsymbols-doc' 'texlive-cool' 'texlive-cool-doc' 'texlive-coollist' 'texlive-coollist-doc' 'texlive-coolstr' 'texlive-coolstr-doc' 'texlive-coolthms' 'texlive-coolthms-doc' 'texlive-cooltooltips' 'texlive-cooltooltips-doc' 'texlive-coordsys' 'texlive-coordsys-doc' 'texlive-copyedit' 'texlive-copyedit-doc' 'texlive-copyrightbox' 'texlive-copyrightbox-doc' 'texlive-cormorantgaramond' 'texlive-cormorantgaramond-doc' 'texlive-cormorantgaramond-fonts' 'texlive-correctmathalign' 'texlive-correctmathalign-doc' 'texlive-coseoul' 'texlive-coseoul-doc' 'texlive-countriesofeurope' 'texlive-countriesofeurope-doc' 'texlive-countriesofeurope-fonts' 'texlive-counttexruns' 'texlive-counttexruns-doc' 'texlive-courier' 'texlive-courier-fonts' 'texlive-courier-scaled' 'texlive-courier-scaled-doc' 'texlive-courseoutline' 'texlive-courseoutline-doc' 'texlive-coursepaper' 'texlive-coursepaper-doc' 'texlive-coverpage' 'texlive-coverpage-doc' 'texlive-covington' 'texlive-covington-doc' 'texlive-cprotect' 'texlive-cprotect-doc' 'texlive-cqubeamer' 'texlive-cqubeamer-doc' 'texlive-cquthesis' 'texlive-cquthesis-doc' 'texlive-crbox' 'texlive-crbox-doc' 'texlive-crimson' 'texlive-crimson-doc' 'texlive-crimson-fonts' 'texlive-crimsonpro' 'texlive-crimsonpro-doc' 'texlive-crimsonpro-fonts' 'texlive-crop' 'texlive-crop-doc' 'texlive-crossreference' 'texlive-crossreference-doc' 'texlive-crossreftools' 'texlive-crossreftools-doc' 'texlive-crossrefware' 'texlive-crossrefware-bin' 'texlive-crossrefware-doc' 'texlive-crossword' 'texlive-crossword-doc' 'texlive-crosswrd' 'texlive-crosswrd-doc' 'texlive-cryptocode' 'texlive-cryptocode-doc' 'texlive-cryst' 'texlive-cryst-doc' 'texlive-cryst-fonts' 'texlive-cs' 'texlive-cs-fonts' 'texlive-csbulletin' 'texlive-csbulletin-doc' 'texlive-cslatex' 'texlive-cslatex-bin' 'texlive-cslatex-doc' 'texlive-csplain' 'texlive-csplain-bin' 'texlive-csquotes' 'texlive-csquotes-de' 'texlive-csquotes-doc' 'texlive-css-colors' 'texlive-css-colors-doc' 'texlive-cstex' 'texlive-cstypo' 'texlive-cstypo-doc' 'texlive-csvsimple' 'texlive-csvsimple-doc' 'texlive-ctable' 'texlive-ctable-doc' 'texlive-ctablestack' 'texlive-ctablestack-doc' 'texlive-ctan-o-mat' 'texlive-ctan-o-mat-bin' 'texlive-ctan-o-mat-doc' 'texlive-ctan_chk' 'texlive-ctanbib' 'texlive-ctanbib-bin' 'texlive-ctanbib-doc' 'texlive-ctanify' 'texlive-ctanify-bin' 'texlive-ctanify-doc' 'texlive-ctanupload' 'texlive-ctanupload-bin' 'texlive-ctanupload-doc' 'texlive-ctex' 'texlive-ctex-doc' 'texlive-ctex-faq' 'texlive-ctib' 'texlive-ctib-doc' 'texlive-ctie' 'texlive-ctie-bin' 'texlive-cuisine' 'texlive-cuisine-doc' 'texlive-cuprum' 'texlive-cuprum-doc' 'texlive-cuprum-fonts' 'texlive-currency' 'texlive-currency-doc' 'texlive-currfile' 'texlive-currfile-doc' 'texlive-currvita' 'texlive-currvita-doc' 'texlive-cursolatex' 'texlive-curve' 'texlive-curve-doc' 'texlive-curve2e' 'texlive-curve2e-doc' 'texlive-curves' 'texlive-curves-doc' 'texlive-custom-bib' 'texlive-custom-bib-doc' 'texlive-cutwin' 'texlive-cutwin-doc' 'texlive-cv' 'texlive-cv-doc' 'texlive-cv4tw' 'texlive-cv4tw-doc' 'texlive-cweb' 'texlive-cweb-bin' 'texlive-cweb-doc' 'texlive-cweb-latex' 'texlive-cweb-latex-doc' 'texlive-cweb-old' 'texlive-cyber' 'texlive-cyber-doc' 'texlive-cybercic' 'texlive-cybercic-doc' 'texlive-cyklop' 'texlive-cyklop-doc' 'texlive-cyklop-fonts' 'texlive-cyrillic' 'texlive-cyrillic-bin' 'texlive-cyrillic-bin-bin' 'texlive-cyrillic-bin-doc' 'texlive-cyrillic-doc' 'texlive-cyrplain' 'texlive-dad' 'texlive-dad-doc' 'texlive-dad-fonts' 'texlive-dancers' 'texlive-dantelogo' 'texlive-dantelogo-doc' 'texlive-dantelogo-fonts' 'texlive-dashbox' 'texlive-dashbox-doc' 'texlive-dashrule' 'texlive-dashrule-doc' 'texlive-dashundergaps' 'texlive-dashundergaps-doc' 'texlive-dataref' 'texlive-dataref-doc' 'texlive-datatool' 'texlive-datatool-doc' 'texlive-dateiliste' 'texlive-dateiliste-doc' 'texlive-datenumber' 'texlive-datenumber-doc' 'texlive-datetime' 'texlive-datetime-doc' 'texlive-datetime2' 'texlive-datetime2-bahasai' 'texlive-datetime2-bahasai-doc' 'texlive-datetime2-basque' 'texlive-datetime2-basque-doc' 'texlive-datetime2-breton' 'texlive-datetime2-breton-doc' 'texlive-datetime2-bulgarian' 'texlive-datetime2-bulgarian-doc' 'texlive-datetime2-catalan' 'texlive-datetime2-catalan-doc' 'texlive-datetime2-croatian' 'texlive-datetime2-croatian-doc' 'texlive-datetime2-czech' 'texlive-datetime2-czech-doc' 'texlive-datetime2-danish' 'texlive-datetime2-danish-doc' 'texlive-datetime2-doc' 'texlive-datetime2-dutch' 'texlive-datetime2-dutch-doc' 'texlive-datetime2-en-fulltext' 'texlive-datetime2-en-fulltext-doc' 'texlive-datetime2-english' 'texlive-datetime2-english-doc' 'texlive-datetime2-esperanto' 'texlive-datetime2-esperanto-doc' 'texlive-datetime2-estonian' 'texlive-datetime2-estonian-doc' 'texlive-datetime2-finnish' 'texlive-datetime2-finnish-doc' 'texlive-datetime2-french' 'texlive-datetime2-french-doc' 'texlive-datetime2-galician' 'texlive-datetime2-galician-doc' 'texlive-datetime2-german' 'texlive-datetime2-german-doc' 'texlive-datetime2-greek' 'texlive-datetime2-greek-doc' 'texlive-datetime2-hebrew' 'texlive-datetime2-hebrew-doc' 'texlive-datetime2-icelandic' 'texlive-datetime2-icelandic-doc' 'texlive-datetime2-irish' 'texlive-datetime2-irish-doc' 'texlive-datetime2-it-fulltext' 'texlive-datetime2-it-fulltext-doc' 'texlive-datetime2-italian' 'texlive-datetime2-italian-doc' 'texlive-datetime2-latin' 'texlive-datetime2-latin-doc' 'texlive-datetime2-lsorbian' 'texlive-datetime2-lsorbian-doc' 'texlive-datetime2-magyar' 'texlive-datetime2-magyar-doc' 'texlive-datetime2-norsk' 'texlive-datetime2-norsk-doc' 'texlive-datetime2-polish' 'texlive-datetime2-polish-doc' 'texlive-datetime2-portuges' 'texlive-datetime2-portuges-doc' 'texlive-datetime2-romanian' 'texlive-datetime2-romanian-doc' 'texlive-datetime2-russian' 'texlive-datetime2-russian-doc' 'texlive-datetime2-samin' 'texlive-datetime2-samin-doc' 'texlive-datetime2-scottish' 'texlive-datetime2-scottish-doc' 'texlive-datetime2-serbian' 'texlive-datetime2-serbian-doc' 'texlive-datetime2-slovak' 'texlive-datetime2-slovak-doc' 'texlive-datetime2-slovene' 'texlive-datetime2-slovene-doc' 'texlive-datetime2-spanish' 'texlive-datetime2-spanish-doc' 'texlive-datetime2-swedish' 'texlive-datetime2-swedish-doc' 'texlive-datetime2-turkish' 'texlive-datetime2-turkish-doc' 'texlive-datetime2-ukrainian' 'texlive-datetime2-ukrainian-doc' 'texlive-datetime2-usorbian' 'texlive-datetime2-usorbian-doc' 'texlive-datetime2-welsh' 'texlive-datetime2-welsh-doc' 'texlive-dblfloatfix' 'texlive-dblfloatfix-doc' 'texlive-dccpaper' 'texlive-dccpaper-doc' 'texlive-dcpic' 'texlive-dcpic-doc' 'texlive-de-macro' 'texlive-de-macro-bin' 'texlive-de-macro-doc' 'texlive-decimal' 'texlive-decimal-doc' 'texlive-decorule' 'texlive-decorule-doc' 'texlive-dehyph' 'texlive-dehyph-exptl' 'texlive-dehyph-exptl-doc' 'texlive-dejavu' 'texlive-dejavu-doc' 'texlive-dejavu-fonts' 'texlive-dejavu-otf' 'texlive-dejavu-otf-doc' 'texlive-delim' 'texlive-delim-doc' 'texlive-delimseasy' 'texlive-delimseasy-doc' 'texlive-delimset' 'texlive-delimset-doc' 'texlive-delimtxt' 'texlive-delimtxt-doc' 'texlive-denisbdoc' 'texlive-denisbdoc-doc' 'texlive-detex' 'texlive-detex-bin' 'texlive-devel' 'texlive-dhua' 'texlive-dhua-doc' 'texlive-diadia' 'texlive-diadia-bin' 'texlive-diadia-doc' 'texlive-diagbox' 'texlive-diagbox-doc' 'texlive-diagmac2' 'texlive-diagmac2-doc' 'texlive-diagnose' 'texlive-diagnose-doc' 'texlive-dialogl' 'texlive-dialogl-doc' 'texlive-dice' 'texlive-dice-doc' 'texlive-dichokey' 'texlive-dichokey-doc' 'texlive-dickimaw' 'texlive-dictsym' 'texlive-dictsym-doc' 'texlive-dictsym-fonts' 'texlive-diffcoeff' 'texlive-diffcoeff-doc' 'texlive-digiconfigs' 'texlive-digiconfigs-doc' 'texlive-dijkstra' 'texlive-dijkstra-doc' 'texlive-din1505' 'texlive-din1505-doc' 'texlive-dinat' 'texlive-dinat-doc' 'texlive-dinbrief' 'texlive-dinbrief-doc' 'texlive-dingbat' 'texlive-dingbat-doc' 'texlive-directory' 'texlive-directory-doc' 'texlive-dirtree' 'texlive-dirtree-doc' 'texlive-dirtytalk' 'texlive-dirtytalk-doc' 'texlive-disser' 'texlive-disser-doc' 'texlive-ditaa' 'texlive-ditaa-doc' 'texlive-dithesis' 'texlive-dithesis-doc' 'texlive-dk-bib' 'texlive-dk-bib-doc' 'texlive-dlfltxb' 'texlive-dlfltxb-doc' 'texlive-dnaseq' 'texlive-dnaseq-doc' 'texlive-dnp' 'texlive-doc-pictex' 'texlive-docbytex' 'texlive-docbytex-doc' 'texlive-doclicense' 'texlive-doclicense-doc' 'texlive-docmfp' 'texlive-docmfp-doc' 'texlive-docmute' 'texlive-docmute-doc' 'texlive-docsurvey' 'texlive-doctools' 'texlive-doctools-doc' 'texlive-documentation' 'texlive-documentation-doc' 'texlive-doi' 'texlive-doi-doc' 'texlive-doipubmed' 'texlive-doipubmed-doc' 'texlive-dosepsbin' 'texlive-dosepsbin-bin' 'texlive-dosepsbin-doc' 'texlive-dot2texi' 'texlive-dot2texi-doc' 'texlive-dotarrow' 'texlive-dotarrow-doc' 'texlive-dotseqn' 'texlive-dotseqn-doc' 'texlive-dottex' 'texlive-dottex-doc' 'texlive-doublestroke' 'texlive-doublestroke-doc' 'texlive-doublestroke-fonts' 'texlive-dowith' 'texlive-dowith-doc' 'texlive-download' 'texlive-download-doc' 'texlive-dox' 'texlive-dox-doc' 'texlive-dozenal' 'texlive-dozenal-doc' 'texlive-dozenal-fonts' 'texlive-dpfloat' 'texlive-dpfloat-doc' 'texlive-dprogress' 'texlive-dprogress-doc' 'texlive-drac' 'texlive-drac-doc' 'texlive-draftcopy' 'texlive-draftcopy-doc' 'texlive-draftfigure' 'texlive-draftfigure-doc' 'texlive-draftwatermark' 'texlive-draftwatermark-doc' 'texlive-dramatist' 'texlive-dramatist-doc' 'texlive-dratex' 'texlive-dratex-doc' 'texlive-drawmatrix' 'texlive-drawmatrix-doc' 'texlive-drawstack' 'texlive-drawstack-doc' 'texlive-drm' 'texlive-drm-doc' 'texlive-drm-fonts' 'texlive-droid' 'texlive-droid-doc' 'texlive-droid-fonts' 'texlive-droit-fr' 'texlive-droit-fr-doc' 'texlive-drs' 'texlive-drs-doc' 'texlive-drv' 'texlive-drv-doc' 'texlive-dsptricks' 'texlive-dsptricks-doc' 'texlive-dsserif' 'texlive-dsserif-doc' 'texlive-dsserif-fonts' 'texlive-dtk' 'texlive-dtk-doc' 'texlive-dtl' 'texlive-dtl-bin' 'texlive-dtxdescribe' 'texlive-dtxdescribe-doc' 'texlive-dtxgallery' 'texlive-dtxgen' 'texlive-dtxgen-bin' 'texlive-dtxgen-doc' 'texlive-dtxtut' 'texlive-ducksay' 'texlive-ducksay-doc' 'texlive-duckuments' 'texlive-duckuments-doc' 'texlive-duerer' 'texlive-duerer-doc' 'texlive-duerer-latex' 'texlive-duerer-latex-doc' 'texlive-duotenzor' 'texlive-duotenzor-doc' 'texlive-dutchcal' 'texlive-dutchcal-doc' 'texlive-dutchcal-fonts' 'texlive-dvdcoll' 'texlive-dvdcoll-doc' 'texlive-dvgloss' 'texlive-dvgloss-doc' 'texlive-dviasm' 'texlive-dviasm-bin' 'texlive-dviasm-doc' 'texlive-dvicopy' 'texlive-dvicopy-bin' 'texlive-dvidvi' 'texlive-dvidvi-bin' 'texlive-dviincl' 'texlive-dviincl-doc' 'texlive-dviinfox' 'texlive-dviinfox-bin' 'texlive-dviinfox-doc' 'texlive-dviljk' 'texlive-dviljk-bin' 'texlive-dviout-util' 'texlive-dviout-util-bin' 'texlive-dvipdfmx' 'texlive-dvipdfmx-bin' 'texlive-dvipdfmx-doc' 'texlive-dvipng' 'texlive-dvipng-bin' 'texlive-dvipos' 'texlive-dvipos-bin' 'texlive-dvips' 'texlive-dvips-bin' 'texlive-dvips-doc' 'texlive-dvipsconfig' 'texlive-dvisvgm' 'texlive-dvisvgm-bin' 'texlive-dynamicnumber' 'texlive-dynamicnumber-doc' 'texlive-dynblocks' 'texlive-dynblocks-doc' 'texlive-dynkin-diagrams' 'texlive-dynkin-diagrams-doc' 'texlive-dyntree' 'texlive-dyntree-doc' 'texlive-e-french' 'texlive-e-french-doc' 'texlive-ean' 'texlive-ean-doc' 'texlive-ean13isbn' 'texlive-ean13isbn-doc' 'texlive-easy' 'texlive-easy-doc' 'texlive-easy-todo' 'texlive-easy-todo-doc' 'texlive-easyfig' 'texlive-easyfig-doc' 'texlive-easyformat' 'texlive-easyformat-doc' 'texlive-easylist' 'texlive-easylist-doc' 'texlive-easyreview' 'texlive-easyreview-doc' 'texlive-ebezier' 'texlive-ebezier-doc' 'texlive-ebgaramond' 'texlive-ebgaramond-doc' 'texlive-ebgaramond-fonts' 'texlive-ebgaramond-maths' 'texlive-ebgaramond-maths-doc' 'texlive-ebong' 'texlive-ebong-bin' 'texlive-ebong-doc' 'texlive-ebook' 'texlive-ebook-doc' 'texlive-ebproof' 'texlive-ebproof-doc' 'texlive-ebsthesis' 'texlive-ebsthesis-doc' 'texlive-ec' 'texlive-ec-doc' 'texlive-ecc' 'texlive-ecc-doc' 'texlive-ecclesiastic' 'texlive-ecclesiastic-doc' 'texlive-ecgdraw' 'texlive-ecgdraw-doc' 'texlive-ecltree' 'texlive-ecltree-doc' 'texlive-eco' 'texlive-eco-doc' 'texlive-ecobiblatex' 'texlive-ecobiblatex-doc' 'texlive-econ-bst' 'texlive-econ-bst-doc' 'texlive-econometrics' 'texlive-econometrics-doc' 'texlive-economic' 'texlive-economic-doc' 'texlive-ecothesis' 'texlive-ecv' 'texlive-ecv-doc' 'texlive-ed' 'texlive-ed-doc' 'texlive-edfnotes' 'texlive-edfnotes-doc' 'texlive-edmac' 'texlive-edmac-doc' 'texlive-edmargin' 'texlive-edmargin-doc' 'texlive-ednotes' 'texlive-ednotes-doc' 'texlive-eemeir' 'texlive-eemeir-doc' 'texlive-eepic' 'texlive-eepic-doc' 'texlive-efbox' 'texlive-efbox-doc' 'texlive-egameps' 'texlive-egameps-doc' 'texlive-egplot' 'texlive-egplot-doc' 'texlive-eiad' 'texlive-eiad-doc' 'texlive-eiad-ltx' 'texlive-eiad-ltx-doc' 'texlive-eijkhout' 'texlive-einfuehrung' 'texlive-einfuehrung2' 'texlive-ejpecp' 'texlive-ejpecp-doc' 'texlive-ekaia' 'texlive-ekaia-doc' 'texlive-elbioimp' 'texlive-elbioimp-doc' 'texlive-electrum' 'texlive-electrum-doc' 'texlive-electrum-fonts' 'texlive-eledform' 'texlive-eledform-doc' 'texlive-eledmac' 'texlive-eledmac-doc' 'texlive-elegantbook' 'texlive-elegantbook-doc' 'texlive-elegantnote' 'texlive-elegantnote-doc' 'texlive-elegantpaper' 'texlive-elegantpaper-doc' 'texlive-elements' 'texlive-elements-doc' 'texlive-ellipse' 'texlive-ellipse-doc' 'texlive-ellipsis' 'texlive-ellipsis-doc' 'texlive-elmath' 'texlive-elmath-doc' 'texlive-elocalloc' 'texlive-elocalloc-doc' 'texlive-elpres' 'texlive-elpres-doc' 'texlive-els-cas-templates' 'texlive-els-cas-templates-doc' 'texlive-elsarticle' 'texlive-elsarticle-doc' 'texlive-elteikthesis' 'texlive-elteikthesis-doc' 'texlive-eltex' 'texlive-eltex-doc' 'texlive-elvish' 'texlive-elvish-doc' 'texlive-elzcards' 'texlive-elzcards-doc' 'texlive-emarks' 'texlive-emarks-doc' 'texlive-embedall' 'texlive-embedall-doc' 'texlive-embrac' 'texlive-embrac-doc' 'texlive-emf' 'texlive-emf-doc' 'texlive-emisa' 'texlive-emisa-doc' 'texlive-emp' 'texlive-emp-doc' 'texlive-emptypage' 'texlive-emptypage-doc' 'texlive-emulateapj' 'texlive-emulateapj-doc' 'texlive-enctex' 'texlive-enctex-doc' 'texlive-encxvlna' 'texlive-encxvlna-doc' 'texlive-endfloat' 'texlive-endfloat-doc' 'texlive-endheads' 'texlive-endheads-doc' 'texlive-endiagram' 'texlive-endiagram-doc' 'texlive-endnotes' 'texlive-endnotes-doc' 'texlive-endnotesj' 'texlive-endnotesj-doc' 'texlive-endofproofwd' 'texlive-endofproofwd-doc' 'texlive-engpron' 'texlive-engpron-doc' 'texlive-engrec' 'texlive-engrec-doc' 'texlive-engtlc' 'texlive-engtlc-doc' 'texlive-enigma' 'texlive-enigma-doc' 'texlive-enotez' 'texlive-enotez-doc' 'texlive-enumitem' 'texlive-enumitem-doc' 'texlive-enumitem-zref' 'texlive-enumitem-zref-doc' 'texlive-envbig' 'texlive-envbig-doc' 'texlive-environ' 'texlive-environ-doc' 'texlive-envlab' 'texlive-envlab-doc' 'texlive-epigrafica' 'texlive-epigrafica-doc' 'texlive-epigrafica-fonts' 'texlive-epigram' 'texlive-epigraph' 'texlive-epigraph-doc' 'texlive-epiolmec' 'texlive-epiolmec-doc' 'texlive-epiolmec-fonts' 'texlive-eplain' 'texlive-eplain-bin' 'texlive-eplain-doc' 'texlive-epsdice' 'texlive-epsdice-doc' 'texlive-epsf' 'texlive-epsf-doc' 'texlive-epsf-dvipdfmx' 'texlive-epsf-dvipdfmx-doc' 'texlive-epsincl' 'texlive-epsincl-doc' 'texlive-epslatex-fr' 'texlive-epspdf' 'texlive-epspdf-bin' 'texlive-epspdf-doc' 'texlive-epspdfconversion' 'texlive-epspdfconversion-doc' 'texlive-epstopdf' 'texlive-epstopdf-bin' 'texlive-epstopdf-doc' 'texlive-eqell' 'texlive-eqell-doc' 'texlive-eqexpl' 'texlive-eqexpl-doc' 'texlive-eqlist' 'texlive-eqlist-doc' 'texlive-eqnalign' 'texlive-eqnalign-doc' 'texlive-eqname' 'texlive-eqnarray' 'texlive-eqnarray-doc' 'texlive-eqnnumwarn' 'texlive-eqnnumwarn-doc' 'texlive-eqparbox' 'texlive-eqparbox-doc' 'texlive-erdc' 'texlive-erdc-doc' 'texlive-erewhon' 'texlive-erewhon-doc' 'texlive-erewhon-fonts' 'texlive-errata' 'texlive-errata-doc' 'texlive-erw-l3' 'texlive-erw-l3-doc' 'texlive-es-tex-faq' 'texlive-esami' 'texlive-esami-doc' 'texlive-esdiff' 'texlive-esdiff-doc' 'texlive-esint' 'texlive-esint-doc' 'texlive-esint-type1' 'texlive-esint-type1-doc' 'texlive-esint-type1-fonts' 'texlive-esk' 'texlive-esk-doc' 'texlive-eskd' 'texlive-eskd-doc' 'texlive-eskdx' 'texlive-eskdx-doc' 'texlive-eso-pic' 'texlive-eso-pic-doc' 'texlive-esrelation' 'texlive-esrelation-doc' 'texlive-esrelation-fonts' 'texlive-esstix' 'texlive-esstix-doc' 'texlive-esstix-fonts' 'texlive-estcpmm' 'texlive-estcpmm-doc' 'texlive-esvect' 'texlive-esvect-doc' 'texlive-esvect-fonts' 'texlive-etaremune' 'texlive-etaremune-doc' 'texlive-etdipa' 'texlive-etex' 'texlive-etex-doc' 'texlive-etex-pkg' 'texlive-etex-pkg-doc' 'texlive-etextools' 'texlive-etextools-doc' 'texlive-ethiop' 'texlive-ethiop-doc' 'texlive-ethiop-t1' 'texlive-ethiop-t1-doc' 'texlive-ethiop-t1-fonts' 'texlive-etoc' 'texlive-etoc-doc' 'texlive-etoolbox' 'texlive-etoolbox-de' 'texlive-etoolbox-doc' 'texlive-etsvthor' 'texlive-etsvthor-doc' 'texlive-euenc' 'texlive-euenc-doc' 'texlive-euflag' 'texlive-euflag-doc' 'texlive-eukdate' 'texlive-eukdate-doc' 'texlive-euler' 'texlive-euler-doc' 'texlive-eulerpx' 'texlive-eulerpx-doc' 'texlive-eulervm' 'texlive-eulervm-doc' 'texlive-euro' 'texlive-euro-ce' 'texlive-euro-ce-doc' 'texlive-euro-doc' 'texlive-europasscv' 'texlive-europasscv-doc' 'texlive-europecv' 'texlive-europecv-doc' 'texlive-eurosym' 'texlive-eurosym-doc' 'texlive-eurosym-fonts' 'texlive-euxm' 'texlive-everyhook' 'texlive-everyhook-doc' 'texlive-everypage' 'texlive-everypage-doc' 'texlive-exam' 'texlive-exam-doc' 'texlive-exam-n' 'texlive-exam-n-doc' 'texlive-exam-randomizechoices' 'texlive-exam-randomizechoices-doc' 'texlive-examdesign' 'texlive-examdesign-doc' 'texlive-example' 'texlive-examplep' 'texlive-examplep-doc' 'texlive-exceltex' 'texlive-exceltex-bin' 'texlive-exceltex-doc' 'texlive-excludeonly' 'texlive-excludeonly-doc' 'texlive-exercise' 'texlive-exercise-doc' 'texlive-exercisebank' 'texlive-exercisebank-doc' 'texlive-exercisepoints' 'texlive-exercisepoints-doc' 'texlive-exercises' 'texlive-exercises-doc' 'texlive-exframe' 'texlive-exframe-doc' 'texlive-exp-testopt' 'texlive-exp-testopt-doc' 'texlive-expdlist' 'texlive-expdlist-doc' 'texlive-expex' 'texlive-expex-doc' 'texlive-export' 'texlive-export-doc' 'texlive-expressg' 'texlive-expressg-doc' 'texlive-exsheets' 'texlive-exsheets-doc' 'texlive-exsol' 'texlive-exsol-doc' 'texlive-extarrows' 'texlive-extarrows-doc' 'texlive-exteps' 'texlive-exteps-doc' 'texlive-extpfeil' 'texlive-extpfeil-doc' 'texlive-extract' 'texlive-extract-doc' 'texlive-extratools' 'texlive-extsizes' 'texlive-extsizes-doc' 'texlive-facsimile' 'texlive-facsimile-doc' 'texlive-factura' 'texlive-factura-doc' 'texlive-facture' 'texlive-facture-belge-simple-sans-tva' 'texlive-facture-belge-simple-sans-tva-doc' 'texlive-facture-doc' 'texlive-faktor' 'texlive-faktor-doc' 'texlive-fancybox' 'texlive-fancybox-doc' 'texlive-fancyhandout' 'texlive-fancyhandout-doc' 'texlive-fancyhdr' 'texlive-fancyhdr-doc' 'texlive-fancyhdr-it' 'texlive-fancylabel' 'texlive-fancylabel-doc' 'texlive-fancynum' 'texlive-fancynum-doc' 'texlive-fancypar' 'texlive-fancypar-doc' 'texlive-fancyref' 'texlive-fancyref-doc' 'texlive-fancyslides' 'texlive-fancyslides-doc' 'texlive-fancytabs' 'texlive-fancytabs-doc' 'texlive-fancytooltips' 'texlive-fancytooltips-doc' 'texlive-fancyvrb' 'texlive-fancyvrb-doc' 'texlive-fandol' 'texlive-fandol-doc' 'texlive-fandol-fonts' 'texlive-fascicules' 'texlive-fascicules-doc' 'texlive-fast-diagram' 'texlive-fast-diagram-doc' 'texlive-fbb' 'texlive-fbb-doc' 'texlive-fbb-fonts' 'texlive-fbithesis' 'texlive-fbithesis-doc' 'texlive-fbox' 'texlive-fbox-doc' 'texlive-fbs' 'texlive-fc' 'texlive-fc-doc' 'texlive-fcavtex' 'texlive-fcavtex-doc' 'texlive-fcltxdoc' 'texlive-fcltxdoc-doc' 'texlive-fcolumn' 'texlive-fcolumn-doc' 'texlive-fdsymbol' 'texlive-fdsymbol-doc' 'texlive-fdsymbol-fonts' 'texlive-fduthesis' 'texlive-fduthesis-doc' 'texlive-featpost' 'texlive-featpost-doc' 'texlive-fei' 'texlive-fei-doc' 'texlive-fenixpar' 'texlive-fenixpar-doc' 'texlive-fetamont' 'texlive-fetamont-doc' 'texlive-fetamont-fonts' 'texlive-fetchcls' 'texlive-fetchcls-doc' 'texlive-feupphdteses' 'texlive-feupphdteses-doc' 'texlive-feyn' 'texlive-feyn-doc' 'texlive-feynmf' 'texlive-feynmf-doc' 'texlive-feynmp-auto' 'texlive-feynmp-auto-doc' 'texlive-ffslides' 'texlive-ffslides-doc' 'texlive-fge' 'texlive-fge-doc' 'texlive-fge-fonts' 'texlive-fgruler' 'texlive-fgruler-doc' 'texlive-fibeamer' 'texlive-fibeamer-doc' 'texlive-fifinddo-info' 'texlive-fifinddo-info-doc' 'texlive-fifo-stack' 'texlive-fifo-stack-doc' 'texlive-fig4latex' 'texlive-fig4latex-bin' 'texlive-fig4latex-doc' 'texlive-figbas' 'texlive-figbas-doc' 'texlive-figbas-fonts' 'texlive-figbib' 'texlive-figbib-doc' 'texlive-figflow' 'texlive-figflow-doc' 'texlive-figsize' 'texlive-figsize-doc' 'texlive-filecontents' 'texlive-filecontents-doc' 'texlive-filecontentsdef' 'texlive-filecontentsdef-doc' 'texlive-filedate' 'texlive-filedate-doc' 'texlive-filehook' 'texlive-filehook-doc' 'texlive-fileinfo' 'texlive-fileinfo-doc' 'texlive-filemod' 'texlive-filemod-doc' 'texlive-filesystem' 'texlive-finbib' 'texlive-findhyph' 'texlive-findhyph-bin' 'texlive-findhyph-doc' 'texlive-fink' 'texlive-fink-doc' 'texlive-finstrut' 'texlive-finstrut-doc' 'texlive-fira' 'texlive-fira-doc' 'texlive-fira-fonts' 'texlive-firamath' 'texlive-firamath-doc' 'texlive-firamath-fonts' 'texlive-firamath-otf' 'texlive-firamath-otf-doc' 'texlive-first-latex-doc' 'texlive-fitbox' 'texlive-fitbox-doc' 'texlive-fithesis' 'texlive-fithesis-doc' 'texlive-fix2col' 'texlive-fix2col-doc' 'texlive-fixcmex' 'texlive-fixcmex-doc' 'texlive-fixfoot' 'texlive-fixfoot-doc' 'texlive-fixjfm' 'texlive-fixjfm-doc' 'texlive-fixlatvian' 'texlive-fixlatvian-doc' 'texlive-fixltxhyph' 'texlive-fixltxhyph-doc' 'texlive-fixme' 'texlive-fixme-doc' 'texlive-fixmetodonotes' 'texlive-fixmetodonotes-doc' 'texlive-fixpdfmag' 'texlive-fiziko' 'texlive-fiziko-doc' 'texlive-fjodor' 'texlive-fjodor-doc' 'texlive-flabels' 'texlive-flabels-doc' 'texlive-flacards' 'texlive-flacards-doc' 'texlive-flagderiv' 'texlive-flagderiv-doc' 'texlive-flashcards' 'texlive-flashcards-doc' 'texlive-flashmovie' 'texlive-flashmovie-doc' 'texlive-flipbook' 'texlive-flipbook-doc' 'texlive-flippdf' 'texlive-flippdf-doc' 'texlive-float' 'texlive-float-doc' 'texlive-floatrow' 'texlive-floatrow-doc' 'texlive-flowchart' 'texlive-flowchart-doc' 'texlive-flowfram' 'texlive-flowfram-doc' 'texlive-fltpoint' 'texlive-fltpoint-doc' 'texlive-fmp' 'texlive-fmp-doc' 'texlive-fmtcount' 'texlive-fmtcount-doc' 'texlive-fn2end' 'texlive-fn2end-doc' 'texlive-fnbreak' 'texlive-fnbreak-doc' 'texlive-fncychap' 'texlive-fncychap-doc' 'texlive-fncylab' 'texlive-fncylab-doc' 'texlive-fnpara' 'texlive-fnpara-doc' 'texlive-fnpct' 'texlive-fnpct-doc' 'texlive-fnspe' 'texlive-fnspe-doc' 'texlive-fntproof' 'texlive-fntproof-doc' 'texlive-fnumprint' 'texlive-fnumprint-doc' 'texlive-foekfont' 'texlive-foekfont-doc' 'texlive-foekfont-fonts' 'texlive-foilhtml' 'texlive-foilhtml-doc' 'texlive-fonetika' 'texlive-fonetika-doc' 'texlive-fonetika-fonts' 'texlive-font-change' 'texlive-font-change-doc' 'texlive-font-change-xetex' 'texlive-font-change-xetex-doc' 'texlive-fontawesome' 'texlive-fontawesome-doc' 'texlive-fontawesome-fonts' 'texlive-fontawesome5' 'texlive-fontawesome5-doc' 'texlive-fontawesome5-fonts' 'texlive-fontaxes' 'texlive-fontaxes-doc' 'texlive-fontbook' 'texlive-fontbook-doc' 'texlive-fontch' 'texlive-fontch-doc' 'texlive-fontinst' 'texlive-fontinst-bin' 'texlive-fontinst-doc' 'texlive-fontmfizz' 'texlive-fontmfizz-doc' 'texlive-fontmfizz-fonts' 'texlive-fontname' 'texlive-fontname-doc' 'texlive-fontools' 'texlive-fontools-bin' 'texlive-fontools-doc' 'texlive-fonts-churchslavonic' 'texlive-fonts-churchslavonic-doc' 'texlive-fonts-churchslavonic-fonts' 'texlive-fonts-tlwg' 'texlive-fonts-tlwg-doc' 'texlive-fonts-tlwg-fonts' 'texlive-fontspec' 'texlive-fontspec-doc' 'texlive-fonttable' 'texlive-fonttable-doc' 'texlive-fontware' 'texlive-fontware-bin' 'texlive-fontwrap' 'texlive-fontwrap-doc' 'texlive-footbib' 'texlive-footbib-doc' 'texlive-footmisc' 'texlive-footmisc-doc' 'texlive-footmisx' 'texlive-footmisx-doc' 'texlive-footnotebackref' 'texlive-footnotebackref-doc' 'texlive-footnotehyper' 'texlive-footnotehyper-doc' 'texlive-footnoterange' 'texlive-footnoterange-doc' 'texlive-footnpag' 'texlive-footnpag-doc' 'texlive-forarray' 'texlive-forarray-doc' 'texlive-foreign' 'texlive-foreign-doc' 'texlive-forest' 'texlive-forest-doc' 'texlive-forest-quickstart' 'texlive-forloop' 'texlive-forloop-doc' 'texlive-formation-latex-ul' 'texlive-formation-latex-ul-doc' 'texlive-formlett' 'texlive-formlett-doc' 'texlive-forms16be' 'texlive-forms16be-doc' 'texlive-formular' 'texlive-formular-doc' 'texlive-fouridx' 'texlive-fouridx-doc' 'texlive-fourier' 'texlive-fourier-doc' 'texlive-fourier-fonts' 'texlive-fouriernc' 'texlive-fouriernc-doc' 'texlive-fp' 'texlive-fp-doc' 'texlive-fpl' 'texlive-fpl-doc' 'texlive-fpl-fonts' 'texlive-fragmaster' 'texlive-fragmaster-bin' 'texlive-fragmaster-doc' 'texlive-fragments' 'texlive-fragments-doc' 'texlive-frame' 'texlive-frame-doc' 'texlive-framed' 'texlive-framed-doc' 'texlive-francais-bst' 'texlive-francais-bst-doc' 'texlive-frankenstein' 'texlive-frankenstein-doc' 'texlive-frcursive' 'texlive-frcursive-doc' 'texlive-frcursive-fonts' 'texlive-frederika2016' 'texlive-frederika2016-doc' 'texlive-frederika2016-fonts' 'texlive-frege' 'texlive-frege-doc' 'texlive-frenchmath' 'texlive-frenchmath-doc' 'texlive-frletter' 'texlive-frletter-doc' 'texlive-frontespizio' 'texlive-frontespizio-doc' 'texlive-ftc-notebook' 'texlive-ftc-notebook-doc' 'texlive-ftcap' 'texlive-ftcap-doc' 'texlive-ftnxtra' 'texlive-ftnxtra-doc' 'texlive-fullblck' 'texlive-fullblck-doc' 'texlive-fullminipage' 'texlive-fullminipage-doc' 'texlive-fullwidth' 'texlive-fullwidth-doc' 'texlive-functan' 'texlive-functan-doc' 'texlive-fundus-calligra' 'texlive-fundus-calligra-doc' 'texlive-fundus-cyr' 'texlive-fundus-sueterlin' 'texlive-fundus-sueterlin-doc' 'texlive-fvextra' 'texlive-fvextra-doc' 'texlive-fwlw' 'texlive-fwlw-doc' 'texlive-g-brief' 'texlive-g-brief-doc' 'texlive-gaceta' 'texlive-gaceta-doc' 'texlive-galois' 'texlive-galois-doc' 'texlive-gamebook' 'texlive-gamebook-doc' 'texlive-gammas' 'texlive-gammas-doc' 'texlive-garamond-math' 'texlive-garamond-math-doc' 'texlive-garamond-math-fonts' 'texlive-garrigues' 'texlive-garrigues-doc' 'texlive-garuda-c90' 'texlive-gastex' 'texlive-gastex-doc' 'texlive-gatech-thesis' 'texlive-gatech-thesis-doc' 'texlive-gates' 'texlive-gates-doc' 'texlive-gatherenum' 'texlive-gatherenum-doc' 'texlive-gauss' 'texlive-gauss-doc' 'texlive-gb4e' 'texlive-gb4e-doc' 'texlive-gbt7714' 'texlive-gbt7714-doc' 'texlive-gcard' 'texlive-gcard-doc' 'texlive-gchords' 'texlive-gchords-doc' 'texlive-gcite' 'texlive-gcite-doc' 'texlive-gender' 'texlive-gender-doc' 'texlive-gene-logic' 'texlive-gene-logic-doc' 'texlive-genealogy' 'texlive-genealogy-doc' 'texlive-genealogytree' 'texlive-genealogytree-doc' 'texlive-genmisc' 'texlive-genmpage' 'texlive-genmpage-doc' 'texlive-gentium-tug' 'texlive-gentium-tug-doc' 'texlive-gentium-tug-fonts' 'texlive-gentle' 'texlive-gentombow' 'texlive-gentombow-doc' 'texlive-geometry' 'texlive-geometry-de' 'texlive-geometry-doc' 'texlive-german' 'texlive-german-doc' 'texlive-germbib' 'texlive-germbib-doc' 'texlive-germkorr' 'texlive-germkorr-doc' 'texlive-geschichtsfrkl' 'texlive-geschichtsfrkl-doc' 'texlive-getfiledate' 'texlive-getfiledate-doc' 'texlive-getitems' 'texlive-getitems-doc' 'texlive-getmap' 'texlive-getmap-bin' 'texlive-getmap-doc' 'texlive-getoptk' 'texlive-getoptk-doc' 'texlive-gfnotation' 'texlive-gfnotation-doc' 'texlive-gfsartemisia' 'texlive-gfsartemisia-doc' 'texlive-gfsartemisia-fonts' 'texlive-gfsbaskerville' 'texlive-gfsbaskerville-doc' 'texlive-gfsbaskerville-fonts' 'texlive-gfsbodoni' 'texlive-gfsbodoni-doc' 'texlive-gfsbodoni-fonts' 'texlive-gfscomplutum' 'texlive-gfscomplutum-doc' 'texlive-gfscomplutum-fonts' 'texlive-gfsdidot' 'texlive-gfsdidot-doc' 'texlive-gfsdidot-fonts' 'texlive-gfsneohellenic' 'texlive-gfsneohellenic-doc' 'texlive-gfsneohellenic-fonts' 'texlive-gfsneohellenicmath' 'texlive-gfsneohellenicmath-doc' 'texlive-gfsneohellenicmath-fonts' 'texlive-gfsporson' 'texlive-gfsporson-doc' 'texlive-gfsporson-fonts' 'texlive-gfssolomos' 'texlive-gfssolomos-doc' 'texlive-gfssolomos-fonts' 'texlive-ghab' 'texlive-ghab-doc' 'texlive-ghsystem' 'texlive-ghsystem-doc' 'texlive-gillcm' 'texlive-gillcm-doc' 'texlive-gillius' 'texlive-gillius-doc' 'texlive-gillius-fonts' 'texlive-gincltex' 'texlive-gincltex-doc' 'texlive-ginpenc' 'texlive-ginpenc-doc' 'texlive-gitfile-info' 'texlive-gitfile-info-doc' 'texlive-gitinfo' 'texlive-gitinfo-doc' 'texlive-gitinfo2' 'texlive-gitinfo2-doc' 'texlive-gitlog' 'texlive-gitlog-doc' 'texlive-gitver' 'texlive-gitver-doc' 'texlive-globalvals' 'texlive-globalvals-doc' 'texlive-gloss' 'texlive-gloss-doc' 'texlive-gloss-occitan' 'texlive-gloss-occitan-doc' 'texlive-glossaries' 'texlive-glossaries-bin' 'texlive-glossaries-danish' 'texlive-glossaries-danish-doc' 'texlive-glossaries-doc' 'texlive-glossaries-dutch' 'texlive-glossaries-dutch-doc' 'texlive-glossaries-english' 'texlive-glossaries-english-doc' 'texlive-glossaries-estonian' 'texlive-glossaries-estonian-doc' 'texlive-glossaries-extra' 'texlive-glossaries-extra-doc' 'texlive-glossaries-finnish' 'texlive-glossaries-finnish-doc' 'texlive-glossaries-french' 'texlive-glossaries-french-doc' 'texlive-glossaries-german' 'texlive-glossaries-german-doc' 'texlive-glossaries-irish' 'texlive-glossaries-irish-doc' 'texlive-glossaries-italian' 'texlive-glossaries-italian-doc' 'texlive-glossaries-magyar' 'texlive-glossaries-magyar-doc' 'texlive-glossaries-polish' 'texlive-glossaries-polish-doc' 'texlive-glossaries-portuges' 'texlive-glossaries-portuges-doc' 'texlive-glossaries-serbian' 'texlive-glossaries-serbian-doc' 'texlive-glossaries-spanish' 'texlive-glossaries-spanish-doc' 'texlive-glyphlist' 'texlive-gmdoc' 'texlive-gmdoc-doc' 'texlive-gmdoc-enhance' 'texlive-gmdoc-enhance-doc' 'texlive-gmiflink' 'texlive-gmiflink-doc' 'texlive-gmp' 'texlive-gmp-doc' 'texlive-gmutils' 'texlive-gmutils-doc' 'texlive-gmverb' 'texlive-gmverb-doc' 'texlive-gmverse' 'texlive-gmverse-doc' 'texlive-gnu-freefont' 'texlive-gnu-freefont-doc' 'texlive-gnu-freefont-fonts' 'texlive-gnuplottex' 'texlive-gnuplottex-doc' 'texlive-go' 'texlive-go-doc' 'texlive-gobble' 'texlive-gobble-doc' 'texlive-gofonts' 'texlive-gofonts-doc' 'texlive-gofonts-fonts' 'texlive-gost' 'texlive-gost-doc' 'texlive-gothic' 'texlive-gothic-doc' 'texlive-gotoh' 'texlive-gotoh-doc' 'texlive-grabbox' 'texlive-grabbox-doc' 'texlive-gradientframe' 'texlive-gradientframe-doc' 'texlive-gradstudentresume' 'texlive-gradstudentresume-doc' 'texlive-grafcet' 'texlive-grafcet-doc' 'texlive-grant' 'texlive-grant-doc' 'texlive-graph35' 'texlive-graph35-doc' 'texlive-graphbox' 'texlive-graphbox-doc' 'texlive-graphics' 'texlive-graphics-cfg' 'texlive-graphics-cfg-doc' 'texlive-graphics-def' 'texlive-graphics-def-doc' 'texlive-graphics-doc' 'texlive-graphics-pln' 'texlive-graphics-pln-doc' 'texlive-graphicx-psmin' 'texlive-graphicx-psmin-doc' 'texlive-graphicxbox' 'texlive-graphicxbox-doc' 'texlive-graphicxpsd' 'texlive-graphicxpsd-doc' 'texlive-graphviz' 'texlive-graphviz-doc' 'texlive-grayhints' 'texlive-grayhints-doc' 'texlive-greek-fontenc' 'texlive-greek-fontenc-doc' 'texlive-greek-inputenc' 'texlive-greek-inputenc-doc' 'texlive-greekdates' 'texlive-greekdates-doc' 'texlive-greektex' 'texlive-greektex-doc' 'texlive-greektonoi' 'texlive-greektonoi-doc' 'texlive-greenpoint' 'texlive-greenpoint-doc' 'texlive-gregoriotex' 'texlive-gregoriotex-bin' 'texlive-gregoriotex-doc' 'texlive-gregoriotex-fonts' 'texlive-grfpaste' 'texlive-grfpaste-doc' 'texlive-grid' 'texlive-grid-doc' 'texlive-grid-system' 'texlive-grid-system-doc' 'texlive-gridset' 'texlive-gridset-doc' 'texlive-gridslides' 'texlive-gridslides-doc' 'texlive-grotesq' 'texlive-grotesq-doc' 'texlive-grotesq-fonts' 'texlive-grundgesetze' 'texlive-grundgesetze-doc' 'texlive-gsemthesis' 'texlive-gsemthesis-doc' 'texlive-gsftopk' 'texlive-gsftopk-bin' 'texlive-gsftopk-doc' 'texlive-gtl' 'texlive-gtl-doc' 'texlive-gtrcrd' 'texlive-gtrcrd-doc' 'texlive-gtrlib-largetrees' 'texlive-gtrlib-largetrees-doc' 'texlive-gu' 'texlive-gu-doc' 'texlive-guide-latex-fr' 'texlive-guide-to-latex' 'texlive-guitar' 'texlive-guitar-doc' 'texlive-guitarchordschemes' 'texlive-guitarchordschemes-doc' 'texlive-guitartabs' 'texlive-guitartabs-doc' 'texlive-guitlogo' 'texlive-guitlogo-doc' 'texlive-gustlib' 'texlive-gustlib-doc' 'texlive-gustprog' 'texlive-gzt' 'texlive-gzt-doc' 'texlive-h2020proposal' 'texlive-h2020proposal-doc' 'texlive-hackthefootline' 'texlive-hackthefootline-doc' 'texlive-hacm' 'texlive-hacm-doc' 'texlive-hacm-fonts' 'texlive-hagenberg-thesis' 'texlive-hagenberg-thesis-doc' 'texlive-halloweenmath' 'texlive-halloweenmath-doc' 'texlive-handin' 'texlive-handin-doc' 'texlive-handout' 'texlive-handout-doc' 'texlive-hands' 'texlive-hang' 'texlive-hang-doc' 'texlive-hanging' 'texlive-hanging-doc' 'texlive-hanoi' 'texlive-happy4th' 'texlive-har2nat' 'texlive-har2nat-doc' 'texlive-hardwrap' 'texlive-hardwrap-doc' 'texlive-harmony' 'texlive-harmony-doc' 'texlive-harnon-cv' 'texlive-harnon-cv-doc' 'texlive-harpoon' 'texlive-harpoon-doc' 'texlive-harvard' 'texlive-harvard-doc' 'texlive-harveyballs' 'texlive-harveyballs-doc' 'texlive-harvmac' 'texlive-harvmac-doc' 'texlive-hatching' 'texlive-hatching-doc' 'texlive-hausarbeit-jura' 'texlive-hausarbeit-jura-doc' 'texlive-havannah' 'texlive-havannah-doc' 'texlive-hc' 'texlive-hc-doc' 'texlive-he-she' 'texlive-he-she-doc' 'texlive-hecthese' 'texlive-hecthese-doc' 'texlive-helvetic' 'texlive-helvetic-fonts' 'texlive-hep' 'texlive-hep-doc' 'texlive-hepnames' 'texlive-hepnames-doc' 'texlive-hepparticles' 'texlive-hepparticles-doc' 'texlive-hepthesis' 'texlive-hepthesis-doc' 'texlive-hepunits' 'texlive-hepunits-doc' 'texlive-here' 'texlive-here-doc' 'texlive-heuristica' 'texlive-heuristica-doc' 'texlive-heuristica-fonts' 'texlive-hexgame' 'texlive-hexgame-doc' 'texlive-hf-tikz' 'texlive-hf-tikz-doc' 'texlive-hfbright' 'texlive-hfbright-doc' 'texlive-hfbright-fonts' 'texlive-hfoldsty' 'texlive-hfoldsty-doc' 'texlive-hhtensor' 'texlive-hhtensor-doc' 'texlive-histogr' 'texlive-histogr-doc' 'texlive-historische-zeitschrift' 'texlive-historische-zeitschrift-doc' 'texlive-hitec' 'texlive-hitec-doc' 'texlive-hithesis' 'texlive-hithesis-doc' 'texlive-hletter' 'texlive-hletter-doc' 'texlive-hlist' 'texlive-hlist-doc' 'texlive-hobby' 'texlive-hobby-doc' 'texlive-hobete' 'texlive-hobete-doc' 'texlive-hook-pre-commit-pkg' 'texlive-horoscop' 'texlive-horoscop-doc' 'texlive-hpsdiss' 'texlive-hpsdiss-doc' 'texlive-hrefhide' 'texlive-hrefhide-doc' 'texlive-hrlatex' 'texlive-hrlatex-doc' 'texlive-hulipsum' 'texlive-hulipsum-doc' 'texlive-hustthesis' 'texlive-hustthesis-doc' 'texlive-hvfloat' 'texlive-hvfloat-doc' 'texlive-hvindex' 'texlive-hvindex-doc' 'texlive-hypdvips' 'texlive-hypdvips-doc' 'texlive-hyper' 'texlive-hyper-doc' 'texlive-hyperbar' 'texlive-hyperbar-doc' 'texlive-hypernat' 'texlive-hypernat-doc' 'texlive-hyperref' 'texlive-hyperref-doc' 'texlive-hyperxmp' 'texlive-hyperxmp-doc' 'texlive-hyph-utf8' 'texlive-hyph-utf8-doc' 'texlive-hyphen-afrikaans' 'texlive-hyphen-ancientgreek' 'texlive-hyphen-arabic' 'texlive-hyphen-armenian' 'texlive-hyphen-base' 'texlive-hyphen-basque' 'texlive-hyphen-belarusian' 'texlive-hyphen-bulgarian' 'texlive-hyphen-catalan' 'texlive-hyphen-chinese' 'texlive-hyphen-churchslavonic' 'texlive-hyphen-coptic' 'texlive-hyphen-croatian' 'texlive-hyphen-czech' 'texlive-hyphen-danish' 'texlive-hyphen-dutch' 'texlive-hyphen-english' 'texlive-hyphen-esperanto' 'texlive-hyphen-estonian' 'texlive-hyphen-ethiopic' 'texlive-hyphen-farsi' 'texlive-hyphen-finnish' 'texlive-hyphen-french' 'texlive-hyphen-friulan' 'texlive-hyphen-galician' 'texlive-hyphen-georgian' 'texlive-hyphen-german' 'texlive-hyphen-greek' 'texlive-hyphen-greek-doc' 'texlive-hyphen-hungarian' 'texlive-hyphen-hungarian-doc' 'texlive-hyphen-icelandic' 'texlive-hyphen-indic' 'texlive-hyphen-indonesian' 'texlive-hyphen-interlingua' 'texlive-hyphen-irish' 'texlive-hyphen-italian' 'texlive-hyphen-kurmanji' 'texlive-hyphen-latin' 'texlive-hyphen-latvian' 'texlive-hyphen-lithuanian' 'texlive-hyphen-mongolian' 'texlive-hyphen-norwegian' 'texlive-hyphen-occitan' 'texlive-hyphen-piedmontese' 'texlive-hyphen-polish' 'texlive-hyphen-portuguese' 'texlive-hyphen-romanian' 'texlive-hyphen-romansh' 'texlive-hyphen-russian' 'texlive-hyphen-sanskrit' 'texlive-hyphen-sanskrit-doc' 'texlive-hyphen-serbian' 'texlive-hyphen-slovak' 'texlive-hyphen-slovenian' 'texlive-hyphen-spanish' 'texlive-hyphen-spanish-doc' 'texlive-hyphen-swedish' 'texlive-hyphen-thai' 'texlive-hyphen-turkish' 'texlive-hyphen-turkmen' 'texlive-hyphen-ukrainian' 'texlive-hyphen-uppersorbian' 'texlive-hyphen-welsh' 'texlive-hyphenat' 'texlive-hyphenat-doc' 'texlive-hyphenex' 'texlive-hyplain' 'texlive-hyplain-doc' 'texlive-ibycus-babel' 'texlive-ibycus-babel-doc' 'texlive-ibygrk' 'texlive-ibygrk-doc' 'texlive-ibygrk-fonts' 'texlive-icite' 'texlive-icite-doc' 'texlive-icsv' 'texlive-icsv-doc' 'texlive-identkey' 'texlive-identkey-doc' 'texlive-idxcmds' 'texlive-idxcmds-doc' 'texlive-idxlayout' 'texlive-idxlayout-doc' 'texlive-ieeepes' 'texlive-ieeepes-doc' 'texlive-ietfbibs' 'texlive-ifetex' 'texlive-ifetex-doc' 'texlive-iffont' 'texlive-iffont-doc' 'texlive-ifluatex' 'texlive-ifluatex-doc' 'texlive-ifmslide' 'texlive-ifmslide-doc' 'texlive-ifmtarg' 'texlive-ifmtarg-doc' 'texlive-ifnextok' 'texlive-ifnextok-doc' 'texlive-ifoddpage' 'texlive-ifoddpage-doc' 'texlive-ifplatform' 'texlive-ifplatform-doc' 'texlive-ifptex' 'texlive-ifptex-doc' 'texlive-ifsym' 'texlive-ifsym-doc' 'texlive-iftex' 'texlive-iftex-doc' 'texlive-ifthenx' 'texlive-ifthenx-doc' 'texlive-ifxetex' 'texlive-ifxetex-doc' 'texlive-ifxptex' 'texlive-ifxptex-doc' 'texlive-iitem' 'texlive-iitem-doc' 'texlive-ijmart' 'texlive-ijmart-doc' 'texlive-ijqc' 'texlive-ijqc-doc' 'texlive-ijsra' 'texlive-ijsra-doc' 'texlive-imac' 'texlive-imac-doc' 'texlive-image-gallery' 'texlive-image-gallery-doc' 'texlive-imakeidx' 'texlive-imakeidx-doc' 'texlive-imfellenglish' 'texlive-imfellenglish-doc' 'texlive-imfellenglish-fonts' 'texlive-impatient' 'texlive-impatient-cn' 'texlive-impatient-fr' 'texlive-impnattypo' 'texlive-impnattypo-doc' 'texlive-import' 'texlive-import-doc' 'texlive-imsproc' 'texlive-imsproc-doc' 'texlive-imtekda' 'texlive-imtekda-doc' 'texlive-incgraph' 'texlive-incgraph-doc' 'texlive-includernw' 'texlive-includernw-doc' 'texlive-inconsolata' 'texlive-inconsolata-doc' 'texlive-inconsolata-fonts' 'texlive-index' 'texlive-index-doc' 'texlive-indextools' 'texlive-indextools-doc' 'texlive-initials' 'texlive-initials-doc' 'texlive-initials-fonts' 'texlive-inline-images' 'texlive-inline-images-doc' 'texlive-inlinebib' 'texlive-inlinebib-doc' 'texlive-inlinedef' 'texlive-inlinedef-doc' 'texlive-inputtrc' 'texlive-inputtrc-doc' 'texlive-inriafonts' 'texlive-inriafonts-doc' 'texlive-inriafonts-fonts' 'texlive-insbox' 'texlive-insbox-doc' 'texlive-interactiveworkbook' 'texlive-interactiveworkbook-doc' 'texlive-interchar' 'texlive-interchar-doc' 'texlive-interfaces' 'texlive-interfaces-doc' 'texlive-interpreter' 'texlive-interpreter-doc' 'texlive-interval' 'texlive-interval-doc' 'texlive-intopdf' 'texlive-intopdf-doc' 'texlive-intro-scientific' 'texlive-inversepath' 'texlive-inversepath-doc' 'texlive-invoice' 'texlive-invoice-class' 'texlive-invoice-class-doc' 'texlive-invoice-doc' 'texlive-invoice2' 'texlive-invoice2-doc' 'texlive-iodhbwm' 'texlive-iodhbwm-doc' 'texlive-ionumbers' 'texlive-ionumbers-doc' 'texlive-iopart-num' 'texlive-iopart-num-doc' 'texlive-ipaex' 'texlive-ipaex-doc' 'texlive-ipaex-fonts' 'texlive-ipaex-type1' 'texlive-ipaex-type1-doc' 'texlive-ipaex-type1-fonts' 'texlive-iscram' 'texlive-iscram-doc' 'texlive-iso' 'texlive-iso-doc' 'texlive-iso10303' 'texlive-iso10303-doc' 'texlive-isodate' 'texlive-isodate-doc' 'texlive-isodoc' 'texlive-isodoc-doc' 'texlive-isomath' 'texlive-isomath-doc' 'texlive-isonums' 'texlive-isonums-doc' 'texlive-isopt' 'texlive-isopt-doc' 'texlive-isorot' 'texlive-isorot-doc' 'texlive-isotope' 'texlive-isotope-doc' 'texlive-issuulinks' 'texlive-issuulinks-doc' 'texlive-istgame' 'texlive-istgame-doc' 'texlive-itnumpar' 'texlive-itnumpar-doc' 'texlive-iwhdp' 'texlive-iwhdp-doc' 'texlive-iwona' 'texlive-iwona-doc' 'texlive-iwona-fonts' 'texlive-jablantile' 'texlive-jablantile-doc' 'texlive-jacow' 'texlive-jacow-doc' 'texlive-jadetex' 'texlive-jadetex-bin' 'texlive-jadetex-doc' 'texlive-jamtimes' 'texlive-jamtimes-doc' 'texlive-japanese-otf' 'texlive-japanese-otf-doc' 'texlive-japanese-otf-uptex' 'texlive-japanese-otf-uptex-doc' 'texlive-jfmutil' 'texlive-jfmutil-bin' 'texlive-jfmutil-doc' 'texlive-jigsaw' 'texlive-jigsaw-doc' 'texlive-jkmath' 'texlive-jkmath-doc' 'texlive-jknapltx' 'texlive-jknapltx-doc' 'texlive-jlabels' 'texlive-jlabels-doc' 'texlive-jlreq' 'texlive-jlreq-doc' 'texlive-jmlr' 'texlive-jmlr-doc' 'texlive-jmn' 'texlive-jmn-fonts' 'texlive-jneurosci' 'texlive-jneurosci-doc' 'texlive-jnuexam' 'texlive-jnuexam-doc' 'texlive-jpsj' 'texlive-jpsj-doc' 'texlive-js-misc' 'texlive-js-misc-doc' 'texlive-jsclasses' 'texlive-jsclasses-doc' 'texlive-jslectureplanner' 'texlive-jslectureplanner-doc' 'texlive-jumplines' 'texlive-jumplines-doc' 'texlive-junicode' 'texlive-junicode-doc' 'texlive-junicode-fonts' 'texlive-jura' 'texlive-jura-doc' 'texlive-juraabbrev' 'texlive-juraabbrev-doc' 'texlive-jurabib' 'texlive-jurabib-doc' 'texlive-juramisc' 'texlive-juramisc-doc' 'texlive-jurarsp' 'texlive-jurarsp-doc' 'texlive-jvlisting' 'texlive-jvlisting-doc' 'texlive-kalendarium' 'texlive-kalendarium-doc' 'texlive-kanaparser' 'texlive-kanaparser-doc' 'texlive-kantlipsum' 'texlive-kantlipsum-doc' 'texlive-karnaugh' 'texlive-karnaugh-doc' 'texlive-karnaugh-map' 'texlive-karnaugh-map-doc' 'texlive-karnaughmap' 'texlive-karnaughmap-doc' 'texlive-kastrup' 'texlive-kastrup-doc' 'texlive-kdgdocs' 'texlive-kdgdocs-doc' 'texlive-kerkis' 'texlive-kerkis-doc' 'texlive-kerkis-fonts' 'texlive-kerntest' 'texlive-kerntest-doc' 'texlive-ketcindy' 'texlive-ketcindy-bin' 'texlive-ketcindy-doc' 'texlive-keycommand' 'texlive-keycommand-doc' 'texlive-keyfloat' 'texlive-keyfloat-doc' 'texlive-keyindex' 'texlive-keyindex-doc' 'texlive-keyreader' 'texlive-keyreader-doc' 'texlive-keystroke' 'texlive-keystroke-doc' 'texlive-keyval2e' 'texlive-keyval2e-doc' 'texlive-keyvaltable' 'texlive-keyvaltable-doc' 'texlive-kix' 'texlive-kix-doc' 'texlive-kixfont' 'texlive-kixfont-doc' 'texlive-kluwer' 'texlive-kluwer-doc' 'texlive-knitting' 'texlive-knitting-doc' 'texlive-knitting-fonts' 'texlive-knittingpattern' 'texlive-knittingpattern-doc' 'texlive-knowledge' 'texlive-knowledge-doc' 'texlive-knuth' 'texlive-knuth-doc' 'texlive-knuth-lib' 'texlive-knuth-local' 'texlive-koma-moderncvclassic' 'texlive-koma-moderncvclassic-doc' 'texlive-koma-script' 'texlive-koma-script-doc' 'texlive-koma-script-examples' 'texlive-koma-script-sfs' 'texlive-koma-script-sfs-doc' 'texlive-komacv' 'texlive-komacv-doc' 'texlive-komacv-rg' 'texlive-komacv-rg-doc' 'texlive-kotex-oblivoir' 'texlive-kotex-oblivoir-doc' 'texlive-kotex-plain' 'texlive-kotex-plain-doc' 'texlive-kotex-utf' 'texlive-kotex-utf-doc' 'texlive-kotex-utils' 'texlive-kotex-utils-bin' 'texlive-kotex-utils-doc' 'texlive-kpathsea' 'texlive-kpathsea-bin' 'texlive-kpathsea-devel' 'texlive-kpathsea-doc' 'texlive-kpfonts' 'texlive-kpfonts-doc' 'texlive-kpfonts-fonts' 'texlive-ksfh_nat' 'texlive-ksp-thesis' 'texlive-ksp-thesis-doc' 'texlive-ktv-texdata' 'texlive-ktv-texdata-doc' 'texlive-ku-template' 'texlive-ku-template-doc' 'texlive-kurdishlipsum' 'texlive-kurdishlipsum-doc' 'texlive-kurier' 'texlive-kurier-doc' 'texlive-kurier-fonts' 'texlive-kvmap' 'texlive-kvmap-doc' 'texlive-l2picfaq' 'texlive-l2tabu' 'texlive-l2tabu-english' 'texlive-l2tabu-french' 'texlive-l2tabu-italian' 'texlive-l2tabu-spanish' 'texlive-l3build' 'texlive-l3build-bin' 'texlive-l3build-doc' 'texlive-l3experimental' 'texlive-l3experimental-doc' 'texlive-l3kernel' 'texlive-l3kernel-doc' 'texlive-l3packages' 'texlive-l3packages-doc' 'texlive-labbook' 'texlive-labbook-doc' 'texlive-labels' 'texlive-labels-doc' 'texlive-labelschanged' 'texlive-labelschanged-doc' 'texlive-labyrinth' 'texlive-labyrinth-doc' 'texlive-lacheck' 'texlive-lacheck-bin' 'texlive-ladder' 'texlive-ladder-doc' 'texlive-lambda' 'texlive-lambda-lists' 'texlive-lambda-lists-doc' 'texlive-langcode' 'texlive-langcode-doc' 'texlive-langsci' 'texlive-langsci-doc' 'texlive-lapdf' 'texlive-lapdf-doc' 'texlive-lastpackage' 'texlive-lastpackage-doc' 'texlive-lastpage' 'texlive-lastpage-doc' 'texlive-latex' 'texlive-latex-bib-ex' 'texlive-latex-bib2-ex' 'texlive-latex-bin' 'texlive-latex-bin-bin' 'texlive-latex-brochure' 'texlive-latex-course' 'texlive-latex-doc' 'texlive-latex-doc-ptr' 'texlive-latex-fonts' 'texlive-latex-fonts-doc' 'texlive-latex-git-log' 'texlive-latex-git-log-bin' 'texlive-latex-git-log-doc' 'texlive-latex-graphics-companion' 'texlive-latex-make' 'texlive-latex-make-doc' 'texlive-latex-mr' 'texlive-latex-notes-zh-cn' 'texlive-latex-papersize' 'texlive-latex-papersize-bin' 'texlive-latex-papersize-doc' 'texlive-latex-referenz' 'texlive-latex-refsheet' 'texlive-latex-tabellen' 'texlive-latex-tds' 'texlive-latex-tds-doc' 'texlive-latex-uni8' 'texlive-latex-uni8-doc' 'texlive-latex-veryshortguide' 'texlive-latex-via-exemplos' 'texlive-latex-web-companion' 'texlive-latex2e-help-texinfo' 'texlive-latex2e-help-texinfo-fr' 'texlive-latex2e-help-texinfo-spanish' 'texlive-latex2man' 'texlive-latex2man-bin' 'texlive-latex2man-doc' 'texlive-latex2nemeth' 'texlive-latex2nemeth-bin' 'texlive-latex2nemeth-doc' 'texlive-latex4musicians' 'texlive-latex4wp' 'texlive-latex4wp-it' 'texlive-latexbangla' 'texlive-latexbangla-doc' 'texlive-latexbug' 'texlive-latexbug-doc' 'texlive-latexcheat' 'texlive-latexcheat-de' 'texlive-latexcheat-esmx' 'texlive-latexcheat-ptbr' 'texlive-latexcolors' 'texlive-latexcolors-doc' 'texlive-latexconfig' 'texlive-latexcourse-rug' 'texlive-latexdemo' 'texlive-latexdemo-doc' 'texlive-latexdiff' 'texlive-latexdiff-bin' 'texlive-latexdiff-doc' 'texlive-latexfileinfo-pkgs' 'texlive-latexfileinfo-pkgs-doc' 'texlive-latexfileversion' 'texlive-latexfileversion-bin' 'texlive-latexfileversion-doc' 'texlive-latexgit' 'texlive-latexgit-doc' 'texlive-latexindent' 'texlive-latexindent-bin' 'texlive-latexindent-doc' 'texlive-latexmk' 'texlive-latexmk-bin' 'texlive-latexmk-doc' 'texlive-latexmp' 'texlive-latexmp-doc' 'texlive-latexpand' 'texlive-latexpand-bin' 'texlive-latexpand-doc' 'texlive-lato' 'texlive-lato-doc' 'texlive-lato-fonts' 'texlive-layaureo' 'texlive-layaureo-doc' 'texlive-layouts' 'texlive-layouts-doc' 'texlive-lazylist' 'texlive-lazylist-doc' 'texlive-lccaps' 'texlive-lccaps-doc' 'texlive-lcd' 'texlive-lcd-doc' 'texlive-lcdftypetools' 'texlive-lcdftypetools-bin' 'texlive-lcg' 'texlive-lcg-doc' 'texlive-lcyw' 'texlive-lcyw-doc' 'texlive-leading' 'texlive-leading-doc' 'texlive-leadsheets' 'texlive-leadsheets-doc' 'texlive-leaflet' 'texlive-leaflet-doc' 'texlive-lecturer' 'texlive-lecturer-doc' 'texlive-lectures' 'texlive-lectures-doc' 'texlive-ledmac' 'texlive-ledmac-doc' 'texlive-leftidx' 'texlive-leftidx-doc' 'texlive-leipzig' 'texlive-leipzig-doc' 'texlive-lengthconvert' 'texlive-lengthconvert-doc' 'texlive-lettre' 'texlive-lettre-doc' 'texlive-lettrine' 'texlive-lettrine-doc' 'texlive-levy' 'texlive-levy-doc' 'texlive-lewis' 'texlive-lewis-doc' 'texlive-lexikon' 'texlive-lexikon-doc' 'texlive-lexref' 'texlive-lexref-doc' 'texlive-lfb' 'texlive-lfb-doc' 'texlive-lgreek' 'texlive-lgreek-doc' 'texlive-lh' 'texlive-lh-doc' 'texlive-lhcyr' 'texlive-lhelp' 'texlive-lhelp-doc' 'texlive-libertine' 'texlive-libertine-doc' 'texlive-libertine-fonts' 'texlive-libertinegc' 'texlive-libertinegc-doc' 'texlive-libertinus' 'texlive-libertinus-doc' 'texlive-libertinus-fonts' 'texlive-libertinus-fonts-doc' 'texlive-libertinus-fonts-fonts' 'texlive-libertinus-otf' 'texlive-libertinus-otf-doc' 'texlive-libertinus-otf-fonts' 'texlive-libertinus-type1' 'texlive-libertinus-type1-doc' 'texlive-libertinus-type1-fonts' 'texlive-libertinust1math' 'texlive-libertinust1math-doc' 'texlive-libertinust1math-fonts' 'texlive-libgreek' 'texlive-libgreek-doc' 'texlive-librarian' 'texlive-librarian-doc' 'texlive-librebaskerville' 'texlive-librebaskerville-doc' 'texlive-librebaskerville-fonts' 'texlive-librebodoni' 'texlive-librebodoni-doc' 'texlive-librebodoni-fonts' 'texlive-librecaslon' 'texlive-librecaslon-doc' 'texlive-librecaslon-fonts' 'texlive-libris' 'texlive-libris-doc' 'texlive-libris-fonts' 'texlive-lilyglyphs' 'texlive-lilyglyphs-bin' 'texlive-lilyglyphs-doc' 'texlive-lilyglyphs-fonts' 'texlive-limap' 'texlive-limap-doc' 'texlive-limecv' 'texlive-limecv-doc' 'texlive-linearA' 'texlive-linearA-doc' 'texlive-linearA-fonts' 'texlive-linegoal' 'texlive-linegoal-doc' 'texlive-lineno' 'texlive-lineno-doc' 'texlive-ling-macros' 'texlive-ling-macros-doc' 'texlive-linguex' 'texlive-linguex-doc' 'texlive-linop' 'texlive-linop-doc' 'texlive-lion-msc' 'texlive-lion-msc-doc' 'texlive-lipsum' 'texlive-lipsum-doc' 'texlive-lisp-on-tex' 'texlive-lisp-on-tex-doc' 'texlive-listbib' 'texlive-listbib-bin' 'texlive-listbib-doc' 'texlive-listing' 'texlive-listing-doc' 'texlive-listings' 'texlive-listings-doc' 'texlive-listings-ext' 'texlive-listings-ext-bin' 'texlive-listings-ext-doc' 'texlive-listlbls' 'texlive-listlbls-doc' 'texlive-listliketab' 'texlive-listliketab-doc' 'texlive-listofitems' 'texlive-listofitems-doc' 'texlive-listofsymbols' 'texlive-listofsymbols-doc' 'texlive-lithuanian' 'texlive-lithuanian-doc' 'texlive-liturg' 'texlive-liturg-doc' 'texlive-lkproof' 'texlive-lkproof-doc' 'texlive-llncsconf' 'texlive-llncsconf-doc' 'texlive-lm' 'texlive-lm-doc' 'texlive-lm-math' 'texlive-lm-math-doc' 'texlive-lm-math-fonts' 'texlive-lmake' 'texlive-lmake-doc' 'texlive-lni' 'texlive-lni-doc' 'texlive-lobster2' 'texlive-lobster2-doc' 'texlive-lobster2-fonts' 'texlive-locality' 'texlive-locality-doc' 'texlive-localloc' 'texlive-localloc-doc' 'texlive-logbox' 'texlive-logbox-doc' 'texlive-logical-markup-utils' 'texlive-logical-markup-utils-doc' 'texlive-logicproof' 'texlive-logicproof-doc' 'texlive-logicpuzzle' 'texlive-logicpuzzle-doc' 'texlive-logpap' 'texlive-logpap-doc' 'texlive-logreq' 'texlive-logreq-doc' 'texlive-lollipop' 'texlive-lollipop-bin' 'texlive-lollipop-doc' 'texlive-longdivision' 'texlive-longdivision-doc' 'texlive-longfbox' 'texlive-longfbox-doc' 'texlive-longfigure' 'texlive-longfigure-doc' 'texlive-longnamefilelist' 'texlive-longnamefilelist-doc' 'texlive-loops' 'texlive-loops-doc' 'texlive-lpform' 'texlive-lpform-doc' 'texlive-lpic' 'texlive-lpic-doc' 'texlive-lplfitch' 'texlive-lplfitch-doc' 'texlive-lps' 'texlive-lps-doc' 'texlive-lroundrect' 'texlive-lroundrect-doc' 'texlive-lsc' 'texlive-lsc-doc' 'texlive-lshort-bulgarian' 'texlive-lshort-chinese' 'texlive-lshort-czech' 'texlive-lshort-dutch' 'texlive-lshort-english' 'texlive-lshort-estonian' 'texlive-lshort-finnish' 'texlive-lshort-french' 'texlive-lshort-german' 'texlive-lshort-italian' 'texlive-lshort-japanese' 'texlive-lshort-korean' 'texlive-lshort-mongol' 'texlive-lshort-persian' 'texlive-lshort-polish' 'texlive-lshort-portuguese' 'texlive-lshort-russian' 'texlive-lshort-slovak' 'texlive-lshort-slovenian' 'texlive-lshort-spanish' 'texlive-lshort-thai' 'texlive-lshort-turkish' 'texlive-lshort-ukr' 'texlive-lshort-vietnamese' 'texlive-lstaddons' 'texlive-lstaddons-doc' 'texlive-lstbayes' 'texlive-lstbayes-doc' 'texlive-lstfiracode' 'texlive-lstfiracode-doc' 'texlive-lt3graph' 'texlive-lt3graph-doc' 'texlive-ltablex' 'texlive-ltablex-doc' 'texlive-ltabptch' 'texlive-ltabptch-doc' 'texlive-ltb2bib' 'texlive-ltb2bib-doc' 'texlive-ltxdockit' 'texlive-ltxdockit-doc' 'texlive-ltxfileinfo' 'texlive-ltxfileinfo-bin' 'texlive-ltxfileinfo-doc' 'texlive-ltxguidex' 'texlive-ltxguidex-doc' 'texlive-ltximg' 'texlive-ltximg-bin' 'texlive-ltximg-doc' 'texlive-ltxindex' 'texlive-ltxindex-doc' 'texlive-ltxkeys' 'texlive-ltxkeys-doc' 'texlive-ltxmisc' 'texlive-ltxnew' 'texlive-ltxnew-doc' 'texlive-ltxtools' 'texlive-ltxtools-doc' 'texlive-lua-alt-getopt' 'texlive-lua-alt-getopt-doc' 'texlive-lua-check-hyphen' 'texlive-lua-check-hyphen-doc' 'texlive-lua-visual-debug' 'texlive-lua-visual-debug-doc' 'texlive-lua2dox' 'texlive-lua2dox-bin' 'texlive-lua2dox-doc' 'texlive-luabibentry' 'texlive-luabibentry-doc' 'texlive-luabidi' 'texlive-luabidi-doc' 'texlive-luacode' 'texlive-luacode-doc' 'texlive-luahyphenrules' 'texlive-luahyphenrules-doc' 'texlive-luaimageembed' 'texlive-luaimageembed-doc' 'texlive-luaindex' 'texlive-luaindex-doc' 'texlive-luainputenc' 'texlive-luainputenc-doc' 'texlive-luaintro' 'texlive-lualatex-doc' 'texlive-lualatex-doc-de' 'texlive-lualatex-math' 'texlive-lualatex-math-doc' 'texlive-lualatex-truncate' 'texlive-lualatex-truncate-doc' 'texlive-lualibs' 'texlive-lualibs-doc' 'texlive-luamesh' 'texlive-luamesh-doc' 'texlive-luamplib' 'texlive-luamplib-doc' 'texlive-luaotfload' 'texlive-luaotfload-bin' 'texlive-luaotfload-doc' 'texlive-luapackageloader' 'texlive-luapackageloader-doc' 'texlive-luarandom' 'texlive-luarandom-doc' 'texlive-luasseq' 'texlive-luasseq-doc' 'texlive-luatex' 'texlive-luatex-bin' 'texlive-luatex-doc' 'texlive-luatex85' 'texlive-luatex85-doc' 'texlive-luatexbase' 'texlive-luatexbase-doc' 'texlive-luatexja' 'texlive-luatexja-doc' 'texlive-luatexko' 'texlive-luatexko-doc' 'texlive-luatextra' 'texlive-luatextra-doc' 'texlive-luatodonotes' 'texlive-luatodonotes-doc' 'texlive-luavlna' 'texlive-luavlna-doc' 'texlive-luaxml' 'texlive-luaxml-doc' 'texlive-lwarp' 'texlive-lwarp-bin' 'texlive-lwarp-doc' 'texlive-lxfonts' 'texlive-lxfonts-doc' 'texlive-lxfonts-fonts' 'texlive-ly1' 'texlive-ly1-doc' 'texlive-lyluatex' 'texlive-lyluatex-doc' 'texlive-m-tx' 'texlive-m-tx-bin' 'texlive-m-tx-doc' 'texlive-macros2e' 'texlive-macros2e-doc' 'texlive-macroswap' 'texlive-macroswap-doc' 'texlive-mafr' 'texlive-mafr-doc' 'texlive-magaz' 'texlive-magaz-doc' 'texlive-mailing' 'texlive-mailing-doc' 'texlive-mailmerge' 'texlive-mailmerge-doc' 'texlive-make4ht' 'texlive-make4ht-bin' 'texlive-make4ht-doc' 'texlive-makebarcode' 'texlive-makebarcode-doc' 'texlive-makebase' 'texlive-makebase-doc' 'texlive-makebox' 'texlive-makebox-doc' 'texlive-makecell' 'texlive-makecell-doc' 'texlive-makecirc' 'texlive-makecirc-doc' 'texlive-makecmds' 'texlive-makecmds-doc' 'texlive-makecookbook' 'texlive-makedtx' 'texlive-makedtx-bin' 'texlive-makedtx-doc' 'texlive-makeglos' 'texlive-makeglos-doc' 'texlive-makeindex' 'texlive-makeindex-bin' 'texlive-makeindex-doc' 'texlive-makeplot' 'texlive-makeplot-doc' 'texlive-maker' 'texlive-maker-doc' 'texlive-makeshape' 'texlive-makeshape-doc' 'texlive-mandi' 'texlive-mandi-doc' 'texlive-manfnt' 'texlive-manfnt-font' 'texlive-manfnt-font-fonts' 'texlive-manuscript' 'texlive-manuscript-doc' 'texlive-manyind' 'texlive-manyind-doc' 'texlive-margbib' 'texlive-margbib-doc' 'texlive-marginfit' 'texlive-marginfit-doc' 'texlive-marginfix' 'texlive-marginfix-doc' 'texlive-marginnote' 'texlive-marginnote-doc' 'texlive-markdown' 'texlive-markdown-doc' 'texlive-marvosym' 'texlive-marvosym-doc' 'texlive-marvosym-fonts' 'texlive-matc3' 'texlive-matc3-doc' 'texlive-matc3mem' 'texlive-matc3mem-doc' 'texlive-match_parens' 'texlive-match_parens-bin' 'texlive-match_parens-doc' 'texlive-math-e' 'texlive-math-into-latex-4' 'texlive-mathabx' 'texlive-mathabx-doc' 'texlive-mathabx-type1' 'texlive-mathabx-type1-doc' 'texlive-mathabx-type1-fonts' 'texlive-mathalfa' 'texlive-mathalfa-doc' 'texlive-mathastext' 'texlive-mathastext-doc' 'texlive-mathcomp' 'texlive-mathcomp-doc' 'texlive-mathdesign' 'texlive-mathdesign-doc' 'texlive-mathdesign-fonts' 'texlive-mathdots' 'texlive-mathdots-doc' 'texlive-mathexam' 'texlive-mathexam-doc' 'texlive-mathfam256' 'texlive-mathfam256-doc' 'texlive-mathfixs' 'texlive-mathfixs-doc' 'texlive-mathfont' 'texlive-mathfont-doc' 'texlive-mathpartir' 'texlive-mathpartir-doc' 'texlive-mathpazo' 'texlive-mathpazo-doc' 'texlive-mathpazo-fonts' 'texlive-mathpunctspace' 'texlive-mathpunctspace-doc' 'texlive-maths-symbols' 'texlive-mathspec' 'texlive-mathspec-doc' 'texlive-mathspic' 'texlive-mathspic-bin' 'texlive-mathspic-doc' 'texlive-mathtools' 'texlive-mathtools-doc' 'texlive-matlab-prettifier' 'texlive-matlab-prettifier-doc' 'texlive-mattens' 'texlive-mattens-doc' 'texlive-maybemath' 'texlive-maybemath-doc' 'texlive-mcaption' 'texlive-mcaption-doc' 'texlive-mceinleger' 'texlive-mceinleger-doc' 'texlive-mcexam' 'texlive-mcexam-doc' 'texlive-mcf2graph' 'texlive-mcf2graph-doc' 'texlive-mcite' 'texlive-mcite-doc' 'texlive-mciteplus' 'texlive-mciteplus-doc' 'texlive-mcmthesis' 'texlive-mcmthesis-doc' 'texlive-mdframed' 'texlive-mdframed-doc' 'texlive-mdputu' 'texlive-mdputu-doc' 'texlive-mdsymbol' 'texlive-mdsymbol-doc' 'texlive-mdsymbol-fonts' 'texlive-mdwtools' 'texlive-mdwtools-doc' 'texlive-media9' 'texlive-media9-doc' 'texlive-medstarbeamer' 'texlive-medstarbeamer-doc' 'texlive-meetingmins' 'texlive-meetingmins-doc' 'texlive-memdesign' 'texlive-memexsupp' 'texlive-memexsupp-doc' 'texlive-memoir' 'texlive-memoir-doc' 'texlive-memory' 'texlive-memory-doc' 'texlive-memorygraphs' 'texlive-memorygraphs-doc' 'texlive-mendex-doc' 'texlive-mendex-doc-doc' 'texlive-mensa-tex' 'texlive-mensa-tex-doc' 'texlive-mentis' 'texlive-mentis-doc' 'texlive-menu' 'texlive-menu-doc' 'texlive-menukeys' 'texlive-menukeys-doc' 'texlive-merriweather' 'texlive-merriweather-doc' 'texlive-merriweather-fonts' 'texlive-metafont' 'texlive-metafont-beginners' 'texlive-metafont-bin' 'texlive-metafont-doc' 'texlive-metago' 'texlive-metago-doc' 'texlive-metalogo' 'texlive-metalogo-doc' 'texlive-metalogox' 'texlive-metalogox-doc' 'texlive-metaobj' 'texlive-metaobj-doc' 'texlive-metaplot' 'texlive-metaplot-doc' 'texlive-metapost' 'texlive-metapost-bin' 'texlive-metapost-colorbrewer' 'texlive-metapost-colorbrewer-doc' 'texlive-metapost-doc' 'texlive-metapost-examples' 'texlive-metapost-fonts' 'texlive-metatex' 'texlive-metatex-doc' 'texlive-metatype1' 'texlive-metauml' 'texlive-metauml-doc' 'texlive-method' 'texlive-method-doc' 'texlive-metre' 'texlive-metre-doc' 'texlive-metrix' 'texlive-metrix-doc' 'texlive-mex' 'texlive-mex-bin' 'texlive-mex-doc' 'texlive-mf2pt1' 'texlive-mf2pt1-bin' 'texlive-mf2pt1-doc' 'texlive-mfirstuc' 'texlive-mfirstuc-doc' 'texlive-mflogo' 'texlive-mflogo-doc' 'texlive-mflogo-font' 'texlive-mflogo-font-doc' 'texlive-mflogo-font-fonts' 'texlive-mflua' 'texlive-mflua-bin' 'texlive-mfnfss' 'texlive-mfnfss-doc' 'texlive-mfpic' 'texlive-mfpic-doc' 'texlive-mfpic4ode' 'texlive-mfpic4ode-doc' 'texlive-mftinc' 'texlive-mftinc-doc' 'texlive-mfware' 'texlive-mfware-bin' 'texlive-mfware-doc' 'texlive-mgltex' 'texlive-mgltex-doc' 'texlive-mhchem' 'texlive-mhchem-doc' 'texlive-mhequ' 'texlive-mhequ-doc' 'texlive-mi-solns' 'texlive-mi-solns-doc' 'texlive-miama' 'texlive-miama-doc' 'texlive-miama-fonts' 'texlive-microtype' 'texlive-microtype-de' 'texlive-microtype-doc' 'texlive-midnight' 'texlive-midnight-doc' 'texlive-midpage' 'texlive-midpage-doc' 'texlive-miller' 'texlive-miller-doc' 'texlive-milog' 'texlive-milog-doc' 'texlive-milsymb' 'texlive-milsymb-doc' 'texlive-minibox' 'texlive-minibox-doc' 'texlive-minidocument' 'texlive-minidocument-doc' 'texlive-minifp' 'texlive-minifp-doc' 'texlive-minipage-marginpar' 'texlive-minipage-marginpar-doc' 'texlive-miniplot' 'texlive-miniplot-doc' 'texlive-minitoc' 'texlive-minitoc-doc' 'texlive-minorrevision' 'texlive-minorrevision-doc' 'texlive-minted' 'texlive-minted-doc' 'texlive-mintspirit' 'texlive-mintspirit-doc' 'texlive-mintspirit-fonts' 'texlive-minutes' 'texlive-minutes-doc' 'texlive-missaali' 'texlive-missaali-doc' 'texlive-missaali-fonts' 'texlive-mkgrkindex' 'texlive-mkgrkindex-bin' 'texlive-mkgrkindex-doc' 'texlive-mkjobtexmf' 'texlive-mkjobtexmf-bin' 'texlive-mkjobtexmf-doc' 'texlive-mkpattern' 'texlive-mkpattern-doc' 'texlive-mkpic' 'texlive-mkpic-bin' 'texlive-mkpic-doc' 'texlive-mla-paper' 'texlive-mla-paper-doc' 'texlive-mlist' 'texlive-mlist-doc' 'texlive-mltex' 'texlive-mltex-bin' 'texlive-mltex-doc' 'texlive-mmap' 'texlive-mmap-doc' 'texlive-mnotes' 'texlive-mnotes-doc' 'texlive-mnras' 'texlive-mnras-doc' 'texlive-mnsymbol' 'texlive-mnsymbol-doc' 'texlive-mnsymbol-fonts' 'texlive-modeles-factures-belges-assocs' 'texlive-modeles-factures-belges-assocs-doc' 'texlive-moderncv' 'texlive-moderncv-doc' 'texlive-modernposter' 'texlive-modernposter-doc' 'texlive-moderntimeline' 'texlive-moderntimeline-doc' 'texlive-modiagram' 'texlive-modiagram-doc' 'texlive-modref' 'texlive-modref-doc' 'texlive-modroman' 'texlive-modroman-doc' 'texlive-modular' 'texlive-modular-doc' 'texlive-modulus' 'texlive-modulus-doc' 'texlive-mongolian-babel' 'texlive-mongolian-babel-doc' 'texlive-monofill' 'texlive-monofill-doc' 'texlive-montex' 'texlive-montex-doc' 'texlive-montex-fonts' 'texlive-montserrat' 'texlive-montserrat-doc' 'texlive-montserrat-fonts' 'texlive-moodle' 'texlive-moodle-doc' 'texlive-moreenum' 'texlive-moreenum-doc' 'texlive-morefloats' 'texlive-morefloats-doc' 'texlive-morehype' 'texlive-morehype-doc' 'texlive-moresize' 'texlive-moresize-doc' 'texlive-moreverb' 'texlive-moreverb-doc' 'texlive-morewrites' 'texlive-morewrites-doc' 'texlive-morisawa' 'texlive-morisawa-doc' 'texlive-movie15' 'texlive-movie15-doc' 'texlive-mp3d' 'texlive-mp3d-doc' 'texlive-mparhack' 'texlive-mparhack-doc' 'texlive-mparrows' 'texlive-mparrows-doc' 'texlive-mpattern' 'texlive-mpattern-doc' 'texlive-mpcolornames' 'texlive-mpcolornames-doc' 'texlive-mpgraphics' 'texlive-mpgraphics-doc' 'texlive-mpman-ru' 'texlive-mpostinl' 'texlive-mpostinl-doc' 'texlive-mptopdf' 'texlive-mptopdf-bin' 'texlive-mptopdf-doc' 'texlive-mptrees' 'texlive-mptrees-doc' 'texlive-ms' 'texlive-ms-doc' 'texlive-msc' 'texlive-msc-doc' 'texlive-msg' 'texlive-msg-doc' 'texlive-mslapa' 'texlive-mslapa-doc' 'texlive-msu-thesis' 'texlive-msu-thesis-doc' 'texlive-mtgreek' 'texlive-mtgreek-doc' 'texlive-mucproc' 'texlive-mucproc-doc' 'texlive-mugsthesis' 'texlive-mugsthesis-doc' 'texlive-multenum' 'texlive-multenum-doc' 'texlive-multiaudience' 'texlive-multiaudience-doc' 'texlive-multibbl' 'texlive-multibbl-doc' 'texlive-multibib' 'texlive-multibib-doc' 'texlive-multibibliography' 'texlive-multibibliography-bin' 'texlive-multibibliography-doc' 'texlive-multicap' 'texlive-multicap-doc' 'texlive-multicolrule' 'texlive-multicolrule-doc' 'texlive-multidef' 'texlive-multidef-doc' 'texlive-multido' 'texlive-multido-doc' 'texlive-multienv' 'texlive-multienv-doc' 'texlive-multiexpand' 'texlive-multiexpand-doc' 'texlive-multilang' 'texlive-multilang-doc' 'texlive-multiobjective' 'texlive-multiobjective-doc' 'texlive-multirow' 'texlive-multirow-doc' 'texlive-munich' 'texlive-munich-doc' 'texlive-musicography' 'texlive-musicography-doc' 'texlive-musikui' 'texlive-musikui-doc' 'texlive-musixguit' 'texlive-musixguit-doc' 'texlive-musixtex' 'texlive-musixtex-bin' 'texlive-musixtex-doc' 'texlive-musixtex-fonts' 'texlive-musixtex-fonts-doc' 'texlive-musixtex-fonts-fonts' 'texlive-musixtnt' 'texlive-musixtnt-bin' 'texlive-musixtnt-doc' 'texlive-musuos' 'texlive-musuos-doc' 'texlive-muthesis' 'texlive-muthesis-doc' 'texlive-mversion' 'texlive-mversion-doc' 'texlive-mwcls' 'texlive-mwcls-doc' 'texlive-mwe' 'texlive-mwe-doc' 'texlive-mweights' 'texlive-mweights-doc' 'texlive-mxedruli' 'texlive-mxedruli-doc' 'texlive-mxedruli-fonts' 'texlive-mychemistry' 'texlive-mychemistry-doc' 'texlive-mycv' 'texlive-mycv-doc' 'texlive-mylatexformat' 'texlive-mylatexformat-doc' 'texlive-mynsfc' 'texlive-mynsfc-doc' 'texlive-na-box' 'texlive-na-box-doc' 'texlive-na-position' 'texlive-na-position-doc' 'texlive-nag' 'texlive-nag-doc' 'texlive-nameauth' 'texlive-nameauth-doc' 'texlive-namespc' 'texlive-namespc-doc' 'texlive-nanumtype1' 'texlive-nanumtype1-doc' 'texlive-nanumtype1-fonts' 'texlive-nar' 'texlive-natbib' 'texlive-natbib-doc' 'texlive-natded' 'texlive-natded-doc' 'texlive-nath' 'texlive-nath-doc' 'texlive-nature' 'texlive-nature-doc' 'texlive-navigator' 'texlive-navigator-doc' 'texlive-navydocs' 'texlive-navydocs-doc' 'texlive-ncclatex' 'texlive-ncclatex-doc' 'texlive-ncctools' 'texlive-ncctools-doc' 'texlive-ncntrsbk' 'texlive-ncntrsbk-fonts' 'texlive-nddiss' 'texlive-nddiss-doc' 'texlive-ndsu-thesis' 'texlive-ndsu-thesis-doc' 'texlive-needspace' 'texlive-needspace-doc' 'texlive-nestquot' 'texlive-neuralnetwork' 'texlive-neuralnetwork-doc' 'texlive-nevelok' 'texlive-nevelok-doc' 'texlive-newcommand' 'texlive-newenviron' 'texlive-newenviron-doc' 'texlive-newfile' 'texlive-newfile-doc' 'texlive-newlfm' 'texlive-newlfm-doc' 'texlive-newpx' 'texlive-newpx-doc' 'texlive-newpx-fonts' 'texlive-newsletr' 'texlive-newsletr-doc' 'texlive-newspaper' 'texlive-newspaper-doc' 'texlive-newtx' 'texlive-newtx-doc' 'texlive-newtx-fonts' 'texlive-newtxsf' 'texlive-newtxsf-doc' 'texlive-newtxsf-fonts' 'texlive-newtxtt' 'texlive-newtxtt-doc' 'texlive-newtxtt-fonts' 'texlive-newunicodechar' 'texlive-newunicodechar-doc' 'texlive-newvbtm' 'texlive-newvbtm-doc' 'texlive-newverbs' 'texlive-newverbs-doc' 'texlive-nextpage' 'texlive-nfssext-cfr' 'texlive-nfssext-cfr-doc' 'texlive-nicefilelist' 'texlive-nicefilelist-doc' 'texlive-niceframe' 'texlive-niceframe-doc' 'texlive-niceframe-type1' 'texlive-niceframe-type1-doc' 'texlive-niceframe-type1-fonts' 'texlive-nicematrix' 'texlive-nicematrix-doc' 'texlive-nicetext' 'texlive-nicetext-doc' 'texlive-nidanfloat' 'texlive-nidanfloat-doc' 'texlive-nih' 'texlive-nih-doc' 'texlive-nihbiosketch' 'texlive-nihbiosketch-doc' 'texlive-nimbus15' 'texlive-nimbus15-doc' 'texlive-nimbus15-fonts' 'texlive-njurepo' 'texlive-njurepo-doc' 'texlive-nkarta' 'texlive-nkarta-doc' 'texlive-nlctdoc' 'texlive-nlctdoc-doc' 'texlive-nmbib' 'texlive-nmbib-doc' 'texlive-noconflict' 'texlive-noconflict-doc' 'texlive-nodetree' 'texlive-nodetree-doc' 'texlive-noindentafter' 'texlive-noindentafter-doc' 'texlive-noitcrul' 'texlive-noitcrul-doc' 'texlive-nolbreaks' 'texlive-nolbreaks-doc' 'texlive-nomencl' 'texlive-nomencl-doc' 'texlive-nomentbl' 'texlive-nomentbl-doc' 'texlive-nonfloat' 'texlive-nonfloat-doc' 'texlive-nonumonpart' 'texlive-nonumonpart-doc' 'texlive-nopageno' 'texlive-nopageno-doc' 'texlive-norasi-c90' 'texlive-normalcolor' 'texlive-normalcolor-doc' 'texlive-nostarch' 'texlive-nostarch-doc' 'texlive-notes' 'texlive-notes-doc' 'texlive-notes2bib' 'texlive-notes2bib-doc' 'texlive-notespages' 'texlive-notespages-doc' 'texlive-notestex' 'texlive-notestex-doc' 'texlive-notex-bst' 'texlive-noto' 'texlive-noto-doc' 'texlive-noto-fonts' 'texlive-notoccite' 'texlive-notoccite-doc' 'texlive-novel' 'texlive-novel-doc' 'texlive-novel-fonts' 'texlive-nowidow' 'texlive-nowidow-doc' 'texlive-nox' 'texlive-nox-doc' 'texlive-npp-for-context' 'texlive-nrc' 'texlive-nrc-doc' 'texlive-ntgclass' 'texlive-ntgclass-doc' 'texlive-ntheorem' 'texlive-ntheorem-doc' 'texlive-ntheorem-vn' 'texlive-nuc' 'texlive-nuc-doc' 'texlive-nucleardata' 'texlive-nucleardata-doc' 'texlive-numberedblock' 'texlive-numberedblock-doc' 'texlive-numericplots' 'texlive-numericplots-doc' 'texlive-numname' 'texlive-numname-doc' 'texlive-numnameru' 'texlive-numnameru-doc' 'texlive-numprint' 'texlive-numprint-doc' 'texlive-numspell' 'texlive-numspell-doc' 'texlive-nwejm' 'texlive-nwejm-doc' 'texlive-oberdiek' 'texlive-oberdiek-doc' 'texlive-objectz' 'texlive-objectz-doc' 'texlive-obnov' 'texlive-obnov-doc' 'texlive-ocg-p' 'texlive-ocg-p-doc' 'texlive-ocgx' 'texlive-ocgx-doc' 'texlive-ocgx2' 'texlive-ocgx2-doc' 'texlive-ocherokee' 'texlive-ocherokee-doc' 'texlive-ocherokee-fonts' 'texlive-ocr-b' 'texlive-ocr-b-doc' 'texlive-ocr-b-outline' 'texlive-ocr-b-outline-doc' 'texlive-ocr-b-outline-fonts' 'texlive-ocr-latex' 'texlive-ocr-latex-doc' 'texlive-octave' 'texlive-octave-doc' 'texlive-octavo' 'texlive-octavo-doc' 'texlive-odsfile' 'texlive-odsfile-doc' 'texlive-ofs' 'texlive-ofs-doc' 'texlive-ogham' 'texlive-ogham-doc' 'texlive-oinuit' 'texlive-oinuit-doc' 'texlive-oinuit-fonts' 'texlive-old-arrows' 'texlive-old-arrows-doc' 'texlive-old-arrows-fonts' 'texlive-oldlatin' 'texlive-oldlatin-doc' 'texlive-oldstandard' 'texlive-oldstandard-doc' 'texlive-oldstandard-fonts' 'texlive-oldstyle' 'texlive-oldstyle-doc' 'texlive-olsak-misc' 'texlive-olsak-misc-doc' 'texlive-omega' 'texlive-omega-doc' 'texlive-omega-fonts' 'texlive-omegaware' 'texlive-omegaware-bin' 'texlive-onedown' 'texlive-onedown-doc' 'texlive-onlyamsmath' 'texlive-onlyamsmath-doc' 'texlive-onrannual' 'texlive-onrannual-doc' 'texlive-opcit' 'texlive-opcit-doc' 'texlive-opensans' 'texlive-opensans-doc' 'texlive-opensans-fonts' 'texlive-oplotsymbl' 'texlive-oplotsymbl-doc' 'texlive-opteng' 'texlive-opteng-doc' 'texlive-optidef' 'texlive-optidef-doc' 'texlive-optional' 'texlive-optional-doc' 'texlive-options' 'texlive-options-doc' 'texlive-ordinalpt' 'texlive-ordinalpt-doc' 'texlive-orkhun' 'texlive-orkhun-doc' 'texlive-oscola' 'texlive-oscola-doc' 'texlive-ot-tableau' 'texlive-ot-tableau-doc' 'texlive-othello' 'texlive-othello-doc' 'texlive-othelloboard' 'texlive-othelloboard-doc' 'texlive-otibet' 'texlive-otibet-doc' 'texlive-oubraces' 'texlive-oubraces-doc' 'texlive-outline' 'texlive-outline-doc' 'texlive-outliner' 'texlive-outliner-doc' 'texlive-outlines' 'texlive-outlines-doc' 'texlive-outlining' 'texlive-outlining-doc' 'texlive-overlays' 'texlive-overlays-doc' 'texlive-overlock' 'texlive-overlock-doc' 'texlive-overlock-fonts' 'texlive-overpic' 'texlive-overpic-doc' 'texlive-pacioli' 'texlive-pacioli-doc' 'texlive-padauk' 'texlive-padauk-doc' 'texlive-padauk-fonts' 'texlive-padcount' 'texlive-padcount-doc' 'texlive-pagecolor' 'texlive-pagecolor-doc' 'texlive-pagecont' 'texlive-pagecont-doc' 'texlive-pagenote' 'texlive-pagenote-doc' 'texlive-pagerange' 'texlive-pagerange-doc' 'texlive-pageslts' 'texlive-pageslts-doc' 'texlive-palatino' 'texlive-palatino-fonts' 'texlive-paper' 'texlive-paper-doc' 'texlive-papercdcase' 'texlive-papercdcase-doc' 'texlive-papermas' 'texlive-papermas-doc' 'texlive-papertex' 'texlive-papertex-doc' 'texlive-paracol' 'texlive-paracol-doc' 'texlive-parades' 'texlive-parades-doc' 'texlive-paralist' 'texlive-paralist-doc' 'texlive-parallel' 'texlive-parallel-doc' 'texlive-paratype' 'texlive-paratype-doc' 'texlive-paratype-fonts' 'texlive-paresse' 'texlive-paresse-doc' 'texlive-parnotes' 'texlive-parnotes-doc' 'texlive-parrun' 'texlive-parrun-doc' 'texlive-parselines' 'texlive-parselines-doc' 'texlive-parskip' 'texlive-parskip-doc' 'texlive-pas-cours' 'texlive-pas-cours-doc' 'texlive-pas-crosswords' 'texlive-pas-crosswords-doc' 'texlive-pas-cv' 'texlive-pas-cv-doc' 'texlive-pas-tableur' 'texlive-pas-tableur-doc' 'texlive-passivetex' 'texlive-patch' 'texlive-patchcmd' 'texlive-patchcmd-doc' 'texlive-patgen' 'texlive-patgen-bin' 'texlive-patgen2-tutorial' 'texlive-path' 'texlive-path-doc' 'texlive-pauldoc' 'texlive-pauldoc-doc' 'texlive-pawpict' 'texlive-pawpict-doc' 'texlive-pax' 'texlive-pax-bin' 'texlive-pax-doc' 'texlive-pb-diagram' 'texlive-pb-diagram-doc' 'texlive-pbibtex-base' 'texlive-pbibtex-base-doc' 'texlive-pbox' 'texlive-pbox-doc' 'texlive-pbsheet' 'texlive-pbsheet-doc' 'texlive-pdf-trans' 'texlive-pdf-trans-doc' 'texlive-pdf14' 'texlive-pdf14-doc' 'texlive-pdfbook2' 'texlive-pdfbook2-bin' 'texlive-pdfbook2-doc' 'texlive-pdfcomment' 'texlive-pdfcomment-doc' 'texlive-pdfcprot' 'texlive-pdfcprot-doc' 'texlive-pdfcrop' 'texlive-pdfcrop-bin' 'texlive-pdfcrop-doc' 'texlive-pdfjam' 'texlive-pdfjam-bin' 'texlive-pdfjam-doc' 'texlive-pdflatexpicscale' 'texlive-pdflatexpicscale-bin' 'texlive-pdflatexpicscale-doc' 'texlive-pdfmarginpar' 'texlive-pdfmarginpar-doc' 'texlive-pdfoverlay' 'texlive-pdfoverlay-doc' 'texlive-pdfpagediff' 'texlive-pdfpagediff-doc' 'texlive-pdfpages' 'texlive-pdfpages-doc' 'texlive-pdfpc-movie' 'texlive-pdfpc-movie-doc' 'texlive-pdfprivacy' 'texlive-pdfprivacy-doc' 'texlive-pdfreview' 'texlive-pdfreview-doc' 'texlive-pdfscreen' 'texlive-pdfscreen-doc' 'texlive-pdfslide' 'texlive-pdfslide-doc' 'texlive-pdfsync' 'texlive-pdfsync-doc' 'texlive-pdftex' 'texlive-pdftex-bin' 'texlive-pdftex-doc' 'texlive-pdftex-fonts' 'texlive-pdftex-quiet' 'texlive-pdftex-quiet-bin' 'texlive-pdftex-quiet-doc' 'texlive-pdftools' 'texlive-pdftools-bin' 'texlive-pdftools-doc' 'texlive-pdftricks' 'texlive-pdftricks-doc' 'texlive-pdftricks2' 'texlive-pdftricks2-doc' 'texlive-pdfwin' 'texlive-pdfwin-doc' 'texlive-pdfx' 'texlive-pdfx-doc' 'texlive-pdfxup' 'texlive-pdfxup-bin' 'texlive-pdfxup-doc' 'texlive-pecha' 'texlive-pecha-doc' 'texlive-pedigree-perl' 'texlive-pedigree-perl-bin' 'texlive-pedigree-perl-doc' 'texlive-penrose' 'texlive-penrose-doc' 'texlive-perception' 'texlive-perception-doc' 'texlive-perfectcut' 'texlive-perfectcut-doc' 'texlive-perltex' 'texlive-perltex-bin' 'texlive-perltex-doc' 'texlive-permute' 'texlive-permute-doc' 'texlive-persian-bib' 'texlive-persian-bib-doc' 'texlive-petiteannonce' 'texlive-petiteannonce-doc' 'texlive-petri-nets' 'texlive-petri-nets-bin' 'texlive-petri-nets-doc' 'texlive-pfarrei' 'texlive-pfarrei-bin' 'texlive-pfarrei-doc' 'texlive-pgf' 'texlive-pgf-blur' 'texlive-pgf-blur-doc' 'texlive-pgf-cmykshadings' 'texlive-pgf-cmykshadings-doc' 'texlive-pgf-doc' 'texlive-pgf-soroban' 'texlive-pgf-soroban-doc' 'texlive-pgf-spectra' 'texlive-pgf-spectra-doc' 'texlive-pgf-umlcd' 'texlive-pgf-umlcd-doc' 'texlive-pgf-umlsd' 'texlive-pgf-umlsd-doc' 'texlive-pgfgantt' 'texlive-pgfgantt-doc' 'texlive-pgfkeyx' 'texlive-pgfkeyx-doc' 'texlive-pgfmolbio' 'texlive-pgfmolbio-doc' 'texlive-pgfopts' 'texlive-pgfopts-doc' 'texlive-pgfornament' 'texlive-pgfornament-doc' 'texlive-pgfornament-han' 'texlive-pgfornament-han-doc' 'texlive-pgfplots' 'texlive-pgfplots-doc' 'texlive-phaistos' 'texlive-phaistos-doc' 'texlive-phaistos-fonts' 'texlive-phffullpagefigure' 'texlive-phffullpagefigure-doc' 'texlive-phfnote' 'texlive-phfnote-doc' 'texlive-phfparen' 'texlive-phfparen-doc' 'texlive-phfqit' 'texlive-phfqit-doc' 'texlive-phfquotetext' 'texlive-phfquotetext-doc' 'texlive-phfsvnwatermark' 'texlive-phfsvnwatermark-doc' 'texlive-phfthm' 'texlive-phfthm-doc' 'texlive-philex' 'texlive-philex-doc' 'texlive-philokalia' 'texlive-philokalia-doc' 'texlive-philokalia-fonts' 'texlive-philosophersimprint' 'texlive-philosophersimprint-doc' 'texlive-phonenumbers' 'texlive-phonenumbers-doc' 'texlive-phonetic' 'texlive-phonetic-doc' 'texlive-phonrule' 'texlive-phonrule-doc' 'texlive-photo' 'texlive-photo-doc' 'texlive-physics' 'texlive-physics-doc' 'texlive-piano' 'texlive-piano-doc' 'texlive-picinpar' 'texlive-picinpar-doc' 'texlive-pict2e' 'texlive-pict2e-doc' 'texlive-pictex' 'texlive-pictex-doc' 'texlive-pictex2' 'texlive-pictexsum' 'texlive-piechartmp' 'texlive-piechartmp-doc' 'texlive-piff' 'texlive-piff-doc' 'texlive-pigpen' 'texlive-pigpen-doc' 'texlive-pigpen-fonts' 'texlive-pinlabel' 'texlive-pinlabel-doc' 'texlive-pitex' 'texlive-pitex-doc' 'texlive-pittetd' 'texlive-pittetd-doc' 'texlive-pixelart' 'texlive-pixelart-doc' 'texlive-pkfix' 'texlive-pkfix-bin' 'texlive-pkfix-doc' 'texlive-pkfix-helper' 'texlive-pkfix-helper-bin' 'texlive-pkfix-helper-doc' 'texlive-pkgloader' 'texlive-pkgloader-doc' 'texlive-pkuthss' 'texlive-pkuthss-doc' 'texlive-pl' 'texlive-pl-doc' 'texlive-pl-fonts' 'texlive-placeat' 'texlive-placeat-doc' 'texlive-placeins' 'texlive-placeins-doc' 'texlive-placeins-plain' 'texlive-plain' 'texlive-plain-doc' 'texlive-plainpkg' 'texlive-plainpkg-doc' 'texlive-plantslabels' 'texlive-plantslabels-doc' 'texlive-plantuml' 'texlive-plantuml-doc' 'texlive-plari' 'texlive-plari-doc' 'texlive-plates' 'texlive-plates-doc' 'texlive-platex' 'texlive-platex-bin' 'texlive-platex-doc' 'texlive-platex-tools' 'texlive-platex-tools-doc' 'texlive-platexcheat' 'texlive-plautopatch' 'texlive-plautopatch-doc' 'texlive-play' 'texlive-play-doc' 'texlive-playfair' 'texlive-playfair-doc' 'texlive-playfair-fonts' 'texlive-plex' 'texlive-plex-doc' 'texlive-plex-fonts' 'texlive-plex-otf' 'texlive-plex-otf-doc' 'texlive-plipsum' 'texlive-plipsum-doc' 'texlive-plnfss' 'texlive-plnfss-doc' 'texlive-plstmary' 'texlive-plstmary-doc' 'texlive-plweb' 'texlive-plweb-doc' 'texlive-pm-isomath' 'texlive-pm-isomath-doc' 'texlive-pmgraph' 'texlive-pmgraph-doc' 'texlive-pmx' 'texlive-pmx-bin' 'texlive-pmx-doc' 'texlive-pmxchords' 'texlive-pmxchords-bin' 'texlive-pmxchords-doc' 'texlive-pnas2009' 'texlive-poemscol' 'texlive-poemscol-doc' 'texlive-poetry' 'texlive-poetry-doc' 'texlive-poetrytex' 'texlive-poetrytex-doc' 'texlive-polexpr' 'texlive-polexpr-doc' 'texlive-polski' 'texlive-polski-doc' 'texlive-poltawski' 'texlive-poltawski-doc' 'texlive-poltawski-fonts' 'texlive-polyglossia' 'texlive-polyglossia-doc' 'texlive-polynom' 'texlive-polynom-doc' 'texlive-polynomial' 'texlive-polynomial-doc' 'texlive-polytable' 'texlive-polytable-doc' 'texlive-poormanlog' 'texlive-poormanlog-doc' 'texlive-postage' 'texlive-postage-doc' 'texlive-postcards' 'texlive-postcards-doc' 'texlive-poster-mac' 'texlive-poster-mac-doc' 'texlive-powerdot' 'texlive-powerdot-FUBerlin' 'texlive-powerdot-FUBerlin-doc' 'texlive-powerdot-doc' 'texlive-powerdot-tuliplab' 'texlive-powerdot-tuliplab-doc' 'texlive-ppr-prv' 'texlive-ppr-prv-doc' 'texlive-pracjourn' 'texlive-pracjourn-doc' 'texlive-preprint' 'texlive-preprint-doc' 'texlive-prerex' 'texlive-prerex-doc' 'texlive-present' 'texlive-present-doc' 'texlive-presentations' 'texlive-presentations-en' 'texlive-pressrelease' 'texlive-pressrelease-doc' 'texlive-prettyref' 'texlive-prettyref-doc' 'texlive-preview' 'texlive-preview-doc' 'texlive-prftree' 'texlive-prftree-doc' 'texlive-printlen' 'texlive-printlen-doc' 'texlive-proba' 'texlive-proba-doc' 'texlive-probsoln' 'texlive-probsoln-doc' 'texlive-procIAGssymp' 'texlive-procIAGssymp-doc' 'texlive-prodint' 'texlive-prodint-doc' 'texlive-prodint-fonts' 'texlive-productbox' 'texlive-productbox-doc' 'texlive-program' 'texlive-program-doc' 'texlive-progress' 'texlive-progress-doc' 'texlive-progressbar' 'texlive-progressbar-doc' 'texlive-proofread' 'texlive-proofread-doc' 'texlive-prooftrees' 'texlive-prooftrees-doc' 'texlive-properties' 'texlive-properties-doc' 'texlive-proposal' 'texlive-proposal-doc' 'texlive-prosper' 'texlive-prosper-doc' 'texlive-protex' 'texlive-protex-doc' 'texlive-protocol' 'texlive-protocol-doc' 'texlive-przechlewski-book' 'texlive-przechlewski-book-doc' 'texlive-ps2pk' 'texlive-ps2pk-bin' 'texlive-psbao' 'texlive-psbao-doc' 'texlive-pseudocode' 'texlive-pseudocode-doc' 'texlive-psfrag' 'texlive-psfrag-doc' 'texlive-psfrag-italian' 'texlive-psfragx' 'texlive-psfragx-doc' 'texlive-psgo' 'texlive-psgo-doc' 'texlive-psizzl' 'texlive-psizzl-doc' 'texlive-pslatex' 'texlive-psnfss' 'texlive-psnfss-doc' 'texlive-pspicture' 'texlive-pspicture-doc' 'texlive-pst-2dplot' 'texlive-pst-2dplot-doc' 'texlive-pst-3d' 'texlive-pst-3d-doc' 'texlive-pst-3dplot' 'texlive-pst-3dplot-doc' 'texlive-pst-abspos' 'texlive-pst-abspos-doc' 'texlive-pst-am' 'texlive-pst-am-doc' 'texlive-pst-antiprism' 'texlive-pst-antiprism-doc' 'texlive-pst-arrow' 'texlive-pst-arrow-doc' 'texlive-pst-asr' 'texlive-pst-asr-doc' 'texlive-pst-bar' 'texlive-pst-bar-doc' 'texlive-pst-barcode' 'texlive-pst-barcode-doc' 'texlive-pst-bezier' 'texlive-pst-bezier-doc' 'texlive-pst-blur' 'texlive-pst-blur-doc' 'texlive-pst-bspline' 'texlive-pst-bspline-doc' 'texlive-pst-calculate' 'texlive-pst-calculate-doc' 'texlive-pst-calendar' 'texlive-pst-calendar-doc' 'texlive-pst-cie' 'texlive-pst-cie-doc' 'texlive-pst-circ' 'texlive-pst-circ-doc' 'texlive-pst-coil' 'texlive-pst-coil-doc' 'texlive-pst-contourplot' 'texlive-pst-contourplot-doc' 'texlive-pst-cox' 'texlive-pst-cox-doc' 'texlive-pst-dart' 'texlive-pst-dart-doc' 'texlive-pst-dbicons' 'texlive-pst-dbicons-doc' 'texlive-pst-diffraction' 'texlive-pst-diffraction-doc' 'texlive-pst-electricfield' 'texlive-pst-electricfield-doc' 'texlive-pst-eps' 'texlive-pst-eps-doc' 'texlive-pst-eucl' 'texlive-pst-eucl-doc' 'texlive-pst-eucl-translation-bg' 'texlive-pst-exa' 'texlive-pst-exa-doc' 'texlive-pst-feyn' 'texlive-pst-feyn-doc' 'texlive-pst-fill' 'texlive-pst-fill-doc' 'texlive-pst-fit' 'texlive-pst-fit-doc' 'texlive-pst-fr3d' 'texlive-pst-fr3d-doc' 'texlive-pst-fractal' 'texlive-pst-fractal-doc' 'texlive-pst-fun' 'texlive-pst-fun-doc' 'texlive-pst-func' 'texlive-pst-func-doc' 'texlive-pst-gantt' 'texlive-pst-gantt-doc' 'texlive-pst-geo' 'texlive-pst-geo-doc' 'texlive-pst-geometrictools' 'texlive-pst-geometrictools-doc' 'texlive-pst-ghsb' 'texlive-pst-ghsb-doc' 'texlive-pst-gr3d' 'texlive-pst-gr3d-doc' 'texlive-pst-grad' 'texlive-pst-grad-doc' 'texlive-pst-graphicx' 'texlive-pst-graphicx-doc' 'texlive-pst-infixplot' 'texlive-pst-infixplot-doc' 'texlive-pst-intersect' 'texlive-pst-intersect-doc' 'texlive-pst-jtree' 'texlive-pst-jtree-doc' 'texlive-pst-knot' 'texlive-pst-knot-doc' 'texlive-pst-labo' 'texlive-pst-labo-doc' 'texlive-pst-layout' 'texlive-pst-layout-doc' 'texlive-pst-lens' 'texlive-pst-lens-doc' 'texlive-pst-light3d' 'texlive-pst-light3d-doc' 'texlive-pst-lsystem' 'texlive-pst-lsystem-doc' 'texlive-pst-magneticfield' 'texlive-pst-magneticfield-doc' 'texlive-pst-marble' 'texlive-pst-marble-doc' 'texlive-pst-math' 'texlive-pst-math-doc' 'texlive-pst-mirror' 'texlive-pst-mirror-doc' 'texlive-pst-moire' 'texlive-pst-moire-doc' 'texlive-pst-node' 'texlive-pst-node-doc' 'texlive-pst-ob3d' 'texlive-pst-ob3d-doc' 'texlive-pst-ode' 'texlive-pst-ode-doc' 'texlive-pst-optexp' 'texlive-pst-optexp-doc' 'texlive-pst-optic' 'texlive-pst-optic-doc' 'texlive-pst-osci' 'texlive-pst-osci-doc' 'texlive-pst-ovl' 'texlive-pst-ovl-doc' 'texlive-pst-pad' 'texlive-pst-pad-doc' 'texlive-pst-pdf' 'texlive-pst-pdf-bin' 'texlive-pst-pdf-doc' 'texlive-pst-pdgr' 'texlive-pst-pdgr-doc' 'texlive-pst-perspective' 'texlive-pst-perspective-doc' 'texlive-pst-platon' 'texlive-pst-platon-doc' 'texlive-pst-plot' 'texlive-pst-plot-doc' 'texlive-pst-poker' 'texlive-pst-poker-doc' 'texlive-pst-poly' 'texlive-pst-poly-doc' 'texlive-pst-pulley' 'texlive-pst-pulley-doc' 'texlive-pst-qtree' 'texlive-pst-qtree-doc' 'texlive-pst-rputover' 'texlive-pst-rputover-doc' 'texlive-pst-rubans' 'texlive-pst-rubans-doc' 'texlive-pst-shell' 'texlive-pst-shell-doc' 'texlive-pst-sigsys' 'texlive-pst-sigsys-doc' 'texlive-pst-slpe' 'texlive-pst-slpe-doc' 'texlive-pst-solarsystem' 'texlive-pst-solarsystem-doc' 'texlive-pst-solides3d' 'texlive-pst-solides3d-doc' 'texlive-pst-soroban' 'texlive-pst-soroban-doc' 'texlive-pst-spectra' 'texlive-pst-spectra-doc' 'texlive-pst-spinner' 'texlive-pst-spinner-doc' 'texlive-pst-spirograph' 'texlive-pst-spirograph-doc' 'texlive-pst-stru' 'texlive-pst-stru-doc' 'texlive-pst-support' 'texlive-pst-text' 'texlive-pst-text-doc' 'texlive-pst-thick' 'texlive-pst-thick-doc' 'texlive-pst-tools' 'texlive-pst-tools-doc' 'texlive-pst-tree' 'texlive-pst-tree-doc' 'texlive-pst-tvz' 'texlive-pst-tvz-doc' 'texlive-pst-uml' 'texlive-pst-uml-doc' 'texlive-pst-vectorian' 'texlive-pst-vectorian-doc' 'texlive-pst-vehicle' 'texlive-pst-vehicle-doc' 'texlive-pst-venn' 'texlive-pst-venn-doc' 'texlive-pst-vowel' 'texlive-pst-vowel-doc' 'texlive-pst-vue3d' 'texlive-pst-vue3d-doc' 'texlive-pst2pdf' 'texlive-pst2pdf-bin' 'texlive-pst2pdf-doc' 'texlive-pstool' 'texlive-pstool-doc' 'texlive-pstools' 'texlive-pstools-bin' 'texlive-pstools-doc' 'texlive-pstricks' 'texlive-pstricks-add' 'texlive-pstricks-add-doc' 'texlive-pstricks-doc' 'texlive-pstricks_calcnotes' 'texlive-pstring' 'texlive-pstring-doc' 'texlive-ptex' 'texlive-ptex-base' 'texlive-ptex-base-doc' 'texlive-ptex-bin' 'texlive-ptex-fontmaps' 'texlive-ptex-fontmaps-bin' 'texlive-ptex-fontmaps-doc' 'texlive-ptex-fonts' 'texlive-ptex-fonts-doc' 'texlive-ptex-manual' 'texlive-ptex-manual-doc' 'texlive-ptex2pdf' 'texlive-ptex2pdf-bin' 'texlive-ptex2pdf-doc' 'texlive-ptexenc-devel' 'texlive-ptext' 'texlive-ptext-doc' 'texlive-ptolemaicastronomy' 'texlive-ptolemaicastronomy-doc' 'texlive-ptptex' 'texlive-ptptex-doc' 'texlive-punk' 'texlive-punk-doc' 'texlive-punk-latex' 'texlive-punk-latex-doc' 'texlive-punknova' 'texlive-punknova-doc' 'texlive-punknova-fonts' 'texlive-purifyeps' 'texlive-purifyeps-bin' 'texlive-purifyeps-doc' 'texlive-pxbase' 'texlive-pxbase-doc' 'texlive-pxchfon' 'texlive-pxchfon-doc' 'texlive-pxcjkcat' 'texlive-pxcjkcat-doc' 'texlive-pxfonts' 'texlive-pxfonts-doc' 'texlive-pxfonts-fonts' 'texlive-pxgreeks' 'texlive-pxgreeks-doc' 'texlive-pxjahyper' 'texlive-pxjahyper-doc' 'texlive-pxjodel' 'texlive-pxjodel-doc' 'texlive-pxpgfmark' 'texlive-pxpgfmark-doc' 'texlive-pxrubrica' 'texlive-pxrubrica-doc' 'texlive-pxtatescale' 'texlive-pxtatescale-doc' 'texlive-pxtxalfa' 'texlive-pxtxalfa-doc' 'texlive-pxufont' 'texlive-pxufont-doc' 'texlive-pygmentex' 'texlive-pygmentex-bin' 'texlive-pygmentex-doc' 'texlive-python' 'texlive-python-doc' 'texlive-pythonhighlight' 'texlive-pythonhighlight-doc' 'texlive-pythontex' 'texlive-pythontex-bin' 'texlive-pythontex-doc' 'texlive-qcircuit' 'texlive-qcircuit-doc' 'texlive-qcm' 'texlive-qcm-doc' 'texlive-qobitree' 'texlive-qobitree-doc' 'texlive-qpxqtx' 'texlive-qpxqtx-doc' 'texlive-qrcode' 'texlive-qrcode-doc' 'texlive-qsharp' 'texlive-qsharp-doc' 'texlive-qstest' 'texlive-qstest-doc' 'texlive-qsymbols' 'texlive-qsymbols-doc' 'texlive-qtree' 'texlive-qtree-doc' 'texlive-quantikz' 'texlive-quantikz-doc' 'texlive-quattrocento' 'texlive-quattrocento-doc' 'texlive-quattrocento-fonts' 'texlive-quicktype' 'texlive-quicktype-doc' 'texlive-quotchap' 'texlive-quotchap-doc' 'texlive-quoting' 'texlive-quoting-doc' 'texlive-quotmark' 'texlive-quotmark-doc' 'texlive-quran' 'texlive-quran-de' 'texlive-quran-de-doc' 'texlive-quran-doc' 'texlive-r_und_s' 'texlive-r_und_s-doc' 'texlive-raleway' 'texlive-raleway-doc' 'texlive-raleway-fonts' 'texlive-ran_toks' 'texlive-ran_toks-doc' 'texlive-randbild' 'texlive-randbild-doc' 'texlive-randomlist' 'texlive-randomlist-doc' 'texlive-randomwalk' 'texlive-randomwalk-doc' 'texlive-randtext' 'texlive-randtext-doc' 'texlive-rank-2-roots' 'texlive-rank-2-roots-doc' 'texlive-rccol' 'texlive-rccol-doc' 'texlive-rcs' 'texlive-rcs-doc' 'texlive-rcs-multi' 'texlive-rcs-multi-doc' 'texlive-rcsinfo' 'texlive-rcsinfo-doc' 'texlive-readarray' 'texlive-readarray-doc' 'texlive-realboxes' 'texlive-realboxes-doc' 'texlive-realhats' 'texlive-realhats-doc' 'texlive-realscripts' 'texlive-realscripts-doc' 'texlive-rec-thy' 'texlive-rec-thy-doc' 'texlive-recipe' 'texlive-recipe-doc' 'texlive-recipebook' 'texlive-recipebook-doc' 'texlive-recipecard' 'texlive-recipecard-doc' 'texlive-rectopma' 'texlive-rectopma-doc' 'texlive-recycle' 'texlive-recycle-doc' 'texlive-recycle-fonts' 'texlive-refcheck' 'texlive-refcheck-doc' 'texlive-refenums' 'texlive-refenums-doc' 'texlive-reflectgraphics' 'texlive-reflectgraphics-doc' 'texlive-refman' 'texlive-refman-doc' 'texlive-refstyle' 'texlive-refstyle-doc' 'texlive-regcount' 'texlive-regcount-doc' 'texlive-regexpatch' 'texlive-regexpatch-doc' 'texlive-register' 'texlive-register-doc' 'texlive-regstats' 'texlive-regstats-doc' 'texlive-reledmac' 'texlive-reledmac-doc' 'texlive-relenc' 'texlive-relenc-doc' 'texlive-relsize' 'texlive-relsize-doc' 'texlive-reotex' 'texlive-reotex-doc' 'texlive-repeatindex' 'texlive-repeatindex-doc' 'texlive-repere' 'texlive-repere-doc' 'texlive-repltext' 'texlive-repltext-doc' 'texlive-resphilosophica' 'texlive-resphilosophica-doc' 'texlive-resumecls' 'texlive-resumecls-doc' 'texlive-resumemac' 'texlive-resumemac-doc' 'texlive-returntogrid' 'texlive-returntogrid-doc' 'texlive-reverxii' 'texlive-revquantum' 'texlive-revquantum-doc' 'texlive-revtex' 'texlive-revtex-doc' 'texlive-revtex4' 'texlive-revtex4-doc' 'texlive-rgltxdoc' 'texlive-rgltxdoc-doc' 'texlive-ribbonproofs' 'texlive-ribbonproofs-doc' 'texlive-rjlparshap' 'texlive-rjlparshap-doc' 'texlive-rlepsf' 'texlive-rlepsf-doc' 'texlive-rmathbr' 'texlive-rmathbr-doc' 'texlive-rmpage' 'texlive-rmpage-doc' 'texlive-roboto' 'texlive-roboto-doc' 'texlive-roboto-fonts' 'texlive-robustcommand' 'texlive-robustcommand-doc' 'texlive-robustindex' 'texlive-robustindex-doc' 'texlive-roex' 'texlive-romanbar' 'texlive-romanbar-doc' 'texlive-romanbarpagenumber' 'texlive-romanbarpagenumber-doc' 'texlive-romande' 'texlive-romande-doc' 'texlive-romande-fonts' 'texlive-romanneg' 'texlive-romanneg-doc' 'texlive-romannum' 'texlive-romannum-doc' 'texlive-rosario' 'texlive-rosario-doc' 'texlive-rosario-fonts' 'texlive-rotfloat' 'texlive-rotfloat-doc' 'texlive-rotpages' 'texlive-rotpages-doc' 'texlive-roundbox' 'texlive-roundbox-doc' 'texlive-roundrect' 'texlive-roundrect-doc' 'texlive-rrgtrees' 'texlive-rrgtrees-doc' 'texlive-rsc' 'texlive-rsc-doc' 'texlive-rsfs' 'texlive-rsfs-doc' 'texlive-rsfs-fonts' 'texlive-rsfso' 'texlive-rsfso-doc' 'texlive-rterface' 'texlive-rterface-doc' 'texlive-rtkinenc' 'texlive-rtkinenc-doc' 'texlive-rtklage' 'texlive-rtklage-doc' 'texlive-rubik' 'texlive-rubik-bin' 'texlive-rubik-doc' 'texlive-ruhyphen' 'texlive-rulercompass' 'texlive-rulercompass-doc' 'texlive-russ' 'texlive-russ-doc' 'texlive-rutitlepage' 'texlive-rutitlepage-doc' 'texlive-rviewport' 'texlive-rviewport-doc' 'texlive-rvwrite' 'texlive-rvwrite-doc' 'texlive-ryersonsgsthesis' 'texlive-ryersonsgsthesis-doc' 'texlive-ryethesis' 'texlive-ryethesis-doc' 'texlive-sa-tikz' 'texlive-sa-tikz-doc' 'texlive-sageep' 'texlive-sageep-doc' 'texlive-sanitize-umlaut' 'texlive-sanitize-umlaut-doc' 'texlive-sanskrit' 'texlive-sanskrit-doc' 'texlive-sanskrit-t1' 'texlive-sanskrit-t1-doc' 'texlive-sanskrit-t1-fonts' 'texlive-sansmath' 'texlive-sansmath-doc' 'texlive-sansmathaccent' 'texlive-sansmathaccent-doc' 'texlive-sansmathfonts' 'texlive-sansmathfonts-doc' 'texlive-sansmathfonts-fonts' 'texlive-sapthesis' 'texlive-sapthesis-doc' 'texlive-sasnrdisplay' 'texlive-sasnrdisplay-doc' 'texlive-sauerj' 'texlive-sauerj-doc' 'texlive-sauter' 'texlive-sauterfonts' 'texlive-sauterfonts-doc' 'texlive-savefnmark' 'texlive-savefnmark-doc' 'texlive-savesym' 'texlive-savetrees' 'texlive-savetrees-doc' 'texlive-scale' 'texlive-scale-doc' 'texlive-scalebar' 'texlive-scalebar-doc' 'texlive-scalerel' 'texlive-scalerel-doc' 'texlive-scanpages' 'texlive-scanpages-doc' 'texlive-scanpages-fonts' 'texlive-schemabloc' 'texlive-schemabloc-doc' 'texlive-schemata' 'texlive-schemata-doc' 'texlive-scheme-basic' 'texlive-scheme-context' 'texlive-scheme-full' 'texlive-scheme-gust' 'texlive-scheme-infraonly' 'texlive-scheme-medium' 'texlive-scheme-minimal' 'texlive-scheme-small' 'texlive-scheme-tetex' 'texlive-schule' 'texlive-schule-doc' 'texlive-schulschriften' 'texlive-schulschriften-doc' 'texlive-schwalbe-chess' 'texlive-schwalbe-chess-doc' 'texlive-scientific-thesis-cover' 'texlive-scientific-thesis-cover-doc' 'texlive-sciposter' 'texlive-sciposter-doc' 'texlive-sclang-prettifier' 'texlive-sclang-prettifier-doc' 'texlive-scratch' 'texlive-scratch-doc' 'texlive-scratch3' 'texlive-scratch3-doc' 'texlive-scratchx' 'texlive-scratchx-doc' 'texlive-screenplay' 'texlive-screenplay-doc' 'texlive-screenplay-pkg' 'texlive-screenplay-pkg-doc' 'texlive-scrjrnl' 'texlive-scrjrnl-doc' 'texlive-scrlttr2copy' 'texlive-scrlttr2copy-doc' 'texlive-scsnowman' 'texlive-scsnowman-doc' 'texlive-sdrt' 'texlive-sdrt-doc' 'texlive-sduthesis' 'texlive-sduthesis-doc' 'texlive-secdot' 'texlive-secdot-doc' 'texlive-section' 'texlive-section-doc' 'texlive-sectionbox' 'texlive-sectionbox-doc' 'texlive-sectionbreak' 'texlive-sectionbreak-doc' 'texlive-sectsty' 'texlive-sectsty-doc' 'texlive-seealso' 'texlive-seealso-doc' 'texlive-seetexk' 'texlive-seetexk-bin' 'texlive-selectp' 'texlive-selectp-doc' 'texlive-selnolig' 'texlive-selnolig-doc' 'texlive-semantic' 'texlive-semantic-doc' 'texlive-semantic-markup' 'texlive-semantic-markup-doc' 'texlive-semaphor' 'texlive-semaphor-doc' 'texlive-semaphor-fonts' 'texlive-seminar' 'texlive-seminar-doc' 'texlive-semioneside' 'texlive-semioneside-doc' 'texlive-semproc' 'texlive-semproc-doc' 'texlive-sepfootnotes' 'texlive-sepfootnotes-doc' 'texlive-sepnum' 'texlive-sepnum-doc' 'texlive-seqsplit' 'texlive-seqsplit-doc' 'texlive-serbian-apostrophe' 'texlive-serbian-apostrophe-doc' 'texlive-serbian-date-lat' 'texlive-serbian-date-lat-doc' 'texlive-serbian-def-cyr' 'texlive-serbian-def-cyr-doc' 'texlive-serbian-lig' 'texlive-serbian-lig-doc' 'texlive-sesamanuel' 'texlive-sesamanuel-doc' 'texlive-sesstime' 'texlive-sesstime-doc' 'texlive-setdeck' 'texlive-setdeck-doc' 'texlive-setspace' 'texlive-setspace-doc' 'texlive-seuthesis' 'texlive-seuthesis-doc' 'texlive-seuthesix' 'texlive-seuthesix-doc' 'texlive-sexam' 'texlive-sexam-doc' 'texlive-sf298' 'texlive-sf298-doc' 'texlive-sffms' 'texlive-sffms-doc' 'texlive-sfg' 'texlive-sfg-doc' 'texlive-sfmath' 'texlive-sgame' 'texlive-sgame-doc' 'texlive-shade' 'texlive-shade-doc' 'texlive-shadethm' 'texlive-shadethm-doc' 'texlive-shadow' 'texlive-shadow-doc' 'texlive-shadowtext' 'texlive-shadowtext-doc' 'texlive-shapepar' 'texlive-shapepar-doc' 'texlive-shapes' 'texlive-shapes-doc' 'texlive-shdoc' 'texlive-shdoc-doc' 'texlive-shipunov' 'texlive-shipunov-doc' 'texlive-shobhika' 'texlive-shobhika-doc' 'texlive-shobhika-fonts' 'texlive-short-math-guide' 'texlive-shorttoc' 'texlive-shorttoc-doc' 'texlive-show2e' 'texlive-show2e-doc' 'texlive-showcharinbox' 'texlive-showcharinbox-doc' 'texlive-showdim' 'texlive-showdim-doc' 'texlive-showexpl' 'texlive-showexpl-doc' 'texlive-showhyphens' 'texlive-showhyphens-doc' 'texlive-showlabels' 'texlive-showlabels-doc' 'texlive-showtags' 'texlive-showtags-doc' 'texlive-shuffle' 'texlive-shuffle-doc' 'texlive-sidecap' 'texlive-sidecap-doc' 'texlive-sidenotes' 'texlive-sidenotes-doc' 'texlive-sides' 'texlive-sides-doc' 'texlive-signchart' 'texlive-signchart-doc' 'texlive-silence' 'texlive-silence-doc' 'texlive-simple-resume-cv' 'texlive-simple-resume-cv-doc' 'texlive-simple-thesis-dissertation' 'texlive-simple-thesis-dissertation-doc' 'texlive-simplecd' 'texlive-simplecd-doc' 'texlive-simplecv' 'texlive-simplecv-doc' 'texlive-simpleinvoice' 'texlive-simpleinvoice-doc' 'texlive-simplekv' 'texlive-simplekv-doc' 'texlive-simpler-wick' 'texlive-simpler-wick-doc' 'texlive-simplewick' 'texlive-simplewick-doc' 'texlive-simplified-latex' 'texlive-simurgh' 'texlive-simurgh-doc' 'texlive-sitem' 'texlive-sitem-doc' 'texlive-siunitx' 'texlive-siunitx-doc' 'texlive-skak' 'texlive-skak-doc' 'texlive-skaknew' 'texlive-skaknew-doc' 'texlive-skaknew-fonts' 'texlive-skb' 'texlive-skb-doc' 'texlive-skdoc' 'texlive-skdoc-doc' 'texlive-skeycommand' 'texlive-skeycommand-doc' 'texlive-skeyval' 'texlive-skeyval-doc' 'texlive-skmath' 'texlive-skmath-doc' 'texlive-skrapport' 'texlive-skrapport-doc' 'texlive-skull' 'texlive-slantsc' 'texlive-slantsc-doc' 'texlive-slideshow' 'texlive-slideshow-doc' 'texlive-smalltableof' 'texlive-smalltableof-doc' 'texlive-smartdiagram' 'texlive-smartdiagram-doc' 'texlive-smartref' 'texlive-smartref-doc' 'texlive-smartunits' 'texlive-smartunits-doc' 'texlive-snapshot' 'texlive-snapshot-doc' 'texlive-snotez' 'texlive-snotez-doc' 'texlive-songbook' 'texlive-songbook-doc' 'texlive-songs' 'texlive-songs-doc' 'texlive-sort-by-letters' 'texlive-sort-by-letters-doc' 'texlive-soton' 'texlive-soton-doc' 'texlive-soul' 'texlive-soul-doc' 'texlive-soup' 'texlive-soup-doc' 'texlive-sourcecodepro' 'texlive-sourcecodepro-doc' 'texlive-sourcecodepro-fonts' 'texlive-sourcesanspro' 'texlive-sourcesanspro-doc' 'texlive-sourcesanspro-fonts' 'texlive-sourceserifpro' 'texlive-sourceserifpro-doc' 'texlive-sourceserifpro-fonts' 'texlive-spalign' 'texlive-spalign-doc' 'texlive-spanish-mx' 'texlive-spanish-mx-doc' 'texlive-spark-otf' 'texlive-spark-otf-doc' 'texlive-sparklines' 'texlive-sparklines-doc' 'texlive-spath3' 'texlive-spath3-doc' 'texlive-spectralsequences' 'texlive-spectralsequences-doc' 'texlive-spelling' 'texlive-spelling-doc' 'texlive-sphdthesis' 'texlive-sphdthesis-doc' 'texlive-spie' 'texlive-spie-doc' 'texlive-splines' 'texlive-splines-doc' 'texlive-splitbib' 'texlive-splitbib-doc' 'texlive-splitindex' 'texlive-splitindex-bin' 'texlive-splitindex-doc' 'texlive-spot' 'texlive-spot-doc' 'texlive-spotcolor' 'texlive-spotcolor-doc' 'texlive-spreadtab' 'texlive-spreadtab-doc' 'texlive-spverbatim' 'texlive-spverbatim-doc' 'texlive-sr-vorl' 'texlive-sr-vorl-doc' 'texlive-srbook-mem' 'texlive-srbook-mem-doc' 'texlive-srcltx' 'texlive-srcltx-doc' 'texlive-srcredact' 'texlive-srcredact-bin' 'texlive-srcredact-doc' 'texlive-srdp-mathematik' 'texlive-srdp-mathematik-doc' 'texlive-sseq' 'texlive-sseq-doc' 'texlive-sslides' 'texlive-sslides-doc' 'texlive-stack' 'texlive-stackengine' 'texlive-stackengine-doc' 'texlive-stage' 'texlive-stage-doc' 'texlive-standalone' 'texlive-standalone-doc' 'texlive-stanli' 'texlive-stanli-doc' 'texlive-starfont' 'texlive-starfont-doc' 'texlive-starfont-fonts' 'texlive-startex' 'texlive-startex-doc' 'texlive-statex' 'texlive-statex-doc' 'texlive-statex2' 'texlive-statex2-doc' 'texlive-statistics' 'texlive-statistics-doc' 'texlive-statistik' 'texlive-statistik-doc' 'texlive-statmath' 'texlive-statmath-doc' 'texlive-staves' 'texlive-staves-doc' 'texlive-staves-fonts' 'texlive-stdclsdv' 'texlive-stdclsdv-doc' 'texlive-stdpage' 'texlive-stdpage-doc' 'texlive-stealcaps' 'texlive-stealcaps-doc' 'texlive-steinmetz' 'texlive-steinmetz-doc' 'texlive-stellenbosch' 'texlive-stellenbosch-doc' 'texlive-stex' 'texlive-stex-doc' 'texlive-stickstoo' 'texlive-stickstoo-doc' 'texlive-stickstoo-fonts' 'texlive-stix' 'texlive-stix-doc' 'texlive-stix-fonts' 'texlive-stix2-otf' 'texlive-stix2-otf-doc' 'texlive-stix2-otf-fonts' 'texlive-stix2-type1' 'texlive-stix2-type1-doc' 'texlive-stix2-type1-fonts' 'texlive-stmaryrd' 'texlive-stmaryrd-doc' 'texlive-stmaryrd-fonts' 'texlive-storebox' 'texlive-storebox-doc' 'texlive-storecmd' 'texlive-storecmd-doc' 'texlive-stringstrings' 'texlive-stringstrings-doc' 'texlive-structmech' 'texlive-struktex' 'texlive-struktex-doc' 'texlive-sttools' 'texlive-sttools-doc' 'texlive-stubs' 'texlive-stubs-doc' 'texlive-studenthandouts' 'texlive-studenthandouts-doc' 'texlive-sty2dtx' 'texlive-sty2dtx-bin' 'texlive-sty2dtx-doc' 'texlive-suanpan' 'texlive-suanpan-doc' 'texlive-subdepth' 'texlive-subdepth-doc' 'texlive-subeqn' 'texlive-subeqn-doc' 'texlive-subeqnarray' 'texlive-subeqnarray-doc' 'texlive-subfig' 'texlive-subfig-doc' 'texlive-subfigmat' 'texlive-subfigmat-doc' 'texlive-subfigure' 'texlive-subfigure-doc' 'texlive-subfiles' 'texlive-subfiles-doc' 'texlive-subfloat' 'texlive-subfloat-doc' 'texlive-substances' 'texlive-substances-doc' 'texlive-substitutefont' 'texlive-substitutefont-doc' 'texlive-substr' 'texlive-substr-doc' 'texlive-subsupscripts' 'texlive-subsupscripts-doc' 'texlive-sudoku' 'texlive-sudoku-doc' 'texlive-sudokubundle' 'texlive-sudokubundle-doc' 'texlive-suftesi' 'texlive-suftesi-doc' 'texlive-sugconf' 'texlive-sugconf-doc' 'texlive-superiors' 'texlive-superiors-doc' 'texlive-superiors-fonts' 'texlive-supertabular' 'texlive-supertabular-doc' 'texlive-susy' 'texlive-susy-doc' 'texlive-svg' 'texlive-svg-doc' 'texlive-svg-inkscape' 'texlive-svgcolor' 'texlive-svgcolor-doc' 'texlive-svn' 'texlive-svn-doc' 'texlive-svn-multi' 'texlive-svn-multi-bin' 'texlive-svn-multi-doc' 'texlive-svn-prov' 'texlive-svn-prov-doc' 'texlive-svninfo' 'texlive-svninfo-doc' 'texlive-svrsymbols' 'texlive-svrsymbols-doc' 'texlive-svrsymbols-fonts' 'texlive-swebib' 'texlive-swebib-doc' 'texlive-swimgraf' 'texlive-swimgraf-doc' 'texlive-syllogism' 'texlive-syllogism-doc' 'texlive-symbol' 'texlive-symbol-fonts' 'texlive-sympytexpackage' 'texlive-sympytexpackage-doc' 'texlive-synctex' 'texlive-synctex-bin' 'texlive-synctex-devel' 'texlive-synproof' 'texlive-synproof-doc' 'texlive-syntax' 'texlive-syntax-doc' 'texlive-syntrace' 'texlive-syntrace-doc' 'texlive-synttree' 'texlive-synttree-doc' 'texlive-systeme' 'texlive-systeme-doc' 'texlive-t-angles' 'texlive-t-angles-doc' 'texlive-t2' 'texlive-t2-doc' 'texlive-tabfigures' 'texlive-tabfigures-doc' 'texlive-table-fct' 'texlive-table-fct-doc' 'texlive-tableaux' 'texlive-tableaux-doc' 'texlive-tablefootnote' 'texlive-tablefootnote-doc' 'texlive-tableof' 'texlive-tableof-doc' 'texlive-tablestyles' 'texlive-tablestyles-doc' 'texlive-tablists' 'texlive-tablists-doc' 'texlive-tablor' 'texlive-tablor-doc' 'texlive-tabls' 'texlive-tabls-doc' 'texlive-tablvar' 'texlive-tablvar-doc' 'texlive-tabriz-thesis' 'texlive-tabriz-thesis-doc' 'texlive-tabstackengine' 'texlive-tabstackengine-doc' 'texlive-tabto-generic' 'texlive-tabto-ltx' 'texlive-tabto-ltx-doc' 'texlive-tabu' 'texlive-tabu-doc' 'texlive-tabularborder' 'texlive-tabularborder-doc' 'texlive-tabularcalc' 'texlive-tabularcalc-doc' 'texlive-tabularew' 'texlive-tabularew-doc' 'texlive-tabulars-e' 'texlive-tabulary' 'texlive-tabulary-doc' 'texlive-tabvar' 'texlive-tabvar-doc' 'texlive-tabvar-fonts' 'texlive-tagging' 'texlive-tagging-doc' 'texlive-tagpair' 'texlive-tagpair-doc' 'texlive-tagpdf' 'texlive-tagpdf-doc' 'texlive-talk' 'texlive-talk-doc' 'texlive-tamefloats' 'texlive-tamefloats-doc' 'texlive-tamethebeast' 'texlive-tap' 'texlive-tap-doc' 'texlive-tapir' 'texlive-tapir-doc' 'texlive-tapir-fonts' 'texlive-tasks' 'texlive-tasks-doc' 'texlive-tcldoc' 'texlive-tcldoc-doc' 'texlive-tcolorbox' 'texlive-tcolorbox-doc' 'texlive-tdclock' 'texlive-tdclock-doc' 'texlive-tds' 'texlive-tdsfrmath' 'texlive-tdsfrmath-doc' 'texlive-technics' 'texlive-technics-doc' 'texlive-technion-thesis-template' 'texlive-technion-thesis-template-doc' 'texlive-ted' 'texlive-ted-doc' 'texlive-templates-fenn' 'texlive-templates-sommer' 'texlive-templatetools' 'texlive-templatetools-doc' 'texlive-tempora' 'texlive-tempora-doc' 'texlive-tempora-fonts' 'texlive-tengwarscript' 'texlive-tengwarscript-doc' 'texlive-tensor' 'texlive-tensor-doc' 'texlive-termcal' 'texlive-termcal-de' 'texlive-termcal-de-doc' 'texlive-termcal-doc' 'texlive-termlist' 'texlive-termlist-doc' 'texlive-termmenu' 'texlive-termmenu-doc' 'texlive-testhyphens' 'texlive-testhyphens-doc' 'texlive-testidx' 'texlive-testidx-doc' 'texlive-tetex' 'texlive-tetex-bin' 'texlive-tetex-doc' 'texlive-tetragonos' 'texlive-tetragonos-doc' 'texlive-teubner' 'texlive-teubner-doc' 'texlive-tex' 'texlive-tex-bin' 'texlive-tex-ewd' 'texlive-tex-ewd-doc' 'texlive-tex-font-errors-cheatsheet' 'texlive-tex-gyre' 'texlive-tex-gyre-doc' 'texlive-tex-gyre-fonts' 'texlive-tex-gyre-math' 'texlive-tex-gyre-math-doc' 'texlive-tex-gyre-math-fonts' 'texlive-tex-ini-files' 'texlive-tex-ini-files-doc' 'texlive-tex-label' 'texlive-tex-label-doc' 'texlive-tex-locale' 'texlive-tex-locale-doc' 'texlive-tex-overview' 'texlive-tex-ps' 'texlive-tex-ps-doc' 'texlive-tex-refs' 'texlive-tex-virtual-academy-pl' 'texlive-tex4ebook' 'texlive-tex4ebook-bin' 'texlive-tex4ebook-doc' 'texlive-tex4ht' 'texlive-tex4ht-bin' 'texlive-tex4ht-doc' 'texlive-texapi' 'texlive-texapi-doc' 'texlive-texbytopic' 'texlive-texcount' 'texlive-texcount-bin' 'texlive-texcount-doc' 'texlive-texdate' 'texlive-texdate-doc' 'texlive-texdef' 'texlive-texdef-bin' 'texlive-texdef-doc' 'texlive-texdiff' 'texlive-texdiff-bin' 'texlive-texdiff-doc' 'texlive-texdirflatten' 'texlive-texdirflatten-bin' 'texlive-texdirflatten-doc' 'texlive-texdoc' 'texlive-texdoc-bin' 'texlive-texdoc-doc' 'texlive-texdoctk' 'texlive-texdoctk-bin' 'texlive-texdoctk-doc' 'texlive-texdraw' 'texlive-texdraw-doc' 'texlive-texfot' 'texlive-texfot-bin' 'texlive-texfot-doc' 'texlive-texilikechaps' 'texlive-texilikecover' 'texlive-texinfo' 'texlive-texlive-common' 'texlive-texlive-cz' 'texlive-texlive-de' 'texlive-texlive-en' 'texlive-texlive-es' 'texlive-texlive-fr' 'texlive-texlive-it' 'texlive-texlive-pl' 'texlive-texlive-ru' 'texlive-texlive-sr' 'texlive-texlive-zh-cn' 'texlive-texlive.infra' 'texlive-texlive.infra-doc' 'texlive-texliveonfly' 'texlive-texliveonfly-bin' 'texlive-texliveonfly-doc' 'texlive-texloganalyser' 'texlive-texloganalyser-bin' 'texlive-texloganalyser-doc' 'texlive-texlogos' 'texlive-texlua-devel' 'texlive-texluajit-devel' 'texlive-texmate' 'texlive-texmate-doc' 'texlive-texments' 'texlive-texments-doc' 'texlive-texosquery' 'texlive-texosquery-bin' 'texlive-texosquery-doc' 'texlive-texpower' 'texlive-texpower-doc' 'texlive-texproposal' 'texlive-texshade' 'texlive-texshade-doc' 'texlive-texsis' 'texlive-texsis-bin' 'texlive-texsis-doc' 'texlive-textcase' 'texlive-textcase-doc' 'texlive-textfit' 'texlive-textfit-doc' 'texlive-textglos' 'texlive-textglos-doc' 'texlive-textgreek' 'texlive-textgreek-doc' 'texlive-textmerg' 'texlive-textmerg-doc' 'texlive-textopo' 'texlive-textopo-doc' 'texlive-textpath' 'texlive-textpath-doc' 'texlive-textpos' 'texlive-textpos-doc' 'texlive-textualicomma' 'texlive-textualicomma-doc' 'texlive-texvc' 'texlive-texvc-doc' 'texlive-texware' 'texlive-texware-bin' 'texlive-tfrupee' 'texlive-tfrupee-doc' 'texlive-tfrupee-fonts' 'texlive-thaienum' 'texlive-thaienum-doc' 'texlive-thaispec' 'texlive-thaispec-doc' 'texlive-thalie' 'texlive-thalie-doc' 'texlive-theatre' 'texlive-theoremref' 'texlive-theoremref-doc' 'texlive-thesis-ekf' 'texlive-thesis-ekf-doc' 'texlive-thesis-gwu' 'texlive-thesis-gwu-doc' 'texlive-thesis-qom' 'texlive-thesis-qom-doc' 'texlive-thesis-titlepage-fhac' 'texlive-thesis-titlepage-fhac-doc' 'texlive-thinsp' 'texlive-thinsp-doc' 'texlive-thmbox' 'texlive-thmbox-doc' 'texlive-thmtools' 'texlive-thmtools-doc' 'texlive-threadcol' 'texlive-threadcol-doc' 'texlive-threeddice' 'texlive-threeddice-doc' 'texlive-threeparttable' 'texlive-threeparttable-doc' 'texlive-threeparttablex' 'texlive-threeparttablex-doc' 'texlive-thucoursework' 'texlive-thucoursework-doc' 'texlive-thumb' 'texlive-thumb-doc' 'texlive-thumbpdf' 'texlive-thumbpdf-bin' 'texlive-thumbpdf-doc' 'texlive-thumbs' 'texlive-thumbs-doc' 'texlive-thumby' 'texlive-thumby-doc' 'texlive-thuthesis' 'texlive-thuthesis-doc' 'texlive-ticket' 'texlive-ticket-doc' 'texlive-ticollege' 'texlive-ticollege-doc' 'texlive-tie' 'texlive-tie-bin' 'texlive-tikz-3dplot' 'texlive-tikz-3dplot-doc' 'texlive-tikz-bayesnet' 'texlive-tikz-bayesnet-doc' 'texlive-tikz-cd' 'texlive-tikz-cd-doc' 'texlive-tikz-dependency' 'texlive-tikz-dependency-doc' 'texlive-tikz-dimline' 'texlive-tikz-dimline-doc' 'texlive-tikz-feynhand' 'texlive-tikz-feynhand-doc' 'texlive-tikz-feynman' 'texlive-tikz-feynman-doc' 'texlive-tikz-imagelabels' 'texlive-tikz-imagelabels-doc' 'texlive-tikz-inet' 'texlive-tikz-inet-doc' 'texlive-tikz-kalender' 'texlive-tikz-kalender-doc' 'texlive-tikz-karnaugh' 'texlive-tikz-karnaugh-doc' 'texlive-tikz-ladder' 'texlive-tikz-ladder-doc' 'texlive-tikz-layers' 'texlive-tikz-layers-doc' 'texlive-tikz-nef' 'texlive-tikz-nef-doc' 'texlive-tikz-network' 'texlive-tikz-network-doc' 'texlive-tikz-opm' 'texlive-tikz-opm-doc' 'texlive-tikz-optics' 'texlive-tikz-optics-doc' 'texlive-tikz-page' 'texlive-tikz-page-doc' 'texlive-tikz-palattice' 'texlive-tikz-palattice-doc' 'texlive-tikz-qtree' 'texlive-tikz-qtree-doc' 'texlive-tikz-relay' 'texlive-tikz-sfc' 'texlive-tikz-sfc-doc' 'texlive-tikz-timing' 'texlive-tikz-timing-doc' 'texlive-tikz-truchet' 'texlive-tikz-truchet-doc' 'texlive-tikzcodeblocks' 'texlive-tikzcodeblocks-doc' 'texlive-tikzducks' 'texlive-tikzducks-doc' 'texlive-tikzinclude' 'texlive-tikzinclude-doc' 'texlive-tikzlings' 'texlive-tikzlings-doc' 'texlive-tikzmark' 'texlive-tikzmark-doc' 'texlive-tikzmarmots' 'texlive-tikzmarmots-doc' 'texlive-tikzorbital' 'texlive-tikzorbital-doc' 'texlive-tikzpagenodes' 'texlive-tikzpagenodes-doc' 'texlive-tikzpeople' 'texlive-tikzpeople-doc' 'texlive-tikzpfeile' 'texlive-tikzpfeile-doc' 'texlive-tikzposter' 'texlive-tikzposter-doc' 'texlive-tikzscale' 'texlive-tikzscale-doc' 'texlive-tikzsymbols' 'texlive-tikzsymbols-doc' 'texlive-timbreicmc' 'texlive-timbreicmc-doc' 'texlive-times' 'texlive-times-fonts' 'texlive-timetable' 'texlive-timing-diagrams' 'texlive-timing-diagrams-doc' 'texlive-tinos' 'texlive-tinos-doc' 'texlive-tinos-fonts' 'texlive-tipa' 'texlive-tipa-de' 'texlive-tipa-doc' 'texlive-tipa-fonts' 'texlive-tipfr' 'texlive-tipfr-doc' 'texlive-titlecaps' 'texlive-titlecaps-doc' 'texlive-titlefoot' 'texlive-titlepages' 'texlive-titlepic' 'texlive-titlepic-doc' 'texlive-titleref' 'texlive-titleref-doc' 'texlive-titlesec' 'texlive-titlesec-doc' 'texlive-titling' 'texlive-titling-doc' 'texlive-tkz-base' 'texlive-tkz-base-doc' 'texlive-tkz-berge' 'texlive-tkz-berge-doc' 'texlive-tkz-doc' 'texlive-tkz-doc-doc' 'texlive-tkz-euclide' 'texlive-tkz-euclide-doc' 'texlive-tkz-fct' 'texlive-tkz-fct-doc' 'texlive-tkz-graph' 'texlive-tkz-graph-doc' 'texlive-tkz-kiviat' 'texlive-tkz-kiviat-doc' 'texlive-tkz-linknodes' 'texlive-tkz-linknodes-doc' 'texlive-tkz-orm' 'texlive-tkz-orm-doc' 'texlive-tkz-tab' 'texlive-tkz-tab-doc' 'texlive-tlc-article' 'texlive-tlc-article-doc' 'texlive-tlc2' 'texlive-tlcockpit' 'texlive-tlcockpit-bin' 'texlive-tlcockpit-doc' 'texlive-tlshell' 'texlive-tlshell-bin' 'texlive-tlshell-doc' 'texlive-tocbibind' 'texlive-tocbibind-doc' 'texlive-tocdata' 'texlive-tocdata-doc' 'texlive-tocloft' 'texlive-tocloft-doc' 'texlive-tocvsec2' 'texlive-tocvsec2-doc' 'texlive-todo' 'texlive-todo-doc' 'texlive-todonotes' 'texlive-todonotes-doc' 'texlive-tokenizer' 'texlive-tokenizer-doc' 'texlive-toolbox' 'texlive-toolbox-doc' 'texlive-tools' 'texlive-tools-doc' 'texlive-topfloat' 'texlive-topfloat-doc' 'texlive-topiclongtable' 'texlive-topiclongtable-doc' 'texlive-topletter' 'texlive-topletter-doc' 'texlive-toptesi' 'texlive-toptesi-doc' 'texlive-totcount' 'texlive-totcount-doc' 'texlive-totpages' 'texlive-totpages-doc' 'texlive-tpic2pdftex' 'texlive-tpic2pdftex-bin' 'texlive-tpslifonts' 'texlive-tpslifonts-doc' 'texlive-tqft' 'texlive-tqft-doc' 'texlive-tracklang' 'texlive-tracklang-doc' 'texlive-trajan' 'texlive-trajan-doc' 'texlive-trajan-fonts' 'texlive-tram' 'texlive-tram-doc' 'texlive-translation-array-fr' 'texlive-translation-arsclassica-de' 'texlive-translation-biblatex-de' 'texlive-translation-chemsym-de' 'texlive-translation-dcolumn-fr' 'texlive-translation-ecv-de' 'texlive-translation-enumitem-de' 'texlive-translation-europecv-de' 'texlive-translation-filecontents-de' 'texlive-translation-moreverb-de' 'texlive-translation-natbib-fr' 'texlive-translation-tabbing-fr' 'texlive-translations' 'texlive-translations-doc' 'texlive-translator' 'texlive-translator-doc' 'texlive-tree-dvips' 'texlive-tree-dvips-doc' 'texlive-treetex' 'texlive-treetex-doc' 'texlive-trfsigns' 'texlive-trfsigns-doc' 'texlive-trigonometry' 'texlive-trigonometry-doc' 'texlive-trimspaces' 'texlive-trimspaces-doc' 'texlive-trivfloat' 'texlive-trivfloat-doc' 'texlive-trsym' 'texlive-trsym-doc' 'texlive-truncate' 'texlive-truncate-doc' 'texlive-tsemlines' 'texlive-ttfutils' 'texlive-ttfutils-bin' 'texlive-ttfutils-doc' 'texlive-tucv' 'texlive-tucv-doc' 'texlive-tudscr' 'texlive-tudscr-doc' 'texlive-tufte-latex' 'texlive-tufte-latex-doc' 'texlive-tugboat' 'texlive-tugboat-doc' 'texlive-tugboat-plain' 'texlive-tugboat-plain-doc' 'texlive-tui' 'texlive-tui-doc' 'texlive-turabian' 'texlive-turabian-doc' 'texlive-turabian-formatting' 'texlive-turabian-formatting-doc' 'texlive-turkmen' 'texlive-turkmen-doc' 'texlive-turnstile' 'texlive-turnstile-doc' 'texlive-turnthepage' 'texlive-turnthepage-doc' 'texlive-twoinone' 'texlive-twoinone-doc' 'texlive-twoup' 'texlive-twoup-doc' 'texlive-txfonts' 'texlive-txfonts-doc' 'texlive-txfonts-fonts' 'texlive-txfontsb' 'texlive-txfontsb-doc' 'texlive-txfontsb-fonts' 'texlive-txgreeks' 'texlive-txgreeks-doc' 'texlive-txuprcal' 'texlive-txuprcal-doc' 'texlive-txuprcal-fonts' 'texlive-type1cm' 'texlive-type1cm-doc' 'texlive-typed-checklist' 'texlive-typed-checklist-doc' 'texlive-typeface' 'texlive-typeface-doc' 'texlive-typehtml' 'texlive-typehtml-doc' 'texlive-typeoutfileinfo' 'texlive-typeoutfileinfo-bin' 'texlive-typeoutfileinfo-doc' 'texlive-typewriter' 'texlive-typewriter-doc' 'texlive-typicons' 'texlive-typicons-doc' 'texlive-typicons-fonts' 'texlive-typoaid' 'texlive-typoaid-doc' 'texlive-typogrid' 'texlive-typogrid-doc' 'texlive-uaclasses' 'texlive-uaclasses-doc' 'texlive-uafthesis' 'texlive-uafthesis-doc' 'texlive-uantwerpendocs' 'texlive-uantwerpendocs-doc' 'texlive-uassign' 'texlive-uassign-doc' 'texlive-ucalgmthesis' 'texlive-ucalgmthesis-doc' 'texlive-ucbthesis' 'texlive-ucbthesis-doc' 'texlive-ucdavisthesis' 'texlive-ucdavisthesis-doc' 'texlive-ucharcat' 'texlive-ucharcat-doc' 'texlive-ucharclasses' 'texlive-ucharclasses-doc' 'texlive-ucs' 'texlive-ucs-doc' 'texlive-ucsmonograph' 'texlive-ucsmonograph-doc' 'texlive-ucthesis' 'texlive-ucthesis-doc' 'texlive-udesoftec' 'texlive-udesoftec-doc' 'texlive-uebungsblatt' 'texlive-uebungsblatt-doc' 'texlive-uestcthesis' 'texlive-uestcthesis-doc' 'texlive-uhc' 'texlive-uhc-doc' 'texlive-uhc-fonts' 'texlive-uhhassignment' 'texlive-uhhassignment-doc' 'texlive-uhrzeit' 'texlive-uhrzeit-doc' 'texlive-uiucredborder' 'texlive-uiucredborder-doc' 'texlive-uiucthesis' 'texlive-uiucthesis-doc' 'texlive-ukrhyph' 'texlive-ukrhyph-doc' 'texlive-ulem' 'texlive-ulem-doc' 'texlive-ulqda' 'texlive-ulqda-bin' 'texlive-ulqda-doc' 'texlive-ulthese' 'texlive-ulthese-doc' 'texlive-umbclegislation' 'texlive-umbclegislation-doc' 'texlive-umich-thesis' 'texlive-umich-thesis-doc' 'texlive-uml' 'texlive-uml-doc' 'texlive-umlaute' 'texlive-umlaute-doc' 'texlive-umoline' 'texlive-umoline-doc' 'texlive-umthesis' 'texlive-umthesis-doc' 'texlive-umtypewriter' 'texlive-umtypewriter-fonts' 'texlive-unamth-template' 'texlive-unamthesis' 'texlive-unamthesis-doc' 'texlive-undergradmath' 'texlive-underlin' 'texlive-underlin-doc' 'texlive-underoverlap' 'texlive-underoverlap-doc' 'texlive-underscore' 'texlive-underscore-doc' 'texlive-undolabl' 'texlive-undolabl-doc' 'texlive-unfonts-core' 'texlive-unfonts-core-doc' 'texlive-unfonts-core-fonts' 'texlive-unfonts-extra' 'texlive-unfonts-extra-doc' 'texlive-unfonts-extra-fonts' 'texlive-uni-wtal-ger' 'texlive-uni-wtal-ger-doc' 'texlive-uni-wtal-lin' 'texlive-uni-wtal-lin-doc' 'texlive-unicode-bidi' 'texlive-unicode-bidi-doc' 'texlive-unicode-data' 'texlive-unicode-data-doc' 'texlive-unicode-math' 'texlive-unicode-math-doc' 'texlive-unisugar' 'texlive-unisugar-doc' 'texlive-unitn-bimrep' 'texlive-unitn-bimrep-doc' 'texlive-units' 'texlive-units-doc' 'texlive-unitsdef' 'texlive-unitsdef-doc' 'texlive-universa' 'texlive-universa-doc' 'texlive-universalis' 'texlive-universalis-doc' 'texlive-universalis-fonts' 'texlive-univie-ling' 'texlive-univie-ling-doc' 'texlive-unravel' 'texlive-unravel-doc' 'texlive-unswcover' 'texlive-unswcover-doc' 'texlive-uothesis' 'texlive-uothesis-doc' 'texlive-uowthesis' 'texlive-uowthesis-doc' 'texlive-uowthesistitlepage' 'texlive-uowthesistitlepage-doc' 'texlive-upca' 'texlive-upca-doc' 'texlive-updmap-map' 'texlive-uplatex' 'texlive-uplatex-bin' 'texlive-uplatex-doc' 'texlive-upmethodology' 'texlive-upmethodology-doc' 'texlive-uppunctlm' 'texlive-uppunctlm-doc' 'texlive-upquote' 'texlive-upquote-doc' 'texlive-uptex' 'texlive-uptex-base' 'texlive-uptex-base-doc' 'texlive-uptex-bin' 'texlive-uptex-fonts' 'texlive-uptex-fonts-doc' 'texlive-upzhkinsoku' 'texlive-upzhkinsoku-doc' 'texlive-urcls' 'texlive-urcls-doc' 'texlive-uri' 'texlive-uri-doc' 'texlive-url' 'texlive-url-doc' 'texlive-urlbst' 'texlive-urlbst-bin' 'texlive-urlbst-doc' 'texlive-urwchancal' 'texlive-urwchancal-doc' 'texlive-usebib' 'texlive-usebib-doc' 'texlive-ushort' 'texlive-ushort-doc' 'texlive-uspace' 'texlive-uspace-doc' 'texlive-uspatent' 'texlive-uspatent-doc' 'texlive-ut-thesis' 'texlive-ut-thesis-doc' 'texlive-utexasthesis' 'texlive-utexasthesis-doc' 'texlive-utf8mex' 'texlive-utf8mex-doc' 'texlive-utopia' 'texlive-utopia-doc' 'texlive-utopia-fonts' 'texlive-uwmslide' 'texlive-uwmslide-doc' 'texlive-uwthesis' 'texlive-uwthesis-doc' 'texlive-vak' 'texlive-vak-doc' 'texlive-vancouver' 'texlive-vancouver-doc' 'texlive-variablelm' 'texlive-variablelm-doc' 'texlive-variations' 'texlive-variations-doc' 'texlive-varindex' 'texlive-varindex-doc' 'texlive-varisize' 'texlive-varisize-doc' 'texlive-varsfromjobname' 'texlive-varsfromjobname-doc' 'texlive-varwidth' 'texlive-varwidth-doc' 'texlive-vaucanson-g' 'texlive-vaucanson-g-doc' 'texlive-vdmlisting' 'texlive-vdmlisting-doc' 'texlive-velthuis' 'texlive-velthuis-bin' 'texlive-velthuis-doc' 'texlive-velthuis-fonts' 'texlive-venn' 'texlive-venn-doc' 'texlive-venndiagram' 'texlive-venndiagram-doc' 'texlive-venturisadf' 'texlive-venturisadf-doc' 'texlive-venturisadf-fonts' 'texlive-verbasef' 'texlive-verbasef-doc' 'texlive-verbatimbox' 'texlive-verbatimbox-doc' 'texlive-verbatimcopy' 'texlive-verbatimcopy-doc' 'texlive-verbdef' 'texlive-verbdef-doc' 'texlive-verbments' 'texlive-verbments-doc' 'texlive-verse' 'texlive-verse-doc' 'texlive-version' 'texlive-version-doc' 'texlive-versions' 'texlive-versions-doc' 'texlive-versonotes' 'texlive-versonotes-doc' 'texlive-vertbars' 'texlive-vertbars-doc' 'texlive-vgrid' 'texlive-vgrid-doc' 'texlive-vhistory' 'texlive-vhistory-doc' 'texlive-visualfaq' 'texlive-visualpstricks' 'texlive-visualtikz' 'texlive-vlna' 'texlive-vlna-bin' 'texlive-vmargin' 'texlive-vmargin-doc' 'texlive-vntex' 'texlive-vntex-doc' 'texlive-vntex-fonts' 'texlive-vocaltract' 'texlive-vocaltract-doc' 'texlive-volumes' 'texlive-volumes-doc' 'texlive-voss-mathcol' 'texlive-vpe' 'texlive-vpe-bin' 'texlive-vpe-doc' 'texlive-vruler' 'texlive-vruler-doc' 'texlive-vwcol' 'texlive-vwcol-doc' 'texlive-wadalab' 'texlive-wadalab-doc' 'texlive-wadalab-fonts' 'texlive-wallcalendar' 'texlive-wallcalendar-doc' 'texlive-wallpaper' 'texlive-wallpaper-doc' 'texlive-warning' 'texlive-warning-doc' 'texlive-warpcol' 'texlive-warpcol-doc' 'texlive-was' 'texlive-was-doc' 'texlive-wasy' 'texlive-wasy-doc' 'texlive-wasy2-ps' 'texlive-wasy2-ps-doc' 'texlive-wasy2-ps-fonts' 'texlive-wasysym' 'texlive-wasysym-doc' 'texlive-web' 'texlive-web-bin' 'texlive-webguide' 'texlive-webquiz' 'texlive-webquiz-bin' 'texlive-webquiz-doc' 'texlive-widetable' 'texlive-widetable-doc' 'texlive-widows-and-orphans' 'texlive-widows-and-orphans-doc' 'texlive-williams' 'texlive-williams-doc' 'texlive-windycity' 'texlive-windycity-doc' 'texlive-withargs' 'texlive-withargs-doc' 'texlive-witharrows' 'texlive-witharrows-doc' 'texlive-wnri' 'texlive-wnri-doc' 'texlive-wnri-latex' 'texlive-wnri-latex-doc' 'texlive-wordcount' 'texlive-wordcount-bin' 'texlive-wordcount-doc' 'texlive-wordlike' 'texlive-wordlike-doc' 'texlive-worksheet' 'texlive-worksheet-doc' 'texlive-wrapfig' 'texlive-wrapfig-doc' 'texlive-wsemclassic' 'texlive-wsemclassic-doc' 'texlive-wsuipa' 'texlive-wsuipa-doc' 'texlive-wtref' 'texlive-wtref-doc' 'texlive-xargs' 'texlive-xargs-doc' 'texlive-xassoccnt' 'texlive-xassoccnt-doc' 'texlive-xbmks' 'texlive-xbmks-doc' 'texlive-xcharter' 'texlive-xcharter-doc' 'texlive-xcharter-fonts' 'texlive-xcite' 'texlive-xcite-doc' 'texlive-xcjk2uni' 'texlive-xcjk2uni-doc' 'texlive-xcntperchap' 'texlive-xcntperchap-doc' 'texlive-xcolor' 'texlive-xcolor-doc' 'texlive-xcolor-material' 'texlive-xcolor-material-doc' 'texlive-xcolor-solarized' 'texlive-xcolor-solarized-doc' 'texlive-xcomment' 'texlive-xcomment-doc' 'texlive-xcookybooky' 'texlive-xcookybooky-doc' 'texlive-xcpdftips' 'texlive-xcpdftips-doc' 'texlive-xdoc' 'texlive-xdoc-doc' 'texlive-xduthesis' 'texlive-xduthesis-doc' 'texlive-xdvi' 'texlive-xdvi-bin' 'texlive-xdvi-doc' 'texlive-xebaposter' 'texlive-xebaposter-doc' 'texlive-xechangebar' 'texlive-xechangebar-doc' 'texlive-xecjk' 'texlive-xecjk-doc' 'texlive-xecolor' 'texlive-xecolor-doc' 'texlive-xecyr' 'texlive-xecyr-doc' 'texlive-xeindex' 'texlive-xeindex-doc' 'texlive-xellipsis' 'texlive-xellipsis-doc' 'texlive-xepersian' 'texlive-xepersian-doc' 'texlive-xesearch' 'texlive-xesearch-doc' 'texlive-xespotcolor' 'texlive-xespotcolor-doc' 'texlive-xetex' 'texlive-xetex-bin' 'texlive-xetex-devanagari' 'texlive-xetex-devanagari-doc' 'texlive-xetex-doc' 'texlive-xetex-itrans' 'texlive-xetex-itrans-doc' 'texlive-xetex-pstricks' 'texlive-xetex-pstricks-doc' 'texlive-xetex-tibetan' 'texlive-xetex-tibetan-doc' 'texlive-xetexconfig' 'texlive-xetexfontinfo' 'texlive-xetexfontinfo-doc' 'texlive-xetexko' 'texlive-xetexko-doc' 'texlive-xetexref' 'texlive-xevlna' 'texlive-xevlna-doc' 'texlive-xfakebold' 'texlive-xfakebold-doc' 'texlive-xfor' 'texlive-xfor-doc' 'texlive-xgreek' 'texlive-xgreek-doc' 'texlive-xhfill' 'texlive-xhfill-doc' 'texlive-xifthen' 'texlive-xifthen-doc' 'texlive-xii' 'texlive-xii-lat' 'texlive-xindex' 'texlive-xindex-bin' 'texlive-xindex-doc' 'texlive-xint' 'texlive-xint-doc' 'texlive-xits' 'texlive-xits-doc' 'texlive-xits-fonts' 'texlive-xkeyval' 'texlive-xkeyval-doc' 'texlive-xlop' 'texlive-xlop-doc' 'texlive-xltabular' 'texlive-xltabular-doc' 'texlive-xltxtra' 'texlive-xltxtra-doc' 'texlive-xmltex' 'texlive-xmltex-bin' 'texlive-xmltex-doc' 'texlive-xmltexconfig' 'texlive-xmpincl' 'texlive-xmpincl-doc' 'texlive-xnewcommand' 'texlive-xnewcommand-doc' 'texlive-xoptarg' 'texlive-xoptarg-doc' 'texlive-xpatch' 'texlive-xpatch-doc' 'texlive-xpeek' 'texlive-xpeek-doc' 'texlive-xpiano' 'texlive-xpiano-doc' 'texlive-xpicture' 'texlive-xpicture-doc' 'texlive-xpinyin' 'texlive-xpinyin-doc' 'texlive-xprintlen' 'texlive-xprintlen-doc' 'texlive-xpunctuate' 'texlive-xpunctuate-doc' 'texlive-xq' 'texlive-xq-doc' 'texlive-xsavebox' 'texlive-xsavebox-doc' 'texlive-xsim' 'texlive-xsim-doc' 'texlive-xskak' 'texlive-xskak-doc' 'texlive-xstring' 'texlive-xstring-doc' 'texlive-xtab' 'texlive-xtab-doc' 'texlive-xtuthesis' 'texlive-xtuthesis-doc' 'texlive-xunicode' 'texlive-xunicode-doc' 'texlive-xurl' 'texlive-xurl-doc' 'texlive-xwatermark' 'texlive-xwatermark-doc' 'texlive-xyling' 'texlive-xyling-doc' 'texlive-xymtex' 'texlive-xymtex-doc' 'texlive-xypic' 'texlive-xypic-doc' 'texlive-xypic-fonts' 'texlive-xypic-tut-pt' 'texlive-xytree' 'texlive-xytree-doc' 'texlive-yafoot' 'texlive-yafoot-doc' 'texlive-yagusylo' 'texlive-yagusylo-doc' 'texlive-yaletter' 'texlive-yaletter-doc' 'texlive-yannisgr' 'texlive-yannisgr-doc' 'texlive-yathesis' 'texlive-yathesis-doc' 'texlive-yax' 'texlive-yax-doc' 'texlive-ycbook' 'texlive-ycbook-doc' 'texlive-ydoc' 'texlive-ydoc-doc' 'texlive-yfonts' 'texlive-yfonts-doc' 'texlive-yfonts-t1' 'texlive-yfonts-t1-doc' 'texlive-yfonts-t1-fonts' 'texlive-yhmath' 'texlive-yhmath-doc' 'texlive-yhmath-fonts' 'texlive-yinit-otf' 'texlive-yinit-otf-doc' 'texlive-yinit-otf-fonts' 'texlive-york-thesis' 'texlive-york-thesis-doc' 'texlive-youngtab' 'texlive-youngtab-doc' 'texlive-yplan' 'texlive-yplan-bin' 'texlive-yplan-doc' 'texlive-ytableau' 'texlive-ytableau-doc' 'texlive-zapfchan' 'texlive-zapfchan-fonts' 'texlive-zapfding' 'texlive-zapfding-fonts' 'texlive-zebra-goodies' 'texlive-zebra-goodies-doc' 'texlive-zed-csp' 'texlive-zed-csp-doc' 'texlive-zhlineskip' 'texlive-zhlineskip-doc' 'texlive-zhlipsum' 'texlive-zhlipsum-doc' 'texlive-zhmetrics' 'texlive-zhmetrics-doc' 'texlive-zhmetrics-uptex' 'texlive-zhmetrics-uptex-doc' 'texlive-zhnumber' 'texlive-zhnumber-doc' 'texlive-zhspacing' 'texlive-zhspacing-doc' 'texlive-ziffer' 'texlive-ziffer-doc' 'texlive-zlmtt' 'texlive-zlmtt-doc' 'texlive-zootaxa-bst' 'texlive-zootaxa-bst-doc' 'texlive-zwgetfdate' 'texlive-zwgetfdate-doc' 'texlive-zwpagelayout' 'texlive-zwpagelayout-doc' 'texlive-zxjafbfont' 'texlive-zxjafbfont-doc' 'texlive-zxjafont' 'texlive-zxjafont-doc' 'texlive-zxjatype' 'texlive-zxjatype-doc' 'texmaker' 'texmath' 'texstudio' 'texworks' 'texworks-plugin-lua' 'texworks-plugin-python' 'tftpboot-installation-common' 'tftpboot-installation-openSUSE-Kubic-x86_64' 'tftpboot-installation-openSUSE-MicroOS-x86_64' 'tftpboot-installation-openSUSE-Tumbleweed-i586' 'tftpboot-installation-openSUSE-Tumbleweed-x86_64' 'tgt' 'thai-fonts' 'the_silver_searcher' 'thermald' 'thessalonica-oldstandard-otf-fonts' 'thessalonica-oldstandard-ttf-fonts' 'thessalonica-tempora-lgc-otf-fonts' 'thessalonica-tempora-lgc-ttf-fonts' 'thessalonica-theano-otf-fonts' 'thessalonica-theano-ttf-fonts' 'threadweaver-devel' 'threadweaver-devel-32bit' 'thrift' 'thryomanes-fonts' 'thttpd' 'thunar' 'thunar-devel' 'thunar-lang' 'thunar-plugin-archive' 'thunar-plugin-archive-lang' 'thunar-plugin-media-tags' 'thunar-plugin-media-tags-lang' 'thunar-plugin-shares' 'thunar-plugin-shares-lang' 'thunar-plugin-vcs' 'thunar-plugin-vcs-lang' 'thunar-sendto-blueman' 'thunar-sendto-clamtk' 'thunar-volman' 'thunar-volman-branding-openSUSE' 'thunar-volman-branding-upstream' 'thunar-volman-lang' 'thunarx-python' 'thunarx-python-doc' 'thunderbolt-user-space' 'tibetan-machine-uni-fonts' 'tidy' 'tidy-doc' 'tidyp' 'tiff' 'tig' 'tiger-types' 'tiger-types-javadoc' 'tigervnc-x11vnc' 'tilda' 'tilda-lang' 'tilde' 'tiled' 'tilix' 'tilix-lang' 'time-api' 'time-api-javadoc' 'timidity' 'tinc' 'tini' 'tini-static' 'tint' 'tint2' 'tint2-lang' 'tintii' 'tinyb-devel' 'tinyca2' 'tinyfecvpn' 'tinygettext-devel' 'tinyobjloader-devel' 'tinyproxy' 'tinyssh' 'tinyxml-devel' 'tinyxml-docs' 'tinyxml2-devel' 'tiobench' 'tipcutils' 'tix' 'tj' 'tk-32bit' 'tk-devel' 'tkdiff' 'tkfont' 'tkimg' 'tkimg-devel' 'tkinfo' 'tkirc' 'tktable' 'tkxcd' 'tlp' 'tlp-rdw' 'tls' 'tlswrap' 'tmate' 'tmon' 'tmpwatch' 'tmux-powerline' 'tmxtools' 'tn5250' 'tn5250-devel' 'tnef' 'tntdb-doc' 'tntdb-mysql' 'tntdb-postgresql' 'tntdb-replicate' 'tntdb-sqlite' 'tntnet' 'tntnet' 'tntnet-debuginfo' 'tntnet-debugsource' 'tog-pegasus' 'tog-pegasus-devel' 'tog-pegasus-libs' 'tog-pegasus-test' 'togaII-131' 'togaII-131' 'togaII-131-debuginfo' 'togaII-134' 'togaII-134' 'togaII-134-debuginfo' 'togaII-141' 'togaII-141' 'togaII-142' 'togaII-142' 'togaII-142-debuginfo' 'tolua' 'toluapp-5.1' 'toluapp-5.3' 'tomatoes' 'tomboy' 'tomboy-lang' 'tomcat' 'tomcat-admin-webapps' 'tomcat-docs-webapp' 'tomcat-el-3_0-api' 'tomcat-embed' 'tomcat-javadoc' 'tomcat-jsp-2_3-api' 'tomcat-jsvc' 'tomcat-lib' 'tomcat-servlet-4_0-api' 'tomcat-webapps' 'tomoe' 'tomoe-devel' 'tomoe-doc' 'tomoe-gtk' 'tomoe-gtk-devel' 'tomoe-gtk-doc' 'tomoe-gtk-lang' 'tomoyo-tools' 'topal' 'topal' 'tor' 'torbrowser-apparmor-profile' 'torbrowser-launcher' 'torbrowser-launcher-lang' 'torrentinfo' 'torsocks' 'totem' 'totem-devel' 'totem-lang' 'totem-pl-parser' 'totem-pl-parser-devel' 'totem-pl-parser-lang' 'totem-plugin-brasero' 'totem-plugin-gnome-dvb-daemon' 'totem-plugins' 'touchegg' 'touchegg-gui' 'tovid' 'tovid' 'tpm-quote-tools' 'tpm-tools' 'tpm-tools-devel' 'tpm-tools-pkcs11' 'tpm2-0-tss' 'tpm2-0-tss-devel' 'tpm2-tss-engine' 'tpm2-tss-engine-bash-completion' 'tpm2-tss-engine-devel' 'tpm2.0-abrmd' 'tpm2.0-abrmd-devel' 'tpm2.0-tools' 'trace-cmd' 'trackballs' 'tracker' 'tracker-devel' 'tracker-lang' 'tracker-miner-files' 'tracker-miner-rss' 'tracker-miners' 'tracker-miners-lang' 'trader' 'trader-lang' 'tragtor' 'tragtor' 'trang' 'transactional-update' 'transactional-update-zypp-config' 'transcode' 'transcode' 'transcode-debuginfo' 'transcode-debugsource' 'transconnect' 'transfig' 'transifex-client' 'translate-shell' 'translate-toolkit' 'translate-toolkit-devel-doc' 'translation-update-bg' 'translation-update-ca' 'translation-update-cs' 'translation-update-da' 'translation-update-de' 'translation-update-dz' 'translation-update-el' 'translation-update-en_CA' 'translation-update-en_GB' 'translation-update-es' 'translation-update-et' 'translation-update-eu' 'translation-update-fi' 'translation-update-fr' 'translation-update-ga' 'translation-update-gl' 'translation-update-hr' 'translation-update-hu' 'translation-update-it' 'translation-update-ja' 'translation-update-ko' 'translation-update-lt' 'translation-update-lv' 'translation-update-ml' 'translation-update-nb' 'translation-update-ne' 'translation-update-nl' 'translation-update-pa' 'translation-update-pl' 'translation-update-pt' 'translation-update-pt_BR' 'translation-update-ro' 'translation-update-ru' 'translation-update-sk' 'translation-update-sl' 'translation-update-sr' 'translation-update-sv' 'translation-update-tr' 'translation-update-uk' 'translation-update-upstream' 'translation-update-vi' 'translation-update-zh_CN' 'translation-update-zh_TW' 'translator' 'translator-lang' 'transmageddon' 'transmageddon-lang' 'transmission' 'transmission-daemon' 'transmission-gtk' 'transmission-gtk-lang' 'transporter' 'transporter-lang' 'transset' 'tre' 'tre-devel' 'tre-lang' 'treeline' 'trello-full-backup' 'trigger-rally' 'trigger-rally-data' 'trilead-ssh2' 'trilead-ssh2-javadoc' 'trilinos' 'trilinos-devel' 'trilinos-doc' 'trilinos-gnu-mpich-hpc' 'trilinos-gnu-mpich-hpc-devel' 'trilinos-gnu-mvapich2-hpc' 'trilinos-gnu-mvapich2-hpc-devel' 'trilinos-gnu-openmpi2-hpc' 'trilinos-gnu-openmpi2-hpc-devel' 'trilinos-hpc-doc' 'trilinos-openmpi2' 'trilinos-openmpi2-devel' 'trilinos_12_10_1-gnu-mpich-hpc' 'trilinos_12_10_1-gnu-mpich-hpc-devel' 'trilinos_12_10_1-gnu-mvapich2-hpc' 'trilinos_12_10_1-gnu-mvapich2-hpc-devel' 'trilinos_12_10_1-gnu-openmpi2-hpc' 'trilinos_12_10_1-gnu-openmpi2-hpc-devel' 'trilinos_12_10_1-hpc-doc' 'trinity' 'tripwire' 'trojita' 'trousers' 'trousers-devel' 'trustedgrub' 'trustedgrub2' 'trustedgrub2-i386-pc' 'truth' 'truth-javadoc' 'tryton' 'trytond' 'trytond_account' 'trytond_account_invoice' 'trytond_account_invoice_stock' 'trytond_account_product' 'trytond_company' 'trytond_country' 'trytond_currency' 'trytond_party' 'trytond_product' 'trytond_purchase' 'trytond_purchase_request' 'trytond_stock' 'trytond_stock_lot' 'trytond_stock_supply' 'tslib' 'tslib-devel' 'tslib-devel-32bit' 'tslib-plugins' 'tsung' 'ttaenc' 'ttaenc' 'ttaenc-debuginfo' 'ttf2pt1' 'tudu' 'tuladha-jejeg-fonts' 'tumbler' 'tumbler-devel' 'tumbler-doc' 'tumbler-lang' 'tumbleweed-cli' 'tunapie' 'tunapie' 'tunctl' 'tuned-gtk' 'tuned-profiles-atomic' 'tuned-profiles-nfv' 'tuned-profiles-oracle' 'tuned-profiles-realtime' 'tuned-profiles-sap' 'tuned-profiles-sap-hana' 'tuned-utils' 'tuned-utils-systemtap' 'tup' 'tup-doc' 'tupitube' 'tupitube-plugins' 'turing' 'turing' 'turing-debuginfo' 'turing-debugsource' 'turing-devel' 'tuxcursors' 'tuxguitar' 'tuxpaint' 'tuxpaint-config' 'tuxpaint-config-lang' 'tuxpaint-devel' 'tuxpaint-stamps' 'tuxpaint-stamps-animals' 'tuxpaint-stamps-clothes' 'tuxpaint-stamps-food' 'tuxpaint-stamps-hobbies' 'tuxpaint-stamps-household' 'tuxpaint-stamps-medical' 'tuxpaint-stamps-military' 'tuxpaint-stamps-naturalforces' 'tuxpaint-stamps-people' 'tuxpaint-stamps-plants' 'tuxpaint-stamps-seasonal' 'tuxpaint-stamps-space' 'tuxpaint-stamps-sports' 'tuxpaint-stamps-symbols' 'tuxpaint-stamps-town' 'tuxpaint-stamps-vehicles' 'tv-common' 'tv-fonts' 'tvbrowser' 'tvheadend' 'tvnamer' 'tvnamer' 'tvtime' 'tvtime-lang' 'twemoji-color-font' 'twilio-utils' 'twind' 'twinkle' 'twm' 'twolame' 'txt2man' 'txt2tags' 'typelib-1_0-Accounts-1_0' 'typelib-1_0-AccountsService-1_0' 'typelib-1_0-Amtk-5' 'typelib-1_0-Anjuta-3_0' 'typelib-1_0-AppIndicator-0_1' 'typelib-1_0-AppStream-1.0' 'typelib-1_0-AppStreamGlib-1_0' 'typelib-1_0-AtrilDocument-1_5_0' 'typelib-1_0-AtrilView-1_5_0' 'typelib-1_0-Atspi-2_0' 'typelib-1_0-Avahi-0_6' 'typelib-1_0-AyatanaAppIndicator-0_1' 'typelib-1_0-AyatanaAppIndicator3-0_1' 'typelib-1_0-AyatanaIdo3-0_4' 'typelib-1_0-Babl-0_1' 'typelib-1_0-Bamf-3_0' 'typelib-1_0-BlockDev-2_0' 'typelib-1_0-BraseroBurn-3_2_0' 'typelib-1_0-BraseroMedia-3_2_0' 'typelib-1_0-BuzztraxCore-1_1' 'typelib-1_0-BuzztraxCore-1_1-32bit' 'typelib-1_0-BuzztraxIc-1_1' 'typelib-1_0-BuzztraxIc-1_1-32bit' 'typelib-1_0-CMenu-3_0' 'typelib-1_0-Caja-2_0' 'typelib-1_0-Camel-1_2' 'typelib-1_0-Caribou-1_0' 'typelib-1_0-Champlain-0_12' 'typelib-1_0-Cheese-3_0' 'typelib-1_0-CinnamonDesktop-3_0' 'typelib-1_0-CjsPrivate-1_0' 'typelib-1_0-Clutter-1_0' 'typelib-1_0-ClutterGst-3_0' 'typelib-1_0-Cogl-1_0' 'typelib-1_0-Cogl-2_0' 'typelib-1_0-CoglPango-1_0' 'typelib-1_0-CoglPango-2_0' 'typelib-1_0-Colord-1_0' 'typelib-1_0-ColordGtk-1_0' 'typelib-1_0-Colorhug-1_0' 'typelib-1_0-CryptUI-0_0' 'typelib-1_0-Cvc-1_0' 'typelib-1_0-Dbusmenu-0_4' 'typelib-1_0-DbusmenuGtk-0_4' 'typelib-1_0-DbusmenuGtk3-0_4' 'typelib-1_0-Dee-1_0' 'typelib-1_0-Devhelp-3_0' 'typelib-1_0-EBook-1_2' 'typelib-1_0-EBookContacts-1_2' 'typelib-1_0-EDataServer-1_2' 'typelib-1_0-EDataServerUI-1_2' 'typelib-1_0-Eek-0_90' 'typelib-1_0-Entangle-0_1' 'typelib-1_0-Eom-1_0' 'typelib-1_0-EvinceDocument-3_0' 'typelib-1_0-EvinceView-3_0' 'typelib-1_0-Farstream-0_2' 'typelib-1_0-Fcitx-1_0' 'typelib-1_0-Folks-0_6' 'typelib-1_0-FolksEds-0_6' 'typelib-1_0-FolksTelepathy-0_6' 'typelib-1_0-FolksTracker-0_6' 'typelib-1_0-Fwupd-2_0' 'typelib-1_0-GCab-1_0' 'typelib-1_0-GData-0_0' 'typelib-1_0-GES-1_0' 'typelib-1_0-GExiv2-0_10' 'typelib-1_0-GFBGraph-0_2' 'typelib-1_0-GMenu-3_0' 'typelib-1_0-GMime-2_6' 'typelib-1_0-GMime-3_0' 'typelib-1_0-GOffice-0_10' 'typelib-1_0-GPaste-1_0' 'typelib-1_0-GSSDP-1_0' 'typelib-1_0-GSound-1_0' 'typelib-1_0-GTop-2_0' 'typelib-1_0-GUPnP-1_0' 'typelib-1_0-GUPnPAV-1_0' 'typelib-1_0-GUPnPDLNA-2_0' 'typelib-1_0-GUPnPDLNAGst-2_0' 'typelib-1_0-GUPnPIgd-1_0' 'typelib-1_0-GUdev-1_0' 'typelib-1_0-GUsb-1_0' 'typelib-1_0-GVncPulse-1_0' 'typelib-1_0-GWeather-3_0' 'typelib-1_0-GXPS-0_1' 'typelib-1_0-Gck-1' 'typelib-1_0-Gcr-3' 'typelib-1_0-GcrUi-3' 'typelib-1_0-Gda-5_0' 'typelib-1_0-Gdaui-5_0' 'typelib-1_0-GdkPixdata-2_0' 'typelib-1_0-Gdl-3' 'typelib-1_0-Gdm-1_0' 'typelib-1_0-Gee-0_8' 'typelib-1_0-Gee-1_0' 'typelib-1_0-Gegl-0_4' 'typelib-1_0-Geoclue-2_0' 'typelib-1_0-GeocodeGlib-1_0' 'typelib-1_0-Gepub-0_6' 'typelib-1_0-Ggit-1_0' 'typelib-1_0-Gitg-1_0' 'typelib-1_0-GitgExt-1_0' 'typelib-1_0-GjsPrivate-1_0' 'typelib-1_0-Gkbd-3_0' 'typelib-1_0-Gladeui-2_0' 'typelib-1_0-GnomeAutoar-0_1' 'typelib-1_0-GnomeAutoarGtk-0_1' 'typelib-1_0-GnomeBluetooth-1_0' 'typelib-1_0-GoVirt-1_0' 'typelib-1_0-Goa-1_0' 'typelib-1_0-Gom-1_0' 'typelib-1_0-GooCanvas-2_0' 'typelib-1_0-Govf-0_1' 'typelib-1_0-Granite-1_0' 'typelib-1_0-Graphene-1_0' 'typelib-1_0-Grl-0_3' 'typelib-1_0-GrlNet-0_3' 'typelib-1_0-GrlPls-0_3' 'typelib-1_0-Grss-0_7' 'typelib-1_0-Gsf-1' 'typelib-1_0-Gspell-1' 'typelib-1_0-GstAllocators-1_0' 'typelib-1_0-GstApp-1_0' 'typelib-1_0-GstAudio-1_0' 'typelib-1_0-GstGL-1_0' 'typelib-1_0-GstInsertBin-1_0' 'typelib-1_0-GstMpegts-1_0' 'typelib-1_0-GstPbutils-1_0' 'typelib-1_0-GstPlayer-1_0' 'typelib-1_0-GstRtp-1_0' 'typelib-1_0-GstRtsp-1_0' 'typelib-1_0-GstRtspServer-1_0' 'typelib-1_0-GstSdp-1_0' 'typelib-1_0-GstTag-1_0' 'typelib-1_0-GstTranscoder-1_0' 'typelib-1_0-GstValidate-1_0' 'typelib-1_0-GstVideo-1_0' 'typelib-1_0-GstWebRTC-1_0' 'typelib-1_0-Gtd-1_0' 'typelib-1_0-Gtk-2_0' 'typelib-1_0-Gtk-4_0' 'typelib-1_0-GtkClutter-1_0' 'typelib-1_0-GtkFrdp-0_1' 'typelib-1_0-GtkSource-3_0' 'typelib-1_0-GtkSpell-3_0' 'typelib-1_0-Gucharmap-2_90' 'typelib-1_0-Handy-0_0' 'typelib-1_0-HarfBuzz-0_0' 'typelib-1_0-Hinawa-2_0' 'typelib-1_0-IBus-1_0' 'typelib-1_0-Ido3-0_1' 'typelib-1_0-Json-1_0' 'typelib-1_0-Jsonrpc-1_0' 'typelib-1_0-Keybinder-0_0' 'typelib-1_0-Keybinder-3_0' 'typelib-1_0-Libmsi-1_0' 'typelib-1_0-LibvirtGConfig-1_0' 'typelib-1_0-LibvirtGObject-1_0' 'typelib-1_0-LibvirtSandbox-1_0' 'typelib-1_0-LightDM-1' 'typelib-1_0-Manette-0_2-0' 'typelib-1_0-MateDesktop-2_0' 'typelib-1_0-MateMenu-2_0' 'typelib-1_0-MatePanelApplet-4_0' 'typelib-1_0-Matekbd-1_0' 'typelib-1_0-MediaArt-2_0' 'typelib-1_0-Memphis-0_2' 'typelib-1_0-Midori-0_6' 'typelib-1_0-ModemManager-1_0' 'typelib-1_0-Modulemd-1_0' 'typelib-1_0-Modulemd-2_0' 'typelib-1_0-Muffin-0_0' 'typelib-1_0-NMA-1_0' 'typelib-1_0-NMClient-1_0' 'typelib-1_0-Nautilus-3_0' 'typelib-1_0-Nemo-3_0' 'typelib-1_0-NetworkManager-1_0' 'typelib-1_0-OSTree-1_0' 'typelib-1_0-OsmGpsMap-1_0' 'typelib-1_0-PackageKitGlib-1_0' 'typelib-1_0-Peas-1_0' 'typelib-1_0-PeasGtk-1_0' 'typelib-1_0-Playerctl-2_0_1' 'typelib-1_0-Pluma-1_0' 'typelib-1_0-Polari-1_0' 'typelib-1_0-Polkit-1_0' 'typelib-1_0-Poppler-0_18' 'typelib-1_0-Rest-0_7' 'typelib-1_0-Retro-0_14-0' 'typelib-1_0-Rsvg-2_0' 'typelib-1_0-RygelCore-2_6' 'typelib-1_0-RygelRenderer-2_6' 'typelib-1_0-RygelRendererGst-2_6' 'typelib-1_0-RygelServer-2_6' 'typelib-1_0-Secret-1' 'typelib-1_0-Signon-1_0' 'typelib-1_0-Skk-1_0' 'typelib-1_0-TelepathyFarstream-0_6' 'typelib-1_0-TelepathyGlib-0_12' 'typelib-1_0-TelepathyLogger-0_2' 'typelib-1_0-Template-1_0' 'typelib-1_0-Tepl-4' 'typelib-1_0-Thunarx-3_0' 'typelib-1_0-TotemPlParser-1_0' 'typelib-1_0-Tracker-2_0' 'typelib-1_0-TrackerControl-2_0' 'typelib-1_0-TrackerMiner-2_0' 'typelib-1_0-UDisks-2_0' 'typelib-1_0-Uhm-0_0' 'typelib-1_0-Unique-1_0' 'typelib-1_0-Unity-7_0' 'typelib-1_0-UnityExtras-7_0' 'typelib-1_0-UpowerGlib-1_0' 'typelib-1_0-Urfkill-0_0' 'typelib-1_0-Vips-8_5' 'typelib-1_0-WebKit2WebExtension-4_0' 'typelib-1_0-Wnck-1_0' 'typelib-1_0-Wnck-3_0' 'typelib-1_0-Workrave-1_0' 'typelib-1_0-XApp-1_0' 'typelib-1_0-Xkl-1_0' 'typelib-1_0-Xmlb-1_0' 'typelib-1_0-XplayerPlParser-1_0' 'typelib-1_0-XreaderDocument-1_5' 'typelib-1_0-XreaderView-1_5' 'typelib-1_0-Zeitgeist-2_0' 'typelib-1_0-Zpj-0_0' 'typelib-1_0-kkc-1_0' 'typelib-1_0-libdazzle-1_0' 'typelib-1_0-libmirage-3_2' 'typelib-1_0-libxfce4util-1_0' 'typesafe-config' 'typesafe-config-javadoc' 'tzdb' 'u-boot-tools' 'u2f-host' 'u2f-server' 'u3-tool' 'uae' 'uae' 'uae-debuginfo' 'uae-debugsource' 'ubuntu-fonts' 'ubuntu-mate-icon-theme' 'ubuntu-mate-wallpapers' 'ubuntu-mono-icon-theme' 'uchardet' 'ucl-devel' 'ucm' 'ucommon' 'ucommon-devel' 'ucpp' 'ucpp-devel' 'udav' 'udev-browse' 'udev-persistent-ifnames' 'udftools' 'udhcp' 'udiskie' 'udiskie-lang' 'udns' 'udns-devel' 'udp2raw-tunnel' 'udpspeeder' 'udtrace' 'ufiformat' 'ufraw' 'ufraw-lang' 'uftpd' 'ufw' 'ufw-lang' 'uget' 'uget-integrator' 'uget-lang' 'uhd-devel' 'uhd-doc' 'uhd-firmware' 'uhd-udev' 'uhttpmock-devel' 'uhubctl' 'uid_wrapper' 'uim' 'uim-32bit' 'uim-devel' 'uim-gtk2' 'uim-gtk2-32bit' 'uim-gtk3' 'uim-gtk3-32bit' 'uim-qt5' 'uim-qt5-32bit' 'uisp' 'ulfius-devel' 'ullae-veliyae' 'ulogd' 'ulogd-mysql' 'ulogd-pcap' 'ulogd-pgsql' 'ulogd-sqlite3' 'ultimatestunts' 'ultimatestunts-data' 'ultrastar-deluxe' 'umbrello' 'umbrello-lang' 'umoci' 'un-fonts' 'unar' 'unbound' 'unbound-devel' 'unbound-munin' 'unclutter' 'uncrustify' 'unetbootin' 'unibilium-devel' 'unicode-blocks' 'unicode-emoji' 'unicode-ucd' 'unicode-ucd-unihan' 'unifdef' 'unifraktur-fonts' 'unionfs-fuse' 'uniraum' 'uniraum' 'uniraum-debuginfo' 'uniraum-debugsource' 'uniraum-devel' 'unison' 'units' 'unittest-cpp-devel' 'universal-ctags' 'univocity-parsers' 'univocity-parsers-javadoc' 'unixODBC-32bit' 'unixODBC-devel' 'unixbench' 'unknown-horizons' 'unknown-horizons-lang' 'unmass' 'unoconv' 'unpaper' 'unrar_wrapper' 'unsermake' 'unshield' 'unshield-devel' 'unzip-rcc' 'unzix' 'update-bootloader-rpm-macros' 'update-checker' 'update-test-32bit-pkg' 'update-test-32bit-pkg' 'update-test-32bit-pkg-32bit' 'update-test-affects-package-manager' 'update-test-affects-package-manager' 'update-test-broken' 'update-test-feature' 'update-test-feature' 'update-test-interactive' 'update-test-optional' 'update-test-optional' 'update-test-reboot-needed' 'update-test-reboot-needed' 'update-test-relogin-suggested' 'update-test-relogin-suggested' 'update-test-security' 'update-test-security' 'update-test-trivial' 'update-test-trivial' 'update-test-trivial' 'update_test' 'uperf' 'upm-devel' 'upsm' 'upx' 'uranium' 'uranium-firmware-lulzbot' 'uranium-lulzbot' 'urbanlightscape' 'urfkill' 'urh' 'uriparser' 'uriparser-devel' 'uriparser-doc' 'urlscan' 'urlview' 'urlwatch' 'urxvt-font-size' 'urxvt-perls' 'us428control' 'usbauth' 'usbauth-notifier' 'usbguard' 'usbguard-applet-qt' 'usbguard-devel' 'usbguard-tools' 'usbprog' 'usbprog-devel' 'usbprog-gui' 'usbredir' 'usbredir-devel' 'usbtop' 'usbview' 'usnic_tools' 'usrp-firmware' 'usrp-tools' 'usx2yloader' 'utempter-devel' 'utempter-devel-32bit' 'utf8proc-devel' 'utfcpp-devel' 'uthash-devel' 'util-macros-devel' 'utils-libnfs' 'utox' 'uucp' 'uucp-xinetd' 'uudeview' 'uuid-devel' 'uuidd' 'uvcdynctrl' 'uwac0-0-devel' 'uwsc' 'uwsgi' 'uwsgi-emperor_pg' 'uwsgi-emperor_zeromq' 'uwsgi-geoip' 'uwsgi-gevent' 'uwsgi-glusterfs' 'uwsgi-greenlet' 'uwsgi-jvm' 'uwsgi-ldap' 'uwsgi-libffi' 'uwsgi-logzmq' 'uwsgi-lua' 'uwsgi-pam' 'uwsgi-php7' 'uwsgi-psgi' 'uwsgi-pypy' 'uwsgi-python' 'uwsgi-python3' 'uwsgi-sqlite3' 'uwsgi-xslt' 'v4l-conf' 'v4l-tools' 'v4l-utils' 'v4l-utils-devel-tools' 'v4l-utils-lang' 'v4l2loopback-kmp-default' 'v4l2loopback-kmp-pae' 'v4l2loopback-utils' 'vacation' 'vacuum-im' 'vacuum-im-devel' 'vacuum-im-lang' 'vacuum-im-plugins-dbusnotifications' 'vacuum-im-plugins-gmailnotify' 'vacuum-im-plugins-spellchecker' 'vacuum-im-plugins-statistics' 'vacuum-im-plugins-usermood' 'vacuum-im-plugins-usertune' 'vagrant' 'vagrant-bash-completion' 'vagrant-doc' 'vagrant-emacs' 'vagrant-libvirt' 'vagrant-libvirt-doc' 'vagrant-vim' 'vala' 'vala-panel' 'vala-panel-appmenu-lang' 'vala-panel-devel' 'vala-panel-extras-battery' 'vala-panel-extras-gtop' 'vala-panel-extras-lang' 'vala-panel-extras-volume' 'vala-panel-extras-weather' 'vala-panel-extras-xkb' 'vala-panel-extras-xkb-flags' 'vala-panel-lang' 'vala-panel-plugin-appmenu' 'vala-panel-plugin-sntray' 'vala-panel-plugin-sntray-lang' 'vala-panel-plugins-base' 'vala-panel-plugins-wnck' 'vala-panel-runner' 'valadoc' 'valadoc-doclet-devhelp' 'valadoc-doclet-gtkdoc' 'valadoc-doclet-html' 'valgrind' 'valgrind-32bit' 'valgrind-devel' 'vamp-aubio-plugins' 'vamp-aubio-plugins' 'vamp-aubio-plugins-debuginfo' 'vamp-libxtract-plugins' 'vamp-libxtract-plugins' 'vamp-libxtract-plugins-debuginfo' 'vamp-match-plugin' 'vamp-match-plugin' 'vamp-match-plugin-debuginfo' 'vamp-match-plugin-debugsource' 'vamp-mazurka-plugins' 'vamp-mazurka-plugins' 'vamp-mazurka-plugins-debuginfo' 'vamp-mazurka-plugins-debugsource' 'vamp-plugin-sdk' 'vamp-plugin-sdk-devel' 'vamp-plugin-tester' 'vamp-plugin-tester' 'vamp-plugin-tester-debuginfo' 'vamp-plugin-tester-debugsource' 'vamp-qm-plugins' 'vamp-qm-plugins' 'vamp-qm-plugins-debuginfo' 'vamps' 'vamps' 'vapoursynth-devel' 'vapoursynth-plugin-eedi3' 'vapoursynth-plugin-imwri' 'vapoursynth-plugin-miscfilters' 'vapoursynth-plugin-morpho' 'vapoursynth-plugin-ocr' 'vapoursynth-plugin-removegrain' 'vapoursynth-plugin-subtext' 'vapoursynth-plugin-vinverse' 'vapoursynth-plugin-vivtc' 'vapoursynth-tools' 'variety' 'varnish' 'varnish-devel' 'vboot' 'vbrfix' 'vcdimager' 'vcdimager-devel' 'vclt-tools' 'vclt-tools' 'vcron' 'vcsh' 'vcsh-zsh-completion' 'vde2' 'vde2-cryptcab' 'vde2-slirp' 'vdr-plugin-mcli' 'vdr-plugin-mcli' 'vdr-plugin-mcli-debuginfo' 'vdr-plugin-mcli-debugsource' 'ved' 'vegastrike' 'vegastrike-data' 'vegastrike-extra' 'vegastrike-music' 'vegastrike-speech' 'velocity' 'velocity-demo' 'velocity-javadoc' 'velocity-manual' 'velum' 'velum-branding' 'verilator' 'verilator-devel' 'verilator-doc' 'verilator-doc-pdf' 'verilator-examples' 'veusz' 'vgrep' 'vhba-kmp-default' 'vhba-kmp-pae' 'vhostmd' 'vidcutter' 'videoporama' 'videoporama' 'vido' 'vido-lang' 'viewnior' 'viewnior-lang' 'viewres' 'viewvc' 'vifm' 'vifm-colors' 'vigra-devel' 'vim-bootstrap' 'vim-completion-golang' 'vim-fzf' 'vim-icinga2' 'vim-plugin-NERDcommenter' 'vim-plugin-NERDtree' 'vim-plugin-a' 'vim-plugin-ack' 'vim-plugin-align' 'vim-plugin-bufexplorer' 'vim-plugin-calendar' 'vim-plugin-colorschemes' 'vim-plugin-colorsel' 'vim-plugin-conky' 'vim-plugin-devhelp' 'vim-plugin-diffchanges' 'vim-plugin-editorconfig' 'vim-plugin-fugitive' 'vim-plugin-gitdiff' 'vim-plugin-gnupg' 'vim-plugin-latex' 'vim-plugin-locateopen' 'vim-plugin-matrix' 'vim-plugin-minibufexpl' 'vim-plugin-multiplesearch' 'vim-plugin-neomutt' 'vim-plugin-nginx' 'vim-plugin-powerline' 'vim-plugin-project' 'vim-plugin-quilt' 'vim-plugin-rails' 'vim-plugin-searchcomplete' 'vim-plugin-showmarks' 'vim-plugin-snipmate' 'vim-plugin-supertab' 'vim-plugin-taglist' 'vim-plugin-tlib' 'vim-plugin-tregisters' 'vim-plugin-tselectbuffer' 'vim-plugin-tselectfiles' 'vim-plugin-utl' 'vim-plugin-vimwiki' 'vim-plugin-zoomwin' 'vimb' 'vimpc' 'vimpc' 'vimpc-debuginfo' 'vimpc-debugsource' 'vinagre' 'vinagre-lang' 'vino' 'vino-lang' 'vips-doc' 'vips-tools' 'virglrenderer-devel' 'virglrenderer-test-server' 'virt-sandbox' 'virt-top' 'virtualbox' 'virtualbox-devel' 'virtualbox-guest-desktop-icons' 'virtualbox-guest-source' 'virtualbox-guest-tools' 'virtualbox-guest-x11' 'virtualbox-host-source' 'virtualbox-kmp-default' 'virtualbox-qt' 'virtualbox-vnc' 'virtualbox-websrv' 'viruskiller' 'visio2svg-conv' 'visualjackm' 'vit' 'vitetris' 'vivaldi' 'vivaldi' 'vkd3d-devel' 'vkd3d-devel-32bit' 'vkeybd' 'vkmark' 'vkquake' 'vlc' 'vlc-beta' 'vlc-beta' 'vlc-beta-debuginfo' 'vlc-beta-debugsource' 'vlc-beta-devel' 'vlc-beta-noX' 'vlc-beta-noX-debuginfo' 'vlc-beta-noX-lang' 'vlc-beta-qt' 'vlc-beta-qt-debuginfo' 'vlc-codec-gstreamer-debuginfo' 'vlc-codecs-debuginfo' 'vlc-debuginfo' 'vlc-debugsource' 'vlc-devel' 'vlc-jack' 'vlc-jack-debuginfo' 'vlc-lang' 'vlc-noX-debuginfo' 'vlc-qt-debuginfo' 'vlc-vdpau-debuginfo' 'vlgothic-fonts' 'vlmc' 'vlmc' 'vlmc-debuginfo' 'vlmc-debugsource' 'vm-dump-metrics' 'vmmlib' 'vmmlib-devel' 'vmmlib-doc' 'vms-empire' 'vmtouch' 'vncmanager' 'vncmanager-controller' 'vncmanager-controller-gnome' 'vncmanager-greeter' 'vnote' 'vnstat' 'vnstat-cgi' 'vo-aacenc' 'vo-aacenc-debugsource' 'vo-amrwbenc' 'vo-amrwbenc-debugsource' 'vobcopy' 'vobcopy' 'vobcopy-debuginfo' 'vobcopy-debugsource' 'vocal' 'vocal-lang' 'vodovod' 'voikkospell' 'vokoscreen' 'vollkorn-fonts' 'vorbisgain' 'voro++' 'voro++-devel' 'vorta' 'votca-csg' 'votca-csg-bash' 'votca-csg-common' 'votca-csg-devel' 'votca-csg-doc' 'votca-csg-tutorials' 'votca-csgapps' 'votca-ctp' 'votca-ctp-common' 'votca-ctp-devel' 'votca-ctp-doc' 'votca-tools' 'votca-tools-devel' 'votca-xtp' 'votca-xtp-common' 'votca-xtp-devel' 'votca-xtp-doc' 'voxelands' 'vpcs' 'vpnc' 'vpp' 'vpp-api-lua' 'vpp-api-python' 'vpp-devel' 'vpp-plugins' 'vpx-tools' 'vsftpd' 'vsqlite++-devel' 'vtable-dumper' 'vtcl' 'vte-devel' 'vte-tools' 'vtk-devel' 'vtk-devel-doc' 'vtk-examples' 'vtk-java' 'vtk-openmpi-devel' 'vtk-openmpi-devel-doc' 'vtk-openmpi-java' 'vtk-openmpi-qt' 'vtk-openmpi2-devel' 'vtk-openmpi2-devel-doc' 'vtk-openmpi2-java' 'vtk-openmpi2-qt' 'vtk-qt' 'vtkdata' 'vulkan-devel' 'vulkan-headers' 'vulkan-validationlayers' 'vusb-analyzer' 'vym' 'w3c-markup-validator' 'w3c-markup-validator-libs' 'w3mir' 'w_scan' 'wadptr' 'waffle' 'waffle-devel' 'wallpapers-openSUSE-extra' 'wallstreet' 'wammu' 'wammu-lang' 'wang-fonts' 'warewulf-cluster' 'warewulf-common' 'warewulf-doc' 'warewulf-provision' 'warewulf-provision-i386-initramfs' 'warewulf-provision-ipxe-images' 'warewulf-provision-server' 'warewulf-provision-x86_64-initramfs' 'warewulf-vnfs' 'warzone2100' 'warzone2100-data' 'watchman' 'watchman-python' 'wavemon' 'wavpack' 'wavpack-devel' 'way-cooler' 'waybar' 'wayland-devel' 'wayland-devel-32bit' 'wayland-protocols-devel' 'waylandpp' 'waylandpp-devel' 'wbxml2-tools' 'wcd' 'wcslib-devel' 'wcslib-doc' 'wcslib-tools' 'wdiff' 'wdiff-lang' 'wdm' 'weather-wallpaper' 'weather-wallpaper-lang' 'weave-k8s-yaml' 'weave-kube' 'weave-npc' 'webalizer' 'webalizer-flags' 'webcamoid' 'webcamoid-devel' 'webdot' 'webenginepart' 'webkit-jsc-4' 'webkit2gtk3-devel' 'webkit2gtk3-minibrowser' 'webkit2gtk3-plugin-process-gtk2' 'websocketpp-devel' 'webvfx' 'webvfx-devel' 'webvfx-module' 'weechat' 'weechat-aspell' 'weechat-devel' 'weechat-lang' 'weechat-lua' 'weechat-perl' 'weechat-python' 'weechat-ruby' 'weechat-tcl' 'weld-parent' 'werken-xpath' 'werken-xpath-javadoc' 'wesnoth' 'wesnoth-campaign-server' 'wesnoth-data' 'wesnoth-fslayout' 'wesnoth-server' 'weston' 'weston-devel' 'wgetpaste' 'when-command' 'when-command-lang' 'whfc' 'whohas' 'whois' 'widelands' 'widelands-data' 'widelands-debug' 'wiggle' 'wiiuse-devel' 'wimlib-devel' 'wimtools' 'wine' 'wine-32bit' 'wine-devel' 'wine-devel-32bit' 'wine-nine-standalone' 'wine-nine-standalone-32bit' 'wine-staging-devel' 'wine-staging-devel-32bit' 'wineasio' 'wineasio' 'wineasio-32bit' 'wineasio-32bit-debuginfo' 'wineasio-debuginfo' 'wineasio-debugsource' 'winff' 'winff' 'winff-debuginfo' 'winff-debugsource' 'winff-lang' 'winpr2-devel' 'winrs' 'wipe' 'wireshark' 'wireshark-devel' 'wireshark-plugin-libvirt' 'wireshark-ui-qt' 'withlock' 'wizznic' 'wkhtmltopdf' 'wkhtmltopdf-devel' 'wlc-devel' 'wlroots-devel' 'wm-icons' 'wmakerconf' 'wmgui' 'wminput' 'wmpomme' 'wmutils' 'wnck-sharp' 'woff2-devel' 'wol-udev-rules' 'wondershaper' 'woodstox-core' 'woodstox-core-javadoc' 'wordcut' 'wordcut-devel' 'wordnet' 'wordnet-devel' 'words-british' 'words-canadian' 'workrave' 'workrave-devel' 'wpa_supplicant-gui' 'wpan-tools' 'wput' 'wput' 'wput-debuginfo' 'wput-debugsource' 'wput-lang' 'wqy-bitmap-fonts' 'wqy-microhei-fonts' 'wqy-zenhei-fonts' 'wrapsix' 'writerperfect' 'wrk' 'ws-jaxme' 'ws-jaxme-javadoc' 'ws-jaxme-manual' 'wsdl4j' 'wsdl4j-javadoc' 'wslay' 'wslay-devel' 'wsmancli' 'wt' 'wt-devel' 'wumpus' 'wv' 'wv-devel' 'wv2-devel' 'wxEDID' 'wxEphe' 'wxGTK3-3_2-devel' 'wxMaxima' 'wxQt-3_2-devel' 'wxWidgets-3_0-devel' 'wxWidgets-3_0-devel-32bit' 'wxWidgets-3_0-docs' 'wxWidgets-3_0-nostl-devel' 'wxWidgets-3_0-plugin-sound_sdlu-3_0' 'wxWidgets-3_0-plugin-sound_sdlu-3_0-32bit' 'wxWidgets-3_2-devel' 'wxWidgets-3_2-plugin-sound_sdlu-3_2' 'wxWidgets-docs' 'wxWidgets-wxcontainer' 'wxWidgets-wxcontainer-compat-lib-config' 'wxWidgets-wxcontainer-debugsource' 'wxWidgets-wxcontainer-devel' 'wxWidgets-wxcontainer-devel-debuginfo' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-32bit' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-32bit-debuginfo' 'wxWidgets-wxcontainer-plugin-sound_sdlu-2_8-wxcontainer-debuginfo' 'wxcam' 'wxcam' 'wxcam-debuginfo' 'wxcam-debugsource' 'wxhexeditor' 'wxhexeditor-lang' 'wxlua' 'wxlua-devel' 'wxmp3gain' 'wxmp3gain-lang' 'wxsqlite3-devel' 'wxstedit' 'wxstedit-devel' 'wxsvg' 'wyrd' 'wyrmgus' 'wyrmgus-devel' 'wyrmsun' 'x11-japanese-bitmap-fonts' 'x11-video-nvidiaG04' 'x11perf' 'x11vnc' 'x11vnc-frontend' 'x264' 'x264-debuginfo' 'x265' 'x265' 'x265-debuginfo' 'x265-debugsource' 'x2x' 'x3270' 'x86info' 'xalan-c' 'xalan-j2' 'xalan-j2-demo' 'xalan-j2-manual' 'xalan-j2-xsltc' 'xano-mincho-fonts' 'xaos' 'xaos-lang' 'xapian-core' 'xapian-core-doc' 'xapian-core-examples' 'xapps-common' 'xapps-common-lang' 'xar' 'xautolock' 'xautomation' 'xaw3dd' 'xawtv' 'xbacklight' 'xbanish' 'xbase' 'xbase-devel' 'xbase-doc' 'xbean' 'xbean-javadoc' 'xbench' 'xbiff' 'xbindkeys' 'xbitmaps-devel' 'xboard' 'xboard' 'xboard-debuginfo' 'xboard-debugsource' 'xbomb' 'xboxdrv' 'xbrz-devel' 'xbsql' 'xbsql-devel' 'xcalc' 'xcalib' 'xcalib-profiles' 'xcb' 'xcb-proto-devel' 'xcb-util-cursor-devel' 'xcb-util-cursor-devel-32bit' 'xcb-util-devel' 'xcb-util-devel-32bit' 'xcb-util-errors-devel' 'xcb-util-image-devel' 'xcb-util-image-devel-32bit' 'xcb-util-keysyms-devel' 'xcb-util-keysyms-devel-32bit' 'xcb-util-renderutil-devel' 'xcb-util-renderutil-devel-32bit' 'xcb-util-wm-devel' 'xcb-util-wm-devel-32bit' 'xcb-util-xrm-devel' 'xcfa' 'xcfa' 'xcfa-debuginfo' 'xcfa-lang' 'xclass' 'xclass-devel' 'xclipboard' 'xcm' 'xcmsdb' 'xcolors' 'xcompmgr' 'xcoral' 'xcowsay' 'xcursor-themes' 'xcursorgen' 'xdbedizzy' 'xdelta3' 'xdg-dbus-proxy' 'xdg-desktop-portal-devel' 'xdg-desktop-portal-gtk' 'xdg-desktop-portal-gtk-lang' 'xdg-user-dirs-gtk' 'xdg-user-dirs-gtk-lang' 'xdiskusage' 'xditview' 'xdm-xsession' 'xdmsc' 'xdotool' 'xdotool-devel' 'xdpyinfo' 'xdriinfo' 'xed' 'xed-devel' 'xed-lang' 'xedit' 'xemacs' 'xemacs-el' 'xemacs-info' 'xemacs-packages' 'xemacs-packages-el' 'xemacs-packages-info' 'xen' 'xen-devel' 'xen-doc-html' 'xen-libs-32bit' 'xen-tools' 'xen-tools-domU' 'xen_server' 'xen_tools' 'xengine' 'xerces-c' 'xerces-c-doc' 'xerces-j2' 'xerces-j2-demo' 'xerces-j2-javadoc' 'xev' 'xeyes' 'xf86-input-evdev-devel' 'xf86-input-joystick-devel' 'xf86-input-libinput-devel' 'xf86-input-mouse-devel' 'xf86-input-synaptics-devel' 'xf86-input-wacom-devel' 'xf86-video-amdgpu' 'xf86-video-ark' 'xf86-video-ast' 'xf86-video-ati' 'xf86-video-chips' 'xf86-video-cirrus' 'xf86-video-dummy' 'xf86-video-fbturbo' 'xf86-video-fbturbo-live' 'xf86-video-glint' 'xf86-video-i128' 'xf86-video-intel' 'xf86-video-intel-32bit' 'xf86-video-mach64' 'xf86-video-mga' 'xf86-video-neomagic' 'xf86-video-nv' 'xf86-video-openchrome' 'xf86-video-qxl' 'xf86-video-r128' 'xf86-video-savage' 'xf86-video-siliconmotion' 'xf86-video-sis' 'xf86-video-sisusb' 'xf86-video-tdfx' 'xf86-video-tga' 'xf86-video-trident' 'xf86-video-v4l' 'xf86-video-vmware' 'xf86-video-voodoo' 'xf86dga' 'xfburn' 'xfburn-lang' 'xfce' 'xfce4-appfinder' 'xfce4-appfinder-lang' 'xfce4-battery-plugin' 'xfce4-battery-plugin-lang' 'xfce4-calculator-plugin' 'xfce4-calculator-plugin-lang' 'xfce4-clipman-plugin' 'xfce4-clipman-plugin-lang' 'xfce4-cpufreq-plugin' 'xfce4-cpufreq-plugin-lang' 'xfce4-cpugraph-plugin' 'xfce4-cpugraph-plugin-lang' 'xfce4-datetime-plugin' 'xfce4-datetime-plugin-lang' 'xfce4-dev-tools' 'xfce4-dict' 'xfce4-dict-lang' 'xfce4-diskperf-plugin' 'xfce4-diskperf-plugin-lang' 'xfce4-eyes-plugin' 'xfce4-eyes-plugin-lang' 'xfce4-fsguard-plugin' 'xfce4-fsguard-plugin-lang' 'xfce4-genmon-plugin' 'xfce4-genmon-plugin-lang' 'xfce4-icon-theme' 'xfce4-mailwatch-plugin' 'xfce4-mailwatch-plugin-lang' 'xfce4-mixer' 'xfce4-mixer-lang' 'xfce4-mixer-plugin' 'xfce4-mount-plugin' 'xfce4-mount-plugin-lang' 'xfce4-mpc-plugin' 'xfce4-mpc-plugin-lang' 'xfce4-multiload-nandhp-plugin' 'xfce4-netload-plugin' 'xfce4-netload-plugin-lang' 'xfce4-netspeed-plugin' 'xfce4-notes-plugin' 'xfce4-notes-plugin-lang' 'xfce4-notifyd' 'xfce4-notifyd-branding-openSUSE' 'xfce4-notifyd-branding-upstream' 'xfce4-notifyd-lang' 'xfce4-notifyd-theme-adapta' 'xfce4-notifyd-theme-plata' 'xfce4-panel' 'xfce4-panel-branding-openSUSE' 'xfce4-panel-branding-upstream' 'xfce4-panel-devel' 'xfce4-panel-lang' 'xfce4-panel-plugin-appmenu' 'xfce4-panel-plugin-battery' 'xfce4-panel-plugin-battery-lang' 'xfce4-panel-plugin-calculator' 'xfce4-panel-plugin-calculator-lang' 'xfce4-panel-plugin-clipman' 'xfce4-panel-plugin-clipman-lang' 'xfce4-panel-plugin-cpufreq' 'xfce4-panel-plugin-cpufreq-lang' 'xfce4-panel-plugin-cpugraph' 'xfce4-panel-plugin-cpugraph-lang' 'xfce4-panel-plugin-datetime' 'xfce4-panel-plugin-datetime-lang' 'xfce4-panel-plugin-dict' 'xfce4-panel-plugin-diskperf' 'xfce4-panel-plugin-diskperf-lang' 'xfce4-panel-plugin-eyes' 'xfce4-panel-plugin-eyes-lang' 'xfce4-panel-plugin-fsguard' 'xfce4-panel-plugin-fsguard-lang' 'xfce4-panel-plugin-genmon' 'xfce4-panel-plugin-genmon-lang' 'xfce4-panel-plugin-mailwatch' 'xfce4-panel-plugin-mailwatch-lang' 'xfce4-panel-plugin-mount' 'xfce4-panel-plugin-mount-lang' 'xfce4-panel-plugin-mpc' 'xfce4-panel-plugin-mpc-lang' 'xfce4-panel-plugin-multiload-nandhp' 'xfce4-panel-plugin-netload' 'xfce4-panel-plugin-netload-lang' 'xfce4-panel-plugin-netspeed' 'xfce4-panel-plugin-notes' 'xfce4-panel-plugin-notes-lang' 'xfce4-panel-plugin-places' 'xfce4-panel-plugin-places-lang' 'xfce4-panel-plugin-pulseaudio' 'xfce4-panel-plugin-pulseaudio-lang' 'xfce4-panel-plugin-sensors' 'xfce4-panel-plugin-sensors-devel' 'xfce4-panel-plugin-sensors-lang' 'xfce4-panel-plugin-smartbookmark' 'xfce4-panel-plugin-smartbookmark-lang' 'xfce4-panel-plugin-sntray' 'xfce4-panel-plugin-statusnotifier' 'xfce4-panel-plugin-statusnotifier-lang' 'xfce4-panel-plugin-systemload' 'xfce4-panel-plugin-systemload-lang' 'xfce4-panel-plugin-timeout' 'xfce4-panel-plugin-timeout-lang' 'xfce4-panel-plugin-timer' 'xfce4-panel-plugin-timer-lang' 'xfce4-panel-plugin-verve' 'xfce4-panel-plugin-verve-lang' 'xfce4-panel-plugin-wavelan' 'xfce4-panel-plugin-wavelan-lang' 'xfce4-panel-plugin-weather' 'xfce4-panel-plugin-weather-lang' 'xfce4-panel-plugin-whiskermenu' 'xfce4-panel-plugin-whiskermenu-lang' 'xfce4-panel-plugin-xkb' 'xfce4-panel-plugin-xkb-lang' 'xfce4-panel-profiles' 'xfce4-panel-restore-defaults' 'xfce4-places-plugin' 'xfce4-places-plugin-lang' 'xfce4-power-manager' 'xfce4-power-manager-branding-openSUSE' 'xfce4-power-manager-branding-upstream' 'xfce4-power-manager-lang' 'xfce4-power-manager-plugin' 'xfce4-pulseaudio-plugin' 'xfce4-pulseaudio-plugin-lang' 'xfce4-screensaver' 'xfce4-screenshooter' 'xfce4-screenshooter-lang' 'xfce4-screenshooter-plugin' 'xfce4-sensors-plugin' 'xfce4-sensors-plugin-devel' 'xfce4-sensors-plugin-lang' 'xfce4-session' 'xfce4-session-branding-openSUSE' 'xfce4-session-branding-upstream' 'xfce4-session-lang' 'xfce4-settings' 'xfce4-settings-branding-openSUSE' 'xfce4-settings-branding-upstream' 'xfce4-settings-lang' 'xfce4-smartbookmark-plugin' 'xfce4-smartbookmark-plugin-lang' 'xfce4-splash-branding-openSUSE' 'xfce4-statusnotifier-plugin' 'xfce4-statusnotifier-plugin-lang' 'xfce4-stopwatch-plugin' 'xfce4-stopwatch-plugin-lang' 'xfce4-systemload-plugin' 'xfce4-systemload-plugin-lang' 'xfce4-taskmanager' 'xfce4-taskmanager-lang' 'xfce4-terminal' 'xfce4-terminal-lang' 'xfce4-time-out-plugin' 'xfce4-time-out-plugin-lang' 'xfce4-timer-plugin' 'xfce4-timer-plugin-lang' 'xfce4-vala' 'xfce4-verve-plugin' 'xfce4-verve-plugin-lang' 'xfce4-volumed' 'xfce4-volumed-pulse' 'xfce4-wavelan-plugin' 'xfce4-wavelan-plugin-lang' 'xfce4-weather-plugin' 'xfce4-weather-plugin-lang' 'xfce4-whiskermenu-plugin' 'xfce4-whiskermenu-plugin-lang' 'xfce4-xkb-plugin' 'xfce4-xkb-plugin-lang' 'xfconf' 'xfconf-lang' 'xfd' 'xfdashboard' 'xfdashboard-devel' 'xfdashboard-lang' 'xfdashboard-themes' 'xfdesktop' 'xfdesktop-branding-openSUSE' 'xfdesktop-branding-upstream' 'xfdesktop-lang' 'xfig' 'xfishtank' 'xfmpc' 'xfmpc-lang' 'xfontsel' 'xfs' 'xfsdump' 'xfsinfo' 'xfsprogs-devel' 'xfwm4' 'xfwm4-branding-openSUSE' 'xfwm4-branding-upstream' 'xfwm4-lang' 'xfwm4-theme-adapta' 'xfwm4-theme-plata' 'xfwm4-themes' 'xfwpcnm' 'xfwpcnm' 'xfwpcnm-debuginfo' 'xgalaga++' 'xgalaga-sdl' 'xgamma' 'xgc' 'xgnokii' 'xgrabsc' 'xhfsutil' 'xhtml-dtd' 'xiccd' 'xindy' 'xindy-doc' 'xindy-rules' 'xine-browser-plugin' 'xine-browser-plugin' 'xine-browser-plugin-debuginfo' 'xine-browser-plugin-debugsource' 'xine-lib' 'xine-lib-debugsource' 'xine-skins' 'xine-skins' 'xine-ui' 'xine-ui' 'xine-ui-32bit' 'xine-ui-32bit-debuginfo' 'xine-ui-debuginfo' 'xine-ui-debugsource' 'xinput' 'xiphos' 'xiphos-lang' 'xiterm' 'xjadeo' 'xkbcomp-devel' 'xkbevd' 'xkbprint' 'xkbutils' 'xkeycaps' 'xkill' 'xlatencytop' 'xless' 'xload' 'xlockmore' 'xlogin' 'xlogo' 'xls2csv' 'xlsatoms' 'xlsclients' 'xlsfonts' 'xmag' 'xmahjongg' 'xman' 'xmanja' 'xmgrace' 'xmgrace-devel' 'xmh' 'xmined' 'xml-commons-apis-bootstrap' 'xml-commons-apis-javadoc' 'xml-commons-apis-manual' 'xml-commons-resolver' 'xml-commons-resolver-bootstrap' 'xml-commons-resolver-javadoc' 'xml-commons-which-bootstrap' 'xml-im-exporter' 'xml-im-exporter-javadoc' 'xml-security-c-bin' 'xml2po' 'xml2po-devel' 'xmlb-tool' 'xmlbeans' 'xmlbeans-mini' 'xmlbeans-scripts' 'xmlbird-devel' 'xmldb-api' 'xmldb-api-javadoc' 'xmldb-api-sdk' 'xmldb-common' 'xmlformat' 'xmlgraphics-batik' 'xmlgraphics-batik-css' 'xmlgraphics-batik-demo' 'xmlgraphics-batik-javadoc' 'xmlgraphics-batik-rasterizer' 'xmlgraphics-batik-slideshow' 'xmlgraphics-batik-squiggle' 'xmlgraphics-batik-svgpp' 'xmlgraphics-batik-ttf2svg' 'xmlgraphics-commons' 'xmlgraphics-commons-javadoc' 'xmlgraphics-fop' 'xmlrpc-c-devel' 'xmlsec1' 'xmlsec1-devel' 'xmlsec1-gcrypt-devel' 'xmlsec1-gnutls-devel' 'xmlsec1-nss-devel' 'xmlsec1-openssl-devel' 'xmlto' 'xmltoman' 'xmltooling-schemas' 'xmltv' 'xmltv' 'xmltv-grabbers' 'xmlunit' 'xmlunit-javadoc' 'xmms2' 'xmms2-devel' 'xmms2-docs' 'xmms2-perl' 'xmms2-plugin-airplay' 'xmms2-plugin-ao' 'xmms2-plugin-apefile' 'xmms2-plugin-asf' 'xmms2-plugin-asx' 'xmms2-plugin-base' 'xmms2-plugin-cdda' 'xmms2-plugin-cue' 'xmms2-plugin-curl' 'xmms2-plugin-daap' 'xmms2-plugin-flac' 'xmms2-plugin-flv' 'xmms2-plugin-gme' 'xmms2-plugin-gvfs' 'xmms2-plugin-html' 'xmms2-plugin-ices' 'xmms2-plugin-icymetaint' 'xmms2-plugin-id3v2' 'xmms2-plugin-jack' 'xmms2-plugin-karaoke' 'xmms2-plugin-m3u' 'xmms2-plugin-modplug' 'xmms2-plugin-mp4' 'xmms2-plugin-musepack' 'xmms2-plugin-normalize' 'xmms2-plugin-ofa' 'xmms2-plugin-pulse' 'xmms2-plugin-samba' 'xmms2-plugin-sndfile' 'xmms2-plugin-speex' 'xmms2-plugin-tta' 'xmms2-plugin-vocoder' 'xmms2-plugin-wave' 'xmms2-plugin-wavpack' 'xmms2-ruby' 'xmobar' 'xmonad' 'xmoontool' 'xmore' 'xmorph' 'xmorph-devel' 'xmoto' 'xmoto-data' 'xmp' 'xmvn' 'xmvn-api' 'xmvn-bisect' 'xmvn-connector-aether' 'xmvn-connector-aether-javadoc' 'xmvn-connector-ivy' 'xmvn-connector-ivy-javadoc' 'xmvn-core' 'xmvn-install' 'xmvn-minimal' 'xmvn-mojo' 'xmvn-mojo-javadoc' 'xmvn-parent' 'xmvn-resolve' 'xmvn-subst' 'xnoise' 'xnoise-lang' 'xom' 'xonotic' 'xonotic-data' 'xonotic-server' 'xonsh' 'xonsh-doc' 'xorg-cf-files' 'xorg-docs' 'xorg-scripts' 'xorg-sgml-doctools' 'xorg-x11' 'xorg-x11-Xvnc-java' 'xorg-x11-Xvnc-novnc' 'xorg-x11-devel' 'xorg-x11-driver-input' 'xorg-x11-libs' 'xorg-x11-server-Xspice' 'xorg-x11-server-sdk' 'xorg-x11-server-source' 'xorg-x11-util-devel' 'xorgproto-devel' 'xorgxrdp' 'xorriso-tcltk' 'xortool' 'xosd' 'xosd-devel' 'xosview' 'xournal' 'xournalpp' 'xournalpp-lang' 'xpaint' 'xpaint' 'xpaint-debuginfo' 'xpaint-debugsource' 'xpaint-devel' 'xpenguins' 'xpinguin' 'xplanet' 'xplatproviders' 'xplayer' 'xplayer-devel' 'xplayer-lang' 'xplayer-plparser' 'xplayer-plparser-devel' 'xplayer-plparser-lang' 'xplayer-plugin-zeitgeist' 'xplayer-plugins' 'xplsprinters' 'xpp2' 'xpp2-demo' 'xpp2-javadoc' 'xpp2-manual' 'xpp3' 'xpp3-javadoc' 'xpp3-minimal' 'xpr' 'xpra' 'xpra-html5' 'xprehashprinterlist' 'xprintidle' 'xprompt' 'xquarto' 'xrdp' 'xrdp-devel' 'xreader' 'xreader-devel' 'xreader-lang' 'xreader-plugin-epubdocument' 'xreader-plugin-pdfdocument' 'xreader-plugin-psdocument' 'xreader-plugin-tiffdocument' 'xreader-plugin-xpsdocument' 'xrefresh' 'xrestop' 'xroach' 'xrootd-cl' 'xrootd-cl-devel' 'xrootd-client' 'xrootd-client-devel' 'xrootd-fuse' 'xrootd-libs' 'xrootd-libs-devel' 'xrootd-private-devel' 'xrootd-server' 'xrootd-server-devel' 'xsane' 'xscope' 'xscreensaver-data-extra' 'xsd' 'xsd-doc' 'xselection' 'xsession' 'xsetmode' 'xsetpointer' 'xsettingsd' 'xslide' 'xsm' 'xsp' 'xstdcmap' 'xstereograph' 'xstream' 'xstream-benchmark' 'xstream-javadoc' 'xstream-parent' 'xstroke' 'xsynth-dssi' 'xsys' 'xsys' 'xsys-debuginfo' 'xsys-debugsource' 'xt7-player-mpv' 'xt7-player-mpv' 'xtables-addons' 'xtables-addons-kmp-default' 'xtables-addons-kmp-pae' 'xtables-geoip' 'xteddy' 'xtexit' 'xtrabackup' 'xtrabackup-test' 'xtrans' 'xtrx-tools' 'xtrx-usb-udev' 'xtrx_lms7002m-devel' 'xtrxdsp-tests' 'xtrxll-tools' 'xv' 'xvfb-run' 'xvid4conf' 'xvid4conf' 'xvid4conf-debuginfo' 'xvid4conf-debugsource' 'xvidcap' 'xvidcap' 'xvidcap-debuginfo' 'xvidcap-debugsource' 'xvidcore' 'xvidcore' 'xvidcore-debugsource' 'xvidenc' 'xvidenc' 'xvidtune' 'xviewer' 'xviewer-devel' 'xviewer-lang' 'xviewer-plugin-exif-display' 'xviewer-plugin-export-to-folder' 'xviewer-plugin-fit-to-width' 'xviewer-plugin-light-theme' 'xviewer-plugin-map' 'xviewer-plugin-postasa' 'xviewer-plugin-pythonconsole' 'xviewer-plugin-send-by-mail' 'xviewer-plugin-slideshowshuffle' 'xviewer-plugins' 'xviewer-plugins-data' 'xviewer-plugins-lang' 'xvinfo' 'xvkbd' 'xwd' 'xwininfo' 'xwmfs' 'xwud' 'xxhash' 'xxhash-devel' 'xxkb' 'xyconv' 'xyconvert' 'xylib-devel' 'xyscan' 'xyscan-doc' 'xz-devel' 'xz-devel-32bit' 'xz-java' 'xz-java-javadoc' 'xz-static-devel' 'xzgv' 'yad' 'yad' 'yad-debuginfo' 'yad-debugsource' 'yafc' 'yaics' 'yajl' 'yakuake' 'yakuake-lang' 'yamagi-quake2' 'yamagi-quake2-ctf' 'yamdi' 'yamdi' 'yamdi-debuginfo' 'yamdi-debugsource' 'yaml-cpp-devel' 'yang-tools' 'yank' 'yara' 'yara-doc' 'yaru-icon-theme' 'yasm' 'yasm-devel' 'yast2-adcommon-python' 'yast2-adsi' 'yast2-aduc' 'yast2-audit-laf' 'yast2-boot-server' 'yast2-buildtools' 'yast2-caasp' 'yast2-cluster' 'yast2-configuration-management' 'yast2-core-devel' 'yast2-devtools' 'yast2-dhcp-server' 'yast2-dns-manager' 'yast2-dns-server' 'yast2-docker' 'yast2-drbd' 'yast2-fcoe-client' 'yast2-firstboot' 'yast2-fonts' 'yast2-ftp-server' 'yast2-geo-cluster' 'yast2-gpmc' 'yast2-http-server' 'yast2-installation-control' 'yast2-instserver' 'yast2-iplb' 'yast2-iscsi-lio-server' 'yast2-isns' 'yast2-multipath' 'yast2-nfs-server' 'yast2-nis-server' 'yast2-online-update-configuration' 'yast2-pkg-bindings-devel-doc' 'yast2-python-bindings' 'yast2-rdp' 'yast2-rear' 'yast2-rmt' 'yast2-samba-provision' 'yast2-slp-server' 'yast2-squid' 'yast2-testsuite' 'yast2-trans' 'yast2-trans-af' 'yast2-trans-allpacks' 'yast2-trans-ar' 'yast2-trans-ast' 'yast2-trans-bg' 'yast2-trans-bn' 'yast2-trans-bs' 'yast2-trans-ca' 'yast2-trans-cs' 'yast2-trans-cy' 'yast2-trans-da' 'yast2-trans-de' 'yast2-trans-el' 'yast2-trans-en_GB' 'yast2-trans-eo' 'yast2-trans-es' 'yast2-trans-es_AR' 'yast2-trans-et' 'yast2-trans-eu' 'yast2-trans-fa' 'yast2-trans-fi' 'yast2-trans-fr' 'yast2-trans-gl' 'yast2-trans-gu' 'yast2-trans-he' 'yast2-trans-hi' 'yast2-trans-hr' 'yast2-trans-hu' 'yast2-trans-id' 'yast2-trans-it' 'yast2-trans-ja' 'yast2-trans-jv' 'yast2-trans-ka' 'yast2-trans-kab' 'yast2-trans-km' 'yast2-trans-kn' 'yast2-trans-ko' 'yast2-trans-ku' 'yast2-trans-lo' 'yast2-trans-lt' 'yast2-trans-lv' 'yast2-trans-mk' 'yast2-trans-mr' 'yast2-trans-nb' 'yast2-trans-nds' 'yast2-trans-ne' 'yast2-trans-nl' 'yast2-trans-nn' 'yast2-trans-pa' 'yast2-trans-pl' 'yast2-trans-ps' 'yast2-trans-pt' 'yast2-trans-pt_BR' 'yast2-trans-ro' 'yast2-trans-ru' 'yast2-trans-si' 'yast2-trans-sk' 'yast2-trans-sl' 'yast2-trans-sq' 'yast2-trans-sr' 'yast2-trans-sr-latin' 'yast2-trans-sv' 'yast2-trans-sw' 'yast2-trans-ta' 'yast2-trans-tg' 'yast2-trans-th' 'yast2-trans-tr' 'yast2-trans-uk' 'yast2-trans-vi' 'yast2-trans-wa' 'yast2-trans-xh' 'yast2-trans-zh_CN' 'yast2-trans-zh_TW' 'yast2-trans-zu' 'yast2-update-FACTORY' 'yast2-usbauth' 'yast2-ycp-ui-bindings-devel' 'yate' 'yate' 'yate-bts' 'yate-debuginfo' 'yate-debugsource' 'yate-devel' 'yate-scripts' 'yate-with-amrnb' 'yaz' 'yaz-doc' 'yder-devel' 'yelp' 'yelp-devel' 'yelp-lang' 'yelp-tools' 'yelp-xsl' 'yishu' 'yishu-lang' 'ykclient' 'ykpers' 'yodl' 'yomi-formula' 'you-get' 'you-get-bash-completion' 'you-get-fish-completion' 'you-get-zsh-completion' 'youtube-dl' 'youtube-dl-fish-completion' 'youtube-dl-gui' 'youtube-dl-gui-lang' 'ypbind' 'ypserv' 'ytalk' 'yubico-piv-tool' 'yubikey-manager' 'yubikey-manager-qt' 'yubikey-personalization-gui' 'yubioath-desktop' 'yudit' 'yum' 'yum-aliases' 'yum-allowdowngrade' 'yum-basearchonly' 'yum-changelog' 'yum-downloadonly' 'yum-fastestmirror' 'yum-filter-data' 'yum-lang' 'yum-list-data' 'yum-merge-conf' 'yum-metadata-parser' 'yum-priorities' 'yum-protect-packages' 'yum-protectbase' 'yum-refresh-updatesd' 'yum-tmprepo' 'yum-tsflags' 'yum-updatesd' 'yum-upgrade-helper' 'yum-utils' 'yum-verify' 'yum-versionlock' 'z' 'z3' 'z3-devel' 'zabbix-agent' 'zabbix-bash-completion' 'zabbix-java-gateway' 'zabbix-phpfrontend' 'zabbix-proxy' 'zabbix-proxy-mysql' 'zabbix-proxy-postgresql' 'zabbix-proxy-sqlite' 'zabbix-server' 'zabbix-server-mysql' 'zabbix-server-postgresql' 'zabbix-server-sqlite' 'zanshin' 'zanshin-lang' 'zathura' 'zathura-bash-completion' 'zathura-devel' 'zathura-lang' 'zathura-plugin-cb' 'zathura-plugin-djvu' 'zathura-plugin-pdf-poppler' 'zathura-plugin-ps' 'zathura-zsh-completion' 'zaz' 'zbar' 'zbuild' 'zbuild' 'zchunk' 'zd1211-firmware' 'zdbsp' 'zdoom' 'zdoom' 'zeal' 'zeitgeist' 'zeitgeist-devel' 'zelda-roth-se' 'zelda-roth-se' 'zelda-xd2-mercuris-chess' 'zelda-xd2-mercuris-chess' 'zerobranestudio' 'zeroinstall-injector' 'zeromq-devel' 'zhu3d' 'zile' 'zile-doc' 'zim' 'zim-lang' 'zimg-devel' 'zinnia' 'zinnia-devel' 'zinnia-tomoe' 'zipkin-cpp-opentracing-devel' 'zipkin-cpp-opentracing-devel-static' 'zita-convolver-devel' 'zlib-devel-32bit' 'zlib-devel-static' 'zlib-devel-static-32bit' 'zlibrary-data' 'zlibrary-devel' 'zlibrary0_99' 'zn_poly-devel' 'znc' 'znc-devel' 'znc-lang' 'znc-perl' 'znc-python3' 'znc-tcl' 'zod' 'zod' 'zod-data' 'zod-debuginfo' 'zoo' 'zopfli' 'zp' 'zpaq' 'zramcfg' 'zsdx' 'zsdx' 'zsh-htmldoc' 'zstd' 'zsync' 'zsync-devel' 'zutils' 'zvbi' 'zvbi-devel' 'zvbi-devel-32bit' 'zvbi-lang' 'zxing-cpp-devel' 'zynaddsubfx' 'zynaddsubfx-common' 'zynaddsubfx-dssi' 'zynaddsubfx-lv2' 'zynaddsubfx-vst' 'zypper-docker' 'zypper-migration-plugin' 'zziplib-devel' 'zziplib-devel-32bit'
+EO:_zypp_not_installed
+)}"} )
+_zypp_installed=( ${(Q)"${(z)$(<<\EO:_zypp_installed
+'AppStream' 'AppStream-lang' 'GeoIP' 'GeoIP-data' 'ImageMagick' 'ImageMagick-config-7-SUSE' 'Mesa' 'Mesa-32bit' 'Mesa-demo-x' 'Mesa-dri' 'Mesa-dri-32bit' 'Mesa-dri-nouveau' 'Mesa-gallium' 'Mesa-gallium-32bit' 'Mesa-libEGL1' 'Mesa-libGL1' 'Mesa-libGL1-32bit' 'Mesa-libGLESv1_CM1' 'Mesa-libGLESv2-2' 'Mesa-libglapi0' 'Mesa-libglapi0-32bit' 'Mesa-libva' 'ModemManager' 'ModemManager-bash-completion' 'ModemManager-lang' 'MozillaFirefox' 'MozillaFirefox-branding-openSUSE' 'MozillaThunderbird' 'NetworkManager' 'NetworkManager-branding-openSUSE' 'NetworkManager-l2tp' 'NetworkManager-l2tp-lang' 'NetworkManager-lang' 'NetworkManager-openconnect' 'NetworkManager-openconnect-lang' 'NetworkManager-openvpn' 'NetworkManager-openvpn-lang' 'NetworkManager-pptp' 'NetworkManager-pptp-lang' 'PackageKit' 'PackageKit-backend-zypp' 'PackageKit-branding-openSUSE' 'PackageKit-gstreamer-plugin' 'PackageKit-gtk3-module' 'PackageKit-lang' 'aaa_base' 'aaa_base-extras' 'accountsservice' 'accountsservice-lang' 'acl' 'acpica' 'adjtimex' 'adobe-sourcecodepro-fonts' 'adobe-sourcesanspro-fonts' 'adobe-sourceserifpro-fonts' 'adwaita-icon-theme' 'akonadi-calendar-lang' 'akonadi-calendar-tools' 'akonadi-calendar-tools-lang' 'akonadi-contact' 'akonadi-contact-lang' 'akonadi-import-wizard' 'akonadi-import-wizard-lang' 'akonadi-mime' 'akonadi-mime-lang' 'akonadi-notes-lang' 'akonadi-plugin-calendar' 'akonadi-plugin-contacts' 'akonadi-plugin-kalarmcal' 'akonadi-plugin-mime' 'akonadi-search' 'akonadi-search-lang' 'akonadi-server' 'akonadi-server-lang' 'akregator' 'akregator-lang' 'alacritty' 'alacritty-bash-completion' 'alacritty-zsh-completion' 'alsa' 'alsa-devel' 'alsa-devel-32bit' 'alsa-oss' 'alsa-oss-32bit' 'alsa-plugins' 'alsa-plugins-32bit' 'alsa-plugins-jack-32bit' 'alsa-plugins-pulse' 'alsa-plugins-pulse-32bit' 'alsa-utils' 'anki' 'apache-commons-logging' 'apache-parent' 'apparmor' 'apparmor-abstractions' 'apparmor-docs' 'apparmor-parser' 'apparmor-parser-lang' 'apparmor-profiles' 'apparmor-utils' 'apparmor-utils-lang' 'appstream-glib' 'appstream-glib-lang' 'ark' 'ark-lang' 'at-spi2-atk-common' 'at-spi2-atk-gtk2' 'at-spi2-core' 'at-spi2-core-lang' 'atk-lang' 'attica-qt5' 'attr' 'audit' 'augeas' 'augeas-lenses' 'autofs' 'autoyast2' 'autoyast2-installation' 'avahi' 'avahi-lang' 'baloo5-file' 'baloo5-file-lang' 'baloo5-imports' 'baloo5-imports-lang' 'baloo5-kioslaves' 'baloo5-kioslaves-lang' 'baloo5-tools' 'baloo5-tools-lang' 'baloo5-widgets' 'baloo5-widgets-lang' 'base' 'bash' 'bash-completion' 'bash-doc' 'bash-lang' 'beets' 'bind-utils' 'binutils' 'bison' 'bison-lang' 'blog' 'bluedevil5' 'bluedevil5-lang' 'bluez' 'bluez-qt-imports' 'bluez-qt-udev' 'books' 'boost-license1_69_0' 'branding-openSUSE' 'breeze' 'breeze4-style' 'breeze5-cursors' 'breeze5-decoration' 'breeze5-icons' 'breeze5-style' 'breeze5-style-lang' 'breeze5-wallpapers' 'brltty' 'brltty-driver-at-spi2' 'brltty-driver-brlapi' 'brltty-driver-xwindow' 'brltty-lang' 'bsdiff' 'bsdtar' 'btrfsmaintenance' 'btrfsprogs' 'btrfsprogs-udev-rules' 'bubblewrap' 'busybox-static' 'bzip2' 'ca-certificates' 'ca-certificates-mozilla' 'cabextract' 'calendarsupport' 'calendarsupport-lang' 'calf' 'cantarell-fonts' 'cantata' 'cantata-lang' 'catatonit' 'checkmedia' 'chezmoi' 'chkstat' 'chromaprint-fpcalc' 'chromium' 'chrony' 'cifs-utils' 'codium' 'command-not-found' 'containerd' 'coreutils' 'coreutils-lang' 'cpio' 'cpio-lang' 'cpio-mt' 'cpp' 'cpp8' 'cpp9' 'cpupower' 'cracklib' 'cracklib-dict-full' 'crda' 'criu' 'cron' 'cronie' 'cryptsetup' 'cups' 'cups-client' 'cups-config' 'cups-filters' 'curl' 'cvs' 'cvsps' 'cyrus-sasl' 'cyrus-sasl-crammd5' 'cyrus-sasl-digestmd5' 'cyrus-sasl-gssapi' 'cyrus-sasl-plain' 'db48-utils' 'dbus-1' 'dbus-1-glib' 'dbus-1-glib-32bit' 'dbus-1-glib-tool' 'dbus-1-x11' 'dconf' 'debhelper' 'dejavu-fonts' 'deltarpm' 'desktop-data-openSUSE' 'desktop-file-utils' 'desktop-translations' 'device-mapper' 'dhcp' 'dhcp-client' 'dialog' 'dialog-lang' 'diffutils' 'diffutils-lang' 'discover' 'discover-backend-flatpak' 'discover-backend-packagekit' 'discover-lang' 'distribution-logos-openSUSE-Tumbleweed' 'dmidecode' 'dmraid' 'dmz-icon-theme-cursors' 'dnsmasq' 'docbook-xsl-stylesheets' 'docbook_4' 'docker' 'docker-bash-completion' 'docker-libnetwork' 'docker-runc' 'docker-zsh-completion' 'dolphin' 'dolphin-part' 'dolphin-part-lang' 'dos2unix' 'dosbox' 'dosfstools' 'dpkg' 'dpkg-lang' 'dracut' 'drkonqi5' 'drkonqi5-lang' 'dssi' 'dvd+rw-tools' 'dwz' 'e2fsprogs' 'ebtables' 'efibootmgr' 'efont-unicode-bitmap-fonts' 'elfutils' 'elfutils-lang' 'enblend-enfuse' 'enchant-2-backend-hunspell' 'enchant-data' 'enhanced_base' 'enscript' 'ethtool' 'eventviews' 'eventviews-lang' 'exiftool' 'expat' 'fd' 'fd-bash-completion' 'fd-zsh-completion' 'fdupes' 'fetchmsttfonts' 'ffmpeg-4' 'ffmpegthumbs' 'ffmpegthumbs-lang' 'file' 'file-magic' 'filesystem' 'fillup' 'findutils' 'findutils-lang' 'firebird' 'firewalld' 'firewalld-lang' 'flameshot' 'flameshot-bash-completion' 'flatpak' 'flatpak-zsh-completion' 'fluid-soundfont-gm' 'flute' 'fontconfig' 'fontconfig-32bit' 'fontconfig-lang' 'fonts' 'fonts-config' 'frameworkintegration-plugin' 'freecell-solver-presets' 'fribidi' 'fuse' 'fuse3' 'fzf' 'fzf-bash-completion' 'fzf-tmux' 'fzf-zsh-completion' 'games' 'gamin-server' 'gawk' 'gcab' 'gcab-lang' 'gcc' 'gcc8' 'gcc9' 'gconf-polkit' 'gconf2' 'gconf2-lang' 'gcr-data' 'gcr-lang' 'gcr-prompter' 'gcr-viewer' 'gdb' 'gdbm-lang' 'gdk-pixbuf-lang' 'gdk-pixbuf-loader-rsvg' 'gdk-pixbuf-query-loaders' 'gdk-pixbuf-query-loaders-32bit' 'gdk-pixbuf-thumbnailer' 'gdmflexiserver' 'geoclue2' 'gettext-runtime' 'gettext-tools' 'ghostscript' 'ghostscript-fonts-other' 'ghostscript-fonts-std' 'ghostscript-x11' 'gio-branding-openSUSE' 'girepository-1_0' 'git' 'git-core' 'git-crypt' 'git-cvs' 'git-email' 'git-gui' 'git-svn' 'gitk' 'glib-networking' 'glib-networking-lang' 'glib2-lang' 'glib2-tools' 'glibc' 'glibc-32bit' 'glibc-devel' 'glibc-extra' 'glibc-locale' 'glibc-locale-base' 'gmenudbusmenuproxy' 'gmp-devel' 'gnome-desktop-lang' 'gnome-keyring' 'gnome-keyring-32bit' 'gnome-keyring-lang' 'gnome-keyring-pam' 'gnome-keyring-pam-32bit' 'gnome-online-accounts' 'gnome-online-accounts-lang' 'gnome-themes-accessibility' 'gnome-themes-accessibility-gtk2' 'gnu-unifont-bitmap-fonts' 'gnutls' 'go1.12' 'go1.12-doc' 'go1.12-race' 'google-carlito-fonts' 'google-droid-fonts' 'google-noto-fonts-doc' 'google-opensans-fonts' 'google-roboto-fonts' 'gpart' 'gperf' 'gpg2' 'gpg2-lang' 'gpm' 'gptfdisk' 'grantlee5' 'grantleetheme' 'grantleetheme-lang' 'graphviz' 'graphviz-gd' 'graphviz-gnome' 'graphviz-plugins-core' 'grep' 'grep-lang' 'groff' 'groff-full' 'grub2' 'grub2-branding-openSUSE' 'grub2-i386-pc' 'grub2-snapper-plugin' 'grub2-systemd-sleep-plugin' 'grub2-x86_64-efi' 'gsettings-backend-dconf' 'gsettings-desktop-schemas' 'gsettings-desktop-schemas-lang' 'gstreamer' 'gstreamer-32bit' 'gstreamer-lang' 'gstreamer-libnice' 'gstreamer-plugins-bad' 'gstreamer-plugins-bad-lang' 'gstreamer-plugins-base' 'gstreamer-plugins-base-lang' 'gstreamer-plugins-good' 'gstreamer-plugins-good-gtk' 'gstreamer-plugins-good-lang' 'gstreamer-plugins-libav' 'gstreamer-plugins-ugly' 'gstreamer-plugins-ugly-lang' 'gstreamer-plugins-ugly-orig-addon' 'gtk-vnc-lang' 'gtk2-branding-openSUSE' 'gtk2-data' 'gtk2-engine-hcengine' 'gtk2-engine-oxygen-32bit' 'gtk2-immodule-amharic' 'gtk2-immodule-inuktitut' 'gtk2-immodule-thai' 'gtk2-immodule-tigrigna' 'gtk2-immodule-vietnamese' 'gtk2-lang' 'gtk2-metatheme-adwaita' 'gtk2-metatheme-breeze' 'gtk2-theming-engine-adwaita' 'gtk2-theming-engine-adwaita-32bit' 'gtk2-tools' 'gtk2-tools-32bit' 'gtk3-branding-openSUSE' 'gtk3-data' 'gtk3-immodule-amharic' 'gtk3-immodule-inuktitut' 'gtk3-immodule-thai' 'gtk3-immodule-tigrigna' 'gtk3-immodule-vietnamese' 'gtk3-lang' 'gtk3-metatheme-adwaita' 'gtk3-metatheme-breeze' 'gtk3-tools' 'gtk3-tools-32bit' 'gtk4-schema' 'gtksourceview-lang' 'gtksourceview4-lang' 'guestfs-data' 'gutenprint' 'gvfs' 'gvfs-backend-afc' 'gvfs-backend-samba' 'gvfs-backends' 'gvfs-fuse' 'gvfs-lang' 'gwenview5' 'gwenview5-lang' 'gxditview' 'gzip' 'hack-fonts' 'hardlink' 'haveged' 'hdparm' 'hicolor-icon-theme' 'hicolor-icon-theme-branding-openSUSE' 'hostname' 'htop' 'hugin' 'hunspell' 'hunspell-tools' 'hwdata' 'hwinfo' 'iceauth' 'icewm' 'icewm-default' 'icewm-lang' 'icewm-theme-branding' 'icoutils' 'ifplugd' 'imlib2-loaders' 'incidenceeditor' 'incidenceeditor-lang' 'info' 'initviocons' 'insserv-compat' 'intel-vaapi-driver' 'intlfonts-euro-bitmap-fonts' 'inxi' 'iperf' 'iproute2' 'ipset' 'iptables' 'iputils' 'irqbalance' 'irssi' 'iscsiuio' 'iso-codes' 'iso-codes-lang' 'iso_ent' 'ispell' 'ispell-american' 'issue-generator' 'jack' 'java-11-openjdk' 'java-11-openjdk-headless' 'java-1_8_0-openjdk' 'java-1_8_0-openjdk-headless' 'javapackages-filesystem' 'javapackages-tools' 'jfsutils' 'joe' 'json-glib-lang' 'kaccounts-integration' 'kaccounts-integration-lang' 'kaccounts-providers' 'kaccounts-providers-lang' 'kactivities5-imports' 'kactivitymanagerd' 'kactivitymanagerd-lang' 'kaddressbook' 'kaddressbook-lang' 'kalarmcal' 'kalarmcal-lang' 'kate' 'kate-lang' 'kate-plugins' 'kbd' 'kbd-legacy' 'kcalc' 'kcalc-lang' 'kcalutils' 'kcalutils-lang' 'kcharselect' 'kcharselect-lang' 'kcm_sddm' 'kcm_sddm-lang' 'kcm_tablet' 'kcm_tablet-lang' 'kconf_update5' 'kcontacts-lang' 'kcoreaddons' 'kcoreaddons-lang' 'kdav' 'kdav-lang' 'kdbusaddons-tools' 'kde' 'kde-cli-tools5' 'kde-cli-tools5-lang' 'kde-gtk-config5' 'kde-gtk-config5-gtk2' 'kde-gtk-config5-gtk3' 'kde-gtk-config5-lang' 'kde-print-manager' 'kde-print-manager-lang' 'kde-user-manager' 'kde-user-manager-lang' 'kde4-filesystem' 'kde_pim' 'kde_plasma' 'kdebase4-runtime' 'kdebase4-workspace-libs' 'kdeclarative-components' 'kdeconnect-kde' 'kdeconnect-kde-lang' 'kded' 'kded-lang' 'kdegames-carddecks-default' 'kdegraphics-thumbnailers' 'kdelibs4' 'kdelibs4-branding-upstream' 'kdelibs4-core' 'kdelibs4support' 'kdelibs4support-lang' 'kdenetwork-filesharing' 'kdenetwork-filesharing-lang' 'kdepim-addons' 'kdepim-addons-lang' 'kdepim-apps-libs' 'kdepim-apps-libs-lang' 'kdepim-runtime' 'kdepim-runtime-lang' 'kdialog' 'kdialog-lang' 'kdoctools' 'kdoctools-lang' 'kdump' 'keepassxc' 'keepassxc-lang' 'kernel-default' 'kernel-default-devel' 'kernel-devel' 'kernel-firmware' 'kernel-macros' 'kexec-tools' 'keyutils' 'kfilemetadata5' 'kfilemetadata5-lang' 'kgamma5' 'kgamma5-lang' 'kglobalaccel5' 'khelpcenter5' 'khelpcenter5-lang' 'khotkeys5' 'khotkeys5-lang' 'kidentitymanagement-lang' 'kimageformats' 'kimap-lang' 'kinfocenter5' 'kinfocenter5-lang' 'kinit' 'kinit-lang' 'kio' 'kio-core' 'kio-extras5' 'kio-extras5-lang' 'kio-lang' 'kio_audiocd' 'kio_audiocd-lang' 'kipi-plugins' 'kipi-plugins-lang' 'kirigami2' 'kirigami2-lang' 'kitinerary' 'kldap' 'kldap-lang' 'kleopatra' 'kleopatra-lang' 'klogd' 'kmag' 'kmag-lang' 'kmahjongg' 'kmahjongg-lang' 'kmail' 'kmail-account-wizard' 'kmail-account-wizard-lang' 'kmail-application-icons' 'kmail-lang' 'kmailtransport' 'kmailtransport-lang' 'kmenuedit5' 'kmenuedit5-lang' 'kmime-lang' 'kmines' 'kmines-lang' 'kmod' 'kmod-compat' 'kmousetool' 'kmousetool-lang' 'kmozillahelper' 'knewstuff' 'knotes' 'knotes-lang' 'kompare' 'kompare-lang' 'konsole' 'konsole-part' 'konsole-part-lang' 'kontact' 'kontact-lang' 'kontactinterface-lang' 'konversation' 'konversation-lang' 'korganizer' 'korganizer-lang' 'kpackage' 'kpackage-lang' 'kpartx' 'kpat' 'kpat-lang' 'kpeople5' 'kpeople5-lang' 'kpimtextedit' 'kpimtextedit-lang' 'kpkpass' 'krb5' 'krb5-32bit' 'kreversi' 'kreversi-lang' 'kross' 'kross-lang' 'kscreen5' 'kscreen5-lang' 'kscreen5-plasmoid' 'kscreenlocker' 'kscreenlocker-lang' 'kservice' 'kservice-lang' 'ksmtp' 'ksmtp-lang' 'ksshaskpass5' 'ksshaskpass5-lang' 'ksudoku' 'ksudoku-lang' 'ksysguard5' 'ksysguard5-lang' 'ktexteditor' 'ktexteditor-lang' 'ktnef' 'ktnef-lang' 'kvm_server' 'kvm_stat' 'kvm_tools' 'kwallet-tools' 'kwallet-tools-lang' 'kwalletd5' 'kwalletd5-lang' 'kwalletmanager5' 'kwalletmanager5-lang' 'kwayland' 'kwayland-integration' 'kwin-lowlatency' 'kwin5-lang' 'ladspa-swh-plugins' 'lame' 'lash' 'ldmtool' 'ledger' 'less' 'libAppStreamQt2' 'libBasicUsageEnvironment1' 'libFAudio0' 'libFAudio0-32bit' 'libFLAC8' 'libFLAC8-32bit' 'libGLEW2_1' 'libGLU1' 'libGLU1-32bit' 'libGeoIP1' 'libHalf24' 'libICE6' 'libIex-2_3-24' 'libIlmImf-2_3-24' 'libIlmThread-2_3-24' 'libImlib2-1' 'libJudy1' 'libKF5Activities5' 'libKF5ActivitiesStats1' 'libKF5AkonadiAgentBase5' 'libKF5AkonadiCalendar5' 'libKF5AkonadiContact5' 'libKF5AkonadiCore5' 'libKF5AkonadiMime5' 'libKF5AkonadiNotes5' 'libKF5AkonadiPrivate5' 'libKF5AkonadiSearch' 'libKF5AkonadiWidgets5' 'libKF5AkonadiXml5' 'libKF5AlarmCalendar5' 'libKF5Archive5' 'libKF5Attica5' 'libKF5Auth5' 'libKF5Auth5-lang' 'libKF5AuthCore5' 'libKF5Baloo5' 'libKF5BalooEngine5' 'libKF5BalooEngine5-lang' 'libKF5BluezQt6' 'libKF5Bookmarks5' 'libKF5Bookmarks5-lang' 'libKF5CalendarCore5' 'libKF5CalendarEvents5' 'libKF5CalendarSupport5' 'libKF5CalendarUtils5' 'libKF5Cddb5' 'libKF5Codecs5' 'libKF5Codecs5-lang' 'libKF5CompactDisc5' 'libKF5Completion5' 'libKF5Completion5-lang' 'libKF5ConfigCore5' 'libKF5ConfigCore5-lang' 'libKF5ConfigGui5' 'libKF5ConfigWidgets5' 'libKF5ConfigWidgets5-lang' 'libKF5ContactEditor5' 'libKF5Contacts5' 'libKF5CoreAddons5' 'libKF5Crash5' 'libKF5DBusAddons5' 'libKF5DBusAddons5-lang' 'libKF5DNSSD5' 'libKF5DNSSD5-lang' 'libKF5Declarative5' 'libKF5Declarative5-lang' 'libKF5DocTools5' 'libKF5Emoticons5' 'libKF5EventViews5' 'libKF5GlobalAccel5' 'libKF5GlobalAccel5-lang' 'libKF5GlobalAccelPrivate5' 'libKF5GrantleeTheme5' 'libKF5Gravatar5' 'libKF5GuiAddons5' 'libKF5Holidays5' 'libKF5Holidays5-lang' 'libKF5I18n5' 'libKF5I18n5-lang' 'libKF5IMAP5' 'libKF5IconThemes5' 'libKF5IconThemes5-lang' 'libKF5IdentityManagement5' 'libKF5IdleTime5' 'libKF5IncidenceEditor5' 'libKF5ItemModels5' 'libKF5ItemViews5' 'libKF5ItemViews5-lang' 'libKF5JS5' 'libKF5JSApi5' 'libKF5JobWidgets5' 'libKF5JobWidgets5-lang' 'libKF5JsEmbed5' 'libKF5JsEmbed5-lang' 'libKF5KCMUtils5' 'libKF5KCMUtils5-lang' 'libKF5KDELibs4Support5' 'libKF5KDcraw5' 'libKF5KExiv2-15_0_0' 'libKF5KHtml5' 'libKF5KHtml5-lang' 'libKF5KMahjongglib5' 'libKF5Kipi32_0_0' 'libKF5Kirigami2-5' 'libKF5KontactInterface5' 'libKF5Ldap5' 'libKF5Libkdepim5' 'libKF5LibkdepimAkonadi5' 'libKF5Libkleo5' 'libKF5MailCommon5' 'libKF5MailImporter5' 'libKF5MailImporterAkonadi5' 'libKF5MailTransport5' 'libKF5MailTransportAkonadi5' 'libKF5Mbox5' 'libKF5MediaWiki5' 'libKF5Mime5' 'libKF5ModemManagerQt6' 'libKF5NetworkManagerQt6' 'libKF5NewStuff5' 'libKF5NewStuff5-lang' 'libKF5NewStuffCore5' 'libKF5Notifications5' 'libKF5Notifications5-lang' 'libKF5NotifyConfig5' 'libKF5NotifyConfig5-lang' 'libKF5Parts5' 'libKF5Parts5-lang' 'libKF5PimCommon5' 'libKF5PimCommonAkonadi5' 'libKF5PimTextEdit5' 'libKF5Plasma5' 'libKF5Prison5' 'libKF5Pty5' 'libKF5Pty5-lang' 'libKF5Purpose5' 'libKF5PurposeWidgets5' 'libKF5QuickAddons5' 'libKF5Runner5' 'libKF5Sane5' 'libKF5Screen7' 'libKF5Solid5' 'libKF5Solid5-lang' 'libKF5SonnetCore5' 'libKF5SonnetCore5-lang' 'libKF5SonnetUi5' 'libKF5Style5' 'libKF5Su5' 'libKF5Su5-lang' 'libKF5Syndication5' 'libKF5SyntaxHighlighting5' 'libKF5SyntaxHighlighting5-lang' 'libKF5TextWidgets5' 'libKF5TextWidgets5-lang' 'libKF5ThreadWeaver5' 'libKF5Tnef5' 'libKF5UnitConversion5' 'libKF5UnitConversion5-lang' 'libKF5Wallet5' 'libKF5WidgetsAddons5' 'libKF5WidgetsAddons5-lang' 'libKF5WindowSystem5' 'libKF5WindowSystem5-lang' 'libKF5XmlGui5' 'libKF5XmlGui5-lang' 'libKF5XmlRpcClient5' 'libKF5XmlRpcClient5-lang' 'libKGantt2' 'libKPimGAPICalendar5' 'libKPimGAPIContacts5' 'libKPimGAPICore5' 'libKPimGAPITasks5' 'libKPimImportWizard5' 'libKPimItinerary5' 'libKPimItinerary5-lang' 'libKPimKDAV5' 'libKPimPkPass5' 'libKPimSMTP5' 'libKScreenLocker5' 'libLLVM7' 'libLLVM7-32bit' 'libLLVM8' 'libLLVM8-32bit' 'libMagickCore-7_Q16HDRI6' 'libMagickWand-7_Q16HDRI6' 'libOSMesa8' 'libOSMesa8-32bit' 'libQt5Bluetooth5' 'libQt5Bluetooth5-imports' 'libQt5Concurrent5' 'libQt5Core5' 'libQt5DBus5' 'libQt5Designer5' 'libQt5Gui5' 'libQt5Help5' 'libQt5HunspellInputMethod5' 'libQt5Location5' 'libQt5Multimedia5' 'libQt5Network5' 'libQt5NetworkAuth5' 'libQt5Nfc5' 'libQt5Nfc5-imports' 'libQt5OpenGL5' 'libQt5Positioning5' 'libQt5PositioningQuick5' 'libQt5PrintSupport5' 'libQt5QuickControls2-5' 'libQt5QuickTemplates2-5' 'libQt5Script5' 'libQt5Sensors5' 'libQt5Sensors5-imports' 'libQt5SerialPort5' 'libQt5Sql5' 'libQt5Sql5-mysql' 'libQt5Sql5-sqlite' 'libQt5Svg5' 'libQt5Test5' 'libQt5TextToSpeech5' 'libQt5VirtualKeyboard5' 'libQt5WaylandClient5' 'libQt5WaylandCompositor5' 'libQt5WebChannel5' 'libQt5WebChannel5-imports' 'libQt5WebKit5' 'libQt5WebKit5-imports' 'libQt5WebKitWidgets5' 'libQt5WebSockets5' 'libQt5WebSockets5-imports' 'libQt5Widgets5' 'libQt5X11Extras5' 'libQt5Xml5' 'libQt5XmlPatterns5' 'libQtQuick5' 'libSDL-1_2-0' 'libSDL-1_2-0-32bit' 'libSDL2-2_0-0' 'libSDL2-2_0-0-32bit' 'libSDL2_image-2_0-0' 'libSDL_gfx15' 'libSDL_image-1_2-0' 'libSDL_net-1_2-0' 'libSDL_sound-1_0-1' 'libSM6' 'libSPIRV-Tools-suse13' 'libSoundTouch1' 'libUsageEnvironment3' 'libX11-6' 'libX11-6-32bit' 'libX11-data' 'libX11-xcb1' 'libX11-xcb1-32bit' 'libXRes1' 'libXau6' 'libXau6-32bit' 'libXaw7' 'libXcomposite1' 'libXcomposite1-32bit' 'libXcursor1' 'libXcursor1-32bit' 'libXdamage1' 'libXdamage1-32bit' 'libXdmcp6' 'libXdmcp6-32bit' 'libXext6' 'libXext6-32bit' 'libXfixes3' 'libXfixes3-32bit' 'libXfont2-2' 'libXfontcache1' 'libXft2' 'libXft2-32bit' 'libXi6' 'libXi6-32bit' 'libXinerama1' 'libXinerama1-32bit' 'libXmu6' 'libXmuu1' 'libXpm4' 'libXpm4-32bit' 'libXrandr2' 'libXrandr2-32bit' 'libXrender1' 'libXrender1-32bit' 'libXss1' 'libXt6' 'libXtst6' 'libXv1' 'libXvnc1' 'libXxf86vm1' 'libXxf86vm1-32bit' 'libZXingCore1' 'liba52-0' 'libaa1' 'libabw-0_1-1' 'libaccounts-glib0' 'libaccounts-qt5-1' 'libacl1' 'libacl1-32bit' 'libaio1' 'libao-plugins4' 'libao4' 'libaom0' 'libapparmor1' 'libappindicator3-1' 'libappstream-glib8' 'libappstream4' 'libapr-util1' 'libapr1' 'libarchive13' 'libargon2-1' 'libasan5' 'libasm1' 'libasound2' 'libasound2-32bit' 'libass9' 'libassuan0' 'libastro1' 'libatasmart-utils' 'libatasmart4' 'libatk-1_0-0' 'libatk-1_0-0-32bit' 'libatk-bridge-2_0-0' 'libatk-bridge-2_0-0-32bit' 'libatkmm-1_6-1' 'libatm1' 'libatomic1' 'libatspi0' 'libatspi0-32bit' 'libattica0_4' 'libattr1' 'libaudiofile1' 'libaudit1' 'libaudit1-32bit' 'libaugeas0' 'libauparse0' 'libavahi-client3' 'libavahi-client3-32bit' 'libavahi-common3' 'libavahi-common3-32bit' 'libavahi-core7' 'libavahi-glib1' 'libavc1394-0' 'libavcodec56' 'libavcodec58' 'libavdevice56' 'libavdevice58' 'libavfilter5' 'libavfilter7' 'libavformat56' 'libavformat58' 'libavresample2' 'libavresample4' 'libavutil54' 'libavutil56' 'libb64-0' 'libbase' 'libbd_btrfs2' 'libbd_crypto2' 'libbd_fs2' 'libbd_loop2' 'libbd_mdraid2' 'libbd_part2' 'libbd_swap2' 'libbd_utils2' 'libbind9-160' 'libblas3' 'libblkid1' 'libblkid1-32bit' 'libblockdev' 'libblockdev2' 'libblogger2' 'libbluetooth3' 'libbluray2' 'libboost_date_time1_69_0' 'libboost_filesystem1_69_0' 'libboost_iostreams1_69_0' 'libboost_locale1_69_0' 'libboost_regex1_69_0' 'libboost_thread1_69_0' 'libbreezecommon4-5' 'libbreezecommon5-5' 'libbrlapi0_7' 'libbrotlicommon1' 'libbrotlidec1' 'libbs2b0' 'libbsd0' 'libbtrfs0' 'libburn4' 'libbytesize-lang' 'libbytesize1' 'libbz2-1' 'libbz2-1-32bit' 'libcaca0' 'libcacard0' 'libcairo-gobject2' 'libcairo-gobject2-32bit' 'libcairo2' 'libcairo2-32bit' 'libcairomm-1_0-1' 'libcanberra-gtk-module-common' 'libcanberra-gtk0' 'libcanberra-gtk0-32bit' 'libcanberra-gtk2-module' 'libcanberra-gtk2-module-32bit' 'libcanberra-gtk3-0' 'libcanberra-gtk3-0-32bit' 'libcanberra-gtk3-module' 'libcanberra-gtk3-module-32bit' 'libcanberra0' 'libcanberra0-32bit' 'libcap-ng0' 'libcap2' 'libcap2-32bit' 'libcapi20-3' 'libcapi20-3-32bit' 'libcares2' 'libcdda_interface0' 'libcdda_paranoia0' 'libcddb2' 'libcdio19' 'libcdio_cdda2' 'libcdio_paranoia2' 'libcdr-0_1-1' 'libcdrdeflt1_0' 'libcelt0-2' 'libcfitsio7' 'libchm0' 'libchromaprint1' 'libclucene-contribs-lib1' 'libclucene-core1' 'libclucene-shared1' 'libcmis-0_5-5' 'libcodec2-0_8' 'libcolord2' 'libcolord2-32bit' 'libcom_err2' 'libcom_err2-32bit' 'libconfig++11' 'libcpupower0' 'libcrack2' 'libcrack2-32bit' 'libcreaterepo_c0' 'libcroco-0_6-3' 'libcrypt1' 'libcrypt1-32bit' 'libcryptsetup12' 'libcups2' 'libcups2-32bit' 'libcupsimage2' 'libcurl4' 'libcurl4-32bit' 'libdaemon0' 'libdatrie1' 'libdatrie1-32bit' 'libdav1d2' 'libdb-4_8' 'libdb-4_8-32bit' 'libdbus-1-3' 'libdbus-1-3-32bit' 'libdbusmenu-glib4' 'libdbusmenu-gtk3-4' 'libdbusmenu-qt2' 'libdbusmenu-qt5-2' 'libdc1394-25' 'libdca0' 'libdcerpc-binding0' 'libdcerpc-binding0-32bit' 'libdcerpc0' 'libdcerpc0-32bit' 'libdconf1' 'libdeflt1_0' 'libdevmapper-event1_03' 'libdevmapper1_03' 'libdialog15' 'libdiscid0' 'libdjvulibre21' 'libdmtx0' 'libdmx1' 'libdns169' 'libdns_sd' 'libdolphinvcs5' 'libdouble-conversion3' 'libdrm2' 'libdrm2-32bit' 'libdrm_amdgpu1' 'libdrm_amdgpu1-32bit' 'libdrm_intel1' 'libdrm_intel1-32bit' 'libdrm_nouveau2' 'libdrm_nouveau2-32bit' 'libdrm_radeon1' 'libdrm_radeon1-32bit' 'libdv4' 'libdvbpsi10' 'libdvdcss2' 'libdvdnav4' 'libdvdread4' 'libdw1' 'libdw1-32bit' 'libe-book-0_1-1' 'libebl-plugins' 'libebl-plugins-32bit' 'libebml4' 'libebur128-1' 'libedit0' 'libedit0-32bit' 'libeditorconfig0' 'libefivar1' 'libelf-devel' 'libelf1' 'libelf1-32bit' 'libenchant-2-2' 'libeot0' 'libepoxy0' 'libepoxy0-32bit' 'libepub0' 'libepubgen-0_1-1' 'liberation-fonts' 'libesmtp6' 'libespeak-ng1' 'libestr0' 'libetonyek-0_1-1' 'libevdev2' 'libevent-2_1-6' 'libexif12' 'libexif12-32bit' 'libexiv2-27' 'libexpat1' 'libexpat1-32bit' 'libext2fs2' 'libexttextcat' 'libexttextcat-2_0-0' 'libfaad2' 'libfakekey0' 'libfam0-gamin' 'libfam0-gamin-32bit' 'libfastjson4' 'libfbclient2' 'libfdisk1' 'libfdk-aac1' 'libfdt1' 'libffado2' 'libffi7' 'libffi7-32bit' 'libfftw3-3' 'libfile1_0' 'libfind3_0' 'libflatpak0' 'libfltk1' 'libfluidsynth2' 'libfont-specimen0' 'libfontconfig1' 'libfontconfig1-32bit' 'libfontenc1' 'libfonts' 'libformula' 'libfreebl3' 'libfreebl3-32bit' 'libfreecell-solver0' 'libfreehand-0_1-1' 'libfreetype6' 'libfreetype6-32bit' 'libfribidi0' 'libfribidi0-32bit' 'libfstrm0' 'libfuse2' 'libfuse3-3' 'libgbm1' 'libgc1' 'libgcab-1_0-0' 'libgcc_s1' 'libgcc_s1-32bit' 'libgck-1-0' 'libgck-modules-gnome-keyring' 'libgcr-3-1' 'libgcrypt20' 'libgcrypt20-32bit' 'libgcrypt20-hmac' 'libgd3' 'libgd3-32bit' 'libgdata-lang' 'libgdata22' 'libgdbm6' 'libgdbm6-32bit' 'libgdbm_compat4' 'libgdbm_compat4-32bit' 'libgdiplus0' 'libgdk_pixbuf-2_0-0' 'libgdk_pixbuf-2_0-0-32bit' 'libgee-0_8-2' 'libgfapi0' 'libgfortran5' 'libgfrpc0' 'libgfxdr0' 'libgif7' 'libgio-2_0-0' 'libgio-2_0-0-32bit' 'libgiomm-2_4-1' 'libgirepository-1_0-1' 'libgit2-28' 'libglade-2_0-0' 'libglib-2_0-0' 'libglib-2_0-0-32bit' 'libglibmm-2_4-1' 'libglslang-suse6' 'libglusterfs0' 'libglvnd' 'libglvnd-32bit' 'libgme0' 'libgmodule-2_0-0' 'libgmodule-2_0-0-32bit' 'libgmp10' 'libgmp10-32bit' 'libgmpxx4' 'libgnome-desktop-3-17' 'libgnome-desktop-3_0-common' 'libgnome-keyring-lang' 'libgnome-keyring0' 'libgnutls-dane0' 'libgnutls-devel' 'libgnutls30' 'libgnutls30-32bit' 'libgoa-1_0-0' 'libgoa-backend-1_0-1' 'libgobject-2_0-0' 'libgobject-2_0-0-32bit' 'libgomp1' 'libgpg-error0' 'libgpg-error0-32bit' 'libgpgme11' 'libgpgmepp6' 'libgphoto2-6' 'libgphoto2-6-32bit' 'libgphoto2-6-lang' 'libgpm2' 'libgps24' 'libgraphene-1_0-0' 'libgraphite2-3' 'libgraphite2-3-32bit' 'libgraphviz6' 'libgravatar' 'libgravatar-lang' 'libgroupsock8' 'libgsl23' 'libgslcblas0' 'libgsm1' 'libgsm1-32bit' 'libgssdp-1_2-0' 'libgstadaptivedemux-1_0-0' 'libgstallocators-1_0-0' 'libgstapp-1_0-0' 'libgstaudio-1_0-0' 'libgstaudio-1_0-0-32bit' 'libgstbadaudio-1_0-0' 'libgstbasecamerabinsrc-1_0-0' 'libgstcodecparsers-1_0-0' 'libgstfft-1_0-0' 'libgstgl-1_0-0' 'libgstisoff-1_0-0' 'libgstmpegts-1_0-0' 'libgstpbutils-1_0-0' 'libgstphotography-1_0-0' 'libgstreamer-1_0-0' 'libgstreamer-1_0-0-32bit' 'libgstriff-1_0-0' 'libgstrtp-1_0-0' 'libgstrtsp-1_0-0' 'libgstsctp-1_0-0' 'libgstsdp-1_0-0' 'libgsttag-1_0-0' 'libgsttag-1_0-0-32bit' 'libgsturidownloader-1_0-0' 'libgstvideo-1_0-0' 'libgstvideo-1_0-0-32bit' 'libgstwayland-1_0-0' 'libgstwebrtc-1_0-0' 'libgthread-2_0-0' 'libgtk-2_0-0' 'libgtk-2_0-0-32bit' 'libgtk-3-0' 'libgtk-3-0-32bit' 'libgtk-vnc-2_0-0' 'libgtkmm-3_0-1' 'libgtksourceview-3_0-1' 'libgtksourceview-4-0' 'libgts-0_7-5' 'libgudev-1_0-0' 'libguestfs0' 'libgupnp-1_2-0' 'libgupnp-igd-1_0-4' 'libgvnc-1_0-0' 'libharfbuzz-icu0' 'libharfbuzz0' 'libharfbuzz0-32bit' 'libhavege1' 'libhdf5-103' 'libhdf5_hl100' 'libhivex0' 'libhogweed4' 'libhogweed4-32bit' 'libhttp_parser2_7_1' 'libhunspell-1_7-0' 'libhyphen0' 'libib_util' 'libibus-1_0-5' 'libibverbs' 'libibverbs1' 'libical3' 'libicu-suse64_2' 'libicu64_2-ledata' 'libid3tag0' 'libidn12' 'libidn2-0' 'libidn2-0-32bit' 'libidn2-lang' 'libiec61883-0' 'libimagequant0' 'libimobiledevice6' 'libindicator3-7' 'libinput-udev' 'libinput10' 'libip4tc2' 'libip6tc2' 'libiperf0' 'libipset13' 'libirs160' 'libisc166' 'libisccc160' 'libisccfg160' 'libiscsi9' 'libisl19' 'libiso9660-11' 'libisoburn1' 'libisofs6' 'libitm1' 'libiw30' 'libixion-0_15-0' 'libixml10' 'libjack0' 'libjack0-32bit' 'libjacknet0' 'libjackserver0' 'libjansson4' 'libjansson4-32bit' 'libjasper4' 'libjavascriptcoregtk-4_0-18' 'libjbig2' 'libjbig2-32bit' 'libjemalloc2' 'libjpeg8' 'libjpeg8-32bit' 'libjson-c4' 'libjson-glib-1_0-0' 'libjson-glib-1_0-0-32bit' 'libjte1' 'libkaccounts1' 'libkactivities6' 'libkate1' 'libkcompactdisc-lang' 'libkde4' 'libkdecorations2-5' 'libkdecorations2-5-lang' 'libkdecorations2private6' 'libkdecore4' 'libkdegames' 'libkdegames-lang' 'libkdepim' 'libkdepim-lang' 'libkerfuffle19' 'libkeybinder-3_0-0' 'libkeyutils1' 'libkeyutils1-32bit' 'libkf5kdegames6' 'libkgantt-lang' 'libkgapi-lang' 'libkioarchive5' 'libkipi-data' 'libkleo' 'libkleo-lang' 'libkmahjongg' 'libkmahjongg-lang' 'libkmod2' 'libkolabxml1' 'libkomparediff2-5' 'libkomparediff2-lang' 'libksane-lang' 'libksba8' 'libkscreen2-plugin' 'libksieve' 'libksieve-lang' 'libksuseinstall1' 'libksysguard5' 'libksysguard5-helper' 'libksysguard5-lang' 'libkwalletbackend5-5' 'liblangtag1' 'liblapack3' 'liblash1' 'liblavfile-2_0-0' 'liblavjpeg-2_0-0' 'liblavplay-2_0-0' 'liblavrec-2_0-0' 'liblayout' 'liblcms2-2' 'liblcms2-2-32bit' 'libldap-2_4-2' 'libldap-2_4-2-32bit' 'libldap-data' 'libldapcpp1' 'libldb1' 'libldb1-32bit' 'libldm-1_0-0' 'liblightdm-gobject-1-0' 'liblilv-0-0' 'liblirc_client0' 'libliveMedia66' 'liblmdb-0_9_23' 'liblo7' 'libloader' 'liblockdev1' 'liblockdev1-32bit' 'liblogging0' 'liblognorm5' 'liblpsolve55-0' 'liblqr-1-0' 'liblrdf2' 'liblsan0' 'libltdl7' 'libltdl7-32bit' 'liblttng-ust0' 'liblua5_1-5' 'liblua5_3-5' 'liblua5_3-5-32bit' 'libluajit-5_1-2' 'liblvm2app2_2' 'liblvm2cmd2_02' 'liblwres160' 'liblz4-1' 'liblz4-1-32bit' 'liblzma5' 'liblzma5-32bit' 'liblzo2-2' 'libmad0' 'libmagic1' 'libmagic1-32bit' 'libmarblewidget-qt5-28' 'libmariadb3' 'libmarkdown2' 'libmatroska6' 'libmbim' 'libmbim-glib4' 'libmd0' 'libmediacheck5' 'libmetalink3' 'libmfx' 'libmfx1' 'libmikmod3' 'libminiupnpc17' 'libminizip1' 'libmjpegutils-2_0-0' 'libmlx4-1' 'libmlx5-1' 'libmm-glib0' 'libmms0' 'libmng2' 'libmnl0' 'libmodman1' 'libmodplug1' 'libmount1' 'libmount1-32bit' 'libmozjs-52' 'libmozjs-60' 'libmp3lame0' 'libmpath0' 'libmpc3' 'libmpcdec5' 'libmpcdec6' 'libmpdclient2' 'libmpeg2-0' 'libmpeg2encpp-2_0-0' 'libmpfr6' 'libmpg123-0' 'libmpg123-0-32bit' 'libmplex2-2_0-0' 'libmpv1' 'libmpx2' 'libmpxwrappers2' 'libmsgpackc2' 'libmspack0' 'libmspub-0_1-1' 'libmtdev1' 'libmtp-udev' 'libmtp9' 'libmusicbrainz5-1' 'libmwaw-0_3-3' 'libmysofa0' 'libmythes-1_2-0' 'libncurses6' 'libncurses6-32bit' 'libndp0' 'libndr-krb5pac0' 'libndr-krb5pac0-32bit' 'libndr-nbt0' 'libndr-nbt0-32bit' 'libndr-standard0' 'libndr-standard0-32bit' 'libndr0' 'libndr0-32bit' 'libneon27' 'libnet9' 'libnetapi0' 'libnetapi0-32bit' 'libnetcontrol0' 'libnetfilter_conntrack3' 'libnetpbm11' 'libnettle-devel' 'libnettle6' 'libnettle6-32bit' 'libnewt0_52' 'libnfnetlink0' 'libnfs13' 'libnftables0' 'libnftnl11' 'libnghttp2-14' 'libnghttp2-14-32bit' 'libnice10' 'libnl-config' 'libnl3-200' 'libnl3-200-32bit' 'libnm-glib4-32bit' 'libnm-util2-32bit' 'libnm0' 'libnotify4' 'libnpth0' 'libnscd1' 'libnscd1-32bit' 'libnsl2' 'libnsl2-32bit' 'libntfs-3g88' 'libnuma1' 'libnumbertext-1_0-0' 'libnumbertext-data' 'liboauth0' 'libodfgen-0_1-1' 'libofa0' 'libogg0' 'libogg0-32bit' 'liboggkate1' 'libopenal1' 'libopenal1-32bit' 'libopenblas_pthreads0' 'libopenconnect5' 'libopencore-amrnb0' 'libopencore-amrwb0' 'libopencv3_4' 'libopeniscsiusr0_2_0' 'libopenjp2-7' 'libopenjpeg1' 'libopenmpt0' 'libopenssl-1_1-devel' 'libopenssl-devel' 'libopenssl1_0_0' 'libopenssl1_0_0-steam' 'libopenssl1_0_0-steam-32bit' 'libopenssl1_1' 'libopenssl1_1-32bit' 'libopts25' 'libopus0' 'liborc-0_4-0' 'liborc-0_4-0-32bit' 'liborcus-0_15-0' 'libosinfo' 'libosinfo-1_0-0' 'libosinfo-lang' 'libostree' 'libostree-1-1' 'libotr5' 'libp11-kit0' 'libp11-kit0-32bit' 'libpackagekit-glib2-18' 'libpackagekitqt5-1' 'libpagemaker-0_0-0' 'libpango-1_0-0' 'libpango-1_0-0-32bit' 'libpangomm-1_4-1' 'libpano13-3' 'libparted0' 'libpcap1' 'libpcap1-32bit' 'libpcaudio0' 'libpci3' 'libpciaccess0' 'libpciaccess0-32bit' 'libpcre1' 'libpcre1-32bit' 'libpcre2-16-0' 'libpcre2-8-0' 'libpcsclite1' 'libpgm-5_2-0' 'libphonon4' 'libphonon4qt5' 'libpipeline1' 'libpipewire-0_2-1' 'libpixman-1-0' 'libpixman-1-0-32bit' 'libpkcs11-helper1' 'libpkgconf3' 'libplacebo18' 'libplist3' 'libply-boot-client4' 'libply-splash-core4' 'libply-splash-graphics4' 'libply4' 'libpmem1' 'libpng12-0-32bit' 'libpng16-16' 'libpng16-16-32bit' 'libpolkit-qt-1-1' 'libpolkit-qt5-1-1' 'libpolkit0' 'libpoppler-cpp0' 'libpoppler-qt5-1' 'libpoppler89' 'libpopt0' 'libpopt0-32bit' 'libportaudio2' 'libpostproc53' 'libpostproc55' 'libpq5' 'libprocps7' 'libprojectM3' 'libprotobuf-c1' 'libprotobuf-lite19' 'libproxy1' 'libproxy1-config-kde' 'libproxy1-networkmanager' 'libproxy1-pacrunner-webkit' 'libpskc0' 'libpsl5' 'libpsl5-32bit' 'libpulse-mainloop-glib0' 'libpulse0' 'libpulse0-32bit' 'libpwquality-lang' 'libpwquality1' 'libpython2_7-1_0' 'libpython3_7m1_0' 'libqalculate21' 'libqca-qt5' 'libqca-qt5-plugins' 'libqgpgme7' 'libqmi-glib5' 'libqmi-tools' 'libqpdf21' 'libqrencode4' 'libqscintilla2_qt5-15' 'libqt4' 'libqt4-qt3support' 'libqt4-sql' 'libqt4-sql-sqlite' 'libqt4-x11' 'libqt5-qdbus' 'libqt5-qtbase-platformtheme-gtk3' 'libqt5-qtconnectivity-tools' 'libqt5-qtgraphicaleffects' 'libqt5-qtimageformats' 'libqt5-qtpaths' 'libqt5-qtquickcontrols' 'libqt5-qtquickcontrols2' 'libqt5-qtstyleplugins-platformtheme-gtk2' 'libqt5-qttranslations' 'libqt5-qtvirtualkeyboard' 'libqt5-qtvirtualkeyboard-hunspell' 'libqt5-qtwayland' 'libqt5-qtwebengine' 'libqt5-qtxmlpatterns-imports' 'libquadmath0' 'libquazip5-1' 'libquicktime0' 'libqxp-0_0-0' 'librados2' 'libraptor2-0' 'librasqal3' 'libraw1394-11' 'libraw19' 'librbd1' 'librdf0' 'librdmacm1' 'libre2-0' 'libreadline8' 'libreiserfscore0' 'libreoffice' 'libreoffice-base' 'libreoffice-base-drivers-firebird' 'libreoffice-branding-openSUSE' 'libreoffice-calc' 'libreoffice-draw' 'libreoffice-filters-optional' 'libreoffice-icon-themes' 'libreoffice-impress' 'libreoffice-l10n-en' 'libreoffice-l10n-en_GB' 'libreoffice-mailmerge' 'libreoffice-math' 'libreoffice-pyuno' 'libreoffice-qt5' 'libreoffice-share-linker' 'libreoffice-writer' 'librepository' 'librest-0_7-0' 'librest-0_7-0-32bit' 'librevenge-0_0-0' 'librevenge-stream-0_0-0' 'librmt1_0' 'librscg1_0' 'librsvg-2-2' 'librtmp1' 'librubberband2' 'libruby2_6-2_6' 'libsamba-credentials0' 'libsamba-credentials0-32bit' 'libsamba-errors0' 'libsamba-errors0-32bit' 'libsamba-hostconfig0' 'libsamba-hostconfig0-32bit' 'libsamba-passdb0' 'libsamba-passdb0-32bit' 'libsamba-policy0-python3' 'libsamba-util0' 'libsamba-util0-32bit' 'libsamdb0' 'libsamdb0-32bit' 'libsamplerate0' 'libsasl2-3' 'libsasl2-3-32bit' 'libsbc1' 'libscg1_0' 'libscgcmd1_0' 'libschily2_0' 'libschroedinger-1_0-0' 'libseccomp2' 'libsecret-1-0' 'libsecret-lang' 'libselinux1' 'libselinux1-32bit' 'libsemanage1' 'libsensors4' 'libsensors4-32bit' 'libsepol1' 'libserd-0-0' 'libserf-1-1' 'libserializer' 'libsgutils2-1_45-2' 'libsha1detectcoll1' 'libshaderc_shared1' 'libshine3' 'libshout3' 'libshp2' 'libsigc-2_0-0' 'libsignon-qt5-1' 'libslang2' 'libslopy7_4' 'libslp1' 'libsmartcols1' 'libsmbclient0' 'libsmbconf0' 'libsmbconf0-32bit' 'libsmbldap2' 'libsmbldap2-32bit' 'libsmi' 'libsmi2' 'libsmputils1-1' 'libsnapper4' 'libsnappy1' 'libsndfile1' 'libsndfile1-32bit' 'libsnmp30' 'libsnmp30-32bit' 'libsodium23' 'libsoftokn3' 'libsoftokn3-32bit' 'libsolv-tools' 'libsord-0-0' 'libsoup-2_4-1' 'libsoup-2_4-1-32bit' 'libsoup-lang' 'libsoxr0' 'libspandsp2' 'libspeex1' 'libspeex1-32bit' 'libspeexdsp1' 'libspice-client-glib-2_0-8' 'libspice-client-glib-helper' 'libspice-client-gtk-3_0-5' 'libspice-server1' 'libsqlite3-0' 'libsqlite3-0-32bit' 'libsratom-0-0' 'libsrt1' 'libsrtp2-1' 'libssh-config' 'libssh2-1' 'libssh4' 'libssh4-32bit' 'libstaroffice-0_0-0' 'libstartup-notification-1-0' 'libstdc++6' 'libstdc++6-32bit' 'libstdc++6-pp-gcc9' 'libstdc++6-pp-gcc9-32bit' 'libstoken1' 'libstorage-ng-lang' 'libstorage-ng-ruby' 'libstorage-ng1' 'libsvn_auth_kwallet-1-0' 'libswresample1' 'libswresample3' 'libswscale3' 'libswscale5' 'libsystemd0' 'libsystemd0-32bit' 'libtag1' 'libtalloc2' 'libtalloc2-32bit' 'libtasn1' 'libtasn1-6' 'libtasn1-6-32bit' 'libtasn1-devel' 'libtbb2' 'libtdb1' 'libtdb1-32bit' 'libteamdctl0' 'libtermkey1' 'libtevent-util0' 'libtevent-util0-32bit' 'libtevent0' 'libtevent0-32bit' 'libthai-data' 'libthai0' 'libthai0-32bit' 'libtheora0' 'libtheora0-32bit' 'libtheoradec1' 'libtheoraenc1' 'libtiff5' 'libtiff5-32bit' 'libtirpc-netconfig' 'libtirpc3' 'libtirpc3-32bit' 'libtomcrypt1' 'libtommath1' 'libts0' 'libtsan0' 'libtwolame0' 'libubsan1' 'libuchardet0' 'libudev1' 'libudev1-32bit' 'libudisks2-0' 'libudisks2-0_btrfs' 'libunbound8' 'libunibilium4' 'libunistring2' 'libunistring2-32bit' 'libunity-gtk2-parser0' 'libunity-gtk3-parser0' 'libunwind' 'libunwind-32bit' 'libupnp13' 'libupower-glib3' 'liburcu6' 'libusb-1_0-0' 'libusb-1_0-0-32bit' 'libusbmuxd4' 'libusbredirhost1' 'libusbredirparser1' 'libutempter0' 'libutf8proc2' 'libuuid1' 'libuuid1-32bit' 'libuv1' 'libv4l' 'libv4l1-0' 'libv4l1-0-32bit' 'libv4l2-0' 'libv4l2-0-32bit' 'libv4lconvert0' 'libv4lconvert0-32bit' 'libva-drm2' 'libva-drm2-32bit' 'libva-glx2' 'libva-wayland2' 'libva-x11-2' 'libva-x11-2-32bit' 'libva2' 'libva2-32bit' 'libvapoursynth-46' 'libvapoursynth-script0' 'libvdeplug3' 'libvdpau1' 'libvdpau_nouveau' 'libverto1' 'libverto1-32bit' 'libvidstab1_1' 'libvigraimpex11' 'libvirglrenderer0' 'libvirt-bash-completion' 'libvirt-client' 'libvirt-daemon' 'libvirt-daemon-config-network' 'libvirt-daemon-driver-interface' 'libvirt-daemon-driver-network' 'libvirt-daemon-driver-nodedev' 'libvirt-daemon-driver-nwfilter' 'libvirt-daemon-driver-qemu' 'libvirt-daemon-driver-secret' 'libvirt-daemon-driver-storage' 'libvirt-daemon-driver-storage-core' 'libvirt-daemon-driver-storage-disk' 'libvirt-daemon-driver-storage-gluster' 'libvirt-daemon-driver-storage-iscsi' 'libvirt-daemon-driver-storage-iscsi-direct' 'libvirt-daemon-driver-storage-logical' 'libvirt-daemon-driver-storage-mpath' 'libvirt-daemon-driver-storage-rbd' 'libvirt-daemon-driver-storage-scsi' 'libvirt-daemon-qemu' 'libvirt-glib-1_0-0' 'libvirt-libs' 'libvisio-0_1-1' 'libvisual' 'libvkd3d1' 'libvkd3d1-32bit' 'libvlc5' 'libvlccore9' 'libvo-amrwbenc0' 'libvorbis0' 'libvorbis0-32bit' 'libvorbisenc2' 'libvorbisenc2-32bit' 'libvorbisfile3' 'libvorbisfile3-32bit' 'libvpx6' 'libvte-2_91-0' 'libvterm0' 'libvulkan1' 'libvulkan1-32bit' 'libwacom-data' 'libwacom2' 'libwavpack1' 'libwayland-client0' 'libwayland-client0-32bit' 'libwayland-cursor0' 'libwayland-cursor0-32bit' 'libwayland-egl1' 'libwayland-egl1-32bit' 'libwayland-server0' 'libwbclient0' 'libwbclient0-32bit' 'libwebkit2gtk-4_0-37' 'libwebkit2gtk3-lang' 'libwebp7' 'libwebp7-32bit' 'libwebpdemux2' 'libwebpmux3' 'libwebrtc_audio_processing1' 'libwicked-0-6' 'libwoff2common1_0_2' 'libwoff2dec1_0_2' 'libwpd-0_10-10' 'libwpg-0_3-3' 'libwps-0_4-4' 'libwrap0' 'libwrap0-32bit' 'libwx_baseu-suse3_0_4' 'libwx_baseu_net-suse3_0_4' 'libwx_baseu_xml-suse3_0_4' 'libwx_gtk2u_adv-suse3_0_4' 'libwx_gtk2u_aui-suse3_0_4' 'libwx_gtk2u_core-suse3_0_4' 'libwx_gtk2u_gl-suse3_0_4' 'libwx_gtk2u_html-suse3_0_4' 'libwx_gtk2u_qa-suse3_0_4' 'libwx_gtk2u_xrc-suse3_0_4' 'libx264-155' 'libx265-169' 'libx265-176' 'libx86emu2' 'libxapian30' 'libxcb-composite0' 'libxcb-cursor0' 'libxcb-damage0' 'libxcb-dpms0' 'libxcb-dri2-0' 'libxcb-dri2-0-32bit' 'libxcb-dri3-0' 'libxcb-dri3-0-32bit' 'libxcb-glx0' 'libxcb-glx0-32bit' 'libxcb-icccm4' 'libxcb-image0' 'libxcb-keysyms1' 'libxcb-present0' 'libxcb-present0-32bit' 'libxcb-randr0' 'libxcb-record0' 'libxcb-render-util0' 'libxcb-render0' 'libxcb-render0-32bit' 'libxcb-res0' 'libxcb-shape0' 'libxcb-shm0' 'libxcb-shm0-32bit' 'libxcb-sync1' 'libxcb-sync1-32bit' 'libxcb-util1' 'libxcb-xfixes0' 'libxcb-xinerama0' 'libxcb-xinput0' 'libxcb-xkb1' 'libxcb-xv0' 'libxcb1' 'libxcb1-32bit' 'libxcrypt-devel' 'libxerces-c-3_2' 'libxkbcommon-x11-0' 'libxkbcommon0' 'libxkbcommon0-32bit' 'libxkbfile1' 'libxklavier16' 'libxml++-2_6-2' 'libxml2-2' 'libxml2-2-32bit' 'libxml2-tools' 'libxmlsec1-1' 'libxmlsec1-nss1' 'libxshmfence1' 'libxshmfence1-32bit' 'libxslt-tools' 'libxslt1' 'libxslt1-32bit' 'libxtables12' 'libxvidcore4' 'libyajl2' 'libyaml-0-2' 'libykpers-1-1' 'libyubikey0' 'libyui-ncurses-pkg10' 'libyui-ncurses10' 'libyui-qt-graph10' 'libyui-qt-pkg10' 'libyui-qt10' 'libyui10' 'libz1' 'libz1-32bit' 'libzbar0' 'libzck1' 'libzimg2' 'libzio1' 'libzip5' 'libzita-convolver4' 'libzmf-0_0-0' 'libzmq5' 'libzstd1' 'libzstd1-32bit' 'libzvbi0' 'libzypp' 'libzypp-plugin-appdata' 'libzzip-0-13' 'lifecycle-data-openSUSE' 'lightdm' 'lightdm-gtk-greeter' 'lightdm-gtk-greeter-branding-openSUSE' 'lightdm-gtk-greeter-lang' 'lightdm-lang' 'linux-glibc-devel' 'livestreamer' 'lksctp-tools' 'lockdev' 'logrotate' 'lsof' 'lsp-plugins' 'lsscsi' 'lua51' 'lua51-ldbus' 'lua51-lua-dbus' 'lua51-lua-mpris' 'luit' 'lutris' 'lv2-calf' 'lvm2' 'lzop' 'm4' 'mailcommon' 'mailcommon-lang' 'mailimporter' 'mailimporter-lang' 'mailx' 'maim' 'make' 'make-lang' 'makedumpfile' 'man' 'man-pages' 'man-pages-posix' 'marble' 'marble-data' 'marble-doc' 'marble-kde' 'marble-lang' 'mariadb' 'mariadb-client' 'mariadb-errormessages' 'mbimcli-bash-completion' 'mbox-importer' 'mbox-importer-lang' 'mcelog' 'mda-lv2' 'mdadm' 'media-player-info' 'messagelib' 'messagelib-lang' 'metamail' 'metatheme-adwaita-common' 'metatheme-breeze-common' 'milou5' 'milou5-lang' 'minimal_base' 'mjpegtools' 'mkfontscale' 'mkisofs' 'mobile-broadband-provider-info' 'mobipocket' 'mozilla-nspr' 'mozilla-nspr-32bit' 'mozilla-nss' 'mozilla-nss-32bit' 'mozilla-nss-certs' 'mozilla-nss-certs-32bit' 'mpd' 'mpg123-jack' 'mpg123-openal' 'mpg123-pulse' 'mpt-status' 'mpv' 'mpv-bash-completion' 'mpv-plugin-mpris' 'mpv-zsh-completion' 'mtools' 'multimedia' 'multipath-tools' 'myspell-dictionaries' 'myspell-en' 'myspell-en_GB' 'myspell-en_US' 'myspell-lightproof-en' 'nano' 'nano-lang' 'ncdu' 'ncurses-utils' 'neofetch' 'net-snmp' 'net-tools' 'net-tools-lang' 'netcat-openbsd' 'netcfg' 'netpbm' 'nfs-client' 'nfs-kernel-server' 'nfsidmap' 'nftables' 'nodejs-common' 'nodejs10' 'nodejs10-devel' 'notification-daemon' 'notification-daemon-lang' 'noto-coloremoji-fonts' 'noto-sans-fonts' 'npm10' 'nscd' 'nss-mdns' 'nss-mdns-32bit' 'ntfs-3g' 'ntfsprogs' 'ntp' 'numactl' 'numad' 'numlockx' 'nvidia-computeG05' 'nvidia-gfxG05-kmp-default' 'nvidia-glG05' 'office' 'okular' 'okular-lang' 'open-iscsi' 'openSUSE' 'openSUSE-build-key' 'openSUSE-release' 'openSUSE-release-dvd' 'openSUSE-release-ftp' 'openal-soft-data' 'openal-soft-tools' 'openconnect' 'openconnect-lang' 'openldap2-client' 'openslp' 'openssh' 'openssh-askpass-gnome' 'openssh-helpers' 'openssl' 'openssl-1_1' 'opensuse-welcome' 'opensuse-welcome-lang' 'openvpn' 'orion' 'os-prober' 'osinfo-db' 'ovmf' 'oxygen5-icon-theme' 'oxygen5-icon-theme-large' 'oxygen5-sounds' 'p11-kit' 'p11-kit-32bit' 'p11-kit-devel' 'p11-kit-tools' 'p7zip' 'p7zip-full' 'pam' 'pam-32bit' 'pam-config' 'parallel-printer-support' 'parted' 'parted-lang' 'patch' 'patterns-base-apparmor' 'patterns-base-apparmor_opt' 'patterns-base-base' 'patterns-base-basesystem' 'patterns-base-enhanced_base' 'patterns-base-enhanced_base_opt' 'patterns-base-minimal_base' 'patterns-base-sw_management' 'patterns-base-x11' 'patterns-base-x11_enhanced' 'patterns-base-x11_opt' 'patterns-desktop-books' 'patterns-desktop-multimedia' 'patterns-desktop-multimedia_opt' 'patterns-fonts-fonts' 'patterns-fonts-fonts_opt' 'patterns-games-games' 'patterns-kde-kde' 'patterns-kde-kde_games' 'patterns-kde-kde_internet' 'patterns-kde-kde_multimedia' 'patterns-kde-kde_office' 'patterns-kde-kde_pim' 'patterns-kde-kde_plasma' 'patterns-kde-kde_utilities' 'patterns-kde-kde_utilities_opt' 'patterns-kde-kde_yast' 'patterns-office-office' 'patterns-server-kvm_server' 'patterns-server-kvm_tools' 'patterns-yast-x11_yast' 'patterns-yast-yast2_basis' 'pciutils' 'pcsc-lite' 'pentaho-libxml' 'pentaho-reporting-flow-engine' 'perl' 'perl-32bit' 'perl-Archive-Zip' 'perl-Authen-SASL' 'perl-Bootloader' 'perl-CPAN-Changes' 'perl-Cpanel-JSON-XS' 'perl-Crypt-SmbHash' 'perl-DBD-SQLite' 'perl-DBI' 'perl-Devel-Symdump' 'perl-Digest-HMAC' 'perl-Digest-MD4' 'perl-Digest-SHA1' 'perl-Encode-Locale' 'perl-Error' 'perl-File-FcntlLock' 'perl-File-Listing' 'perl-File-RandomAccess' 'perl-HTML-Parser' 'perl-HTML-Tagset' 'perl-HTTP-Cookies' 'perl-HTTP-Daemon' 'perl-HTTP-Date' 'perl-HTTP-Message' 'perl-HTTP-Negotiate' 'perl-IO-HTML' 'perl-IO-Socket-SSL' 'perl-Image-ExifTool' 'perl-LWP-MediaTypes' 'perl-LWP-Protocol-https' 'perl-MailTools' 'perl-Net-DBus' 'perl-Net-HTTP' 'perl-Net-SMTP-SSL' 'perl-Net-SSLeay' 'perl-Parse-RecDescent' 'perl-Pod-Coverage' 'perl-SNMP' 'perl-Term-ReadKey' 'perl-Term-ReadLine-Gnu' 'perl-Test-Pod' 'perl-Test-Pod-Coverage' 'perl-TimeDate' 'perl-Try-Tiny' 'perl-URI' 'perl-WWW-RobotRules' 'perl-X11-Protocol' 'perl-X500-DN' 'perl-XML-Dumper' 'perl-XML-LibXML' 'perl-XML-NamespaceSupport' 'perl-XML-Parser' 'perl-XML-SAX' 'perl-XML-SAX-Base' 'perl-XML-SAX-Expat' 'perl-XML-Simple' 'perl-XML-Twig' 'perl-XML-XPath' 'perl-apparmor' 'perl-base' 'perl-gettext' 'perl-libwww-perl' 'permissions' 'permissions-config' 'permissions-doc' 'phonon-backend-gstreamer' 'phonon4qt5-backend-gstreamer' 'phonon4qt5-backend-gstreamer-lang' 'phonon4qt5-lang' 'picard' 'picard-lang' 'pigz' 'pim-data-exporter' 'pim-data-exporter-lang' 'pim-sieve-editor' 'pim-sieve-editor-lang' 'pimcommon' 'pimcommon-lang' 'pinentry' 'pinentry-qt5' 'pipewire' 'pipewire-modules' 'pipewire-spa-plugins' 'pipewire-spa-tools' 'pipewire-tools' 'pkcs11-helper' 'pkgconf' 'pkgconf-m4' 'pkgconf-pkg-config' 'plasma-browser-integration' 'plasma-browser-integration-lang' 'plasma-framework' 'plasma-framework-components' 'plasma-framework-lang' 'plasma-nm5' 'plasma-nm5-l2tp' 'plasma-nm5-lang' 'plasma-nm5-openconnect' 'plasma-nm5-openvpn' 'plasma-nm5-pptp' 'plasma5-addons' 'plasma5-addons-lang' 'plasma5-applet-suse-prime' 'plasma5-defaults-openSUSE' 'plasma5-desktop' 'plasma5-desktop-lang' 'plasma5-integration-plugin' 'plasma5-integration-plugin-lang' 'plasma5-pa' 'plasma5-pa-lang' 'plasma5-pk-updates' 'plasma5-pk-updates-lang' 'plasma5-session' 'plasma5-theme-openSUSE' 'plasma5-workspace' 'plasma5-workspace-branding-openSUSE' 'plasma5-workspace-lang' 'plasma5-workspace-libs' 'plymouth' 'plymouth-branding-openSUSE' 'plymouth-dracut' 'plymouth-plugin-label' 'plymouth-plugin-label-ft' 'plymouth-plugin-script' 'plymouth-plugin-two-step' 'plymouth-scripts' 'plymouth-theme-bgrt' 'plymouth-theme-spinner' 'pmdk' 'pngquant' 'polkit' 'polkit-default-privs' 'polkit-kde-agent-5' 'polkit-kde-agent-5-lang' 'poppler-data' 'poppler-tools' 'postfix' 'powerdevil5' 'powerdevil5-lang' 'powerline-fonts' 'ppp' 'pptp' 'prctl' 'prison-qt5-imports' 'procinfo' 'procmail' 'procps' 'psmisc' 'psmisc-lang' 'psqlODBC' 'psutils' 'ptools' 'publicsuffix' 'puddletag' 'pulseaudio' 'pulseaudio-bash-completion' 'pulseaudio-lang' 'pulseaudio-module-bluetooth' 'pulseaudio-module-gconf' 'pulseaudio-module-x11' 'pulseaudio-module-zeroconf' 'pulseaudio-utils' 'pulseaudio-utils-32bit' 'pulseeffects' 'pulseeffects-lang' 'purpose' 'purpose-lang' 'pv' 'python' 'python-base' 'python-qt4-utils' 'python-qt5-utils' 'python-qtwebengine-qt5-sip' 'python-rpm-macros' 'python-sip-common' 'python-xml' 'python2-configobj' 'python2-dbus-python' 'python2-gobject' 'python2-mutagen' 'python2-pyparsing' 'python2-qt4' 'python2-sip' 'python2-six' 'python3' 'python3-Automat' 'python3-Markdown' 'python3-Pillow' 'python3-PyAudio' 'python3-PyHamcrest' 'python3-PyJWT' 'python3-PySocks' 'python3-PyYAML' 'python3-Send2Trash' 'python3-Twisted' 'python3-Unidecode' 'python3-apparmor' 'python3-appdirs' 'python3-asn1crypto' 'python3-attrs' 'python3-audioread' 'python3-base' 'python3-bcrypt' 'python3-beautifulsoup4' 'python3-bind' 'python3-blinker' 'python3-brotlipy' 'python3-certifi' 'python3-cffi' 'python3-chardet' 'python3-cmdln' 'python3-configobj' 'python3-constantly' 'python3-createrepo_c' 'python3-cryptography' 'python3-cupshelpers' 'python3-curses' 'python3-dbm' 'python3-dbus-python' 'python3-decorator' 'python3-discid' 'python3-discogs-client' 'python3-ecdsa' 'python3-evdev' 'python3-firewall' 'python3-gobject' 'python3-gobject-Gdk' 'python3-gobject-cairo' 'python3-h2' 'python3-hpack' 'python3-hyperframe' 'python3-hyperlink' 'python3-idna' 'python3-incremental' 'python3-ipaddr' 'python3-jellyfish' 'python3-jsonschema' 'python3-ldb' 'python3-libvirt-python' 'python3-libxml2-python' 'python3-linux-procfs' 'python3-munkres' 'python3-musicbrainzngs' 'python3-mutagen' 'python3-mysqlclient' 'python3-ndg-httpsclient' 'python3-oauthlib' 'python3-olefile' 'python3-packaging' 'python3-pip' 'python3-ply' 'python3-protobuf' 'python3-py' 'python3-pyOpenSSL' 'python3-pyacoustid' 'python3-pyasn1' 'python3-pyasn1-modules' 'python3-pycairo' 'python3-pycparser' 'python3-pycups' 'python3-pycurl' 'python3-pylast' 'python3-pymad' 'python3-pyparsing' 'python3-pyserial' 'python3-python-mpd2' 'python3-pyudev' 'python3-pyxdg' 'python3-qt5' 'python3-qtwebengine-qt5' 'python3-rarfile' 'python3-requests' 'python3-requests-oauthlib' 'python3-rfc3986' 'python3-rpm' 'python3-service_identity' 'python3-setuptools' 'python3-sip' 'python3-six' 'python3-slip' 'python3-slip-dbus' 'python3-solv' 'python3-soupsieve' 'python3-talloc' 'python3-tdb' 'python3-tevent' 'python3-urllib3' 'python3-vapoursynth' 'python3-zope.interface' 'python3-zypp-plugin' 'qalculate-data' 'qemu' 'qemu-audio-pa' 'qemu-block-curl' 'qemu-block-rbd' 'qemu-block-ssh' 'qemu-ipxe' 'qemu-ksm' 'qemu-ovmf-x86_64' 'qemu-seabios' 'qemu-sgabios' 'qemu-tools' 'qemu-ui-curses' 'qemu-ui-gtk' 'qemu-ui-sdl' 'qemu-vgabios' 'qemu-x86' 'qqc2-desktop-style' 'qscintilla2_qt5' 'radvd' 'rar' 'rclone' 'rclone-bash-completion' 'rclone-zsh-completion' 'rdma-core' 'readline-doc' 'redshift' 'reiserfs' 'release-notes-openSUSE' 'rgb' 'rkhunter' 'rp-pppoe' 'rpcbind' 'rpm' 'rpm-32bit' 'rpm-build' 'rpm-config-SUSE' 'rsibreak' 'rsibreak-lang' 'rsync' 'rsyslog' 'rtkit' 'rubberband-ladspa' 'ruby' 'ruby-common' 'ruby-solv' 'ruby2.6' 'ruby2.6-rubygem-abstract_method' 'ruby2.6-rubygem-cfa' 'ruby2.6-rubygem-cfa_grub2' 'ruby2.6-rubygem-cheetah' 'ruby2.6-rubygem-fast_gettext' 'ruby2.6-rubygem-gem2rpm' 'ruby2.6-rubygem-ruby-augeas' 'ruby2.6-rubygem-ruby-dbus' 'ruby2.6-rubygem-simpleidn' 'ruby2.6-rubygem-unf' 'ruby2.6-rubygem-unf_ext' 'sac' 'samba' 'samba-client' 'samba-client-32bit' 'samba-libs' 'samba-libs-32bit' 'samba-libs-python3' 'samba-python3' 'samba-winbind' 'samba-winbind-32bit' 'sane-backends' 'sane-backends-32bit' 'sane-backends-autoconfig' 'sasl2-kdexoauth2' 'sbc' 'scout' 'screen' 'sddm' 'sddm-branding-openSUSE' 'sddm-theme-openSUSE' 'sed' 'sed-lang' 'sensors' 'sessreg' 'setserial' 'setxkbmap' 'sg3_utils' 'sgml-skel' 'shadow' 'shared-mime-info' 'shared-mime-info-lang' 'sharutils' 'sharutils-lang' 'shim' 'signon-kwallet-extension' 'signon-plugin-oauth2' 'signon-plugins' 'signon-ui' 'signond' 'signond-libs' 'site-config' 'skanlite' 'skanlite-lang' 'smartmontools' 'smp_utils' 'snapper' 'snapper-zypp-plugin' 'sni-qt' 'snmp-mibs' 'solid-imports' 'solid-tools' 'sonnet' 'sound-theme-freedesktop' 'spax' 'spectacle' 'spectacle-lang' 'spectre-meltdown-checker' 'speedtest-cli' 'spek' 'sqlitebrowser' 'squashfs' 'sshfs' 'stack' 'star' 'steam' 'steamtricks' 'steamtricks-data' 'stix-fonts' 'strace' 'strongswan-ipsec' 'strongswan-libs0' 'subversion' 'subversion-bash-completion' 'subversion-perl' 'sudo' 'supermin' 'surfraw' 'suse-module-tools' 'suse-prime' 'susepaste' 'susepaste-screenshot' 'sw_management' 'syntax-highlighting' 'sysconfig' 'sysconfig-netconfig' 'syslinux' 'syslog-service' 'system-group-hardware' 'system-group-wheel' 'system-tuning-common-SUSE' 'system-user-bin' 'system-user-daemon' 'system-user-flatpak' 'system-user-lp' 'system-user-mail' 'system-user-man' 'system-user-nobody' 'system-user-root' 'system-user-srvGeoClue' 'systemd' 'systemd-32bit' 'systemd-container' 'systemd-icon-branding-openSUSE' 'systemd-presets-branding-openSUSE' 'systemd-presets-common-SUSE' 'systemd-rpm-macros' 'systemd-sysvinit' 'systemsettings5' 'systemsettings5-lang' 'sysuser-shadow' 'sysvinit-tools' 'tar' 'tar-lang' 'tar-rmt' 'tcl' 'tcpdump' 'tcsh' 'tcsh-lang' 'teamviewer-suse' 'telnet' 'terminfo' 'terminfo-base' 'terminfo-screen' 'texlive-lm-fonts' 'tftp' 'thin-provisioning-tools' 'tigervnc' 'time' 'timezone' 'timezone-java' 'tk' 'tmux' 'tnftp' 'traceroute' 'translation-update' 'transmission-common' 'transmission-qt' 'transmission-qt-lang' 'tree' 'tuned' 'typelib-1_0-AppIndicator3-0_1' 'typelib-1_0-Atk-1_0' 'typelib-1_0-Flatpak-1_0' 'typelib-1_0-GVnc-1_0' 'typelib-1_0-GdkPixbuf-2_0' 'typelib-1_0-GnomeDesktop-3_0' 'typelib-1_0-GnomeKeyring-1_0' 'typelib-1_0-Gst-1_0' 'typelib-1_0-Gtk-3_0' 'typelib-1_0-GtkSource-4' 'typelib-1_0-GtkVnc-2_0' 'typelib-1_0-JavaScriptCore-4_0' 'typelib-1_0-Libosinfo-1_0' 'typelib-1_0-LibvirtGLib-1_0' 'typelib-1_0-NM-1_0' 'typelib-1_0-Notify-0_7' 'typelib-1_0-Pango-1_0' 'typelib-1_0-Soup-2_4' 'typelib-1_0-SpiceClientGlib-2_0' 'typelib-1_0-SpiceClientGtk-3_0' 'typelib-1_0-Vte-2.91' 'typelib-1_0-WebKit2-4_0' 'typescript' 'ucode-amd' 'ucode-intel' 'udev' 'udev-configure-printer' 'udisks2' 'udisks2-lang' 'unbound-anchor' 'unity-gtk-module-common' 'unity-gtk2-module' 'unity-gtk3-module' 'unixODBC' 'unrar' 'unzip' 'unzip-doc' 'update-alternatives' 'update-desktop-files' 'upower' 'upower-lang' 'usb_modeswitch' 'usb_modeswitch-data' 'usbmuxd' 'usbutils' 'util-linux' 'util-linux-lang' 'util-linux-systemd' 'vim' 'vim-data' 'vim-data-common' 'virt-install' 'virt-manager' 'virt-manager-common' 'virt-v2v' 'virt-viewer' 'virt-what' 'vlan' 'vlc' 'vlc-codec-gstreamer' 'vlc-codecs' 'vlc-noX' 'vlc-qt' 'vlc-vdpau' 'vm-install' 'vorbis-tools' 'vorbis-tools-lang' 'vte-lang' 'vulkan-tools' 'w3m' 'w3m-inline-image' 'wallpaper-branding-openSUSE' 'webkit2gtk-4_0-injected-bundles' 'wget' 'which' 'wicked' 'wicked-service' 'wine-gecko' 'wine-mono' 'wine-staging' 'wine-staging-32bit' 'winetricks' 'wireguard-tools' 'wireless-regdb' 'wireless-tools' 'wmctrl' 'wol' 'wol-lang' 'words' 'wpa_supplicant' 'wxWidgets-lang' 'x11' 'x11-tools' 'x11-video-nvidiaG05' 'xauth' 'xbitmaps' 'xbrlapi' 'xclip' 'xclock' 'xconsole' 'xdg-desktop-portal' 'xdg-desktop-portal-kde' 'xdg-desktop-portal-kde-lang' 'xdg-desktop-portal-lang' 'xdg-menu' 'xdg-user-dirs' 'xdg-user-dirs-lang' 'xdg-utils' 'xdm' 'xdmbgrd' 'xembedsniproxy' 'xen-libs' 'xf86-input-evdev' 'xf86-input-joystick' 'xf86-input-keyboard' 'xf86-input-libinput' 'xf86-input-mouse' 'xf86-input-synaptics' 'xf86-input-vmmouse' 'xf86-input-void' 'xf86-input-wacom' 'xf86-video-fbdev' 'xf86-video-nouveau' 'xf86-video-vesa' 'xfsprogs' 'xhost' 'xinetd' 'xinit' 'xkbcomp' 'xkeyboard-config' 'xkeyboard-config-lang' 'xl2tpd' 'xli' 'xmessage' 'xml-commons-apis' 'xmlcharent' 'xmlstarlet' 'xmodmap' 'xorg-x11-Xvnc' 'xorg-x11-Xvnc-module' 'xorg-x11-driver-video' 'xorg-x11-essentials' 'xorg-x11-fonts' 'xorg-x11-fonts-core' 'xorg-x11-libX11-ccache' 'xorg-x11-server' 'xorg-x11-server-extra' 'xorg-x11-server-wayland' 'xorriso' 'xprop' 'xrandr' 'xrdb' 'xscreensaver' 'xscreensaver-data' 'xscreensaver-lang' 'xsel' 'xset' 'xsetroot' 'xtables-plugins' 'xterm' 'xterm-bin' 'xtermset' 'xz' 'xz-lang' 'yast2' 'yast2-add-on' 'yast2-alternatives' 'yast2-apparmor' 'yast2-auth-client' 'yast2-auth-server' 'yast2-bootloader' 'yast2-control-center' 'yast2-control-center-qt' 'yast2-core' 'yast2-country' 'yast2-country-data' 'yast2-firewall' 'yast2-hardware-detection' 'yast2-installation' 'yast2-iscsi-client' 'yast2-journal' 'yast2-kdump' 'yast2-ldap' 'yast2-logs' 'yast2-mail' 'yast2-metapackage-handler' 'yast2-network' 'yast2-nfs-client' 'yast2-nfs-common' 'yast2-nis-client' 'yast2-ntp-client' 'yast2-online-update' 'yast2-online-update-frontend' 'yast2-packager' 'yast2-pam' 'yast2-perl-bindings' 'yast2-pkg-bindings' 'yast2-printer' 'yast2-proxy' 'yast2-python3-bindings' 'yast2-qt-branding-openSUSE' 'yast2-ruby-bindings' 'yast2-samba-client' 'yast2-samba-server' 'yast2-scanner' 'yast2-schema' 'yast2-security' 'yast2-services-manager' 'yast2-slp' 'yast2-snapper' 'yast2-sound' 'yast2-storage-ng' 'yast2-sudo' 'yast2-support' 'yast2-sysconfig' 'yast2-tftp-server' 'yast2-theme' 'yast2-theme-breeze' 'yast2-theme-oxygen' 'yast2-trans-en' 'yast2-trans-en_US' 'yast2-trans-stats' 'yast2-transfer' 'yast2-tune' 'yast2-update' 'yast2-users' 'yast2-vm' 'yast2-vpn' 'yast2-x11' 'yast2-xml' 'yast2-ycp-ui-bindings' 'yast2_basis' 'youtube-dl' 'youtube-dl-bash-completion' 'youtube-dl-zsh-completion' 'yp-tools' 'zam-plugins' 'zenity' 'zenity-lang' 'zerofree' 'zeromq-tools' 'zip' 'zisofs-tools' 'zlib-devel' 'zsh' 'zypper' 'zypper-aptitude' 'zypper-lifecycle-plugin' 'zypper-log' 'zypper-needs-restarting'
+EO:_zypp_installed
+)}"} )
diff --git a/exact_dot_oh-my-zsh/exact_cache/dot_zsh-update b/exact_dot_oh-my-zsh/exact_cache/dot_zsh-update
new file mode 100644
index 0000000..676db39
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_cache/dot_zsh-update
@@ -0,0 +1 @@
+LAST_EPOCH=18171
diff --git a/exact_dot_oh-my-zsh/exact_cache/npm_completion b/exact_dot_oh-my-zsh/exact_cache/npm_completion
new file mode 100644
index 0000000..070691b
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_cache/npm_completion
@@ -0,0 +1,60 @@
+###-begin-npm-completion-###
+#
+# npm command completion script
+#
+# Installation: npm completion >> ~/.bashrc (or ~/.zshrc)
+# Or, maybe: npm completion > /usr/local/etc/bash_completion.d/npm
+#
+
+if type complete &>/dev/null; then
+ _npm_completion () {
+ local words cword
+ if type _get_comp_words_by_ref &>/dev/null; then
+ _get_comp_words_by_ref -n = -n @ -n : -w words -i cword
+ else
+ cword="$COMP_CWORD"
+ words=("${COMP_WORDS[@]}")
+ fi
+
+ local si="$IFS"
+ IFS=$'\n' COMPREPLY=($(COMP_CWORD="$cword" \
+ COMP_LINE="$COMP_LINE" \
+ COMP_POINT="$COMP_POINT" \
+ npm completion -- "${words[@]}" \
+ 2>/dev/null)) || return $?
+ IFS="$si"
+ if type __ltrim_colon_completions &>/dev/null; then
+ __ltrim_colon_completions "${words[cword]}"
+ fi
+ }
+ complete -o default -F _npm_completion npm
+elif type compdef &>/dev/null; then
+ _npm_completion() {
+ local si=$IFS
+ compadd -- $(COMP_CWORD=$((CURRENT-1)) \
+ COMP_LINE=$BUFFER \
+ COMP_POINT=0 \
+ npm completion -- "${words[@]}" \
+ 2>/dev/null)
+ IFS=$si
+ }
+ compdef _npm_completion npm
+elif type compctl &>/dev/null; then
+ _npm_completion () {
+ local cword line point words si
+ read -Ac words
+ read -cn cword
+ let cword-=1
+ read -l line
+ read -ln point
+ si="$IFS"
+ IFS=$'\n' reply=($(COMP_CWORD="$cword" \
+ COMP_LINE="$line" \
+ COMP_POINT="$point" \
+ npm completion -- "${words[@]}" \
+ 2>/dev/null)) || return $?
+ IFS="$si"
+ }
+ compctl -K _npm_completion npm
+fi
+###-end-npm-completion-###
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_example/example.plugin.zsh b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_example/example.plugin.zsh
new file mode 100644
index 0000000..406f274
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_example/example.plugin.zsh
@@ -0,0 +1,2 @@
+# Add your own custom plugins in the custom/plugins directory. Plugins placed
+# here will override ones with the same name in the main plugins directory.
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/CHANGELOG.md b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/CHANGELOG.md
new file mode 100644
index 0000000..37bf991
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/CHANGELOG.md
@@ -0,0 +1,106 @@
+# Changelog
+
+## v0.6.3
+- Fixed bug moving cursor to end of buffer after accepting suggestion (#453)
+
+## v0.6.2
+- Fixed bug deleting the last character in the buffer in vi mode (#450)
+- Degrade gracefully when user doesn't have `zsh/system` module installed (#447)
+
+## v0.6.1
+- Fixed bug occurring when `_complete` had been aliased (#443)
+
+## v0.6.0
+- Added `completion` suggestion strategy powered by completion system (#111)
+- Allow setting `ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE` to an empty string (#422)
+- Don't fetch suggestions after copy-earlier-word (#439)
+- Allow users to unignore zle-\* widgets (e.g. zle-line-init) (#432)
+
+
+## v0.5.2
+- Allow disabling automatic widget re-binding for better performance (#418)
+- Fix async suggestions when `SH_WORD_SPLIT` is set
+- Refactor async mode to use process substitution instead of zpty (#417)
+
+## v0.5.1
+- Speed up widget rebinding (#413)
+- Clean up global variable creations (#403)
+- Respect user's set options when running original widget (#402)
+
+## v0.5.0
+- Don't overwrite config with default values (#335)
+- Support fallback strategies by supplying array to suggestion config var
+- Rename "default" suggestion strategy to "history" to name it based on what it actually does
+- Reset opts in some functions affected by `GLOB_SUBST` (#334)
+- Support widgets starting with dashes (ex: `-a-widget`) (#337)
+- Skip async tests in zsh versions less than 5.0.8 because of reliability issues
+- Fix handling of newline + carriage return in async pty (#333)
+
+
+## v0.4.3
+- Avoid bell when accepting suggestions with `autosuggest-accept` (#228)
+- Don't fetch suggestions after [up,down]-line-or-beginning-search (#227, #241)
+- We are now running CI against new 5.5.1 version
+- Fix partial-accept in vi mode (#188)
+- Fix suggestion disappearing on fast movement after switching to `vicmd` mode (#290)
+- Fix issue rotating through kill ring with `yank-pop` (#301)
+- Fix issue creating new pty for async mode when previous pty is not properly cleaned up (#249)
+
+## v0.4.2
+- Fix bug in zsh versions older than 5.0.8 (#296)
+- Officially support back to zsh v4.3.11
+
+## v0.4.1
+- Switch to [[ and (( conditionals instead of [ (#257)
+- Avoid warnnestedvar warnings with `typeset -g` (#275)
+- Replace tabs with spaces in yaml (#268)
+- Clean up and fix escaping of special characters (#267)
+- Add `emacs-forward-word` to default list of partial accept widgets (#246)
+
+## v0.4.0
+- High-level integration tests using RSpec and tmux
+- Add continuous integration with Circle CI
+- Experimental support for asynchronous suggestions (#170)
+- Fix problems with multi-line suggestions (#225)
+- Optimize case where manually typing in suggestion
+- Avoid wrapping any zle-\* widgets (#206)
+- Remove support for deprecated options from v0.0.x
+- Handle history entries that begin with dashes
+- Gracefully handle being sourced multiple times (#126)
+- Add enable/disable/toggle widgets to disable/enable suggestions (#219)
+
+
+## v0.3.3
+- Switch from $history array to fc builtin for better performance with large HISTFILEs (#164)
+- Fix tilde handling when extended_glob is set (#168)
+- Add config option for maximum buffer length to fetch suggestions for (#178)
+- Add config option for list of widgets to ignore (#184)
+- Don't fetch a new suggestion unless a modification widget actually modifies the buffer (#183)
+
+## v0.3.2
+- Test runner now supports running specific tests and choosing zsh binary
+- Return code from original widget is now correctly passed through (#135)
+- Add `vi-add-eol` to list of accept widgets (#143)
+- Escapes widget names within evals to fix problems with irregular widget names (#152)
+- Plugin now clears suggestion while within a completion menu (#149)
+- .plugin file no longer relies on symbolic link support, fixing issues on Windows (#156)
+
+## v0.3.1
+
+- Fixes issue with `vi-next-char` not accepting suggestion (#137).
+- Fixes global variable warning when WARN_CREATE_GLOBAL option enabled (#133).
+- Split out a separate test file for each widget.
+
+## v0.3.0
+
+- Adds `autosuggest-execute` widget (PR #124).
+- Adds concept of suggestion "strategies" for different ways of fetching suggestions.
+- Adds "match_prev_cmd" strategy (PR #131).
+- Uses git submodules for testing dependencies.
+- Lots of test cleanup.
+- Various bug fixes for zsh 5.0.x and `sh_word_split` option.
+
+
+## v0.2.17
+
+Start of changelog.
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/DESCRIPTION b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/DESCRIPTION
new file mode 100644
index 0000000..b69200f
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/DESCRIPTION
@@ -0,0 +1 @@
+Fish-like fast/unobtrusive autosuggestions for zsh.
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Dockerfile b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Dockerfile
new file mode 100644
index 0000000..0d51407
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Dockerfile
@@ -0,0 +1,20 @@
+FROM ruby:2.5.3-alpine
+
+RUN apk add --no-cache autoconf
+RUN apk add --no-cache libtool
+RUN apk add --no-cache libcap-dev
+RUN apk add --no-cache pcre-dev
+RUN apk add --no-cache curl
+RUN apk add --no-cache build-base
+RUN apk add --no-cache ncurses-dev
+RUN apk add --no-cache tmux
+
+WORKDIR /zsh-autosuggestions
+
+ADD ZSH_VERSIONS /zsh-autosuggestions/ZSH_VERSIONS
+ADD install_test_zsh.sh /zsh-autosuggestions/install_test_zsh.sh
+RUN ./install_test_zsh.sh
+
+ADD Gemfile /zsh-autosuggestions/Gemfile
+ADD Gemfile.lock /zsh-autosuggestions/Gemfile.lock
+RUN bundle install
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Gemfile b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Gemfile
new file mode 100644
index 0000000..8b5deec
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Gemfile
@@ -0,0 +1,5 @@
+source 'https://rubygems.org'
+
+gem 'rspec'
+gem 'rspec-wait'
+gem 'pry-byebug'
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Gemfile.lock b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Gemfile.lock
new file mode 100644
index 0000000..63ee778
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Gemfile.lock
@@ -0,0 +1,41 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ byebug (9.0.5)
+ coderay (1.1.1)
+ diff-lcs (1.3)
+ method_source (0.8.2)
+ pry (0.10.4)
+ coderay (~> 1.1.0)
+ method_source (~> 0.8.1)
+ slop (~> 3.4)
+ pry-byebug (3.4.0)
+ byebug (~> 9.0)
+ pry (~> 0.10)
+ rspec (3.5.0)
+ rspec-core (~> 3.5.0)
+ rspec-expectations (~> 3.5.0)
+ rspec-mocks (~> 3.5.0)
+ rspec-core (3.5.4)
+ rspec-support (~> 3.5.0)
+ rspec-expectations (3.5.0)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.5.0)
+ rspec-mocks (3.5.0)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.5.0)
+ rspec-support (3.5.0)
+ rspec-wait (0.0.9)
+ rspec (>= 3, < 4)
+ slop (3.6.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ pry-byebug
+ rspec
+ rspec-wait
+
+BUNDLED WITH
+ 1.13.6
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/INSTALL.md b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/INSTALL.md
new file mode 100644
index 0000000..9d2915e
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/INSTALL.md
@@ -0,0 +1,61 @@
+# Installation
+
+* [Packages](#packages)
+* [Antigen](#antigen)
+* [Oh My Zsh](#oh-my-zsh)
+* [Manual](#manual-git-clone)
+
+## Packages
+
+| System | Package |
+| ------------- | ------------- |
+| Debian / Ubuntu | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) |
+| Fedora / CentOS / RHEL / Scientific Linux | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) |
+| OpenSUSE / SLE | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) |
+| Arch Linux / Manjaro / Antergos / Hyperbola | [zsh-autosuggestions](https://www.archlinux.org/packages/zsh-autosuggestions), [zsh-autosuggestions-git](https://aur.archlinux.org/packages/zsh-autosuggestions-git) |
+| NixOS | [zsh-autosuggestions](https://github.com/NixOS/nixpkgs/blob/master/pkgs/shells/zsh/zsh-autosuggestions/default.nix) |
+| Void Linux | [zsh-autosuggestions](https://github.com/void-linux/void-packages/blob/master/srcpkgs/zsh-autosuggestions/template) |
+| Mac OS | [homebrew](https://github.com/Homebrew/homebrew-core/blob/master/Formula/zsh-autosuggestions.rb) |
+| NetBSD | [pkgsrc](http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/shells/zsh-autosuggestions/README.html) |
+
+## Antigen
+
+1. Add the following to your `.zshrc`:
+
+ ```sh
+ antigen bundle zsh-users/zsh-autosuggestions
+ ```
+
+2. Start a new terminal session.
+
+## Oh My Zsh
+
+1. Clone this repository into `$ZSH_CUSTOM/plugins` (by default `~/.oh-my-zsh/custom/plugins`)
+
+ ```sh
+ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
+ ```
+
+2. Add the plugin to the list of plugins for Oh My Zsh to load (inside `~/.zshrc`):
+
+ ```sh
+ plugins=(zsh-autosuggestions)
+ ```
+
+3. Start a new terminal session.
+
+## Manual (Git Clone)
+
+1. Clone this repository somewhere on your machine. This guide will assume `~/.zsh/zsh-autosuggestions`.
+
+ ```sh
+ git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
+ ```
+
+2. Add the following to your `.zshrc`:
+
+ ```sh
+ source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
+ ```
+
+3. Start a new terminal session.
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/LICENSE b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/LICENSE
new file mode 100644
index 0000000..ef7cfb6
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/LICENSE
@@ -0,0 +1,23 @@
+Copyright (c) 2013 Thiago de Arruda
+Copyright (c) 2016-2019 Eric Freese
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Makefile b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Makefile
new file mode 100644
index 0000000..f6d13a7
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/Makefile
@@ -0,0 +1,35 @@
+SRC_DIR := ./src
+
+SRC_FILES := \
+ $(SRC_DIR)/config.zsh \
+ $(SRC_DIR)/util.zsh \
+ $(SRC_DIR)/bind.zsh \
+ $(SRC_DIR)/highlight.zsh \
+ $(SRC_DIR)/widgets.zsh \
+ $(SRC_DIR)/strategies/*.zsh \
+ $(SRC_DIR)/fetch.zsh \
+ $(SRC_DIR)/async.zsh \
+ $(SRC_DIR)/start.zsh
+
+HEADER_FILES := \
+ DESCRIPTION \
+ URL \
+ VERSION \
+ LICENSE
+
+PLUGIN_TARGET := zsh-autosuggestions.zsh
+
+all: $(PLUGIN_TARGET)
+
+$(PLUGIN_TARGET): $(HEADER_FILES) $(SRC_FILES)
+ cat $(HEADER_FILES) | sed -e 's/^/# /g' > $@
+ cat $(SRC_FILES) >> $@
+
+.PHONY: clean
+clean:
+ rm $(PLUGIN_TARGET)
+
+.PHONY: test
+test: all
+ @test -n "$$TEST_ZSH_BIN" && echo "Testing zsh binary: $(TEST_ZSH_BIN)" || true
+ bundle exec rspec $(TESTS)
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/README.md b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/README.md
new file mode 100644
index 0000000..5dacd85
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/README.md
@@ -0,0 +1,177 @@
+# zsh-autosuggestions
+
+_[Fish](http://fishshell.com/)-like fast/unobtrusive autosuggestions for zsh._
+
+It suggests commands as you type based on history and completions.
+
+Requirements: Zsh v4.3.11 or later
+
+[](https://circleci.com/gh/zsh-users/zsh-autosuggestions)
+[](https://gitter.im/zsh-users/zsh-autosuggestions)
+
+
+
+
+## Installation
+
+See [INSTALL.md](INSTALL.md).
+
+
+## Usage
+
+As you type commands, you will see a completion offered after the cursor in a muted gray color. This color can be changed by setting the `ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE` variable. See [configuration](#configuration).
+
+If you press the → key (`forward-char` widget) or End (`end-of-line` widget) with the cursor at the end of the buffer, it will accept the suggestion, replacing the contents of the command line buffer with the suggestion.
+
+If you invoke the `forward-word` widget, it will partially accept the suggestion up to the point that the cursor moves to.
+
+
+## Configuration
+
+You may want to override the default global config variables. Default values of these variables can be found [here](src/config.zsh).
+
+**Note:** If you are using Oh My Zsh, you can put this configuration in a file in the `$ZSH_CUSTOM` directory. See their comments on [overriding internals](https://github.com/robbyrussell/oh-my-zsh/wiki/Customization#overriding-internals).
+
+
+### Suggestion Highlight Style
+
+Set `ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE` to configure the style that the suggestion is shown with. The default is `fg=8`, which will set the foreground color to color 8 from the 256-color palette. If your terminal only supports 8 colors, you will need to use a number between 0 and 7.
+
+Background color can also be set, and the suggestion can be styled bold, underlined, or standout. For example, this would show suggestions with bold, underlined, pink text on a cyan background:
+
+```sh
+ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#ff00ff,bg=cyan,bold,underline"
+```
+
+For more info, read the Character Highlighting section of the zsh manual: `man zshzle` or [online](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Character-Highlighting).
+
+**Note:** Some iTerm2 users have reported [not being able to see the suggestions](https://github.com/zsh-users/zsh-autosuggestions/issues/416#issuecomment-486516333). If this affects you, the problem is likely caused by incorrect color settings. In order to correct this, go into iTerm2's setting, navigate to profile > colors and make sure that the colors for Basic Colors > Background and ANSI Colors > Bright Black are **different**.
+
+
+### Suggestion Strategy
+
+`ZSH_AUTOSUGGEST_STRATEGY` is an array that specifies how suggestions should be generated. The strategies in the array are tried successively until a suggestion is found. There are currently three built-in strategies to choose from:
+
+- `history`: Chooses the most recent match from history.
+- `match_prev_cmd`: Like `history`, but chooses the most recent match whose preceding history item matches the most recently executed command ([more info](src/strategies/match_prev_cmd.zsh)). Note that this strategy won't work as expected with ZSH options that don't preserve the history order such as `HIST_IGNORE_ALL_DUPS` or `HIST_EXPIRE_DUPS_FIRST`.
+- `completion`: (experimental) Chooses a suggestion based on what tab-completion would suggest. (requires `zpty` module)
+
+For example, setting `ZSH_AUTOSUGGEST_STRATEGY=(history completion)` will first try to find a suggestion from your history, but, if it can't find a match, will find a suggestion from the completion engine.
+
+
+### Widget Mapping
+
+This plugin works by triggering custom behavior when certain [zle widgets](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Widgets) are invoked. You can add and remove widgets from these arrays to change the behavior of this plugin:
+
+- `ZSH_AUTOSUGGEST_CLEAR_WIDGETS`: Widgets in this array will clear the suggestion when invoked.
+- `ZSH_AUTOSUGGEST_ACCEPT_WIDGETS`: Widgets in this array will accept the suggestion when invoked.
+- `ZSH_AUTOSUGGEST_EXECUTE_WIDGETS`: Widgets in this array will execute the suggestion when invoked.
+- `ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS`: Widgets in this array will partially accept the suggestion when invoked.
+- `ZSH_AUTOSUGGEST_IGNORE_WIDGETS`: Widgets in this array will not trigger any custom behavior.
+
+Widgets that modify the buffer and are not found in any of these arrays will fetch a new suggestion after they are invoked.
+
+**Note:** A widget shouldn't belong to more than one of the above arrays.
+
+
+### Disabling suggestion for large buffers
+
+Set `ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE` to an integer value to disable autosuggestion for large buffers. The default is unset, which means that autosuggestion will be tried for any buffer size. Recommended value is 20.
+This can be useful when pasting large amount of text in the terminal, to avoid triggering autosuggestion for strings that are too long.
+
+### Enable Asynchronous Mode
+
+As of `v0.4.0`, suggestions can be fetched asynchronously. To enable this behavior, set the `ZSH_AUTOSUGGEST_USE_ASYNC` variable (it can be set to anything).
+
+### Disabling automatic widget re-binding
+
+Set `ZSH_AUTOSUGGEST_MANUAL_REBIND` (it can be set to anything) to disable automatic widget re-binding on each precmd. This can be a big boost to performance, but you'll need to handle re-binding yourself if any of the widget lists change or if you or another plugin wrap any of the autosuggest widgets. To re-bind widgets, run `_zsh_autosuggest_bind_widgets`.
+
+
+### Key Bindings
+
+This plugin provides a few widgets that you can use with `bindkey`:
+
+1. `autosuggest-accept`: Accepts the current suggestion.
+2. `autosuggest-execute`: Accepts and executes the current suggestion.
+3. `autosuggest-clear`: Clears the current suggestion.
+4. `autosuggest-fetch`: Fetches a suggestion (works even when suggestions are disabled).
+5. `autosuggest-disable`: Disables suggestions.
+6. `autosuggest-enable`: Re-enables suggestions.
+7. `autosuggest-toggle`: Toggles between enabled/disabled suggestions.
+
+For example, this would bind ctrl + space to accept the current suggestion.
+
+```sh
+bindkey '^ ' autosuggest-accept
+```
+
+
+## Troubleshooting
+
+If you have a problem, please search through [the list of issues on GitHub](https://github.com/zsh-users/zsh-autosuggestions/issues?q=) to see if someone else has already reported it.
+
+### Reporting an Issue
+
+Before reporting an issue, please try temporarily disabling sections of your configuration and other plugins that may be conflicting with this plugin to isolate the problem.
+
+When reporting an issue, please include:
+
+- The smallest, simplest `.zshrc` configuration that will reproduce the problem. See [this comment](https://github.com/zsh-users/zsh-autosuggestions/issues/102#issuecomment-180944764) for a good example of what this means.
+- The version of zsh you're using (`zsh --version`)
+- Which operating system you're running
+
+
+## Uninstallation
+
+1. Remove the code referencing this plugin from `~/.zshrc`.
+
+2. Remove the git repository from your hard drive
+
+ ```sh
+ rm -rf ~/.zsh/zsh-autosuggestions # Or wherever you installed
+ ```
+
+
+## Development
+
+### Build Process
+
+Edit the source files in `src/`. Run `make` to build `zsh-autosuggestions.zsh` from those source files.
+
+
+### Pull Requests
+
+Pull requests are welcome! If you send a pull request, please:
+
+- Request to merge into the `develop` branch (*NOT* `master`)
+- Match the existing coding conventions.
+- Include helpful comments to keep the barrier-to-entry low for people new to the project.
+- Write tests that cover your code as much as possible.
+
+
+### Testing
+
+Tests are written in ruby using the [`rspec`](http://rspec.info/) framework. They use [`tmux`](https://tmux.github.io/) to drive a pseudoterminal, sending simulated keystrokes and making assertions on the terminal content.
+
+Test files live in `spec/`. To run the tests, run `make test`. To run a specific test, run `TESTS=spec/some_spec.rb make test`. You can also specify a `zsh` binary to use by setting the `TEST_ZSH_BIN` environment variable (ex: `TEST_ZSH_BIN=/bin/zsh make test`).
+
+A docker image for testing is available [on docker hub](https://hub.docker.com/r/ericfreese/zsh-autosuggestions-test). It comes with ruby, the bundler dependencies, and all supported versions of zsh installed.
+
+Pull the docker image with:
+
+```sh
+docker pull ericfreese/zsh-autosuggestions-test
+```
+
+To run the tests for a specific version of zsh (where `` below is substituted with the contents of a line from the [`ZSH_VERSIONS`](ZSH_VERSIONS) file):
+
+```sh
+docker run -it -e TEST_ZSH_BIN=zsh- -v $PWD:/zsh-autosuggestions zsh-autosuggestions-test make test
+```
+
+
+## License
+
+This project is licensed under [MIT license](http://opensource.org/licenses/MIT).
+For the full text of the license, see the [LICENSE](LICENSE) file.
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/URL b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/URL
new file mode 100644
index 0000000..4e2bd94
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/URL
@@ -0,0 +1 @@
+https://github.com/zsh-users/zsh-autosuggestions
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/VERSION b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/VERSION
new file mode 100644
index 0000000..e4c57af
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/VERSION
@@ -0,0 +1 @@
+v0.6.3
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/ZSH_VERSIONS b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/ZSH_VERSIONS
new file mode 100644
index 0000000..ed7b882
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/ZSH_VERSIONS
@@ -0,0 +1,16 @@
+# Zsh releases to run tests against
+# See https://github.com/zsh-users/zsh/releases
+#
+# When modifying this file, rebuild and push docker image:
+# $ docker build -t ericfreese/zsh-autosuggestions-test .
+# $ docker push ericfreese/zsh-autosuggestions-test
+4.3.11
+5.0.2
+5.0.8
+5.1.1
+5.2
+5.3.1
+5.4.2
+5.5.1
+5.6.2
+5.7.1
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/dot_editorconfig b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/dot_editorconfig
new file mode 100644
index 0000000..ddabb17
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/dot_editorconfig
@@ -0,0 +1,18 @@
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+indent_style = tab
+indent_size = 4
+
+[*.md]
+indent_style = space
+
+[*.rb]
+indent_style = space
+indent_size = 2
+
+[*.yml]
+indent_style = space
+indent_size = 2
diff --git a/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/dot_rspec b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/dot_rspec
new file mode 100644
index 0000000..43ae203
--- /dev/null
+++ b/exact_dot_oh-my-zsh/exact_custom/exact_plugins/exact_zsh-autosuggestions/dot_rspec
@@ -0,0 +1,3 @@
+--color
+--require spec_helper
+--format documentation