mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb74ceef8d | |||
| 12800a51fa | |||
| 9b445f1116 | |||
| 40898f6ce0 | |||
| 3b4b1b3053 | |||
| e26fd3e022 | |||
| 677fe6cbd5 | |||
| 9e54179aea | |||
| 1145477b30 | |||
| 19cb72b28e | |||
| 497059b257 | |||
| fbda0655f2 | |||
| 1b32d114f3 | |||
| 90a4ceb162 | |||
| 2947369532 | |||
| 26bb3f43f8 | |||
| fd509a2295 | |||
| eb4fcd4085 | |||
| 4fd9e54785 | |||
| 5bc6cc856b | |||
| 3bfdb39ee1 | |||
| b495687f7c | |||
| c719db89dd | |||
| ba9e38f3f0 | |||
| 0d4b01ec83 | |||
| 4867cefcb7 | |||
| e88fcdc4bc | |||
| a381875001 | |||
| 114936fc23 | |||
| 3739bc0e0f | |||
| f43a186a78 | |||
| da562cb750 | |||
| 16467cfbc0 | |||
| 16466cac02 | |||
| 6e8d00eb30 | |||
| c160c30218 | |||
| 9b09c217da | |||
| 00230e7d1d | |||
| ff40498428 | |||
| 6483c7dd86 | |||
| d1079234d9 | |||
| 51a2c03a4a | |||
| 3d8c98b0d8 | |||
| 243ad03d32 | |||
| e1072736aa | |||
| 9a557531f4 |
+38
-33
@@ -12,9 +12,9 @@ SHELL = /bin/bash
|
||||
SPECFILE = $(addsuffix .spec, $(PKG_NAME))
|
||||
|
||||
SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || rpmspec -D '_vendor clr' --srpm -q --queryformat '%{NAME}-%{VERSION}-%{RELEASE}\n' $(SPECFILE))
|
||||
SRPMFILE = results/srpm/$(SRPMVERS).src.rpm
|
||||
SRPMFILE = results/$(SRPMVERS).src.rpm
|
||||
|
||||
LATEST_RPMS = $(shell [ ! -s results/logs/build.log ] || for r in `egrep 'Wrote.*/RPMS/.*.rpm' results/logs/build.log | sed 's/.*\///;s/.*debuginfo/debuginfo\/&/'` ; do echo "results/$$r"; done)
|
||||
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||
RPMS ?= $(LATEST_RPMS)
|
||||
|
||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||
@@ -28,16 +28,18 @@ __missingsources := $(filter-out $(wildcard ${__allsources}), ${__allsources})
|
||||
endif
|
||||
|
||||
$(SPECFILE):
|
||||
@echo Error: $(SPECFILE) is missing. Please run \`make autospec\` to try and auto
|
||||
@echo Error: generate one for you.
|
||||
@exit 1
|
||||
@[[ -f "$@" ]] || (\
|
||||
echo Error: $@ is missing. Please run \`make autospec\` to try and auto;\
|
||||
echo Error: generate one for you.;\
|
||||
exit 1 )
|
||||
|
||||
upstream:
|
||||
@echo Error: The \"upstream\" file is missing. Try running \`make autospec\` to
|
||||
@echo Error: auto generate one for you. If you are not using autospec to
|
||||
@echo Error: generate a spec file, specify the proper "Source*" entries in the
|
||||
@echo Error: spec header, and try running \`make generateupstream\`.
|
||||
@exit 1
|
||||
@[[ -f "$@" ]] || (\
|
||||
echo Error: The \"$@\" file is missing. Try running \`make autospec\` to;\
|
||||
echo Error: auto generate one for you. If you are not using autospec to;\
|
||||
echo Error: generate a spec file, specify the proper "Source*" entries in the;\
|
||||
echo Error: spec header, and try running \`make generateupstream\`.;\
|
||||
exit 1 )
|
||||
|
||||
#help spdxcheck: Checks that the package license is a valid SPDX license,
|
||||
#help or that it is in the exceptions list.
|
||||
@@ -91,24 +93,20 @@ prebuild-checks:
|
||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options.
|
||||
build: prebuild-checks configemail $(SPECFILE) upstream $(SRPMFILE)
|
||||
$(MOCK) $(SRPMFILE) --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
mkdir -p results/logs results/debuginfo
|
||||
mv results/*.log results/logs
|
||||
-mv results/*-debuginfo*.rpm results/debuginfo/
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/logs/build.log
|
||||
@perl $(TOPLVL)/projects/common/count.pl results/logs/build.log &> testresults
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="."
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
@perl $(TOPLVL)/projects/common/count.pl results/build.log &> testresults
|
||||
@$(MAKE) checkblacklist
|
||||
|
||||
#help build-nocheck: Same as 'make build', but do not run the package's test suite.
|
||||
build-nocheck: configemail $(SPECFILE) upstream $(SRPMFILE)
|
||||
$(MOCK) $(SRPMFILE) --nocheck --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
mkdir -p results/logs results/debuginfo
|
||||
mv results/*.log results/logs
|
||||
-mv results/*-debuginfo*.rpm results/debuginfo/
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/logs/build.log
|
||||
@perl $(TOPLVL)/projects/common/count.pl results/logs/build.log &> testresults
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="."
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
@perl $(TOPLVL)/projects/common/count.pl results/build.log &> testresults
|
||||
@$(MAKE) checkblacklist
|
||||
|
||||
fmvpatches: results/logs/build.log
|
||||
fmvpatches: results/build.log
|
||||
@perl $(TOPLVL)/projects/common/fmvpatches.pl $(PKG_NAME)
|
||||
|
||||
#help rootshell: Puts you in a root shell at the top of your build root.
|
||||
@@ -121,9 +119,11 @@ shell:
|
||||
|
||||
# Always rebuild the source rpm
|
||||
.PHONY: $(SRPMFILE)
|
||||
$(SRPMFILE): $(SPECFILE) $(__allsources) localreponotice
|
||||
$(SRPMFILE): $(SPECFILE) $(__allsources) localreponotice clean-old-content
|
||||
@$(MAKE) spdxcheck
|
||||
$(MOCK) --buildsrpm --source=./ --spec=$(SPECFILE) --result=results/srpm/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) --buildsrpm --source=./ --spec=$(SPECFILE) --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
mv results/root.log results/srpm-root.log
|
||||
mv results/build.log results/srpm-build.log
|
||||
|
||||
# Do a git fetch and a git rebase to apply local commits on top of latest
|
||||
# commits from the remote. A git fetch/rebase is used rather than a git pull so
|
||||
@@ -160,8 +160,7 @@ pullrebase:
|
||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
||||
#help to autospec.
|
||||
#help For more information, see the project at https://github.com/clearlinux/autospec
|
||||
autospec: pullrebase localreponotice
|
||||
rm -f results/srpm/*src.rpm
|
||||
autospec: pullrebase localreponotice clean-old-content
|
||||
@if [ -e $(SPECFILE) ] && ! grep -q "# Generated by: autospec.py" $(SPECFILE) ; then \
|
||||
echo "Specfile already exists and was not created by autospec.py! Aborting."; \
|
||||
exit 1; \
|
||||
@@ -178,6 +177,7 @@ autospec: pullrebase localreponotice
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||
$(firstword $(NEWURL) $(URL));
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="."
|
||||
@$(MAKE) spdxcheck
|
||||
@$(MAKE) checkblacklist
|
||||
@if [ -e update_changelog.sh ] && [ -z "$$SKIP_GIT" ] ; then \
|
||||
@@ -327,7 +327,7 @@ rekoji-nowait:
|
||||
$(MAKE) KOJI_NOWAIT="--nowait --background" rekoji
|
||||
|
||||
logcheck:
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/logs/build.log
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
|
||||
$(TOPLVL)/repo:
|
||||
@echo "Creating local RPM repository $(TOPLVL)/repo"
|
||||
@@ -337,19 +337,24 @@ $(TOPLVL)/repo:
|
||||
#help repoadd: Adds locally-built RPMs for this package to the local RPM
|
||||
#help repository. If this repository does not yet exist, it is created and
|
||||
#help enabled.
|
||||
repoadd: results/logs/build.log $(TOPLVL)/repo
|
||||
@if [ -z "`grep '^Wrote: .*$(shell basename $(SRPMFILE))$$' results/logs/build.log`" ]; then \
|
||||
echo "You have not yet succesfully built this release yet"; exit 1; \
|
||||
fi
|
||||
@if [ -f .repo-index ]; then \
|
||||
repoadd: $(TOPLVL)/repo
|
||||
@if [ -z "${LATEST_RPMS}" ]; then \
|
||||
echo "No rpms found in rpms/ directory."; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
if [ -f .repo-index ]; then \
|
||||
echo "Cleaning old rpms:"; \
|
||||
for r in `cat .repo-index`; do \
|
||||
echo "-$$r"; \
|
||||
rm -f $(TOPLVL)/repo/$$r; \
|
||||
done; \
|
||||
rm .repo-index; \
|
||||
fi
|
||||
for r in $(LATEST_RPMS); do echo "+$$r"; echo $$(basename $$r) >> .repo-index; cp $$r $(TOPLVL)/repo; done
|
||||
fi; \
|
||||
for r in ${LATEST_RPMS}; do \
|
||||
echo "+$$r"; \
|
||||
echo $$(basename $$r) >> .repo-index; \
|
||||
ln -f $$r $(TOPLVL)/repo/; \
|
||||
done
|
||||
$(MAKE) localrepocreate
|
||||
$(call localrepoenable,${PM_CONF},${MOCK_CONF})
|
||||
|
||||
|
||||
@@ -138,6 +138,30 @@ localreponotice:
|
||||
[ -f $(TOPLVL)/repo/opt-in-build ] || sleep 3; \
|
||||
fi >&2
|
||||
|
||||
.PHONY: clean-old-rpms clean-old-logs clean-old-content
|
||||
clean-old-rpms:
|
||||
rm -rf ./rpms
|
||||
rm -f ./results/*.rpm
|
||||
|
||||
clean-old-logs:
|
||||
rm -f ./results/*.log
|
||||
|
||||
clean-old-content: clean-old-rpms clean-old-logs
|
||||
|
||||
.PHONY: require-pkg-repo-dir link-new-rpms
|
||||
require-pkg-repo-dir:
|
||||
@if [ -z ${PKG_REPO_DIR} ]; then \
|
||||
echo "Please specify PKG_REPO_DIR to indicate package repo location."; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
link-new-rpms: require-pkg-repo-dir
|
||||
mkdir -p ${PKG_REPO_DIR}/rpms
|
||||
rm -f ${PKG_REPO_DIR}/rpms/*.rpm
|
||||
find ${PKG_REPO_DIR}/results -maxdepth 1 -name '*.rpm' -exec ln {} ${PKG_REPO_DIR}/rpms/ \;
|
||||
rm -f ${PKG_REPO_DIR}/rpms/*.src.rpm
|
||||
|
||||
|
||||
.PHONY: help
|
||||
##### Code
|
||||
# Make sure that HELPSPACE has exactly HELPLEN spaces in it
|
||||
|
||||
@@ -224,6 +224,7 @@ autospecnew: localreponotice
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||
$(URL); \
|
||||
[ $$? -eq 0 ] && $(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||
else \
|
||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||
|
||||
@@ -102,6 +102,10 @@ $ echo missing-build-req >> buildreq_add
|
||||
$ make autospec
|
||||
```
|
||||
|
||||
Please see https://github.com/clearlinux/autospec#common-files for
|
||||
documention on buildreq_add and the other files autospec uses during the
|
||||
build process.
|
||||
|
||||
### Bump the release number for a package
|
||||
|
||||
If you simply need to increment a package's release number and rebuild the
|
||||
@@ -112,6 +116,16 @@ $ make bump
|
||||
$ make build
|
||||
```
|
||||
|
||||
### Update the release version for a package
|
||||
|
||||
If you have an update release version for a package, you can change the url
|
||||
for the new release in the package/example-pkg/Makefile. After modifying the
|
||||
new url, run `make autospec` again to fetch the new package and rebuild.
|
||||
|
||||
```
|
||||
$ make autospec
|
||||
```
|
||||
|
||||
## Other topics
|
||||
|
||||
### Customizing the mock config
|
||||
|
||||
@@ -6,6 +6,8 @@ config_opts['dist'] = 'clear' # only useful for --resultdir variable subst
|
||||
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
|
||||
config_opts['useradd'] = '/usr/sbin/useradd -m -u %(uid)s -g %(gid)s -d %(home)s %(user)s'
|
||||
config_opts['plugin_conf']['ccache_enable'] = False
|
||||
config_opts['plugin_conf']['root_cache_opts']['compress_program'] = 'zstd -5'
|
||||
config_opts['plugin_conf']['root_cache_opts']['extension'] = '.zst'
|
||||
config_opts['releasever'] = 'clear'
|
||||
config_opts['package_manager'] = 'dnf'
|
||||
config_opts['chrootgroup'] = 'mockbuild'
|
||||
|
||||
@@ -1,13 +1,16 @@
|
||||
Babel
|
||||
Botan
|
||||
CUnit
|
||||
Cheetah
|
||||
ConfigArgParse
|
||||
Cython
|
||||
Django
|
||||
Flask
|
||||
FlatBuffers
|
||||
FreeRDP
|
||||
GConf
|
||||
GitPython
|
||||
ImageMagick
|
||||
Jinja2
|
||||
Keras
|
||||
Keras_Applications
|
||||
@@ -31,11 +34,13 @@ Paste
|
||||
PasteDeploy
|
||||
Pillow
|
||||
Pint
|
||||
PyDispatcher
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
Pyro4
|
||||
QtAwesome
|
||||
QtPy
|
||||
R
|
||||
@@ -139,6 +144,8 @@ R-Rsolnp
|
||||
R-Rtsne
|
||||
R-Rvmmin
|
||||
R-SDMTools
|
||||
R-SGP
|
||||
R-SGPdata
|
||||
R-SQUAREM
|
||||
R-Sleuth2
|
||||
R-SnowballC
|
||||
@@ -168,6 +175,7 @@ R-adephylo
|
||||
R-afex
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
R-ape
|
||||
R-argparse
|
||||
R-arm
|
||||
@@ -219,6 +227,7 @@ R-cli
|
||||
R-clipr
|
||||
R-clue
|
||||
R-clustMixType
|
||||
R-clusterGeneration
|
||||
R-cmprsk
|
||||
R-cobs
|
||||
R-coda
|
||||
@@ -344,6 +353,7 @@ R-gbm
|
||||
R-gclus
|
||||
R-gdata
|
||||
R-geepack
|
||||
R-geiger
|
||||
R-geometry
|
||||
R-getopt
|
||||
R-ggjoy
|
||||
@@ -418,6 +428,7 @@ R-lfe
|
||||
R-lhs
|
||||
R-libcoin
|
||||
R-listenv
|
||||
R-listviewer
|
||||
R-lle
|
||||
R-lme4
|
||||
R-lmerTest
|
||||
@@ -444,6 +455,7 @@ R-maxLik
|
||||
R-mclust
|
||||
R-mcmc
|
||||
R-mda
|
||||
R-measures
|
||||
R-memisc
|
||||
R-memoise
|
||||
R-mi
|
||||
@@ -476,6 +488,7 @@ R-mvnormtest
|
||||
R-mvoutlier
|
||||
R-mvtnorm
|
||||
R-natserv
|
||||
R-ncbit
|
||||
R-network
|
||||
R-neuralnet
|
||||
R-nleqslv
|
||||
@@ -501,15 +514,19 @@ R-pbivnorm
|
||||
R-pbkrtest
|
||||
R-pbmcapply
|
||||
R-pcaPP
|
||||
R-pcse
|
||||
R-pdfCluster
|
||||
R-permute
|
||||
R-phangorn
|
||||
R-pheatmap
|
||||
R-phylobase
|
||||
R-phylogram
|
||||
R-phytools
|
||||
R-pillar
|
||||
R-pkgKitten
|
||||
R-pkgbuild
|
||||
R-pkgconfig
|
||||
R-pkgload
|
||||
R-pkgmaker
|
||||
R-plm
|
||||
R-plogr
|
||||
@@ -540,6 +557,7 @@ R-promises
|
||||
R-proto
|
||||
R-proxy
|
||||
R-pryr
|
||||
R-ps
|
||||
R-pscl
|
||||
R-psy
|
||||
R-psych
|
||||
@@ -563,6 +581,7 @@ R-randtoolbox
|
||||
R-ranger
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-reactR
|
||||
R-readr
|
||||
R-readstata13
|
||||
R-readxl
|
||||
@@ -661,6 +680,7 @@ R-stringi
|
||||
R-stringr
|
||||
R-strucchange
|
||||
R-styler
|
||||
R-subplex
|
||||
R-subselect
|
||||
R-superpc
|
||||
R-survey
|
||||
@@ -700,6 +720,7 @@ R-urltools
|
||||
R-uroot
|
||||
R-utf8
|
||||
R-uuid
|
||||
R-varImp
|
||||
R-vcd
|
||||
R-vcdExtra
|
||||
R-vcr
|
||||
@@ -755,10 +776,13 @@ WebOb
|
||||
WebTest
|
||||
Werkzeug
|
||||
Whoosh
|
||||
WireGuard
|
||||
XStatic
|
||||
XStatic-Angular
|
||||
XStatic-Angular-Bootstrap
|
||||
XStatic-Angular-FileUpload
|
||||
XStatic-Angular-Gettext
|
||||
XStatic-Angular-Schema-Form
|
||||
XStatic-Angular-lrdragndrop
|
||||
XStatic-Bootstrap-Datepicker
|
||||
XStatic-Bootstrap-SCSS
|
||||
@@ -777,9 +801,11 @@ XStatic-bootswatch
|
||||
XStatic-jQuery
|
||||
XStatic-jquery-ui
|
||||
XStatic-mdi
|
||||
XStatic-objectpath
|
||||
XStatic-roboto-fontface
|
||||
XStatic-smart-table
|
||||
XStatic-term.js
|
||||
XStatic-tv4
|
||||
Z3
|
||||
abireport
|
||||
absl-py
|
||||
@@ -791,6 +817,7 @@ acrn-hypervisor
|
||||
adwaita-icon-theme
|
||||
aeon
|
||||
aioeventlet
|
||||
aiohttp
|
||||
alabaster
|
||||
alembic
|
||||
alsa-lib
|
||||
@@ -812,6 +839,7 @@ apr
|
||||
apr-util
|
||||
arc-theme
|
||||
argcomplete
|
||||
argon2
|
||||
argparse
|
||||
ark
|
||||
asciidoc
|
||||
@@ -819,11 +847,14 @@ asio
|
||||
asn1crypto
|
||||
aspell
|
||||
aspell-en
|
||||
aspell-pt_BR
|
||||
assimp
|
||||
astor
|
||||
astral
|
||||
astroid
|
||||
astunparse
|
||||
asv
|
||||
async-timeout
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
@@ -845,6 +876,7 @@ autogen
|
||||
automake
|
||||
automaton
|
||||
awscli
|
||||
axel
|
||||
azure-configs
|
||||
babeltrace
|
||||
babl
|
||||
@@ -855,6 +887,7 @@ baloo
|
||||
baloo-widgets
|
||||
bandit
|
||||
baobab
|
||||
barbican
|
||||
bash
|
||||
bash-completion
|
||||
bash.static
|
||||
@@ -899,6 +932,7 @@ buildreq-distutils3
|
||||
buildreq-gnome
|
||||
buildreq-golang
|
||||
buildreq-kde
|
||||
buildreq-kernel
|
||||
buildreq-make
|
||||
buildreq-meson
|
||||
buildreq-mvn
|
||||
@@ -917,6 +951,7 @@ cachetools
|
||||
cairo
|
||||
cairomm
|
||||
cantarell-fonts
|
||||
cantata
|
||||
capnproto
|
||||
cargo
|
||||
caribou
|
||||
@@ -962,11 +997,13 @@ clr-avx-tools
|
||||
clr-boot-manager
|
||||
clr-debug-info
|
||||
clr-desktop-defaults
|
||||
clr-fwupd-hooks
|
||||
clr-hardware-files
|
||||
clr-init
|
||||
clr-man-pages
|
||||
clr-power-tweaks
|
||||
clr-python-timestamp
|
||||
clr-pyversion-strip
|
||||
clr-rpm-config
|
||||
clr-service-restart
|
||||
clr-systemd-config
|
||||
@@ -979,11 +1016,32 @@ clutter-gst
|
||||
clutter-gtk
|
||||
cmake
|
||||
cmd2
|
||||
cmocka
|
||||
cmrt
|
||||
cni
|
||||
cni-plugins
|
||||
cockpit
|
||||
cogl
|
||||
coinmp
|
||||
colcon-bash
|
||||
colcon-cmake
|
||||
colcon-common-extensions
|
||||
colcon-core
|
||||
colcon-defaults
|
||||
colcon-devtools
|
||||
colcon-library-path
|
||||
colcon-metadata
|
||||
colcon-output
|
||||
colcon-package-information
|
||||
colcon-package-selection
|
||||
colcon-parallel-executor
|
||||
colcon-pkg-config
|
||||
colcon-powershell
|
||||
colcon-python-setup-py
|
||||
colcon-recursive-crawl
|
||||
colcon-ros
|
||||
colcon-test-result
|
||||
colcon-zsh
|
||||
collectl
|
||||
colorama
|
||||
colord
|
||||
@@ -1010,7 +1068,6 @@ compat-opencv-soname32
|
||||
compat-opencv-soname33
|
||||
compat-protobuf-soname14
|
||||
compat-protobuf-soname15
|
||||
compat-python36
|
||||
compat-readline
|
||||
component
|
||||
compute-image-packages
|
||||
@@ -1047,6 +1104,7 @@ cups
|
||||
cups-filters
|
||||
cups-pk-helper
|
||||
curl
|
||||
cursive
|
||||
cve-check-tool
|
||||
cxxfilt
|
||||
cycler
|
||||
@@ -1065,6 +1123,7 @@ debugedit
|
||||
decorator
|
||||
defusedxml
|
||||
dejagnu
|
||||
deprecation
|
||||
desktop-file-utils
|
||||
dfc
|
||||
dfu-util
|
||||
@@ -1102,12 +1161,14 @@ dolphin
|
||||
dos2unix
|
||||
dosfstools
|
||||
double-conversion
|
||||
dovecot
|
||||
doxygen
|
||||
dpdk
|
||||
dracut
|
||||
dstat
|
||||
dtc
|
||||
dulwich
|
||||
dwarves
|
||||
dyskctl
|
||||
e2fsprogs
|
||||
ebtables
|
||||
@@ -1143,11 +1204,13 @@ expat
|
||||
expect
|
||||
extra-cmake-modules
|
||||
extras
|
||||
f2fs-tools
|
||||
faba-icon-theme
|
||||
fann
|
||||
farstream
|
||||
fasteners
|
||||
fcgi
|
||||
feh
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
@@ -1159,7 +1222,13 @@ fish
|
||||
fixtures
|
||||
flac
|
||||
flake8
|
||||
flake8-blind-except
|
||||
flake8-builtins
|
||||
flake8-class-newline
|
||||
flake8-comprehensions
|
||||
flake8-deprecated
|
||||
flake8-docstrings
|
||||
flake8-import-order
|
||||
flake8-polyfill
|
||||
flatpak
|
||||
fldigi
|
||||
@@ -1185,6 +1254,7 @@ futures
|
||||
futurist
|
||||
fwupd
|
||||
fwupdate
|
||||
gabbi
|
||||
garcon
|
||||
gast
|
||||
gawk
|
||||
@@ -1214,6 +1284,7 @@ gftp
|
||||
ghostscript
|
||||
gimp
|
||||
git
|
||||
gitdb2
|
||||
gitolite
|
||||
gjs
|
||||
glance
|
||||
@@ -1224,6 +1295,7 @@ glib
|
||||
glib-networking
|
||||
glibc
|
||||
glibmm
|
||||
glm
|
||||
glmark2
|
||||
global
|
||||
glog
|
||||
@@ -1275,6 +1347,7 @@ gnupg
|
||||
gnuplot
|
||||
gnutls
|
||||
go
|
||||
goaccess
|
||||
gobject-introspection
|
||||
golang-github-cpuguy83-go-md2man
|
||||
gom
|
||||
@@ -1291,6 +1364,7 @@ gptfdisk
|
||||
gradle
|
||||
gradle-dep
|
||||
graphene
|
||||
graphite
|
||||
graphviz
|
||||
greenlet
|
||||
grep
|
||||
@@ -1338,6 +1412,7 @@ help2man
|
||||
hexchat
|
||||
hgtools
|
||||
hicolor-icon-theme
|
||||
home-assistant
|
||||
horizon
|
||||
hostname
|
||||
html5lib
|
||||
@@ -1351,6 +1426,7 @@ hunspell
|
||||
hwloc
|
||||
hyperscan
|
||||
hyperstart
|
||||
hyphen
|
||||
hypothesis
|
||||
i2c-tools
|
||||
i3
|
||||
@@ -1364,6 +1440,8 @@ iceauth
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
idna-ssl
|
||||
iftop
|
||||
imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
@@ -1377,6 +1455,7 @@ intel-gpu-tools
|
||||
intel-hybrid-driver
|
||||
intltool
|
||||
invm-frameworks
|
||||
ioc-cbc-tools
|
||||
ioping
|
||||
iotop
|
||||
ipaddr
|
||||
@@ -1395,6 +1474,8 @@ ipython
|
||||
ipython-sql
|
||||
ipython_genutils
|
||||
ipywidgets
|
||||
ironic
|
||||
ironic-lib
|
||||
irqbalance
|
||||
irrlicht
|
||||
irssi
|
||||
@@ -1407,6 +1488,7 @@ ister
|
||||
itsdangerous
|
||||
itstool
|
||||
iw
|
||||
ixion
|
||||
ixpdimm_sw
|
||||
jansson
|
||||
jaraco.functools
|
||||
@@ -1422,6 +1504,8 @@ json-c
|
||||
json-glib
|
||||
jsoncpp
|
||||
jsonpatch
|
||||
jsonpath-rw
|
||||
jsonpath-rw-ext
|
||||
jsonpointer
|
||||
jsonschema
|
||||
jupyter
|
||||
@@ -1441,6 +1525,7 @@ kata-proxy
|
||||
kata-qemu-lite
|
||||
kata-runtime
|
||||
kata-shim
|
||||
kate
|
||||
kauth
|
||||
kazoo
|
||||
kbd
|
||||
@@ -1461,7 +1546,10 @@ kdesignerplugin
|
||||
kdesu
|
||||
kdnssd
|
||||
kdoctools
|
||||
keepassxc
|
||||
kemoticons
|
||||
kernel-config
|
||||
kernel-config-checker
|
||||
kernel-install
|
||||
kexec-tools
|
||||
keychain
|
||||
@@ -1475,6 +1563,7 @@ kglobalaccel
|
||||
kguiaddons
|
||||
khal
|
||||
kholidays
|
||||
khtml
|
||||
ki18n
|
||||
kiconthemes
|
||||
kidletime
|
||||
@@ -1488,6 +1577,7 @@ kiwisolver
|
||||
kjobwidgets
|
||||
kjs
|
||||
kjsembed
|
||||
kmime
|
||||
kmod
|
||||
knewstuff
|
||||
knotifications
|
||||
@@ -1518,6 +1608,7 @@ latencytop
|
||||
lazy-object-proxy
|
||||
lcms2
|
||||
lcov
|
||||
ldap3
|
||||
lensfun
|
||||
less
|
||||
leveldb
|
||||
@@ -1526,6 +1617,7 @@ libSM
|
||||
libX11
|
||||
libXScrnSaver
|
||||
libXau
|
||||
libXaw
|
||||
libXcomposite
|
||||
libXcursor
|
||||
libXdamage
|
||||
@@ -1550,6 +1642,8 @@ libXvMC
|
||||
libXxf86dga
|
||||
libXxf86misc
|
||||
libXxf86vm
|
||||
libabigail
|
||||
libabw
|
||||
libaio
|
||||
libarchive
|
||||
libarchive-c
|
||||
@@ -1564,8 +1658,10 @@ libcanberra
|
||||
libcap
|
||||
libcap-ng
|
||||
libcdio
|
||||
libcdr
|
||||
libcgroup
|
||||
libchamplain
|
||||
libcmis
|
||||
libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
@@ -1575,13 +1671,19 @@ libdazzle
|
||||
libdmx
|
||||
libdnf
|
||||
libdrm
|
||||
libe-book
|
||||
libepoxy
|
||||
libepubgen
|
||||
liberasurecode
|
||||
libetonyek
|
||||
libev
|
||||
libevdev
|
||||
libevent
|
||||
libexif
|
||||
libexttextcat
|
||||
libffi
|
||||
libfontenc
|
||||
libfreehand
|
||||
libgcrypt
|
||||
libgd
|
||||
libgdata
|
||||
@@ -1610,12 +1712,16 @@ libjpeg-turbo
|
||||
libjpeg-turbo-soname8
|
||||
libksba
|
||||
libksysguard
|
||||
liblangtag
|
||||
libmbim
|
||||
libmediaart
|
||||
libmicrohttpd
|
||||
libmnl
|
||||
libmodulemd
|
||||
libmspack
|
||||
libmspub
|
||||
libmtp
|
||||
libmwaw
|
||||
libmypaint
|
||||
libndp
|
||||
libnetfilter_conntrack
|
||||
@@ -1627,9 +1733,14 @@ libnftnl
|
||||
libnice
|
||||
libnl
|
||||
libnotify
|
||||
libnumbertext
|
||||
liboauth
|
||||
libodfgen
|
||||
libogg
|
||||
libopenzwave
|
||||
liborcus
|
||||
libosinfo
|
||||
libpagemaker
|
||||
libpcap
|
||||
libpciaccess
|
||||
libpeas
|
||||
@@ -1638,8 +1749,11 @@ libpng
|
||||
libpthread-stubs
|
||||
libpwquality
|
||||
libqmi
|
||||
libqxp
|
||||
librabbitmq
|
||||
libreoffice
|
||||
librepo
|
||||
librevenge
|
||||
librsvg
|
||||
librtlsdr
|
||||
libsamplerate
|
||||
@@ -1656,6 +1770,7 @@ libspectre
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
libstaroffice
|
||||
libstoragemgmt
|
||||
libtasn1
|
||||
libthai
|
||||
@@ -1674,12 +1789,16 @@ libva-utils
|
||||
libvirt
|
||||
libvirt-glib
|
||||
libvirt-python
|
||||
libvisio
|
||||
libvorbis
|
||||
libvpx
|
||||
libwacom
|
||||
libwebp
|
||||
libwnck
|
||||
libwnck3
|
||||
libwpd
|
||||
libwpg
|
||||
libwps
|
||||
libxcb
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
@@ -1693,6 +1812,7 @@ libxslt
|
||||
libyami
|
||||
libyami-utils
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
linecache2
|
||||
links
|
||||
@@ -1717,6 +1837,7 @@ llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
lsacpi
|
||||
lshw
|
||||
@@ -1741,6 +1862,8 @@ mc
|
||||
mccabe
|
||||
mcelog
|
||||
mdadm
|
||||
mdds
|
||||
media-player-info
|
||||
meld
|
||||
memkind
|
||||
memshrinker
|
||||
@@ -1752,6 +1875,7 @@ metrics-discovery
|
||||
micro-config-drive
|
||||
micro-config-drive-aws
|
||||
micro-config-drive-oci
|
||||
microversion_parse
|
||||
mido
|
||||
minetest
|
||||
minetest_game
|
||||
@@ -1767,6 +1891,7 @@ mock
|
||||
mod_wsgi
|
||||
moka-icon-theme
|
||||
mongodict
|
||||
mono
|
||||
monotonic
|
||||
more-itertools
|
||||
moreutils
|
||||
@@ -1784,19 +1909,23 @@ mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpmath
|
||||
msgpack-python
|
||||
msgpack
|
||||
msmtp
|
||||
msr-tools
|
||||
mstflint
|
||||
mtdev
|
||||
mtr
|
||||
multidict
|
||||
multimon-ng
|
||||
multipath-tools
|
||||
munch
|
||||
murrine
|
||||
musl
|
||||
mutt
|
||||
mutter
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mythes
|
||||
nagios-plugins
|
||||
nano
|
||||
nasm
|
||||
@@ -1804,6 +1933,7 @@ nautilus
|
||||
nbconvert
|
||||
nbformat
|
||||
nbsphinx
|
||||
ncdu
|
||||
ncurses
|
||||
ndctl
|
||||
ndg_httpsclient
|
||||
@@ -1820,6 +1950,7 @@ network-manager-applet
|
||||
networkmanager-qt
|
||||
networkx
|
||||
neutron
|
||||
neutron-lib
|
||||
newt
|
||||
nfs-utils
|
||||
nftables
|
||||
@@ -1828,11 +1959,14 @@ nginx
|
||||
nicstat
|
||||
ninja
|
||||
nlopt
|
||||
nltk
|
||||
nmap
|
||||
nodejs
|
||||
nose
|
||||
nose-cov
|
||||
nose-cover3
|
||||
nose-parameterized
|
||||
nosexcover
|
||||
nosync
|
||||
notebook
|
||||
notmuch
|
||||
@@ -1845,6 +1979,7 @@ nspr
|
||||
nss
|
||||
nss-altfiles
|
||||
ntfs-3g
|
||||
ntlm-auth
|
||||
numactl
|
||||
numatop
|
||||
numba
|
||||
@@ -1856,14 +1991,18 @@ oauth2client
|
||||
oauthlib
|
||||
ocaml
|
||||
ocl-icd
|
||||
octave
|
||||
offlineimap
|
||||
okular
|
||||
olefile
|
||||
onig
|
||||
onnx
|
||||
opa-psm2
|
||||
open-iscsi
|
||||
open-isns
|
||||
open-lldp
|
||||
open-vm-tools
|
||||
openQA
|
||||
openal-soft
|
||||
openblas
|
||||
openconnect
|
||||
@@ -1885,10 +2024,16 @@ opusfile
|
||||
orc
|
||||
orca
|
||||
ordereddict
|
||||
os-api-ref
|
||||
os-autoinst
|
||||
os-brick
|
||||
os-client-config
|
||||
os-service-types
|
||||
os-testr
|
||||
os-traits
|
||||
os-win
|
||||
os-xenapi
|
||||
os_vif
|
||||
osc-lib
|
||||
osinfo-db-tools
|
||||
oslo.cache
|
||||
@@ -1901,6 +2046,7 @@ oslo.log
|
||||
oslo.messaging
|
||||
oslo.middleware
|
||||
oslo.policy
|
||||
oslo.privsep
|
||||
oslo.reports
|
||||
oslo.rootwrap
|
||||
oslo.serialization
|
||||
@@ -1913,6 +2059,8 @@ oslotest
|
||||
osprofiler
|
||||
ostree
|
||||
ovirt-guest-agent
|
||||
ovs
|
||||
ovsdbapp
|
||||
p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
@@ -1942,6 +2090,7 @@ pcre
|
||||
pcre2
|
||||
pecan
|
||||
pep8
|
||||
performance
|
||||
perftest
|
||||
perl
|
||||
perl-Acme-Damn
|
||||
@@ -2071,6 +2220,7 @@ perl-Devel-Refactor
|
||||
perl-Devel-Size
|
||||
perl-Devel-StackTrace
|
||||
perl-Devel-StackTrace-AsHTML
|
||||
perl-Devel-Symdump
|
||||
perl-Digest-CRC
|
||||
perl-Digest-HMAC
|
||||
perl-Digest-JHash
|
||||
@@ -2113,6 +2263,7 @@ perl-File-FcntlLock
|
||||
perl-File-Find-Rule
|
||||
perl-File-Grep
|
||||
perl-File-HomeDir
|
||||
perl-File-KeePass
|
||||
perl-File-LibMagic
|
||||
perl-File-Listing
|
||||
perl-File-MMagic
|
||||
@@ -2204,6 +2355,7 @@ perl-Image-Size
|
||||
perl-Import-Into
|
||||
perl-Importer
|
||||
perl-Inline
|
||||
perl-JSON
|
||||
perl-JSON-MaybeXS
|
||||
perl-JSON-RPC
|
||||
perl-JavaScript-Minifier-XS
|
||||
@@ -2273,6 +2425,8 @@ perl-Module-ScanDeps
|
||||
perl-Module-Starter
|
||||
perl-Module-Util
|
||||
perl-Module-Versions-Report
|
||||
perl-Mojolicious
|
||||
perl-Mojolicious-Plugin-AssetPack
|
||||
perl-Mozilla-CA
|
||||
perl-Net-CIDR-Lite
|
||||
perl-Net-DNS
|
||||
@@ -2325,6 +2479,7 @@ perl-PerlIO-gzip
|
||||
perl-PerlIO-utf8_strict
|
||||
perl-PerlIO-via-Timeout
|
||||
perl-Pod-Constants
|
||||
perl-Pod-Coverage
|
||||
perl-Pod-LaTeX
|
||||
perl-Pod-Plainer
|
||||
perl-Pod-Spell
|
||||
@@ -2352,6 +2507,7 @@ perl-Scope-Upper
|
||||
perl-Set-Object
|
||||
perl-Set-Scalar
|
||||
perl-Smart-Comments
|
||||
perl-Socket-MsgHdr
|
||||
perl-Socket6
|
||||
perl-Sort-Key
|
||||
perl-Sort-Naturally
|
||||
@@ -2387,13 +2543,16 @@ perl-System-Command
|
||||
perl-TAP-Harness-Archive
|
||||
perl-Taint-Util
|
||||
perl-Term-ProgressBar
|
||||
perl-Term-ReadLine-Gnu
|
||||
perl-Term-ReadPassword
|
||||
perl-Term-Shell
|
||||
perl-Term-ShellUI
|
||||
perl-Term-Size-Perl
|
||||
perl-Term-Table
|
||||
perl-Term-UI
|
||||
perl-TermReadKey
|
||||
perl-Test-Assertions
|
||||
perl-Test-Compile
|
||||
perl-Test-Deep
|
||||
perl-Test-Exception
|
||||
perl-Test-FailWarnings
|
||||
@@ -2549,6 +2708,7 @@ prettytable
|
||||
proc-macro2
|
||||
processor-trace
|
||||
procps-ng
|
||||
prometheus_client
|
||||
prompt_toolkit
|
||||
protobuf
|
||||
protobuf-c
|
||||
@@ -2560,10 +2720,12 @@ pth
|
||||
ptyprocess
|
||||
pugixml
|
||||
pulseaudio
|
||||
pv
|
||||
pwgen
|
||||
py
|
||||
pyOpenSSL
|
||||
pyScss
|
||||
pyaes
|
||||
pyaml
|
||||
pyasn1
|
||||
pyasn1-modules
|
||||
@@ -2578,6 +2740,8 @@ pydocstyle
|
||||
pydot
|
||||
pydot_ng
|
||||
pydotplus
|
||||
pyeclib
|
||||
pyemd
|
||||
pyflakes
|
||||
pygobject
|
||||
pyinotify
|
||||
@@ -2588,15 +2752,23 @@ pymongo
|
||||
pynacl
|
||||
pypandoc
|
||||
pyparsing
|
||||
pyperclip
|
||||
pypowervm
|
||||
pyquery
|
||||
pyrfc3339
|
||||
pyroute2
|
||||
pyrsistent
|
||||
pysaml2
|
||||
pysendfile
|
||||
pyserial
|
||||
pysnmp
|
||||
pytest
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
pytest-runner
|
||||
pytest-sugar
|
||||
pytest-timeout
|
||||
pytest-xdist
|
||||
python
|
||||
@@ -2626,6 +2798,8 @@ python-multilib
|
||||
python-neutronclient
|
||||
python-novaclient
|
||||
python-openstackclient
|
||||
python-openzwave
|
||||
python-perf
|
||||
python-pkgconfig
|
||||
python-pocketlint
|
||||
python-polib
|
||||
@@ -2681,25 +2855,32 @@ qttranslations
|
||||
qtvirtualkeyboard
|
||||
qtwayland
|
||||
qtwebchannel
|
||||
qtwebengine
|
||||
qtwebsockets
|
||||
qtx11extras
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quassel
|
||||
quilt
|
||||
rabbitmq-c
|
||||
ragel
|
||||
raptor2
|
||||
rasqal
|
||||
rcssmin
|
||||
rdma-core
|
||||
re2c
|
||||
readline
|
||||
redis
|
||||
redis-native
|
||||
redland
|
||||
redsocks
|
||||
reno
|
||||
repoze.lru
|
||||
repoze.who
|
||||
requests
|
||||
requests-mock
|
||||
requests-ntlm
|
||||
requests-toolbelt
|
||||
requestsexceptions
|
||||
rest
|
||||
restructuredtext_lint
|
||||
@@ -2710,6 +2891,8 @@ rfc3986
|
||||
rjsmin
|
||||
rng-tools
|
||||
rope
|
||||
rosdistro
|
||||
rospkg
|
||||
rpcbind
|
||||
rpm
|
||||
rr
|
||||
@@ -2722,6 +2905,7 @@ runc
|
||||
rust-std32
|
||||
rustc
|
||||
rxvt-unicode
|
||||
ryu
|
||||
s2tc
|
||||
s3transfer
|
||||
sahara
|
||||
@@ -2740,6 +2924,7 @@ scipy
|
||||
scons
|
||||
screen
|
||||
scripttest
|
||||
scrypt
|
||||
sddm
|
||||
seaborn
|
||||
seahorse
|
||||
@@ -2770,12 +2955,14 @@ slang
|
||||
smart_open
|
||||
smartcols
|
||||
smartmontools
|
||||
smmap2
|
||||
snappy
|
||||
snowballstemmer
|
||||
socat
|
||||
sof-crosstool-ng
|
||||
solid
|
||||
sonnet
|
||||
sortedcontainers
|
||||
sos
|
||||
soundmodem
|
||||
source-code-pro
|
||||
@@ -2786,6 +2973,7 @@ spark-dep
|
||||
speex
|
||||
speexdsp
|
||||
sphinx_rtd_theme
|
||||
sphinxcontrib-apidoc
|
||||
sphinxcontrib-httpdomain
|
||||
sphinxcontrib-newsfeed
|
||||
sphinxcontrib-websupport
|
||||
@@ -2801,15 +2989,19 @@ squashfs-tools
|
||||
sshfs
|
||||
stack
|
||||
startup-notification
|
||||
statsd
|
||||
statsmodels
|
||||
stestr
|
||||
stevedore
|
||||
stow
|
||||
strace
|
||||
stress-ng
|
||||
subunit
|
||||
subunit2sql
|
||||
subversion
|
||||
sudo
|
||||
suds-jurko
|
||||
sundials
|
||||
sure
|
||||
suricata
|
||||
swift
|
||||
@@ -2827,6 +3019,7 @@ sysstat
|
||||
systemd
|
||||
systemd-bootchart
|
||||
systemd-netlogd
|
||||
taglib
|
||||
talloc
|
||||
tallow
|
||||
tar
|
||||
@@ -2853,6 +3046,7 @@ testscenarios
|
||||
testtools
|
||||
texinfo
|
||||
texlive
|
||||
text-unidecode
|
||||
tflearn
|
||||
thermal_daemon
|
||||
thin-provisioning-tools
|
||||
@@ -2864,11 +3058,12 @@ tiff
|
||||
tig
|
||||
tigervnc
|
||||
time
|
||||
tinyrpc
|
||||
tinyxml2
|
||||
tiptop
|
||||
tk
|
||||
tmux
|
||||
tokyocabinet
|
||||
toolbelt
|
||||
tooz
|
||||
tornado
|
||||
totem
|
||||
@@ -2886,6 +3081,7 @@ typed-ast
|
||||
typing
|
||||
tzdata
|
||||
tzlocal
|
||||
ucpp
|
||||
udisks2
|
||||
uhttpmock
|
||||
unbundle
|
||||
@@ -2894,6 +3090,7 @@ unicodecsv
|
||||
unifdef
|
||||
unison
|
||||
unittest2
|
||||
unixODBC
|
||||
unzip
|
||||
upower
|
||||
uritemplate
|
||||
@@ -2910,6 +3107,7 @@ uwsgi
|
||||
v4l-utils
|
||||
vala
|
||||
valgrind
|
||||
vcstool
|
||||
vcversioner
|
||||
vim
|
||||
vim-go
|
||||
@@ -2931,6 +3129,7 @@ warlock
|
||||
wayland
|
||||
wayland-protocols
|
||||
wcwidth
|
||||
weakrefmethod
|
||||
webcolors
|
||||
webencodings
|
||||
webkitgtk
|
||||
@@ -2948,6 +3147,8 @@ woff2
|
||||
wol
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
wsgi_intercept
|
||||
wsgiref
|
||||
x11perf
|
||||
x11vnc
|
||||
xapian-core
|
||||
@@ -2982,6 +3183,7 @@ xf86-video-amdgpu
|
||||
xf86-video-ati
|
||||
xf86-video-fbdev
|
||||
xf86-video-nouveau
|
||||
xf86-video-vboxvideo
|
||||
xf86-video-vesa
|
||||
xfburn
|
||||
xfce4-appfinder
|
||||
@@ -3018,11 +3220,13 @@ xrestop
|
||||
xscreensaver
|
||||
xset
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwd
|
||||
xwininfo
|
||||
xz
|
||||
yajl
|
||||
yaml
|
||||
yarl
|
||||
yasm
|
||||
yelp
|
||||
yelp-tools
|
||||
@@ -3031,6 +3235,7 @@ yum
|
||||
yum-metadata-parser
|
||||
yum-utils
|
||||
zake
|
||||
zc.lockfile
|
||||
zenity
|
||||
zip
|
||||
zlib
|
||||
|
||||
Reference in New Issue
Block a user