mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
64 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| 8094f8a358 | |||
| 1fe250bb13 | |||
| 48312c546e | |||
| 2ed43dee7c | |||
| 2c29d463aa | |||
| 916aa9ce90 | |||
| e5c860f7c9 | |||
| b9b24a353b | |||
| 45b72cc7bc | |||
| baabce03b6 | |||
| 191989a32a | |||
| f1f9d44878 | |||
| ae6182ad24 | |||
| f8bc62ae39 | |||
| e750687701 | |||
| 28747a2037 | |||
| 3208712529 | |||
| 9e94a00898 | |||
| e053e67bd5 | |||
| 68768eb65f | |||
| 2a7d53c6cd | |||
| 213b7b4d57 | |||
| 17f5e2eb9d | |||
| a85ca255c1 | |||
| 4133026569 | |||
| 60de5ce7d5 | |||
| 91a4c42013 | |||
| 49289f00d9 | |||
| 64a279e8f8 | |||
| c4709f40af |
@@ -451,6 +451,10 @@ install-debuginfo-local:
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
find $$tmpdir/usr/share/debug/.build-id -type l 2> /dev/null | while read -r link; do \
|
||||
new_target=$$(readlink $$link | sed 's|/usr/share/debug|/usr/lib/debug|'); \
|
||||
sudo ln -sf "$$new_target" "$$link"; \
|
||||
done; \
|
||||
find $$tmpdir/usr/share/debug/ -mindepth 1 -maxdepth 1 -regextype awk -regex '.*/(.build-id|boot|lib|sbin|usr)$$' 2> /dev/null | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
@@ -518,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
|
||||
|
||||
|
||||
Binary file not shown.
+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'] = """
|
||||
|
||||
@@ -45,11 +45,14 @@ BSD-3-Clause
|
||||
BSD-3-Clause-Attribution
|
||||
BSD-3-Clause-Clear
|
||||
BSD-3-Clause-LBNL
|
||||
BSD-3-Clause-Modification
|
||||
BSD-3-Clause-No-Military-License
|
||||
BSD-3-Clause-No-Nuclear-License
|
||||
BSD-3-Clause-No-Nuclear-License-2014
|
||||
BSD-3-Clause-No-Nuclear-Warranty
|
||||
BSD-3-Clause-Open-MPI
|
||||
BSD-4-Clause
|
||||
BSD-4-Clause-Shortened
|
||||
BSD-4-Clause-UC
|
||||
BSD-Protection
|
||||
BSD-Source-Code
|
||||
@@ -62,49 +65,64 @@ BitTorrent-1.0
|
||||
BitTorrent-1.1
|
||||
BlueOak-1.0.0
|
||||
Borceux
|
||||
C-UDA-1.0
|
||||
CAL-1.0
|
||||
CAL-1.0-Combined-Work-Exception
|
||||
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
|
||||
CC-BY-SA-2.0-UK
|
||||
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
|
||||
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
|
||||
@@ -132,6 +150,7 @@ CrystalStacker
|
||||
Cube
|
||||
D-FSL-1.0
|
||||
DOC
|
||||
DRL-1.0
|
||||
DSDP
|
||||
Dotseqn
|
||||
ECL-1.0
|
||||
@@ -154,7 +173,9 @@ FSFULLR
|
||||
FTL
|
||||
Fair
|
||||
Frameworx-1.0
|
||||
FreeBSD-DOC
|
||||
FreeImage
|
||||
GD
|
||||
GFDL-1.1
|
||||
GFDL-1.1-invariants-only
|
||||
GFDL-1.1-invariants-or-later
|
||||
@@ -252,6 +273,7 @@ Linux-OpenIB
|
||||
MIT
|
||||
MIT-0
|
||||
MIT-CMU
|
||||
MIT-Modern-Variant
|
||||
MIT-advertising
|
||||
MIT-enna
|
||||
MIT-feh
|
||||
@@ -271,6 +293,7 @@ MulanPSL-1.0
|
||||
MulanPSL-2.0
|
||||
Multics
|
||||
Mup
|
||||
NAIST-2003
|
||||
NASA-1.3
|
||||
NBPL-1.0
|
||||
NCGL-UK-2.0
|
||||
@@ -279,6 +302,7 @@ NGPL
|
||||
NIST-PD
|
||||
NIST-PD-fallback
|
||||
NLOD-1.0
|
||||
NLOD-2.0
|
||||
NLPL
|
||||
NOSL
|
||||
NPL-1.0
|
||||
@@ -306,6 +330,7 @@ OFL-1.1
|
||||
OFL-1.1-RFN
|
||||
OFL-1.1-no-RFN
|
||||
OGC-1.0
|
||||
OGDL-Taiwan-1.0
|
||||
OGL-Canada-2.0
|
||||
OGL-UK-1.0
|
||||
OGL-UK-2.0
|
||||
@@ -329,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
|
||||
@@ -23,6 +24,7 @@ Gradio
|
||||
GtkD
|
||||
HeapDict
|
||||
ImageMagick
|
||||
Imath
|
||||
JAGS
|
||||
Jinja2
|
||||
Judy
|
||||
@@ -72,6 +74,7 @@ PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
Pyro4
|
||||
QAT_engine
|
||||
QGIS
|
||||
QtAwesome
|
||||
QtPy
|
||||
@@ -92,6 +95,7 @@ R-BiocManager
|
||||
R-BoolNet
|
||||
R-BradleyTerry2
|
||||
R-Brobdingnag
|
||||
R-C50
|
||||
R-CVST
|
||||
R-Cairo
|
||||
R-CircStats
|
||||
@@ -151,6 +155,7 @@ R-NLP
|
||||
R-NMF
|
||||
R-NMOF
|
||||
R-PKI
|
||||
R-ParamHelpers
|
||||
R-PerformanceAnalytics
|
||||
R-R.cache
|
||||
R-R.methodsS3
|
||||
@@ -168,6 +173,7 @@ R-RJSONIO
|
||||
R-RNeXML
|
||||
R-RNetCDF
|
||||
R-ROCR
|
||||
R-ROSE
|
||||
R-RProtoBuf
|
||||
R-RSQLite
|
||||
R-RSclient
|
||||
@@ -209,6 +215,7 @@ R-VGAM
|
||||
R-VGAMdata
|
||||
R-VIM
|
||||
R-WDI
|
||||
R-WikidataQueryServiceR
|
||||
R-WikidataR
|
||||
R-WikipediR
|
||||
R-XML
|
||||
@@ -219,7 +226,9 @@ R-ade4
|
||||
R-adegenet
|
||||
R-adegraphics
|
||||
R-adephylo
|
||||
R-adespatial
|
||||
R-afex
|
||||
R-alabama
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
@@ -232,6 +241,9 @@ R-askpass
|
||||
R-assertthat
|
||||
R-backports
|
||||
R-base64enc
|
||||
R-base64url
|
||||
R-basefun
|
||||
R-batchtools
|
||||
R-bayesm
|
||||
R-bayesplot
|
||||
R-bazar
|
||||
@@ -295,6 +307,7 @@ R-combinat
|
||||
R-commonmark
|
||||
R-compositions
|
||||
R-conditionz
|
||||
R-coneproj
|
||||
R-config
|
||||
R-conflicted
|
||||
R-conquer
|
||||
@@ -337,6 +350,7 @@ R-dimRed
|
||||
R-diptest
|
||||
R-distr
|
||||
R-distrEx
|
||||
R-distributional
|
||||
R-dlm
|
||||
R-doMC
|
||||
R-doMPI
|
||||
@@ -417,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
|
||||
@@ -434,9 +450,11 @@ R-furrr
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
R-future.apply
|
||||
R-g.data
|
||||
R-gam
|
||||
R-gamm4
|
||||
R-gargle
|
||||
R-gbRd
|
||||
R-gbm
|
||||
R-gbutils
|
||||
@@ -453,6 +471,7 @@ R-getopt
|
||||
R-ggjoy
|
||||
R-ggplot2
|
||||
R-ggplot2movies
|
||||
R-ggrepel
|
||||
R-ggridges
|
||||
R-ggvis
|
||||
R-gh
|
||||
@@ -467,6 +486,8 @@ R-gmp
|
||||
R-gnm
|
||||
R-goftest
|
||||
R-googleVis
|
||||
R-googledrive
|
||||
R-googlesheets4
|
||||
R-gower
|
||||
R-gplots
|
||||
R-gridBase
|
||||
@@ -494,6 +515,7 @@ R-hunspell
|
||||
R-hwriter
|
||||
R-hypergeo
|
||||
R-ica
|
||||
R-ids
|
||||
R-igraph
|
||||
R-import
|
||||
R-ineq
|
||||
@@ -525,6 +547,7 @@ R-ks
|
||||
R-labeling
|
||||
R-labelled
|
||||
R-laeken
|
||||
R-lamW
|
||||
R-lambda.r
|
||||
R-languageR
|
||||
R-languageserver
|
||||
@@ -551,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
|
||||
@@ -597,6 +622,8 @@ R-mitools
|
||||
R-mixtools
|
||||
R-mlbench
|
||||
R-mlmRev
|
||||
R-mlr
|
||||
R-mlt
|
||||
R-mnormt
|
||||
R-mockery
|
||||
R-mockr
|
||||
@@ -636,15 +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
|
||||
@@ -685,6 +716,7 @@ R-polyCub
|
||||
R-polyclip
|
||||
R-polycor
|
||||
R-polynom
|
||||
R-posterior
|
||||
R-prabclus
|
||||
R-pracma
|
||||
R-praise
|
||||
@@ -698,6 +730,7 @@ R-profdpm
|
||||
R-profileModel
|
||||
R-profmem
|
||||
R-progress
|
||||
R-progressr
|
||||
R-projpred
|
||||
R-promises
|
||||
R-proto
|
||||
@@ -733,9 +766,11 @@ R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-ratelimitr
|
||||
R-rbenchmark
|
||||
R-rbibutils
|
||||
R-rcmdcheck
|
||||
R-rcorpora
|
||||
R-reactR
|
||||
R-reactable
|
||||
R-reactlog
|
||||
@@ -753,6 +788,7 @@ R-remotes
|
||||
R-rentrez
|
||||
R-repr
|
||||
R-reprex
|
||||
R-repurrrsive
|
||||
R-reshape
|
||||
R-reshape2
|
||||
R-reticulate
|
||||
@@ -771,6 +807,7 @@ R-rjson
|
||||
R-rjstat
|
||||
R-rlang
|
||||
R-rle
|
||||
R-rlecuyer
|
||||
R-rmarkdown
|
||||
R-rmatio
|
||||
R-rms
|
||||
@@ -785,6 +822,7 @@ R-robustbase
|
||||
R-rootSolve
|
||||
R-rotl
|
||||
R-roxygen2
|
||||
R-rpart.plot
|
||||
R-rprojroot
|
||||
R-rrcov
|
||||
R-rredlist
|
||||
@@ -802,6 +840,7 @@ R-rsvg
|
||||
R-runjags
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-s2
|
||||
R-sROC
|
||||
R-sampling
|
||||
R-sandwich
|
||||
@@ -847,8 +886,10 @@ R-spData
|
||||
R-spam
|
||||
R-sparkline
|
||||
R-spatstat
|
||||
R-spatstat.core
|
||||
R-spatstat.data
|
||||
R-spatstat.geom
|
||||
R-spatstat.linnet
|
||||
R-spatstat.sparse
|
||||
R-spatstat.utils
|
||||
R-spc
|
||||
@@ -883,14 +924,17 @@ R-tclust
|
||||
R-tensor
|
||||
R-tensorA
|
||||
R-tensorflow
|
||||
R-terra
|
||||
R-testit
|
||||
R-testthat
|
||||
R-texreg
|
||||
R-textshaping
|
||||
R-tfruns
|
||||
R-themis
|
||||
R-threejs
|
||||
R-tibble
|
||||
R-tidyr
|
||||
R-tidyrules
|
||||
R-tidyselect
|
||||
R-tidyverse
|
||||
R-tikzDevice
|
||||
@@ -905,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
|
||||
@@ -919,18 +966,22 @@ 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
|
||||
R-webmockr
|
||||
R-webshot
|
||||
R-webutils
|
||||
@@ -939,6 +990,7 @@ R-whoami
|
||||
R-wikitaxa
|
||||
R-winch
|
||||
R-withr
|
||||
R-wk
|
||||
R-worrms
|
||||
R-xfun
|
||||
R-xml2
|
||||
@@ -954,6 +1006,7 @@ R-zoo
|
||||
RawTherapee
|
||||
Remmina
|
||||
Routes
|
||||
Rtree
|
||||
SDL
|
||||
SDL2
|
||||
SDL2_gfx
|
||||
@@ -1032,9 +1085,11 @@ alsa-tools
|
||||
alsa-ucm-conf
|
||||
alsa-utils
|
||||
amazon-efs-utils
|
||||
amazon-ssm-agent
|
||||
amtk
|
||||
analitza
|
||||
ansible
|
||||
ansible-core
|
||||
antlr4-python3-runtime
|
||||
anyio
|
||||
apache-ant
|
||||
@@ -1055,6 +1110,7 @@ ark
|
||||
armadillo
|
||||
arp-scan
|
||||
arpack-ng
|
||||
arrow
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
@@ -1108,6 +1164,7 @@ azure-iot-sdk
|
||||
babeltrace
|
||||
babl
|
||||
backcall
|
||||
backports.entry_points_selectable
|
||||
backports.ssl_match_hostname
|
||||
backports.weakref
|
||||
baloo
|
||||
@@ -1126,7 +1183,9 @@ bcftools
|
||||
bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
beniget
|
||||
bijiben
|
||||
binaryornot
|
||||
bind-utils
|
||||
binutils
|
||||
binwalk
|
||||
@@ -1156,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
|
||||
@@ -1216,10 +1275,12 @@ ceph-deploy
|
||||
certbot
|
||||
certifi
|
||||
cffi
|
||||
cfgv
|
||||
cfitsio
|
||||
cgdb
|
||||
cgit
|
||||
chardet
|
||||
charset-normalizer
|
||||
check
|
||||
check-manifest
|
||||
cheese
|
||||
@@ -1298,17 +1359,22 @@ compat-cairomm-soname10
|
||||
compat-curl-gnutls-soname4
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gcc-10
|
||||
compat-glibmm-soname24
|
||||
compat-gtksourceview-soname3
|
||||
compat-libhandy-0.0
|
||||
compat-libffi-soname6
|
||||
compat-libpng-soname12
|
||||
compat-libsigc++-soname20
|
||||
compat-libsoup-soname-24
|
||||
compat-libva-soname1
|
||||
compat-lua-52
|
||||
compat-lua-53
|
||||
compat-nettle-soname7
|
||||
compat-pangomm-soname14
|
||||
compat-re2-soname7
|
||||
compat-readline-soname5
|
||||
compat-tracker-soname2.0
|
||||
compat-webkitgtk-soname40
|
||||
complete
|
||||
component
|
||||
compute-image-packages
|
||||
conda
|
||||
@@ -1317,10 +1383,12 @@ confuse
|
||||
conky
|
||||
conmon
|
||||
connect-proxy
|
||||
connections
|
||||
conntrack-tools
|
||||
console-autostart
|
||||
containerd
|
||||
contextlib2
|
||||
cookiecutter
|
||||
cookies
|
||||
coreutils
|
||||
corosync
|
||||
@@ -1372,6 +1440,8 @@ dconf
|
||||
dconf-editor
|
||||
ddd
|
||||
deap
|
||||
debugedit
|
||||
debugpy
|
||||
decorator
|
||||
defusedxml
|
||||
dejagnu
|
||||
@@ -1392,13 +1462,13 @@ dill
|
||||
ding-libs
|
||||
dino
|
||||
direwolf
|
||||
diskcache
|
||||
dist-pam-configs
|
||||
distlib
|
||||
distributed
|
||||
distro
|
||||
dj-database-url
|
||||
django-appconf
|
||||
django-babel
|
||||
django-discover-runner
|
||||
django-nose
|
||||
django-pyscss
|
||||
@@ -1420,6 +1490,7 @@ docbook-utils
|
||||
docbook-xml
|
||||
docbook2X
|
||||
docker
|
||||
docker-cli
|
||||
docker-compose
|
||||
docker-py
|
||||
docker-pycreds
|
||||
@@ -1460,8 +1531,10 @@ efl
|
||||
eid-mw
|
||||
eigen
|
||||
elementary-xfce
|
||||
elementpath
|
||||
elfutils
|
||||
elisa
|
||||
elixir
|
||||
ell
|
||||
emacs
|
||||
emacs-x11
|
||||
@@ -1517,6 +1590,7 @@ firecracker
|
||||
firefox
|
||||
firewalld
|
||||
fish
|
||||
fissix
|
||||
fixtures
|
||||
flac
|
||||
flake8
|
||||
@@ -1555,6 +1629,7 @@ fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
fsearch
|
||||
fsspec
|
||||
funcparserlib
|
||||
funcsigs
|
||||
fuse
|
||||
@@ -1721,24 +1796,32 @@ 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
|
||||
gst-plugins-ugly
|
||||
gst-python
|
||||
gstreamer
|
||||
gstreamer-vaapi
|
||||
gsutil
|
||||
gtk+
|
||||
gtk-doc
|
||||
gtk-frdp
|
||||
gtk-vnc
|
||||
gtk-xfce-engine
|
||||
gtk3
|
||||
gtk4
|
||||
gtkmm2
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
@@ -1767,6 +1850,7 @@ help2man
|
||||
hexchat
|
||||
hexedit
|
||||
hicolor-icon-theme
|
||||
hiredis-c
|
||||
home-assistant
|
||||
home-assistant-frontend
|
||||
horovod
|
||||
@@ -1809,6 +1893,7 @@ iceauth
|
||||
icecream
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
identify
|
||||
idle-python3.7-assets
|
||||
idna
|
||||
idna-ssl
|
||||
@@ -1822,7 +1907,9 @@ imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
importlib_metadata
|
||||
importlib_resources
|
||||
indent
|
||||
inflection
|
||||
influxdb
|
||||
iniconfig
|
||||
inih
|
||||
@@ -1831,9 +1918,7 @@ init-rdahead
|
||||
inkscape
|
||||
innoextract
|
||||
inotify-tools
|
||||
intel-compute-runtime
|
||||
intel-gmmlib
|
||||
intel-graphics-compiler
|
||||
intel-hybrid-driver
|
||||
intel-ipsec-mb
|
||||
intel-media-driver
|
||||
@@ -1852,6 +1937,7 @@ ipe
|
||||
iperf
|
||||
ipmctl
|
||||
ipmitool
|
||||
ipp-crypto
|
||||
iproute2
|
||||
ipset
|
||||
iptables
|
||||
@@ -1894,13 +1980,14 @@ jedi
|
||||
jeepney
|
||||
jellyfish
|
||||
jemalloc
|
||||
jinja2-time
|
||||
jmespath
|
||||
joblib
|
||||
joe
|
||||
josepy
|
||||
jpegoptim
|
||||
jq
|
||||
jsmin
|
||||
js8call
|
||||
json-c
|
||||
json-glib
|
||||
json5
|
||||
@@ -2109,6 +2196,7 @@ krusader
|
||||
kscreen
|
||||
kscreenlocker
|
||||
kservice
|
||||
ksh
|
||||
kshisen
|
||||
ksirk
|
||||
ksmtp
|
||||
@@ -2120,6 +2208,7 @@ kstars
|
||||
ksudoku
|
||||
ksysguard
|
||||
ksystemlog
|
||||
ksystemstats
|
||||
kteatime
|
||||
ktexteditor
|
||||
ktextwidgets
|
||||
@@ -2149,6 +2238,7 @@ ladspa_sdk
|
||||
lark-parser
|
||||
latencytop
|
||||
latte-dock
|
||||
layer-shell-qt
|
||||
lazy-object-proxy
|
||||
lcms2
|
||||
lcov
|
||||
@@ -2182,6 +2272,7 @@ libXvMC
|
||||
libXxf86dga
|
||||
libabigail
|
||||
libabw
|
||||
libadwaita
|
||||
libaio
|
||||
libappindicator
|
||||
libarchive
|
||||
@@ -2190,6 +2281,7 @@ libass
|
||||
libassuan
|
||||
libatasmart
|
||||
libatomic_ops
|
||||
libavif
|
||||
libavtp
|
||||
libb64
|
||||
libblockdev
|
||||
@@ -2212,6 +2304,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libcst
|
||||
libcxx
|
||||
libdaemon
|
||||
libdatrie
|
||||
@@ -2251,7 +2344,6 @@ libgee
|
||||
libgeotiff
|
||||
libgit2
|
||||
libgit2-glib
|
||||
libglade
|
||||
libgnome-keyring
|
||||
libgnomekbd
|
||||
libgpg-error
|
||||
@@ -2324,6 +2416,7 @@ libnice
|
||||
libnl
|
||||
libnma
|
||||
libnotify
|
||||
libnsl
|
||||
libnumbertext
|
||||
liboauth
|
||||
libodfgen
|
||||
@@ -2346,6 +2439,7 @@ libpwquality
|
||||
libqalculate
|
||||
libqb
|
||||
libqmi
|
||||
libqrtr-glib
|
||||
libqtxdg
|
||||
libqxp
|
||||
libratbag
|
||||
@@ -2379,6 +2473,7 @@ libssh
|
||||
libssh2
|
||||
libstaroffice
|
||||
libstatgrab
|
||||
libstemmer_c
|
||||
libstoragemgmt
|
||||
libsysstat
|
||||
libtasn1
|
||||
@@ -2388,11 +2483,15 @@ libtheora
|
||||
libtirpc
|
||||
libtool
|
||||
libtorrent-rasterbar
|
||||
libtraceevent
|
||||
libtracefs
|
||||
libudev0-shim
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
liburing
|
||||
libusb
|
||||
libusb-compat
|
||||
libuser
|
||||
libuv
|
||||
libva
|
||||
@@ -2447,6 +2546,7 @@ linux-libc-headers
|
||||
linux-lts2017
|
||||
linux-lts2018
|
||||
linux-lts2019
|
||||
linux-lts2020
|
||||
linux-mainline
|
||||
linux-oracle
|
||||
linux-preempt-rt
|
||||
@@ -2456,6 +2556,7 @@ lksctp-tools
|
||||
lldb
|
||||
llfuse
|
||||
llvm
|
||||
llvm10
|
||||
llvm8
|
||||
llvm9
|
||||
lm-sensors
|
||||
@@ -2477,7 +2578,6 @@ lttng-tools
|
||||
lttng-ust
|
||||
lua
|
||||
lua-nginx-module
|
||||
lua52
|
||||
lualgi
|
||||
luarocks
|
||||
lutris
|
||||
@@ -2515,6 +2615,7 @@ man-pages-posix
|
||||
marble
|
||||
mariadb
|
||||
matplotlib
|
||||
matplotlib-inline
|
||||
mc
|
||||
mccabe
|
||||
mcelog
|
||||
@@ -2573,13 +2674,14 @@ mokutil
|
||||
mono
|
||||
monotonic
|
||||
more-itertools
|
||||
moreorless
|
||||
moreutils
|
||||
mosh
|
||||
mosquitto
|
||||
motd-update
|
||||
motif
|
||||
mozjs68
|
||||
mozjs78
|
||||
mozjs91
|
||||
mpc
|
||||
mpfr
|
||||
mpg123
|
||||
@@ -2667,6 +2769,7 @@ nltk
|
||||
nmap
|
||||
nocasedict
|
||||
nocaselist
|
||||
nodeenv
|
||||
nodejs
|
||||
nose
|
||||
nose-parameterized
|
||||
@@ -2954,7 +3057,6 @@ perl-DBIx-ContextualFetch
|
||||
perl-DBIx-DBSchema
|
||||
perl-DBIx-Simple
|
||||
perl-DB_File
|
||||
perl-Data-Alias
|
||||
perl-Data-Compare
|
||||
perl-Data-Denter
|
||||
perl-Data-Dump
|
||||
@@ -3202,6 +3304,7 @@ perl-List-MoreUtils
|
||||
perl-List-MoreUtils-XS
|
||||
perl-List-SomeUtils
|
||||
perl-List-SomeUtils-XS
|
||||
perl-List-Util
|
||||
perl-List-UtilsBy
|
||||
perl-Locale-Maketext-Gettext
|
||||
perl-Locale-Maketext-Lexicon
|
||||
@@ -3361,6 +3464,7 @@ perl-Pod-Constants
|
||||
perl-Pod-Coverage
|
||||
perl-Pod-LaTeX
|
||||
perl-Pod-POM
|
||||
perl-Pod-Parser
|
||||
perl-Pod-Plainer
|
||||
perl-Pod-Spell
|
||||
perl-Pod-Strip
|
||||
@@ -3390,6 +3494,7 @@ perl-SQL-SplitStatement
|
||||
perl-SQL-Tokenizer
|
||||
perl-SQL-Translator
|
||||
perl-SUPER
|
||||
perl-Safe-Isa
|
||||
perl-Scalar-String
|
||||
perl-Scope-Guard
|
||||
perl-Scope-Upper
|
||||
@@ -3412,6 +3517,7 @@ perl-Statistics-CaseResampling
|
||||
perl-Storable
|
||||
perl-Stream-Buffered
|
||||
perl-String-Approx
|
||||
perl-String-CRC32
|
||||
perl-String-CamelCase
|
||||
perl-String-Escape
|
||||
perl-String-Expand
|
||||
@@ -3469,6 +3575,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
|
||||
@@ -3622,7 +3729,6 @@ perl-prefork
|
||||
perl-strictures
|
||||
persistent
|
||||
pesign
|
||||
petastorm
|
||||
pexpect
|
||||
phonon
|
||||
phonon-vlc
|
||||
@@ -3719,10 +3825,12 @@ plasma-framework
|
||||
plasma-integration
|
||||
plasma-nm
|
||||
plasma-pa
|
||||
plasma-systemmonitor
|
||||
plasma-vault
|
||||
plasma-wayland-protocols
|
||||
plasma-workspace
|
||||
plasma-workspace-wallpapers
|
||||
platformdirs
|
||||
plotly
|
||||
pluggy
|
||||
ply
|
||||
@@ -3732,6 +3840,7 @@ pmdk
|
||||
pmix
|
||||
pngcrush
|
||||
po4a
|
||||
podman
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
polkit-qt
|
||||
@@ -3747,13 +3856,17 @@ postgis
|
||||
postgresql
|
||||
postgresql11
|
||||
postgresql12
|
||||
postgresql13
|
||||
postgresql14
|
||||
potrace
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
powerstat
|
||||
powertop
|
||||
poxml
|
||||
poyo
|
||||
ppp
|
||||
pre_commit
|
||||
pretend
|
||||
prettytable
|
||||
print-manager
|
||||
@@ -3761,6 +3874,7 @@ prison
|
||||
processor-trace
|
||||
procmail
|
||||
procps-ng
|
||||
progress
|
||||
progressbar
|
||||
proj
|
||||
prometheus_client
|
||||
@@ -3819,6 +3933,13 @@ pyquery
|
||||
pyreadline
|
||||
pyroma
|
||||
pyroute2
|
||||
pyroute2.core
|
||||
pyroute2.ethtool
|
||||
pyroute2.ipdb
|
||||
pyroute2.ipset
|
||||
pyroute2.ndb
|
||||
pyroute2.nftables
|
||||
pyroute2.nslink
|
||||
pyrsistent
|
||||
pyserial
|
||||
pyside2-setup
|
||||
@@ -3828,6 +3949,7 @@ pytest-asyncio
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-localserver
|
||||
pytest-mock
|
||||
pytest-randomly
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
@@ -3841,6 +3963,7 @@ python-Levenshtein
|
||||
python-augeas
|
||||
python-crfsuite
|
||||
python-dateutil
|
||||
python-dbusmock
|
||||
python-digitalocean
|
||||
python-distutils-extra
|
||||
python-dotenv
|
||||
@@ -3851,6 +3974,9 @@ python-hwinfo
|
||||
python-jsonrpc-server
|
||||
python-kconfiglib
|
||||
python-language-server
|
||||
python-lsp-black
|
||||
python-lsp-jsonrpc
|
||||
python-lsp-server
|
||||
python-magic
|
||||
python-memcached
|
||||
python-mimeparse
|
||||
@@ -3860,6 +3986,8 @@ python-openzwave
|
||||
python-pkgconfig
|
||||
python-pocketlint
|
||||
python-polib
|
||||
python-remoto
|
||||
python-rpm-packaging
|
||||
python-slip
|
||||
python-slugify
|
||||
python-subunit
|
||||
@@ -3871,6 +3999,7 @@ python-zeep
|
||||
python-zstandard
|
||||
python3
|
||||
python37
|
||||
pythran
|
||||
pytorch
|
||||
pytz
|
||||
pyu2f
|
||||
@@ -3894,6 +4023,7 @@ qqc2-desktop-style
|
||||
qrencode
|
||||
qscintilla
|
||||
qsstv
|
||||
qstylizer
|
||||
qt-creator
|
||||
qt3d
|
||||
qt5ct
|
||||
@@ -3963,12 +4093,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
|
||||
@@ -3990,7 +4122,10 @@ rocs
|
||||
rofi
|
||||
rope
|
||||
rpcbind
|
||||
rpcsvc-proto
|
||||
rpm
|
||||
rpm-py-installer
|
||||
rpmfile
|
||||
rr
|
||||
rrdtool
|
||||
rsa
|
||||
@@ -4032,9 +4167,11 @@ sddm
|
||||
sddm-kcm
|
||||
seaborn
|
||||
seahorse
|
||||
seatd
|
||||
secretstorage
|
||||
sed
|
||||
selenium
|
||||
semantic_version
|
||||
seqdiag
|
||||
serf
|
||||
serpent
|
||||
@@ -4042,6 +4179,7 @@ setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
setuptools-legacy
|
||||
setuptools-rust
|
||||
setuptools_scm
|
||||
setuptools_scm_git_archive
|
||||
setxkbmap
|
||||
@@ -4157,6 +4295,7 @@ sysdig
|
||||
syslinux
|
||||
sysprof
|
||||
sysstat
|
||||
system-config-printer
|
||||
systemd
|
||||
systemd-bootchart
|
||||
systemsettings
|
||||
@@ -4174,6 +4313,7 @@ tdb
|
||||
telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-qt
|
||||
templated-dictionary
|
||||
tempora
|
||||
tensorboard
|
||||
tensorflow
|
||||
@@ -4220,12 +4360,15 @@ tigervnc
|
||||
tilix
|
||||
time
|
||||
tini
|
||||
tinycss2
|
||||
tiptop
|
||||
tk
|
||||
tldextract
|
||||
tmux
|
||||
tokyocabinet
|
||||
toml
|
||||
tomli
|
||||
tomlkit
|
||||
toolz
|
||||
tornado
|
||||
totem
|
||||
@@ -4243,14 +4386,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
|
||||
@@ -4294,11 +4440,13 @@ vim-fugitive
|
||||
vim-gnupg
|
||||
vim-go
|
||||
vinagre
|
||||
virglrenderer
|
||||
virt-manager
|
||||
virt-viewer
|
||||
virtualenv
|
||||
vkd3d
|
||||
vlc
|
||||
volatile
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
@@ -4310,6 +4458,7 @@ vsts-cd-manager
|
||||
vte
|
||||
waffle
|
||||
waitress
|
||||
watchdog
|
||||
wavpack
|
||||
wayland
|
||||
wayland-protocols
|
||||
@@ -4399,6 +4548,8 @@ xkill
|
||||
xl2tpd
|
||||
xlog
|
||||
xmlb
|
||||
xmldiff
|
||||
xmlschema
|
||||
xmlsec1
|
||||
xmlstarlet
|
||||
xmlto
|
||||
@@ -4422,6 +4573,7 @@ xss-lock
|
||||
xterm
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwayland
|
||||
xwd
|
||||
xwdrun
|
||||
xwininfo
|
||||
@@ -4441,6 +4593,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