mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
61 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8848658fcf | |||
| b76a7bc7f8 | |||
| f8f9619eec | |||
| b7b8774581 | |||
| b3618cc43c | |||
| 921ac270fe | |||
| f41acbdeb0 | |||
| 83a461fe40 | |||
| 6876f3d11e | |||
| 5a4dd4451a | |||
| d48889eb29 | |||
| b402f2bbdf | |||
| 1fcaa4aea6 | |||
| 71b927321f | |||
| 40f17091a6 | |||
| 3b062e1b45 | |||
| 3c3fc1a16c | |||
| 3c7aac6a8e | |||
| baf555428f | |||
| 262d005c62 | |||
| ceff8301a1 | |||
| 8eb7264597 | |||
| c10d558ee6 | |||
| bd75d90fc7 | |||
| 081c620f82 | |||
| 7e017ee247 | |||
| 5b43360fe8 | |||
| eb8879f0f0 | |||
| f18ba9060d | |||
| 9fc1471023 | |||
| 9885cdbf9b | |||
| ce12c754ba | |||
| b363871adf | |||
| c028ea0072 | |||
| 7dc414433f | |||
| 50f18a0146 | |||
| 51c26d9a01 | |||
| c143f7ee95 | |||
| 81bd7f5e54 | |||
| 5d8e976a2a | |||
| 7d624ab7ae | |||
| ba14c4e50f | |||
| 34fb007895 | |||
| 153c8cf8f7 | |||
| be45cbcf9e | |||
| 853cc64dff | |||
| 7e81742862 | |||
| a6eceb3613 | |||
| 9956be75dc | |||
| c99415521e | |||
| 775d77c942 | |||
| 0c80ea9b2d | |||
| e75cdd1186 | |||
| 90f2aab33a | |||
| 64fa18b676 | |||
| dc6677df7e | |||
| 68d78be45d | |||
| 47e3b379d9 | |||
| b089c2eee1 | |||
| b66637b940 | |||
| 0802f3932b |
+17
-10
@@ -70,10 +70,9 @@ proper: repodel
|
||||
mockclean:
|
||||
$(MOCK) --clean --scrub=all
|
||||
|
||||
#help mockproper: Clean mock chroot and cache directories for this package.
|
||||
#help mockproper: Clean mock chroot
|
||||
mockproper:
|
||||
$(MOCK) --clean --scrub=all --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) --clean --scrub=chroot --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) --clean --uniqueext=$(PKG_NAME)
|
||||
|
||||
configemail:
|
||||
@test -d .git || git init
|
||||
@@ -412,27 +411,35 @@ install:
|
||||
#help install-debuginfo-local: Install locally built debuginfo RPM to
|
||||
#help the automatic debuginfo cache location (/var/cache/debuginfo)
|
||||
install-debuginfo-local:
|
||||
@if [ -z "${DEBUGINFO_RPM}" ]; then \
|
||||
echo "No debuginfo to install... skipping"; \
|
||||
exit 0; \
|
||||
fi; \
|
||||
echo -n "Installing ${DEBUGINFO_RPM}... "; \
|
||||
tmpdir=$$(mktemp -d); \
|
||||
rpm2cpio ${DEBUGINFO_RPM} | ( cd $$tmpdir; cpio -i -d -u); \
|
||||
rpm2cpio ${DEBUGINFO_RPM} | ( cd $$tmpdir; cpio -i -d -u 2> /dev/null); \
|
||||
dest=/var/cache/debuginfo/lib; \
|
||||
find $$tmpdir/usr/lib/debug/ -mindepth 1 -maxdepth 1 | while read -r d; do \
|
||||
find $$tmpdir/usr/lib/debug/ -mindepth 1 -maxdepth 1 2> /dev/null | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
dest=/var/cache/debuginfo/src; \
|
||||
find $$tmpdir/usr/src/debug/ -mindepth 1 -maxdepth 1 | while read -r d; do \
|
||||
find $$tmpdir/usr/src/debug/ -mindepth 1 -maxdepth 1 2> /dev/null | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
sudo rm -rf $$tmpdir
|
||||
sudo rm -rf $$tmpdir; \
|
||||
echo "done"
|
||||
|
||||
#help install-local: Install locally built RPMs to the root filesystem. Note that the
|
||||
#help debuginfo RPM installs to /var/cache/debuginfo
|
||||
install-local:
|
||||
for r in $(filter-out ${DEBUGINFO_RPM},${RPMS}); do \
|
||||
rpm2cpio $$r | (cd /; sudo cpio -i -d -u); \
|
||||
@for r in $(filter-out ${DEBUGINFO_RPM},${RPMS}); do \
|
||||
echo -n "Installing $$r... "; \
|
||||
rpm2cpio $$r | (cd /; sudo cpio -i -d -u 2> /dev/null); \
|
||||
echo "done"; \
|
||||
done
|
||||
$(MAKE) install-debuginfo-local
|
||||
@$(MAKE) -s install-debuginfo-local
|
||||
|
||||
#help install-mock: Install locally built RPMs to the mock rootcache
|
||||
#help filesystem. This command is usually used with "make shell".
|
||||
|
||||
@@ -99,6 +99,8 @@ CECILL-2.0
|
||||
CECILL-2.1
|
||||
CECILL-B
|
||||
CECILL-C
|
||||
CERN-OHL-1.1
|
||||
CERN-OHL-1.2
|
||||
CNRI-Jython
|
||||
CNRI-Python
|
||||
CNRI-Python-GPL-Compatible
|
||||
@@ -169,6 +171,7 @@ Giftware
|
||||
Glide
|
||||
Glulxe
|
||||
HPND
|
||||
HPND-sell-variant
|
||||
HaskellReport
|
||||
IBM-pibs
|
||||
ICU
|
||||
@@ -182,6 +185,7 @@ Info-ZIP
|
||||
Intel
|
||||
Intel-ACPI
|
||||
Interbase-1.0
|
||||
JPNIC
|
||||
JSON
|
||||
JasPer-2.0
|
||||
LAL-1.2
|
||||
@@ -257,6 +261,9 @@ ODC-By-1.0
|
||||
ODbL-1.0
|
||||
OFL-1.0
|
||||
OFL-1.1
|
||||
OGL-UK-1.0
|
||||
OGL-UK-2.0
|
||||
OGL-UK-3.0
|
||||
OGTSL
|
||||
OLDAP-1.1
|
||||
OLDAP-1.2
|
||||
@@ -313,6 +320,7 @@ SPL-1.0
|
||||
SWL
|
||||
Saxpath
|
||||
Sendmail
|
||||
Sendmail-8.23
|
||||
SimPL-2.0
|
||||
Sleepycat
|
||||
Spencer-86
|
||||
@@ -320,6 +328,7 @@ Spencer-94
|
||||
Spencer-99
|
||||
StandardML-NJ
|
||||
SugarCRM-1.1.3
|
||||
TAPR-OHL-1.0
|
||||
TCL
|
||||
TCP-wrappers
|
||||
TMate
|
||||
@@ -358,6 +367,8 @@ Zimbra-1.4
|
||||
Zlib
|
||||
bzip2-1.0.5
|
||||
bzip2-1.0.6
|
||||
copyleft-next-0.3.0
|
||||
copyleft-next-0.3.1
|
||||
curl
|
||||
diffmark
|
||||
dvipdfm
|
||||
@@ -366,6 +377,7 @@ eGenix
|
||||
gSOAP-1.3b
|
||||
gnuplot
|
||||
iMatix
|
||||
libpng-2.0
|
||||
libtiff
|
||||
mpich2
|
||||
psfrag
|
||||
|
||||
@@ -22,6 +22,8 @@ FreeCAD
|
||||
FreeRDP
|
||||
GConf
|
||||
GitPython
|
||||
GtkD
|
||||
HeapDict
|
||||
ImageMagick
|
||||
JAGS
|
||||
Jinja2
|
||||
@@ -41,6 +43,7 @@ Markdown
|
||||
MarkupSafe
|
||||
ModemManager
|
||||
MonkeyType
|
||||
MuseScore
|
||||
MySQL-python
|
||||
NetworkManager
|
||||
NetworkManager-openconnect
|
||||
@@ -69,6 +72,7 @@ PyYAML
|
||||
Pygments
|
||||
Pyro4
|
||||
QGIS
|
||||
Qogir-theme
|
||||
QtAwesome
|
||||
QtPy
|
||||
R
|
||||
@@ -100,6 +104,7 @@ R-DRR
|
||||
R-DT
|
||||
R-DendSer
|
||||
R-Deriv
|
||||
R-DescTools
|
||||
R-DistributionUtils
|
||||
R-DoseFinding
|
||||
R-Ecdat
|
||||
@@ -243,6 +248,7 @@ R-brglm
|
||||
R-bridgesampling
|
||||
R-brms
|
||||
R-broom
|
||||
R-bvls
|
||||
R-ca
|
||||
R-caTools
|
||||
R-calibrate
|
||||
@@ -276,6 +282,7 @@ R-config
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
R-corrgram
|
||||
R-corrplot
|
||||
R-cowplot
|
||||
R-crayon
|
||||
@@ -289,6 +296,7 @@ R-data.table
|
||||
R-date
|
||||
R-dbarts
|
||||
R-dbplyr
|
||||
R-dcurver
|
||||
R-ddalpha
|
||||
R-deSolve
|
||||
R-debugme
|
||||
@@ -444,9 +452,11 @@ R-hypergeo
|
||||
R-ica
|
||||
R-igraph
|
||||
R-import
|
||||
R-ineq
|
||||
R-ini
|
||||
R-inline
|
||||
R-inum
|
||||
R-invgamma
|
||||
R-ipred
|
||||
R-irlba
|
||||
R-iterators
|
||||
@@ -493,6 +503,7 @@ R-lpSolve
|
||||
R-lsei
|
||||
R-lsmeans
|
||||
R-lubridate
|
||||
R-lwgeom
|
||||
R-mFilter
|
||||
R-magic
|
||||
R-magick
|
||||
@@ -519,6 +530,7 @@ R-mime
|
||||
R-miniUI
|
||||
R-minpack.lm
|
||||
R-minqa
|
||||
R-mirt
|
||||
R-misc3d
|
||||
R-miscTools
|
||||
R-mitools
|
||||
@@ -549,6 +561,7 @@ R-network
|
||||
R-neuralnet
|
||||
R-nleqslv
|
||||
R-nloptr
|
||||
R-nnls
|
||||
R-nortest
|
||||
R-npsurv
|
||||
R-numDeriv
|
||||
@@ -562,6 +575,7 @@ R-optparse
|
||||
R-ordinal
|
||||
R-packrat
|
||||
R-pamr
|
||||
R-parsedate
|
||||
R-partitions
|
||||
R-party
|
||||
R-partykit
|
||||
@@ -611,6 +625,7 @@ R-prettyunits
|
||||
R-princurve
|
||||
R-processx
|
||||
R-prodlim
|
||||
R-profdpm
|
||||
R-profileModel
|
||||
R-progress
|
||||
R-promises
|
||||
@@ -629,6 +644,7 @@ R-pwt
|
||||
R-pwt8
|
||||
R-pxweb
|
||||
R-qap
|
||||
R-qpdf
|
||||
R-qqman
|
||||
R-qtl
|
||||
R-quadprog
|
||||
@@ -638,11 +654,13 @@ R-questionr
|
||||
R-qvcalc
|
||||
R-randomForest
|
||||
R-randomNames
|
||||
R-randtests
|
||||
R-randtoolbox
|
||||
R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-rbenchmark
|
||||
R-rcmdcheck
|
||||
R-reactR
|
||||
R-readr
|
||||
@@ -662,9 +680,11 @@ R-reshape
|
||||
R-reshape2
|
||||
R-reticulate
|
||||
R-rgenoud
|
||||
R-rgeos
|
||||
R-rgl
|
||||
R-rglwidget
|
||||
R-rhandsontable
|
||||
R-rhub
|
||||
R-rio
|
||||
R-ritis
|
||||
R-rjags
|
||||
@@ -712,6 +732,7 @@ R-seriation
|
||||
R-seroincidence
|
||||
R-sessioninfo
|
||||
R-setRNG
|
||||
R-sf
|
||||
R-sfsmisc
|
||||
R-sgeostat
|
||||
R-shape
|
||||
@@ -793,6 +814,7 @@ R-truncnorm
|
||||
R-tseries
|
||||
R-tsne
|
||||
R-ucminf
|
||||
R-units
|
||||
R-unix
|
||||
R-urca
|
||||
R-urltools
|
||||
@@ -841,6 +863,8 @@ SDL_image
|
||||
SDL_mixer
|
||||
SDL_net
|
||||
SDL_ttf
|
||||
SPIRV-Headers
|
||||
SPIRV-Tools
|
||||
SQLAlchemy
|
||||
SQLAlchemy-Utils
|
||||
Send2Trash
|
||||
@@ -860,6 +884,7 @@ Vertex-theme
|
||||
Vulkan-Headers
|
||||
Vulkan-Loader
|
||||
Vulkan-Tools
|
||||
Vulkan-ValidationLayers
|
||||
WALinuxAgent
|
||||
WSGIProxy2
|
||||
WSME
|
||||
@@ -925,6 +950,7 @@ akonadiconsole
|
||||
akregator
|
||||
alabaster
|
||||
alembic
|
||||
alsa-firmware
|
||||
alsa-lib
|
||||
alsa-plugins
|
||||
alsa-utils
|
||||
@@ -953,6 +979,7 @@ argon2
|
||||
argon2_cffi
|
||||
argparse
|
||||
ark
|
||||
armadillo
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
@@ -1020,11 +1047,13 @@ bashlex
|
||||
bats
|
||||
bazel
|
||||
bc
|
||||
bcache-tools
|
||||
bcc
|
||||
bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
beignet
|
||||
bijiben
|
||||
bind-utils
|
||||
binutils
|
||||
binwalk
|
||||
@@ -1051,16 +1080,19 @@ boto
|
||||
boto3
|
||||
botocore
|
||||
bovo
|
||||
breathe
|
||||
breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
bridge-utils
|
||||
bro
|
||||
bro-af_packet-plugin
|
||||
brotli
|
||||
brotlipy
|
||||
bsdiff
|
||||
bspwm
|
||||
btrfs-progs
|
||||
bubblewrap
|
||||
buildreq-R
|
||||
buildreq-cmake
|
||||
buildreq-configure
|
||||
@@ -1076,6 +1108,7 @@ buildreq-kernel
|
||||
buildreq-make
|
||||
buildreq-meson
|
||||
buildreq-mvn
|
||||
buildreq-php
|
||||
buildreq-qmake
|
||||
buildreq-scons
|
||||
bundle-chroot-builder
|
||||
@@ -1092,12 +1125,12 @@ cachetools
|
||||
caffe
|
||||
cairo
|
||||
cairomm
|
||||
calc
|
||||
calendarsupport
|
||||
cantarell-fonts
|
||||
cantata
|
||||
cantor
|
||||
capnproto
|
||||
cargo
|
||||
caribou
|
||||
case
|
||||
castellan
|
||||
@@ -1130,6 +1163,7 @@ clear-config-management
|
||||
clear-font
|
||||
click
|
||||
click-datetime
|
||||
click-log
|
||||
cliff
|
||||
clinfo
|
||||
cln
|
||||
@@ -1140,6 +1174,7 @@ clr-R-helpers
|
||||
clr-avx-tools
|
||||
clr-boot-manager
|
||||
clr-bundle-icons
|
||||
clr-bundle-screenshots
|
||||
clr-bundles
|
||||
clr-debug-info
|
||||
clr-desktop-defaults
|
||||
@@ -1150,6 +1185,7 @@ clr-ignore-mod-sig
|
||||
clr-init
|
||||
clr-installer
|
||||
clr-man-pages
|
||||
clr-network-troubleshooter
|
||||
clr-power-tweaks
|
||||
clr-python-timestamp
|
||||
clr-pyversion-strip
|
||||
@@ -1212,6 +1248,7 @@ compat-gegl
|
||||
compat-gegl-0.3
|
||||
compat-glew-soname1
|
||||
compat-gmime-26
|
||||
compat-gspell-soname1
|
||||
compat-gtksourceview-soname3
|
||||
compat-guile-soname20
|
||||
compat-hdf5-soname10
|
||||
@@ -1221,6 +1258,7 @@ compat-icu4c-soname61
|
||||
compat-ilmbase-soname23
|
||||
compat-intel-gmmlib-soname1
|
||||
compat-ipset-soname10
|
||||
compat-ldc-soname84
|
||||
compat-libgit2-soname27
|
||||
compat-libical-soname2
|
||||
compat-libidn-soname11
|
||||
@@ -1231,6 +1269,7 @@ compat-libwebp-soname6
|
||||
compat-llvm-soname4
|
||||
compat-llvm-soname5
|
||||
compat-llvm-soname6
|
||||
compat-llvm-soname7
|
||||
compat-mariadb-soname18
|
||||
compat-mpfr-soname4
|
||||
compat-opencv-soname32
|
||||
@@ -1249,6 +1288,7 @@ compat-readline-soname5
|
||||
compat-readline-soname7
|
||||
component
|
||||
compute-image-packages
|
||||
conda
|
||||
configobj
|
||||
configparser
|
||||
confuse
|
||||
@@ -1262,6 +1302,7 @@ containerd
|
||||
contextlib2
|
||||
cookies
|
||||
coreutils
|
||||
cotyledon
|
||||
cov-core
|
||||
coverage
|
||||
cpio
|
||||
@@ -1294,6 +1335,7 @@ cxxfilt
|
||||
cycler
|
||||
cyrus-sasl
|
||||
dapl
|
||||
darkflow
|
||||
darktable
|
||||
dash-to-dock
|
||||
dask
|
||||
@@ -1316,6 +1358,81 @@ decorator
|
||||
defusedxml
|
||||
dejagnu
|
||||
dejavu-fonts
|
||||
deprecated-Babel
|
||||
deprecated-Cython
|
||||
deprecated-Jinja2
|
||||
deprecated-Mako
|
||||
deprecated-Markdown
|
||||
deprecated-MarkupSafe
|
||||
deprecated-PyYAML
|
||||
deprecated-Pygments
|
||||
deprecated-Sphinx
|
||||
deprecated-WebOb
|
||||
deprecated-Werkzeug
|
||||
deprecated-Whoosh
|
||||
deprecated-alabaster
|
||||
deprecated-asn1crypto
|
||||
deprecated-attrs
|
||||
deprecated-boto3
|
||||
deprecated-botocore
|
||||
deprecated-certifi
|
||||
deprecated-cffi
|
||||
deprecated-chardet
|
||||
deprecated-colorama
|
||||
deprecated-configparser
|
||||
deprecated-contextlib2
|
||||
deprecated-coverage
|
||||
deprecated-cryptography
|
||||
deprecated-docutils
|
||||
deprecated-funcsigs
|
||||
deprecated-futures
|
||||
deprecated-glances
|
||||
deprecated-html5lib
|
||||
deprecated-hypothesis
|
||||
deprecated-idna
|
||||
deprecated-imagesize
|
||||
deprecated-ipaddress
|
||||
deprecated-isort
|
||||
deprecated-jmespath
|
||||
deprecated-linecache2
|
||||
deprecated-mido
|
||||
deprecated-nose
|
||||
deprecated-numpy
|
||||
deprecated-ordereddict
|
||||
deprecated-pexpect
|
||||
deprecated-pluggy
|
||||
deprecated-psycopg2
|
||||
deprecated-py
|
||||
deprecated-pyOpenSSL
|
||||
deprecated-pyasn1
|
||||
deprecated-pycairo
|
||||
deprecated-pycparser
|
||||
deprecated-pycurl
|
||||
deprecated-pyflakes
|
||||
deprecated-pyparsing
|
||||
deprecated-python-dldt
|
||||
deprecated-python-memcached
|
||||
deprecated-python-mock
|
||||
deprecated-python-multilib
|
||||
deprecated-pytz
|
||||
deprecated-requests
|
||||
deprecated-s3transfer
|
||||
deprecated-setproctitle
|
||||
deprecated-setuptools_scm
|
||||
deprecated-simplejson
|
||||
deprecated-six
|
||||
deprecated-snowballstemmer
|
||||
deprecated-sphinx_rtd_theme
|
||||
deprecated-sphinxcontrib-websupport
|
||||
deprecated-testscenarios
|
||||
deprecated-traceback2
|
||||
deprecated-typing
|
||||
deprecated-unittest2
|
||||
deprecated-urllib3
|
||||
deprecated-warlock
|
||||
deprecated-webcolors
|
||||
deprecated-zope.testing
|
||||
deprecated-zope.testrunner
|
||||
deprecation
|
||||
desktop-file-utils
|
||||
desktop-icons
|
||||
@@ -1332,6 +1449,7 @@ ding-libs
|
||||
direwolf
|
||||
discover
|
||||
dist-pam-configs
|
||||
distlib
|
||||
distributed
|
||||
distro
|
||||
dj-database-url
|
||||
@@ -1414,6 +1532,7 @@ envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
epydoc
|
||||
eternalegypt
|
||||
ethtool
|
||||
eventlet
|
||||
@@ -1474,9 +1593,6 @@ flmsg
|
||||
flnet
|
||||
fltk
|
||||
folks
|
||||
font-adobe-100dpi
|
||||
font-adobe-75dpi
|
||||
font-bitstream-type1
|
||||
font-util
|
||||
fontconfig
|
||||
fontforge
|
||||
@@ -1529,6 +1645,7 @@ gexiv2
|
||||
gfbgraph
|
||||
gflags
|
||||
gftp
|
||||
ghc
|
||||
ghostscript
|
||||
gimp
|
||||
git
|
||||
@@ -1558,6 +1675,7 @@ gmic
|
||||
gmime
|
||||
gmp
|
||||
gmqtt
|
||||
gnocchiclient
|
||||
gnome-applets
|
||||
gnome-autoar
|
||||
gnome-backgrounds
|
||||
@@ -1614,6 +1732,7 @@ google-auth
|
||||
google-auth-httplib2
|
||||
google-reauth
|
||||
googletest
|
||||
gparted
|
||||
gperf
|
||||
gperftools
|
||||
gpgme
|
||||
@@ -1658,6 +1777,7 @@ gtkmm2
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
gtkspell3
|
||||
gtkwave
|
||||
guile
|
||||
gupnp-av
|
||||
gutenprint
|
||||
@@ -1673,10 +1793,12 @@ hammock
|
||||
haproxy
|
||||
hardlink
|
||||
harfbuzz
|
||||
haskell-random
|
||||
hdf5
|
||||
hdparm
|
||||
heat
|
||||
helloworld
|
||||
helm
|
||||
help2man
|
||||
hexchat
|
||||
hgtools
|
||||
@@ -1723,6 +1845,7 @@ iftop
|
||||
igt-gpu-tools
|
||||
ilmbase
|
||||
image
|
||||
imageio
|
||||
imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
@@ -1735,7 +1858,9 @@ init-rdahead
|
||||
inkscape
|
||||
inotify-tools
|
||||
intel-cmt-cat
|
||||
intel-compute-runtime
|
||||
intel-gmmlib
|
||||
intel-graphics-compiler
|
||||
intel-hybrid-driver
|
||||
intel-media-driver
|
||||
intelhex
|
||||
@@ -1779,7 +1904,6 @@ itsdangerous
|
||||
itstool
|
||||
iw
|
||||
ixion
|
||||
jack-audio-connection-kit
|
||||
jansson
|
||||
jaraco.functools
|
||||
jarn.viewdoc
|
||||
@@ -1800,6 +1924,7 @@ jsonpatch
|
||||
jsonpath-rw
|
||||
jsonpath-rw-ext
|
||||
jsonpointer
|
||||
jsonrpc-glib
|
||||
jsonschema
|
||||
jupyter
|
||||
jupyter-nbgallery
|
||||
@@ -1816,6 +1941,7 @@ kactivitymanagerd
|
||||
kafka-dep
|
||||
kalarm
|
||||
kalarmcal
|
||||
kalgebra
|
||||
kamera
|
||||
kanagram
|
||||
kapidox
|
||||
@@ -1907,6 +2033,7 @@ kgeography
|
||||
kget
|
||||
kglobalaccel
|
||||
kgoldrunner
|
||||
kgpg
|
||||
kguiaddons
|
||||
khal
|
||||
khangman
|
||||
@@ -2032,6 +2159,7 @@ kwordquiz
|
||||
kwrited
|
||||
kxmlgui
|
||||
kxmlrpcclient
|
||||
kyotocabinet
|
||||
lark-parser
|
||||
latencytop
|
||||
latexcodec
|
||||
@@ -2043,6 +2171,7 @@ lcov
|
||||
ldacBT
|
||||
ldap3
|
||||
ldb
|
||||
ldc
|
||||
ledmon
|
||||
lensfun
|
||||
less
|
||||
@@ -2118,6 +2247,7 @@ libevdev
|
||||
libevent
|
||||
libexif
|
||||
libexttextcat
|
||||
libfabric
|
||||
libfastjson
|
||||
libffi
|
||||
libffmpeg-stub
|
||||
@@ -2126,6 +2256,7 @@ libfm-qt
|
||||
libfontenc
|
||||
libfprint
|
||||
libfreehand
|
||||
libftdi1
|
||||
libgcrypt
|
||||
libgd
|
||||
libgdata
|
||||
@@ -2147,6 +2278,7 @@ libgtop
|
||||
libgudev
|
||||
libgusb
|
||||
libgweather
|
||||
libhandy
|
||||
libical
|
||||
libidn
|
||||
libidn2
|
||||
@@ -2157,6 +2289,7 @@ libisofs
|
||||
libite
|
||||
libjpeg-turbo
|
||||
libjpeg-turbo-soname8
|
||||
libkcapi
|
||||
libkcddb
|
||||
libkcompactdisc
|
||||
libkdcraw
|
||||
@@ -2169,6 +2302,7 @@ libkipi
|
||||
libkleo
|
||||
libkmahjongg
|
||||
libkomparediff2
|
||||
libksane
|
||||
libksba
|
||||
libkscreen
|
||||
libksieve
|
||||
@@ -2179,6 +2313,7 @@ liblxqt
|
||||
libmaxminddb
|
||||
libmbim
|
||||
libmediaart
|
||||
libmetalink
|
||||
libmicrohttpd
|
||||
libmnl
|
||||
libmodbus
|
||||
@@ -2218,10 +2353,12 @@ libpsl
|
||||
libpthread-stubs
|
||||
libpwquality
|
||||
libqalculate
|
||||
libqb
|
||||
libqmi
|
||||
libqtxdg
|
||||
libqxp
|
||||
librabbitmq
|
||||
libreoffice
|
||||
librepo
|
||||
librevenge
|
||||
librsvg
|
||||
@@ -2232,6 +2369,7 @@ libsass
|
||||
libseccomp
|
||||
libsecret
|
||||
libsigc++
|
||||
libsigsegv
|
||||
libsmbios
|
||||
libsmi
|
||||
libsndfile
|
||||
@@ -2266,7 +2404,9 @@ libuv
|
||||
libva
|
||||
libva-intel-driver
|
||||
libva-utils
|
||||
libvarlink
|
||||
libvdpau
|
||||
libverto
|
||||
libvirt
|
||||
libvirt-glib
|
||||
libvirt-python
|
||||
@@ -2292,6 +2432,7 @@ libxml2-legacy
|
||||
libxslt
|
||||
libyami
|
||||
libyami-utils
|
||||
libzapojit
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
@@ -2302,18 +2443,20 @@ links
|
||||
linux
|
||||
linux-aws
|
||||
linux-firmware
|
||||
linux-firmware-ipu
|
||||
linux-gce
|
||||
linux-hyperv
|
||||
linux-hyperv-lts
|
||||
linux-iot-lts2017-preempt-rt
|
||||
linux-iot-lts2018
|
||||
linux-iot-lts2018-preempt-rt
|
||||
linux-kata
|
||||
linux-kvm
|
||||
linux-libc-headers
|
||||
linux-lts
|
||||
linux-lts2017
|
||||
linux-lts2018
|
||||
linux-networktest
|
||||
linux-oracle
|
||||
linux-pk414-preempt-rt
|
||||
linux-preempt-rt
|
||||
linux-steam-integration
|
||||
linux-tools
|
||||
@@ -2360,6 +2503,7 @@ lxqt-themes
|
||||
lz4
|
||||
lzlib
|
||||
lzo
|
||||
lzop
|
||||
m4
|
||||
mailcommon
|
||||
mailimporter
|
||||
@@ -2414,6 +2558,7 @@ mock
|
||||
mod_wsgi
|
||||
modemmanager-qt
|
||||
moka-icon-theme
|
||||
mokutil
|
||||
mongodict
|
||||
mono
|
||||
monotonic
|
||||
@@ -2474,7 +2619,9 @@ ncurses
|
||||
ncurses-compat
|
||||
ndctl
|
||||
ndg_httpsclient
|
||||
ndpi
|
||||
neofetch
|
||||
neomutt
|
||||
neon
|
||||
net-snmp
|
||||
net-tools
|
||||
@@ -2483,6 +2630,8 @@ netbase
|
||||
netcdf
|
||||
netdisco
|
||||
netifaces
|
||||
netkit-telnet
|
||||
netlabel_tools
|
||||
nettle
|
||||
network-manager-applet
|
||||
networkmanager-qt
|
||||
@@ -2491,9 +2640,11 @@ neutron
|
||||
neutron-lib
|
||||
newt
|
||||
nfs-utils
|
||||
nfs4-acl-tools
|
||||
nftables
|
||||
nghttp2
|
||||
nginx
|
||||
nginx-mainline
|
||||
nicstat
|
||||
ninja
|
||||
nload
|
||||
@@ -2520,6 +2671,7 @@ nss
|
||||
nss-altfiles
|
||||
nss-pam-ldapd
|
||||
ntfs-3g
|
||||
ntl
|
||||
ntlm-auth
|
||||
ntp
|
||||
ntplib
|
||||
@@ -2530,6 +2682,7 @@ numpy
|
||||
numpy-stl
|
||||
numpydoc
|
||||
nvme-cli
|
||||
nvmetcli
|
||||
oath-toolkit
|
||||
oauth2client
|
||||
oauthlib
|
||||
@@ -2552,6 +2705,7 @@ open-vm-tools
|
||||
openQA
|
||||
openal-soft
|
||||
openblas
|
||||
opencl-clang
|
||||
openconnect
|
||||
opencv
|
||||
openexr
|
||||
@@ -2582,6 +2736,7 @@ os-autoinst
|
||||
os-brick
|
||||
os-client-config
|
||||
os-ken
|
||||
os-resource-classes
|
||||
os-service-types
|
||||
os-testr
|
||||
os-traits
|
||||
@@ -2624,7 +2779,6 @@ oxygen-icons5
|
||||
p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacmanfm-qt
|
||||
pacrunner
|
||||
padaos
|
||||
padatious
|
||||
@@ -2640,6 +2794,7 @@ pango
|
||||
pangomm
|
||||
pangox-compat
|
||||
paper-icon-theme
|
||||
papi
|
||||
parallel
|
||||
parameter-framework
|
||||
paramiko
|
||||
@@ -2648,8 +2803,10 @@ parsedatetime
|
||||
parso
|
||||
partd
|
||||
parted
|
||||
pass
|
||||
passlib
|
||||
patch
|
||||
patchelf
|
||||
patchutils
|
||||
pathlib
|
||||
pathlib2
|
||||
@@ -2659,8 +2816,10 @@ pbr
|
||||
pbr-legacy
|
||||
pbzip2
|
||||
pciutils
|
||||
pcmanfm-qt
|
||||
pcre
|
||||
pcre2
|
||||
pcsc-lite
|
||||
pdns
|
||||
pdns-recursor
|
||||
pecan
|
||||
@@ -2691,6 +2850,7 @@ perl-Audio-FLAC-Header
|
||||
perl-Audio-Musepack
|
||||
perl-Audio-Scan
|
||||
perl-Audio-Wav
|
||||
perl-Authen-SASL
|
||||
perl-B-Hooks-EndOfScope
|
||||
perl-B-Hooks-OP-Check
|
||||
perl-B-Keywords
|
||||
@@ -3050,6 +3210,7 @@ perl-Mojolicious
|
||||
perl-Mojolicious-Plugin-AssetPack
|
||||
perl-Mojolicious-Plugin-RenderFile
|
||||
perl-Moo
|
||||
perl-MooX-Role-Parameterized
|
||||
perl-Moose
|
||||
perl-MooseX-Role-Parameterized
|
||||
perl-MooseX-Role-WithOverloading
|
||||
@@ -3199,6 +3360,7 @@ perl-Test-Fatal
|
||||
perl-Test-File
|
||||
perl-Test-File-ShareDir-Dist
|
||||
perl-Test-Identity
|
||||
perl-Test-Inter
|
||||
perl-Test-LeakTrace
|
||||
perl-Test-LectroTest
|
||||
perl-Test-LongString
|
||||
@@ -3330,6 +3492,7 @@ phoronix-test-suite
|
||||
php
|
||||
pickleshare
|
||||
picmi
|
||||
picocom
|
||||
pidgin
|
||||
pidgin-sipe
|
||||
piglit
|
||||
@@ -3343,6 +3506,7 @@ pinentry
|
||||
pip
|
||||
pip-legacy
|
||||
pipewire
|
||||
pipreqs
|
||||
pixman
|
||||
pkcs11-helper
|
||||
pkg-config
|
||||
@@ -3362,9 +3526,10 @@ ply
|
||||
plzip
|
||||
pmdk
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
polkit-qt
|
||||
poppler
|
||||
poppler-data
|
||||
poppler-data-clr-rename
|
||||
popt
|
||||
portaudio
|
||||
portend
|
||||
@@ -3386,6 +3551,7 @@ proc-macro2
|
||||
processor-trace
|
||||
procmail
|
||||
procps-ng
|
||||
progress
|
||||
progressbar
|
||||
proj
|
||||
prometheus_client
|
||||
@@ -3421,6 +3587,7 @@ pycadf
|
||||
pycairo
|
||||
pycam
|
||||
pycodestyle
|
||||
pycosat
|
||||
pycparser
|
||||
pycrypto
|
||||
pycurl
|
||||
@@ -3446,6 +3613,7 @@ pyliblzma
|
||||
pylint
|
||||
pymemcache
|
||||
pymongo
|
||||
pyotherside
|
||||
pyotp
|
||||
pypandoc
|
||||
pyparsing
|
||||
@@ -3545,6 +3713,7 @@ pyxdg
|
||||
pyzmq
|
||||
qca-qt5
|
||||
qemu
|
||||
qemu-guest-additions
|
||||
qemu-lite
|
||||
qgit
|
||||
qml-box2d
|
||||
@@ -3593,6 +3762,7 @@ qtx11extras
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quassel
|
||||
quazip
|
||||
quilt
|
||||
qwt
|
||||
rabbitmq-c
|
||||
@@ -3601,8 +3771,10 @@ radvd
|
||||
ragel
|
||||
raptor2
|
||||
rasqal
|
||||
rclone
|
||||
rcssmin
|
||||
rdma-core
|
||||
re2
|
||||
re2c
|
||||
readline
|
||||
rebootmgr
|
||||
@@ -3611,6 +3783,7 @@ redis
|
||||
redis-native
|
||||
redland
|
||||
redsocks
|
||||
renderdoc
|
||||
reno
|
||||
reportlab
|
||||
repoze.lru
|
||||
@@ -3625,6 +3798,7 @@ requests-toolbelt
|
||||
requestsexceptions
|
||||
responses
|
||||
rest
|
||||
restic
|
||||
restructuredtext_lint
|
||||
retry
|
||||
retry_decorator
|
||||
@@ -3642,11 +3816,14 @@ rospkg
|
||||
rpcbind
|
||||
rpm
|
||||
rr
|
||||
rrdtool
|
||||
rsa
|
||||
rsync
|
||||
rsyslog
|
||||
rt-tests
|
||||
rtkit
|
||||
rtslib-fb
|
||||
rttr
|
||||
ruamel-yaml
|
||||
ruby
|
||||
runc
|
||||
@@ -3655,6 +3832,7 @@ rustc
|
||||
rxvt-unicode
|
||||
ryu
|
||||
s2tc
|
||||
s3fs-fuse
|
||||
s3transfer
|
||||
sahara
|
||||
samba
|
||||
@@ -3676,6 +3854,7 @@ scripttest
|
||||
scrypt
|
||||
scummvm
|
||||
sddm
|
||||
sddm-kcm
|
||||
seaborn
|
||||
seahorse
|
||||
secretstorage
|
||||
@@ -3734,12 +3913,18 @@ speexdsp
|
||||
sphinx-feature-classification
|
||||
sphinx_rtd_theme
|
||||
sphinxcontrib-apidoc
|
||||
sphinxcontrib-applehelp
|
||||
sphinxcontrib-bibtex
|
||||
sphinxcontrib-blockdiag
|
||||
sphinxcontrib-devhelp
|
||||
sphinxcontrib-htmlhelp
|
||||
sphinxcontrib-httpdomain
|
||||
sphinxcontrib-jsmath
|
||||
sphinxcontrib-newsfeed
|
||||
sphinxcontrib-programoutput
|
||||
sphinxcontrib-qthelp
|
||||
sphinxcontrib-seqdiag
|
||||
sphinxcontrib-serializinghtml
|
||||
sphinxcontrib-spelling
|
||||
sphinxcontrib-trio
|
||||
sphinxcontrib-websupport
|
||||
@@ -3756,12 +3941,14 @@ squashfs-tools
|
||||
squid
|
||||
sshfs
|
||||
sshpass
|
||||
ssocr
|
||||
sssd
|
||||
stack
|
||||
startup-notification
|
||||
statsd
|
||||
statsmodels
|
||||
stellarium
|
||||
step
|
||||
stestr
|
||||
stevedore
|
||||
stow
|
||||
@@ -3815,10 +4002,13 @@ telepathy-glib
|
||||
telepathy-logger
|
||||
telepathy-qt
|
||||
tempest-lib
|
||||
template-glib
|
||||
tempora
|
||||
tenacity
|
||||
tensorboard
|
||||
tensorflow
|
||||
tensorflow-estimator
|
||||
tensorflow-probability
|
||||
termcolor
|
||||
terminado
|
||||
terminaltables
|
||||
@@ -3855,6 +4045,7 @@ tinyxml2
|
||||
tiptop
|
||||
tk
|
||||
tmux
|
||||
todoist
|
||||
tokyocabinet
|
||||
toolz
|
||||
tooz
|
||||
@@ -3883,8 +4074,10 @@ tzlocal
|
||||
ua-parser
|
||||
ucpp
|
||||
udisks2
|
||||
udunits
|
||||
uget
|
||||
uhttpmock
|
||||
ujson
|
||||
unbundle
|
||||
unicode-xid
|
||||
unicodecsv
|
||||
@@ -3913,6 +4106,7 @@ v4l-utils
|
||||
vala
|
||||
valgrind
|
||||
varnish-cache
|
||||
vbox-integration
|
||||
vcstool
|
||||
vcversioner
|
||||
vim
|
||||
@@ -3965,6 +4159,7 @@ wpa_supplicant
|
||||
wrapt
|
||||
wsgi_intercept
|
||||
wsgiref
|
||||
wsjtx
|
||||
wxWidgets
|
||||
x11perf
|
||||
x11vnc
|
||||
@@ -4001,6 +4196,7 @@ xf86-video-nouveau
|
||||
xf86-video-qxl
|
||||
xf86-video-vboxvideo
|
||||
xf86-video-vesa
|
||||
xf86-video-vmware
|
||||
xfburn
|
||||
xfce4-appfinder
|
||||
xfce4-dev-tools
|
||||
@@ -4023,11 +4219,13 @@ xkbcomp
|
||||
xkeyboard-config
|
||||
xkill
|
||||
xlog
|
||||
xmlrpc-c
|
||||
xmlsec1
|
||||
xmlstarlet
|
||||
xmlto
|
||||
xmltodict
|
||||
xmodmap
|
||||
xorg-fonts
|
||||
xorg-server
|
||||
xorgproto
|
||||
xorriso
|
||||
@@ -4037,6 +4235,7 @@ xrdb
|
||||
xrdp
|
||||
xrestop
|
||||
xscreensaver
|
||||
xsel
|
||||
xset
|
||||
xsetroot
|
||||
xterm
|
||||
@@ -4050,6 +4249,7 @@ yakuake
|
||||
yaml
|
||||
yaml-cpp
|
||||
yappi
|
||||
yarg
|
||||
yarl
|
||||
yarn
|
||||
yasm
|
||||
|
||||
Reference in New Issue
Block a user