mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4ce7408a7 | |||
| 2cf46aa5a4 | |||
| a84e3f08e2 | |||
| 5322002ad9 | |||
| ad8fd73cfe | |||
| 347e0e60a5 | |||
| 9fea6124da | |||
| 50711dae29 | |||
| 62dbfd1fa9 | |||
| f20c51b4c7 | |||
| 39ba8e7488 | |||
| 3cd143d931 | |||
| 8ce1020511 | |||
| c00ea07564 | |||
| 20ac5a6fca | |||
| 3c7ffcc6f8 | |||
| 75f92917fc | |||
| ebfb7792fa | |||
| 151eb80340 | |||
| c35ddf3249 | |||
| 5de267a3aa | |||
| f14316393c | |||
| a49ed4739a | |||
| 4a7900cd72 | |||
| 6f4b36eb52 | |||
| 7fcf1ca778 | |||
| ad28b67e3d | |||
| ff9ceba3c5 | |||
| 50d755e823 | |||
| cf08aaaa5d | |||
| ecc540786b | |||
| ee24dc9199 | |||
| d3616700c1 | |||
| e6f9dc64cf | |||
| c818274cec |
@@ -522,6 +522,44 @@ cloc: $(SRPMFILE)
|
||||
@$(MOCK) --clean --scrub=chroot --uniqueext=$(PKG_NAME)
|
||||
cat results/cloc.txt
|
||||
|
||||
.PHONY: whatrequires
|
||||
#help whatrequires: Output a list of packages that directly depend on this one,
|
||||
#help showing the subpackage-level breakdown. Each line of output has the format
|
||||
#help "SUBPACKAGE(|SYMBOL)? <- PACKAGE (ARCH)". If ARCH is "src", the meaning is
|
||||
#help "PACKAGE has a BuildRequires (build dependency) on SUBPACKAGE". And if ARCH
|
||||
#help is "x86_64", the meaning is "PACKAGE has a Requires (runtime dependency) on
|
||||
#help SUBPACKAGE". The optional "|SYMBOL" portion is printed when the symbol
|
||||
#help required does not match the subpackage name. Note that the ability to query
|
||||
#help version-qualified dependencies is not yet implemented... (For example, if
|
||||
#help python3-core provides the version-qualified symbol "python(abi) = 3.9",
|
||||
#help running `make whatrequires` for `python3` will detect packages that depend on
|
||||
#help "python(abi)", but not "python(abi) = 3.9".)
|
||||
whatrequires:
|
||||
@Q="dnf --config=${PM_CONF} repoquery --quiet --releasever=clear"; \
|
||||
TMP=$$(mktemp -d); trap "rm -rf $$TMP" EXIT; \
|
||||
$${Q} --provides ${PKG_NAME} | awk '{ print $$1 }' > $$TMP/${PKG_NAME}; \
|
||||
( \
|
||||
while read -r provide; do \
|
||||
$${Q} --qf="${PKG_NAME} <- %{NAME} (x86_64)" --arch=x86_64 --srpm --whatrequires $$provide; \
|
||||
$${Q} --qf="${PKG_NAME} <- %{NAME} (src)" --arch=src --whatrequires $$provide; \
|
||||
done < $$TMP/${PKG_NAME} \
|
||||
) | awk '$$3 != "${PKG_NAME}"' | LC_COLLATE=C sort -u; \
|
||||
sed -n 's/^%package *\(.*\)$$/\1/p' ${PKG_NAME}.spec | sort > $$TMP/subpkgs; \
|
||||
while read -r val; do \
|
||||
if grep -qE '^-n +' <<< $$val; then \
|
||||
subpkg=$$(awk '{ print $$2 }' <<< $$val); \
|
||||
else \
|
||||
subpkg=${PKG_NAME}-$$val; \
|
||||
fi; \
|
||||
$${Q} --provides $$subpkg | awk '{ print $$1 }' > $$TMP/$$subpkg; \
|
||||
( \
|
||||
while read -r provide; do \
|
||||
$${Q} --qf="$$subpkg|$$provide <- %{NAME} (x86_64)" --arch=x86_64 --srpm --whatrequires $$provide; \
|
||||
$${Q} --qf="$$subpkg|$$provide <- %{NAME} (src)" --arch=src --whatrequires $$provide; \
|
||||
done < $$TMP/$$subpkg \
|
||||
) | awk '$$3 != "${PKG_NAME}"' | sed "s/^$$subpkg|\($$subpkg\)/\1/" | LC_COLLATE=C sort -u; \
|
||||
done < $$TMP/subpkgs
|
||||
|
||||
# Define LTS-specific targets in a separate makefile
|
||||
-include $(TOPLVL)/projects/common/Makefile.common.lts
|
||||
|
||||
|
||||
+2
-2
@@ -4,14 +4,14 @@ config_opts['legal_host_arches'] = ('x86_64',)
|
||||
config_opts['chroot_setup_cmd'] = 'groupinstall build srpm-build'
|
||||
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['useradd'] = '/usr/sbin/useradd -m -u {{chrootuid}} -g {{chrootgid}} -d {{chroothome}} {{chrootuser}}'
|
||||
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'
|
||||
config_opts['use_bootstrap_container'] = False
|
||||
config_opts['use_bootstrap'] = False
|
||||
|
||||
|
||||
config_opts['dnf.conf'] = """
|
||||
|
||||
@@ -72,30 +72,40 @@ CATOSL-1.1
|
||||
CC-BY-1.0
|
||||
CC-BY-2.0
|
||||
CC-BY-2.5
|
||||
CC-BY-2.5-AU
|
||||
CC-BY-3.0
|
||||
CC-BY-3.0-AT
|
||||
CC-BY-3.0-DE
|
||||
CC-BY-3.0-NL
|
||||
CC-BY-3.0-US
|
||||
CC-BY-4.0
|
||||
CC-BY-NC-1.0
|
||||
CC-BY-NC-2.0
|
||||
CC-BY-NC-2.5
|
||||
CC-BY-NC-3.0
|
||||
CC-BY-NC-3.0-DE
|
||||
CC-BY-NC-4.0
|
||||
CC-BY-NC-ND-1.0
|
||||
CC-BY-NC-ND-2.0
|
||||
CC-BY-NC-ND-2.5
|
||||
CC-BY-NC-ND-3.0
|
||||
CC-BY-NC-ND-3.0-DE
|
||||
CC-BY-NC-ND-3.0-IGO
|
||||
CC-BY-NC-ND-4.0
|
||||
CC-BY-NC-SA-1.0
|
||||
CC-BY-NC-SA-2.0
|
||||
CC-BY-NC-SA-2.0-FR
|
||||
CC-BY-NC-SA-2.0-UK
|
||||
CC-BY-NC-SA-2.5
|
||||
CC-BY-NC-SA-3.0
|
||||
CC-BY-NC-SA-3.0-DE
|
||||
CC-BY-NC-SA-3.0-IGO
|
||||
CC-BY-NC-SA-4.0
|
||||
CC-BY-ND-1.0
|
||||
CC-BY-ND-2.0
|
||||
CC-BY-ND-2.5
|
||||
CC-BY-ND-3.0
|
||||
CC-BY-ND-3.0-DE
|
||||
CC-BY-ND-4.0
|
||||
CC-BY-SA-1.0
|
||||
CC-BY-SA-2.0
|
||||
@@ -104,6 +114,7 @@ CC-BY-SA-2.1-JP
|
||||
CC-BY-SA-2.5
|
||||
CC-BY-SA-3.0
|
||||
CC-BY-SA-3.0-AT
|
||||
CC-BY-SA-3.0-DE
|
||||
CC-BY-SA-4.0
|
||||
CC-PDDC
|
||||
CC0-1.0
|
||||
@@ -111,6 +122,7 @@ CDDL-1.0
|
||||
CDDL-1.1
|
||||
CDL-1.0
|
||||
CDLA-Permissive-1.0
|
||||
CDLA-Permissive-2.0
|
||||
CDLA-Sharing-1.0
|
||||
CECILL-1.0
|
||||
CECILL-1.1
|
||||
@@ -290,6 +302,7 @@ NGPL
|
||||
NIST-PD
|
||||
NIST-PD-fallback
|
||||
NLOD-1.0
|
||||
NLOD-2.0
|
||||
NLPL
|
||||
NOSL
|
||||
NPL-1.0
|
||||
@@ -341,6 +354,7 @@ OLDAP-2.7
|
||||
OLDAP-2.8
|
||||
OML
|
||||
OPL-1.0
|
||||
OPUBL-1.0
|
||||
OSET-PL-2.1
|
||||
OSL-1.0
|
||||
OSL-1.1
|
||||
|
||||
@@ -12,6 +12,7 @@ CopyQ
|
||||
Cura
|
||||
CuraEngine
|
||||
Cython
|
||||
DML
|
||||
Django
|
||||
F-Engrave
|
||||
Flask
|
||||
@@ -154,6 +155,7 @@ R-NLP
|
||||
R-NMF
|
||||
R-NMOF
|
||||
R-PKI
|
||||
R-ParamHelpers
|
||||
R-PerformanceAnalytics
|
||||
R-R.cache
|
||||
R-R.methodsS3
|
||||
@@ -171,6 +173,7 @@ R-RJSONIO
|
||||
R-RNeXML
|
||||
R-RNetCDF
|
||||
R-ROCR
|
||||
R-ROSE
|
||||
R-RProtoBuf
|
||||
R-RSQLite
|
||||
R-RSclient
|
||||
@@ -223,7 +226,9 @@ R-ade4
|
||||
R-adegenet
|
||||
R-adegraphics
|
||||
R-adephylo
|
||||
R-adespatial
|
||||
R-afex
|
||||
R-alabama
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
@@ -236,6 +241,9 @@ R-askpass
|
||||
R-assertthat
|
||||
R-backports
|
||||
R-base64enc
|
||||
R-base64url
|
||||
R-basefun
|
||||
R-batchtools
|
||||
R-bayesm
|
||||
R-bayesplot
|
||||
R-bazar
|
||||
@@ -299,6 +307,7 @@ R-combinat
|
||||
R-commonmark
|
||||
R-compositions
|
||||
R-conditionz
|
||||
R-coneproj
|
||||
R-config
|
||||
R-conflicted
|
||||
R-conquer
|
||||
@@ -341,6 +350,7 @@ R-dimRed
|
||||
R-diptest
|
||||
R-distr
|
||||
R-distrEx
|
||||
R-distributional
|
||||
R-dlm
|
||||
R-doMC
|
||||
R-doMPI
|
||||
@@ -421,8 +431,10 @@ R-fitdistrplus
|
||||
R-flashClust
|
||||
R-flexmix
|
||||
R-flexsurv
|
||||
R-float
|
||||
R-fontBitstreamVera
|
||||
R-fontLiberation
|
||||
R-fontawesome
|
||||
R-fontquiver
|
||||
R-forcats
|
||||
R-foreach
|
||||
@@ -438,6 +450,7 @@ R-furrr
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
R-future.apply
|
||||
R-g.data
|
||||
R-gam
|
||||
R-gamm4
|
||||
@@ -458,6 +471,7 @@ R-getopt
|
||||
R-ggjoy
|
||||
R-ggplot2
|
||||
R-ggplot2movies
|
||||
R-ggrepel
|
||||
R-ggridges
|
||||
R-ggvis
|
||||
R-gh
|
||||
@@ -560,8 +574,10 @@ R-lme4
|
||||
R-lmerTest
|
||||
R-lmom
|
||||
R-lmtest
|
||||
R-lobstr
|
||||
R-locfit
|
||||
R-logcondens
|
||||
R-logger
|
||||
R-logspline
|
||||
R-loo
|
||||
R-lpSolve
|
||||
@@ -606,6 +622,8 @@ R-mitools
|
||||
R-mixtools
|
||||
R-mlbench
|
||||
R-mlmRev
|
||||
R-mlr
|
||||
R-mlt
|
||||
R-mnormt
|
||||
R-mockery
|
||||
R-mockr
|
||||
@@ -645,16 +663,19 @@ R-optextras
|
||||
R-optimx
|
||||
R-optparse
|
||||
R-ordinal
|
||||
R-orthopolynom
|
||||
R-pROC
|
||||
R-packrat
|
||||
R-palmerpenguins
|
||||
R-pamr
|
||||
R-pander
|
||||
R-parallelMap
|
||||
R-parallelly
|
||||
R-parsedate
|
||||
R-partitions
|
||||
R-party
|
||||
R-partykit
|
||||
R-patchwork
|
||||
R-pbapply
|
||||
R-pbdZMQ
|
||||
R-pbivnorm
|
||||
@@ -695,6 +716,7 @@ R-polyCub
|
||||
R-polyclip
|
||||
R-polycor
|
||||
R-polynom
|
||||
R-posterior
|
||||
R-prabclus
|
||||
R-pracma
|
||||
R-praise
|
||||
@@ -708,6 +730,7 @@ R-profdpm
|
||||
R-profileModel
|
||||
R-profmem
|
||||
R-progress
|
||||
R-progressr
|
||||
R-projpred
|
||||
R-promises
|
||||
R-proto
|
||||
@@ -784,6 +807,7 @@ R-rjson
|
||||
R-rjstat
|
||||
R-rlang
|
||||
R-rle
|
||||
R-rlecuyer
|
||||
R-rmarkdown
|
||||
R-rmatio
|
||||
R-rms
|
||||
@@ -816,6 +840,7 @@ R-rsvg
|
||||
R-runjags
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-s2
|
||||
R-sROC
|
||||
R-sampling
|
||||
R-sandwich
|
||||
@@ -905,6 +930,7 @@ R-testthat
|
||||
R-texreg
|
||||
R-textshaping
|
||||
R-tfruns
|
||||
R-themis
|
||||
R-threejs
|
||||
R-tibble
|
||||
R-tidyr
|
||||
@@ -923,11 +949,14 @@ R-topicmodels
|
||||
R-tree
|
||||
R-triebeard
|
||||
R-trimcluster
|
||||
R-trtf
|
||||
R-truncdist
|
||||
R-truncnorm
|
||||
R-tseries
|
||||
R-tsne
|
||||
R-tzdb
|
||||
R-ucminf
|
||||
R-unbalanced
|
||||
R-units
|
||||
R-unix
|
||||
R-urca
|
||||
@@ -937,16 +966,19 @@ R-usethis
|
||||
R-utf8
|
||||
R-uuid
|
||||
R-varImp
|
||||
R-variables
|
||||
R-vcd
|
||||
R-vcdExtra
|
||||
R-vcr
|
||||
R-vctrs
|
||||
R-vdiffr
|
||||
R-vegan
|
||||
R-vembedr
|
||||
R-vioplot
|
||||
R-viridis
|
||||
R-viridisLite
|
||||
R-visNetwork
|
||||
R-vroom
|
||||
R-waldo
|
||||
R-warp
|
||||
R-webfakes
|
||||
@@ -958,6 +990,7 @@ R-whoami
|
||||
R-wikitaxa
|
||||
R-winch
|
||||
R-withr
|
||||
R-wk
|
||||
R-worrms
|
||||
R-xfun
|
||||
R-xml2
|
||||
@@ -973,6 +1006,7 @@ R-zoo
|
||||
RawTherapee
|
||||
Remmina
|
||||
Routes
|
||||
Rtree
|
||||
SDL
|
||||
SDL2
|
||||
SDL2_gfx
|
||||
@@ -1055,6 +1089,7 @@ amazon-ssm-agent
|
||||
amtk
|
||||
analitza
|
||||
ansible
|
||||
ansible-core
|
||||
antlr4-python3-runtime
|
||||
anyio
|
||||
apache-ant
|
||||
@@ -1075,6 +1110,7 @@ ark
|
||||
armadillo
|
||||
arp-scan
|
||||
arpack-ng
|
||||
arrow
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
@@ -1147,7 +1183,9 @@ bcftools
|
||||
bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
beniget
|
||||
bijiben
|
||||
binaryornot
|
||||
bind-utils
|
||||
binutils
|
||||
binwalk
|
||||
@@ -1177,19 +1215,19 @@ boto
|
||||
boto3
|
||||
botocore
|
||||
bovo
|
||||
bowler
|
||||
box2d
|
||||
bpftrace
|
||||
breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
bridge-utils
|
||||
bro
|
||||
bro-af_packet-plugin
|
||||
brotli
|
||||
brotlipy
|
||||
bsdiff
|
||||
btrfs-progs
|
||||
bubblewrap
|
||||
build
|
||||
buildreq-R
|
||||
buildreq-cmake
|
||||
buildreq-configure
|
||||
@@ -1237,10 +1275,12 @@ ceph-deploy
|
||||
certbot
|
||||
certifi
|
||||
cffi
|
||||
cfgv
|
||||
cfitsio
|
||||
cgdb
|
||||
cgit
|
||||
chardet
|
||||
charset-normalizer
|
||||
check
|
||||
check-manifest
|
||||
cheese
|
||||
@@ -1323,18 +1363,17 @@ compat-gcc-10
|
||||
compat-glibmm-soname24
|
||||
compat-gtksourceview-soname3
|
||||
compat-libffi-soname6
|
||||
compat-libhandy-0.0
|
||||
compat-libpng-soname12
|
||||
compat-libsigc++-soname20
|
||||
compat-libsoup-soname-24
|
||||
compat-libva-soname1
|
||||
compat-lua-52
|
||||
compat-lua-53
|
||||
compat-nettle-soname7
|
||||
compat-openexr-soname25
|
||||
compat-pangomm-soname14
|
||||
compat-re2-soname7
|
||||
compat-readline-soname5
|
||||
compat-tracker-soname2.0
|
||||
compat-webkitgtk-soname40
|
||||
complete
|
||||
component
|
||||
compute-image-packages
|
||||
@@ -1344,10 +1383,12 @@ confuse
|
||||
conky
|
||||
conmon
|
||||
connect-proxy
|
||||
connections
|
||||
conntrack-tools
|
||||
console-autostart
|
||||
containerd
|
||||
contextlib2
|
||||
cookiecutter
|
||||
cookies
|
||||
coreutils
|
||||
corosync
|
||||
@@ -1399,6 +1440,8 @@ dconf
|
||||
dconf-editor
|
||||
ddd
|
||||
deap
|
||||
debugedit
|
||||
debugpy
|
||||
decorator
|
||||
defusedxml
|
||||
dejagnu
|
||||
@@ -1426,7 +1469,6 @@ distributed
|
||||
distro
|
||||
dj-database-url
|
||||
django-appconf
|
||||
django-babel
|
||||
django-discover-runner
|
||||
django-nose
|
||||
django-pyscss
|
||||
@@ -1489,8 +1531,10 @@ efl
|
||||
eid-mw
|
||||
eigen
|
||||
elementary-xfce
|
||||
elementpath
|
||||
elfutils
|
||||
elisa
|
||||
elixir
|
||||
ell
|
||||
emacs
|
||||
emacs-x11
|
||||
@@ -1546,6 +1590,7 @@ firecracker
|
||||
firefox
|
||||
firewalld
|
||||
fish
|
||||
fissix
|
||||
fixtures
|
||||
flac
|
||||
flake8
|
||||
@@ -1628,6 +1673,7 @@ gexiv2
|
||||
gfbgraph
|
||||
gflags
|
||||
gftp
|
||||
gh
|
||||
ghc
|
||||
ghostscript
|
||||
giflib
|
||||
@@ -1751,12 +1797,17 @@ grisbi
|
||||
groff
|
||||
grpc
|
||||
grpcio
|
||||
grpcio-channelz
|
||||
grpcio-health-checking
|
||||
grpcio-reflection
|
||||
grpcio-tools
|
||||
gsequencer
|
||||
gsettings-desktop-schemas
|
||||
gsl
|
||||
gsm
|
||||
gsound
|
||||
gspell
|
||||
gssapi
|
||||
gst-plugins-bad
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
@@ -1767,6 +1818,7 @@ gstreamer-vaapi
|
||||
gsutil
|
||||
gtk+
|
||||
gtk-doc
|
||||
gtk-frdp
|
||||
gtk-vnc
|
||||
gtk-xfce-engine
|
||||
gtk3
|
||||
@@ -1799,6 +1851,7 @@ help2man
|
||||
hexchat
|
||||
hexedit
|
||||
hicolor-icon-theme
|
||||
hiredis-c
|
||||
home-assistant
|
||||
home-assistant-frontend
|
||||
horovod
|
||||
@@ -1841,6 +1894,7 @@ iceauth
|
||||
icecream
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
identify
|
||||
idle-python3.7-assets
|
||||
idna
|
||||
idna-ssl
|
||||
@@ -1854,7 +1908,9 @@ imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
importlib_metadata
|
||||
importlib_resources
|
||||
indent
|
||||
inflection
|
||||
influxdb
|
||||
iniconfig
|
||||
inih
|
||||
@@ -1925,6 +1981,7 @@ jedi
|
||||
jeepney
|
||||
jellyfish
|
||||
jemalloc
|
||||
jinja2-time
|
||||
jmespath
|
||||
joblib
|
||||
joe
|
||||
@@ -1932,7 +1989,6 @@ josepy
|
||||
jpegoptim
|
||||
jq
|
||||
js8call
|
||||
jsmin
|
||||
json-c
|
||||
json-glib
|
||||
json5
|
||||
@@ -2141,6 +2197,7 @@ krusader
|
||||
kscreen
|
||||
kscreenlocker
|
||||
kservice
|
||||
ksh
|
||||
kshisen
|
||||
ksirk
|
||||
ksmtp
|
||||
@@ -2152,6 +2209,7 @@ kstars
|
||||
ksudoku
|
||||
ksysguard
|
||||
ksystemlog
|
||||
ksystemstats
|
||||
kteatime
|
||||
ktexteditor
|
||||
ktextwidgets
|
||||
@@ -2181,6 +2239,7 @@ ladspa_sdk
|
||||
lark-parser
|
||||
latencytop
|
||||
latte-dock
|
||||
layer-shell-qt
|
||||
lazy-object-proxy
|
||||
lcms2
|
||||
lcov
|
||||
@@ -2223,6 +2282,7 @@ libass
|
||||
libassuan
|
||||
libatasmart
|
||||
libatomic_ops
|
||||
libavif
|
||||
libavtp
|
||||
libb64
|
||||
libblockdev
|
||||
@@ -2245,6 +2305,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libcst
|
||||
libcxx
|
||||
libdaemon
|
||||
libdatrie
|
||||
@@ -2284,7 +2345,6 @@ libgee
|
||||
libgeotiff
|
||||
libgit2
|
||||
libgit2-glib
|
||||
libglade
|
||||
libgnome-keyring
|
||||
libgnomekbd
|
||||
libgpg-error
|
||||
@@ -2430,6 +2490,7 @@ libudev0-shim
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
liburing
|
||||
libusb
|
||||
libusb-compat
|
||||
libuser
|
||||
@@ -2486,6 +2547,7 @@ linux-libc-headers
|
||||
linux-lts2017
|
||||
linux-lts2018
|
||||
linux-lts2019
|
||||
linux-lts2020
|
||||
linux-mainline
|
||||
linux-oracle
|
||||
linux-preempt-rt
|
||||
@@ -2613,12 +2675,14 @@ mokutil
|
||||
mono
|
||||
monotonic
|
||||
more-itertools
|
||||
moreorless
|
||||
moreutils
|
||||
mosh
|
||||
mosquitto
|
||||
motd-update
|
||||
motif
|
||||
mozjs78
|
||||
mozjs91
|
||||
mpc
|
||||
mpfr
|
||||
mpg123
|
||||
@@ -2706,6 +2770,7 @@ nltk
|
||||
nmap
|
||||
nocasedict
|
||||
nocaselist
|
||||
nodeenv
|
||||
nodejs
|
||||
nose
|
||||
nose-parameterized
|
||||
@@ -3430,6 +3495,7 @@ perl-SQL-SplitStatement
|
||||
perl-SQL-Tokenizer
|
||||
perl-SQL-Translator
|
||||
perl-SUPER
|
||||
perl-Safe-Isa
|
||||
perl-Scalar-String
|
||||
perl-Scope-Guard
|
||||
perl-Scope-Upper
|
||||
@@ -3452,6 +3518,7 @@ perl-Statistics-CaseResampling
|
||||
perl-Storable
|
||||
perl-Stream-Buffered
|
||||
perl-String-Approx
|
||||
perl-String-CRC32
|
||||
perl-String-CamelCase
|
||||
perl-String-Escape
|
||||
perl-String-Expand
|
||||
@@ -3509,6 +3576,7 @@ perl-Test-File-ShareDir-Dist
|
||||
perl-Test-Fork
|
||||
perl-Test-Identity
|
||||
perl-Test-Inter
|
||||
perl-Test-LWP-UserAgent
|
||||
perl-Test-LeakTrace
|
||||
perl-Test-LectroTest
|
||||
perl-Test-LongString
|
||||
@@ -3662,7 +3730,6 @@ perl-prefork
|
||||
perl-strictures
|
||||
persistent
|
||||
pesign
|
||||
petastorm
|
||||
pexpect
|
||||
phonon
|
||||
phonon-vlc
|
||||
@@ -3694,6 +3761,7 @@ php-gnupg
|
||||
php-hprose
|
||||
php-hrtime
|
||||
php-igbinary
|
||||
php-imagick
|
||||
php-inotify
|
||||
php-jsmin
|
||||
php-json_post
|
||||
@@ -3763,6 +3831,7 @@ plasma-vault
|
||||
plasma-wayland-protocols
|
||||
plasma-workspace
|
||||
plasma-workspace-wallpapers
|
||||
platformdirs
|
||||
plotly
|
||||
pluggy
|
||||
ply
|
||||
@@ -3772,6 +3841,7 @@ pmdk
|
||||
pmix
|
||||
pngcrush
|
||||
po4a
|
||||
podman
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
polkit-qt
|
||||
@@ -3787,13 +3857,17 @@ postgis
|
||||
postgresql
|
||||
postgresql11
|
||||
postgresql12
|
||||
postgresql13
|
||||
postgresql14
|
||||
potrace
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
powerstat
|
||||
powertop
|
||||
poxml
|
||||
poyo
|
||||
ppp
|
||||
pre_commit
|
||||
pretend
|
||||
prettytable
|
||||
print-manager
|
||||
@@ -3876,6 +3950,7 @@ pytest-asyncio
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-localserver
|
||||
pytest-mock
|
||||
pytest-randomly
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
@@ -3900,6 +3975,7 @@ python-hwinfo
|
||||
python-jsonrpc-server
|
||||
python-kconfiglib
|
||||
python-language-server
|
||||
python-lsp-black
|
||||
python-lsp-jsonrpc
|
||||
python-lsp-server
|
||||
python-magic
|
||||
@@ -3911,6 +3987,8 @@ python-openzwave
|
||||
python-pkgconfig
|
||||
python-pocketlint
|
||||
python-polib
|
||||
python-remoto
|
||||
python-rpm-packaging
|
||||
python-slip
|
||||
python-slugify
|
||||
python-subunit
|
||||
@@ -3922,6 +4000,7 @@ python-zeep
|
||||
python-zstandard
|
||||
python3
|
||||
python37
|
||||
pythran
|
||||
pytorch
|
||||
pytz
|
||||
pyu2f
|
||||
@@ -3945,6 +4024,7 @@ qqc2-desktop-style
|
||||
qrencode
|
||||
qscintilla
|
||||
qsstv
|
||||
qstylizer
|
||||
qt-creator
|
||||
qt3d
|
||||
qt5ct
|
||||
@@ -4014,12 +4094,14 @@ reportlab
|
||||
repoze.lru
|
||||
requests
|
||||
requests-file
|
||||
requests-gssapi
|
||||
requests-kerberos
|
||||
requests-mock
|
||||
requests-ntlm
|
||||
requests-oauthlib
|
||||
requests-toolbelt
|
||||
requests-unixsocket
|
||||
resolvelib
|
||||
responses
|
||||
rest
|
||||
restic
|
||||
@@ -4043,6 +4125,8 @@ rope
|
||||
rpcbind
|
||||
rpcsvc-proto
|
||||
rpm
|
||||
rpm-py-installer
|
||||
rpmfile
|
||||
rr
|
||||
rrdtool
|
||||
rsa
|
||||
@@ -4084,9 +4168,11 @@ sddm
|
||||
sddm-kcm
|
||||
seaborn
|
||||
seahorse
|
||||
seatd
|
||||
secretstorage
|
||||
sed
|
||||
selenium
|
||||
semantic_version
|
||||
seqdiag
|
||||
serf
|
||||
serpent
|
||||
@@ -4094,6 +4180,7 @@ setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
setuptools-legacy
|
||||
setuptools-rust
|
||||
setuptools_scm
|
||||
setuptools_scm_git_archive
|
||||
setxkbmap
|
||||
@@ -4209,6 +4296,7 @@ sysdig
|
||||
syslinux
|
||||
sysprof
|
||||
sysstat
|
||||
system-config-printer
|
||||
systemd
|
||||
systemd-bootchart
|
||||
systemsettings
|
||||
@@ -4226,6 +4314,7 @@ tdb
|
||||
telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-qt
|
||||
templated-dictionary
|
||||
tempora
|
||||
tensorboard
|
||||
tensorflow
|
||||
@@ -4272,12 +4361,14 @@ tigervnc
|
||||
tilix
|
||||
time
|
||||
tini
|
||||
tinycss2
|
||||
tiptop
|
||||
tk
|
||||
tldextract
|
||||
tmux
|
||||
tokyocabinet
|
||||
toml
|
||||
tomli
|
||||
tomlkit
|
||||
toolz
|
||||
tornado
|
||||
@@ -4296,14 +4387,17 @@ tracker-miners
|
||||
traefik
|
||||
traitlets
|
||||
tree
|
||||
tree-sitter
|
||||
twine
|
||||
typed_ast
|
||||
typeguard
|
||||
typing_extensions
|
||||
typing_inspect
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
uamqp
|
||||
uchardet
|
||||
ucpp
|
||||
udisks2
|
||||
udunits
|
||||
@@ -4347,11 +4441,13 @@ vim-fugitive
|
||||
vim-gnupg
|
||||
vim-go
|
||||
vinagre
|
||||
virglrenderer
|
||||
virt-manager
|
||||
virt-viewer
|
||||
virtualenv
|
||||
vkd3d
|
||||
vlc
|
||||
volatile
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
@@ -4363,6 +4459,7 @@ vsts-cd-manager
|
||||
vte
|
||||
waffle
|
||||
waitress
|
||||
watchdog
|
||||
wavpack
|
||||
wayland
|
||||
wayland-protocols
|
||||
@@ -4452,6 +4549,8 @@ xkill
|
||||
xl2tpd
|
||||
xlog
|
||||
xmlb
|
||||
xmldiff
|
||||
xmlschema
|
||||
xmlsec1
|
||||
xmlstarlet
|
||||
xmlto
|
||||
@@ -4475,6 +4574,7 @@ xss-lock
|
||||
xterm
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwayland
|
||||
xwd
|
||||
xwdrun
|
||||
xwininfo
|
||||
@@ -4494,6 +4594,8 @@ zabbix
|
||||
zathura
|
||||
zathura-pdf-poppler
|
||||
zc.lockfile
|
||||
zeek
|
||||
zeek-af_packet-plugin
|
||||
zenity
|
||||
zeroconf
|
||||
zeroconf-ioslave
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
compat-libsigc++-soname20 compat-libsigc-plus-plus-soname20
|
||||
gtk+ gtk-plus
|
||||
libsigc++ libsigc-plus-plus
|
||||
|
||||
Reference in New Issue
Block a user