mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4402706e5b | |||
| 046035907a | |||
| 43a3640492 | |||
| 30efe3f2e6 | |||
| 41bc67d5c3 | |||
| 791e62166b | |||
| 184466de12 | |||
| f62255e8c3 | |||
| 2d1a67d3b0 | |||
| 65c7cc8db6 | |||
| 5c7f52dc15 | |||
| 6d165ea0dd | |||
| 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 |
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -31,11 +31,13 @@ $(proj_PKGS):
|
||||
@proj=$(patsubst proj_%,%,$@); \
|
||||
[ -d projects/$$proj ] || ( \
|
||||
echo "Checking out: projects/$$proj"; \
|
||||
git clone $(PRJ_BASE_URL)/$$proj projects/$$proj; \
|
||||
cd projects/$$proj; \
|
||||
if [ "$$proj" = "autospec" ] ; then \
|
||||
git remote set-url --push origin git@github.com:clearlinux/autospec.git; \
|
||||
git clone https://github.com/clearlinux/autospec.git projects/autospec; \
|
||||
else \
|
||||
git clone $(PRJ_BASE_URL)/$$proj projects/$$proj; \
|
||||
fi; \
|
||||
cd projects/$$proj; \
|
||||
if [ "$$proj" != "autospec" ] ; then \
|
||||
$(call gitoliteurl,projects/$$proj); \
|
||||
fi; \
|
||||
$(call subjectprefix,$$proj); \
|
||||
@@ -76,9 +78,7 @@ ${PULL_PKGS}:
|
||||
fi ; \
|
||||
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit $$O..$$N; echo; \
|
||||
fi ; \
|
||||
if [ "$$p" = "projects/autospec" ] ; then \
|
||||
git remote set-url --push origin git@github.com:clearlinux/autospec.git; \
|
||||
else \
|
||||
if [ "$$p" != "projects/autospec" ] ; then \
|
||||
$(call gitoliteurl,$$p); \
|
||||
fi ; \
|
||||
else \
|
||||
|
||||
+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,10 +12,10 @@ CopyQ
|
||||
Cura
|
||||
CuraEngine
|
||||
Cython
|
||||
DML
|
||||
Django
|
||||
F-Engrave
|
||||
Flask
|
||||
FreeCAD
|
||||
FreeRDP
|
||||
GConf
|
||||
GitPython
|
||||
@@ -27,9 +27,6 @@ Imath
|
||||
JAGS
|
||||
Jinja2
|
||||
Judy
|
||||
Keras
|
||||
Keras_Applications
|
||||
Keras_Preprocessing
|
||||
LPCNet
|
||||
LS_COLORS
|
||||
LVM2
|
||||
@@ -154,6 +151,7 @@ R-NLP
|
||||
R-NMF
|
||||
R-NMOF
|
||||
R-PKI
|
||||
R-ParamHelpers
|
||||
R-PerformanceAnalytics
|
||||
R-R.cache
|
||||
R-R.methodsS3
|
||||
@@ -171,6 +169,7 @@ R-RJSONIO
|
||||
R-RNeXML
|
||||
R-RNetCDF
|
||||
R-ROCR
|
||||
R-ROSE
|
||||
R-RProtoBuf
|
||||
R-RSQLite
|
||||
R-RSclient
|
||||
@@ -223,7 +222,9 @@ R-ade4
|
||||
R-adegenet
|
||||
R-adegraphics
|
||||
R-adephylo
|
||||
R-adespatial
|
||||
R-afex
|
||||
R-alabama
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
@@ -236,6 +237,9 @@ R-askpass
|
||||
R-assertthat
|
||||
R-backports
|
||||
R-base64enc
|
||||
R-base64url
|
||||
R-basefun
|
||||
R-batchtools
|
||||
R-bayesm
|
||||
R-bayesplot
|
||||
R-bazar
|
||||
@@ -299,6 +303,7 @@ R-combinat
|
||||
R-commonmark
|
||||
R-compositions
|
||||
R-conditionz
|
||||
R-coneproj
|
||||
R-config
|
||||
R-conflicted
|
||||
R-conquer
|
||||
@@ -341,6 +346,7 @@ R-dimRed
|
||||
R-diptest
|
||||
R-distr
|
||||
R-distrEx
|
||||
R-distributional
|
||||
R-dlm
|
||||
R-doMC
|
||||
R-doMPI
|
||||
@@ -421,8 +427,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 +446,7 @@ R-furrr
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
R-future.apply
|
||||
R-g.data
|
||||
R-gam
|
||||
R-gamm4
|
||||
@@ -455,9 +464,11 @@ R-geojson
|
||||
R-geometry
|
||||
R-gert
|
||||
R-getopt
|
||||
R-ggfortify
|
||||
R-ggjoy
|
||||
R-ggplot2
|
||||
R-ggplot2movies
|
||||
R-ggrepel
|
||||
R-ggridges
|
||||
R-ggvis
|
||||
R-gh
|
||||
@@ -560,6 +571,7 @@ R-lme4
|
||||
R-lmerTest
|
||||
R-lmom
|
||||
R-lmtest
|
||||
R-lobstr
|
||||
R-locfit
|
||||
R-logcondens
|
||||
R-logger
|
||||
@@ -607,6 +619,8 @@ R-mitools
|
||||
R-mixtools
|
||||
R-mlbench
|
||||
R-mlmRev
|
||||
R-mlr
|
||||
R-mlt
|
||||
R-mnormt
|
||||
R-mockery
|
||||
R-mockr
|
||||
@@ -630,6 +644,7 @@ R-mvtnorm
|
||||
R-natserv
|
||||
R-ncbit
|
||||
R-ncdf4
|
||||
R-neighbr
|
||||
R-network
|
||||
R-neuralnet
|
||||
R-nleqslv
|
||||
@@ -646,16 +661,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
|
||||
@@ -667,6 +685,7 @@ R-pdfCluster
|
||||
R-pdftools
|
||||
R-pdp
|
||||
R-permute
|
||||
R-perry
|
||||
R-phangorn
|
||||
R-pheatmap
|
||||
R-phylobase
|
||||
@@ -696,6 +715,7 @@ R-polyCub
|
||||
R-polyclip
|
||||
R-polycor
|
||||
R-polynom
|
||||
R-posterior
|
||||
R-prabclus
|
||||
R-pracma
|
||||
R-praise
|
||||
@@ -709,6 +729,7 @@ R-profdpm
|
||||
R-profileModel
|
||||
R-profmem
|
||||
R-progress
|
||||
R-progressr
|
||||
R-projpred
|
||||
R-promises
|
||||
R-proto
|
||||
@@ -785,6 +806,7 @@ R-rjson
|
||||
R-rjstat
|
||||
R-rlang
|
||||
R-rle
|
||||
R-rlecuyer
|
||||
R-rmarkdown
|
||||
R-rmatio
|
||||
R-rms
|
||||
@@ -795,6 +817,7 @@ R-rngWELL
|
||||
R-rngtools
|
||||
R-robCompositions
|
||||
R-robust
|
||||
R-robustHD
|
||||
R-robustbase
|
||||
R-rootSolve
|
||||
R-rotl
|
||||
@@ -906,7 +929,9 @@ R-testit
|
||||
R-testthat
|
||||
R-texreg
|
||||
R-textshaping
|
||||
R-tfautograph
|
||||
R-tfruns
|
||||
R-themis
|
||||
R-threejs
|
||||
R-tibble
|
||||
R-tidyr
|
||||
@@ -925,11 +950,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
|
||||
@@ -939,16 +967,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
|
||||
@@ -1035,9 +1066,11 @@ acrn-hypervisor
|
||||
adal
|
||||
ade
|
||||
adwaita-icon-theme
|
||||
aesara
|
||||
aiodns
|
||||
aiohttp
|
||||
aiohttp-cors
|
||||
aiosignal
|
||||
akonadi
|
||||
akonadi-calendar
|
||||
akonadi-calendar-tools
|
||||
@@ -1059,6 +1092,7 @@ amazon-ssm-agent
|
||||
amtk
|
||||
analitza
|
||||
ansible
|
||||
ansible-core
|
||||
antlr4-python3-runtime
|
||||
anyio
|
||||
apache-ant
|
||||
@@ -1100,6 +1134,7 @@ asunder
|
||||
asv
|
||||
async-timeout
|
||||
async_generator
|
||||
asynctest
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
@@ -1129,7 +1164,6 @@ awesomeversion
|
||||
awscli
|
||||
axel
|
||||
azure-configs
|
||||
azure-iot-sdk
|
||||
babeltrace
|
||||
babl
|
||||
backcall
|
||||
@@ -1184,19 +1218,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
|
||||
@@ -1249,6 +1283,7 @@ cfitsio
|
||||
cgdb
|
||||
cgit
|
||||
chardet
|
||||
charset-normalizer
|
||||
check
|
||||
check-manifest
|
||||
cheese
|
||||
@@ -1278,6 +1313,7 @@ clr-bundle-screenshots
|
||||
clr-bundles
|
||||
clr-debug-info
|
||||
clr-desktop-defaults
|
||||
clr-elf-replace
|
||||
clr-find-bundle
|
||||
clr-fwupd-hooks
|
||||
clr-hardware-files
|
||||
@@ -1323,26 +1359,28 @@ columbiad
|
||||
commonmark
|
||||
compat-atkmm-soname16
|
||||
compat-boost-soname1.73.0
|
||||
compat-boost-soname1.74.0
|
||||
compat-cairomm-soname10
|
||||
compat-curl-gnutls-soname4
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gcc-10
|
||||
compat-glibmm-soname24
|
||||
compat-goocanvas-soname2
|
||||
compat-gtksourceview-soname3
|
||||
compat-libffi-soname6
|
||||
compat-libpng-soname12
|
||||
compat-libsigc++-soname20
|
||||
compat-libsoup-soname-24
|
||||
compat-libva-soname1
|
||||
compat-libvpx-soname6
|
||||
compat-lua-52
|
||||
compat-lua-53
|
||||
compat-mlt-soname6
|
||||
compat-nettle-soname7
|
||||
compat-openexr-soname25
|
||||
compat-pangomm-soname14
|
||||
compat-protobuf-soname23
|
||||
compat-readline-soname5
|
||||
compat-tracker-soname2.0
|
||||
compat-webkitgtk-soname40
|
||||
complete
|
||||
component
|
||||
compute-image-packages
|
||||
@@ -1352,6 +1390,7 @@ confuse
|
||||
conky
|
||||
conmon
|
||||
connect-proxy
|
||||
connections
|
||||
conntrack-tools
|
||||
console-autostart
|
||||
containerd
|
||||
@@ -1366,6 +1405,7 @@ coverage
|
||||
cpio
|
||||
cppcheck
|
||||
cppunit
|
||||
cppy
|
||||
cpuid
|
||||
cpuloadgen
|
||||
cracklib
|
||||
@@ -1444,7 +1484,6 @@ django_compressor
|
||||
dkms
|
||||
dlm
|
||||
dlt-daemon
|
||||
dm-tree
|
||||
dmap2gcode
|
||||
dmenu
|
||||
dmidecode
|
||||
@@ -1499,6 +1538,7 @@ efl
|
||||
eid-mw
|
||||
eigen
|
||||
elementary-xfce
|
||||
elementpath
|
||||
elfutils
|
||||
elisa
|
||||
elixir
|
||||
@@ -1557,6 +1597,7 @@ firecracker
|
||||
firefox
|
||||
firewalld
|
||||
fish
|
||||
fissix
|
||||
fixtures
|
||||
flac
|
||||
flake8
|
||||
@@ -1571,6 +1612,7 @@ flatpak-builder
|
||||
flatten_json
|
||||
fldigi
|
||||
flex
|
||||
flit_core
|
||||
fllog
|
||||
flmsg
|
||||
flnet
|
||||
@@ -1593,6 +1635,7 @@ freetype
|
||||
freezegun
|
||||
fribidi
|
||||
fritzing-app
|
||||
frozenlist
|
||||
fs
|
||||
fsearch
|
||||
fsspec
|
||||
@@ -1639,6 +1682,7 @@ gexiv2
|
||||
gfbgraph
|
||||
gflags
|
||||
gftp
|
||||
gh
|
||||
ghc
|
||||
ghostscript
|
||||
giflib
|
||||
@@ -1668,7 +1712,6 @@ glusterfs
|
||||
gmic
|
||||
gmime
|
||||
gmp
|
||||
gmpy2
|
||||
gmqtt
|
||||
gmsh
|
||||
gnome-applets
|
||||
@@ -1772,6 +1815,7 @@ gsl
|
||||
gsm
|
||||
gsound
|
||||
gspell
|
||||
gssapi
|
||||
gst-plugins-bad
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
@@ -1782,6 +1826,7 @@ gstreamer-vaapi
|
||||
gsutil
|
||||
gtk+
|
||||
gtk-doc
|
||||
gtk-frdp
|
||||
gtk-vnc
|
||||
gtk-xfce-engine
|
||||
gtk3
|
||||
@@ -1814,9 +1859,9 @@ help2man
|
||||
hexchat
|
||||
hexedit
|
||||
hicolor-icon-theme
|
||||
hiredis-c
|
||||
home-assistant
|
||||
home-assistant-frontend
|
||||
horovod
|
||||
hostname
|
||||
hpack
|
||||
hplip
|
||||
@@ -1870,7 +1915,9 @@ imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
importlib_metadata
|
||||
importlib_resources
|
||||
indent
|
||||
inflection
|
||||
influxdb
|
||||
iniconfig
|
||||
inih
|
||||
@@ -1949,7 +1996,6 @@ josepy
|
||||
jpegoptim
|
||||
jq
|
||||
js8call
|
||||
jsmin
|
||||
json-c
|
||||
json-glib
|
||||
json5
|
||||
@@ -1974,6 +2020,7 @@ jupyterlab_launcher
|
||||
jupyterlab_pygments
|
||||
jupyterlab_server
|
||||
jupyterlab_widgets
|
||||
kaccounts-integration
|
||||
kactivities
|
||||
kactivities-stats
|
||||
kactivitymanagerd
|
||||
@@ -2158,6 +2205,7 @@ krusader
|
||||
kscreen
|
||||
kscreenlocker
|
||||
kservice
|
||||
ksh
|
||||
kshisen
|
||||
ksirk
|
||||
ksmtp
|
||||
@@ -2233,6 +2281,8 @@ libXvMC
|
||||
libXxf86dga
|
||||
libabigail
|
||||
libabw
|
||||
libaccounts-glib
|
||||
libaccounts-qt
|
||||
libadwaita
|
||||
libaio
|
||||
libappindicator
|
||||
@@ -2242,6 +2292,7 @@ libass
|
||||
libassuan
|
||||
libatasmart
|
||||
libatomic_ops
|
||||
libavif
|
||||
libavtp
|
||||
libb64
|
||||
libblockdev
|
||||
@@ -2304,7 +2355,6 @@ libgee
|
||||
libgeotiff
|
||||
libgit2
|
||||
libgit2-glib
|
||||
libglade
|
||||
libgnome-keyring
|
||||
libgnomekbd
|
||||
libgpg-error
|
||||
@@ -2450,6 +2500,7 @@ libudev0-shim
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
liburing
|
||||
libusb
|
||||
libusb-compat
|
||||
libuser
|
||||
@@ -2473,6 +2524,7 @@ libwnck3
|
||||
libwpd
|
||||
libwpg
|
||||
libwps
|
||||
libxcvt
|
||||
libxdg-basedir
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
@@ -2506,6 +2558,7 @@ linux-libc-headers
|
||||
linux-lts2017
|
||||
linux-lts2018
|
||||
linux-lts2019
|
||||
linux-lts2020
|
||||
linux-mainline
|
||||
linux-oracle
|
||||
linux-preempt-rt
|
||||
@@ -2633,12 +2686,14 @@ mokutil
|
||||
mono
|
||||
monotonic
|
||||
more-itertools
|
||||
moreorless
|
||||
moreutils
|
||||
mosh
|
||||
mosquitto
|
||||
motd-update
|
||||
motif
|
||||
mozjs78
|
||||
mozjs91
|
||||
mpc
|
||||
mpfr
|
||||
mpg123
|
||||
@@ -2722,7 +2777,6 @@ nim
|
||||
ninja
|
||||
nload
|
||||
nlopt
|
||||
nltk
|
||||
nmap
|
||||
nocasedict
|
||||
nocaselist
|
||||
@@ -3474,6 +3528,7 @@ perl-Statistics-CaseResampling
|
||||
perl-Storable
|
||||
perl-Stream-Buffered
|
||||
perl-String-Approx
|
||||
perl-String-CRC32
|
||||
perl-String-CamelCase
|
||||
perl-String-Escape
|
||||
perl-String-Expand
|
||||
@@ -3716,6 +3771,7 @@ php-gnupg
|
||||
php-hprose
|
||||
php-hrtime
|
||||
php-igbinary
|
||||
php-imagick
|
||||
php-inotify
|
||||
php-jsmin
|
||||
php-json_post
|
||||
@@ -3785,6 +3841,7 @@ plasma-vault
|
||||
plasma-wayland-protocols
|
||||
plasma-workspace
|
||||
plasma-workspace-wallpapers
|
||||
platformdirs
|
||||
plotly
|
||||
pluggy
|
||||
ply
|
||||
@@ -3794,6 +3851,8 @@ pmdk
|
||||
pmix
|
||||
pngcrush
|
||||
po4a
|
||||
podman
|
||||
poetry-core
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
polkit-qt
|
||||
@@ -3809,6 +3868,8 @@ postgis
|
||||
postgresql
|
||||
postgresql11
|
||||
postgresql12
|
||||
postgresql13
|
||||
postgresql14
|
||||
potrace
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
@@ -3872,7 +3933,6 @@ pygobject
|
||||
pyhs100
|
||||
pylint
|
||||
pyls-black
|
||||
pyls-spyder
|
||||
pynvim
|
||||
pyotherside
|
||||
pyotp
|
||||
@@ -3900,6 +3960,7 @@ pytest-asyncio
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-localserver
|
||||
pytest-mock
|
||||
pytest-randomly
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
@@ -3911,7 +3972,6 @@ pytest-xdist
|
||||
python
|
||||
python-Levenshtein
|
||||
python-augeas
|
||||
python-crfsuite
|
||||
python-dateutil
|
||||
python-dbusmock
|
||||
python-digitalocean
|
||||
@@ -3921,9 +3981,11 @@ python-future
|
||||
python-gflags
|
||||
python-graphviz
|
||||
python-hwinfo
|
||||
python-install
|
||||
python-jsonrpc-server
|
||||
python-kconfiglib
|
||||
python-language-server
|
||||
python-lsp-black
|
||||
python-lsp-jsonrpc
|
||||
python-lsp-server
|
||||
python-magic
|
||||
@@ -3935,13 +3997,17 @@ python-openzwave
|
||||
python-pkgconfig
|
||||
python-pocketlint
|
||||
python-polib
|
||||
python-remoto
|
||||
python-rpm-packaging
|
||||
python-slip
|
||||
python-slugify
|
||||
python-subunit
|
||||
python-systemd
|
||||
python-tabulate
|
||||
python-tzdata
|
||||
python-urwid
|
||||
python-utils
|
||||
python-xlib
|
||||
python-zeep
|
||||
python-zstandard
|
||||
python3
|
||||
@@ -3949,6 +4015,7 @@ python37
|
||||
pythran
|
||||
pytorch
|
||||
pytz
|
||||
pytz-deprecation-shim
|
||||
pyu2f
|
||||
pyudev
|
||||
pyusb
|
||||
@@ -3970,9 +4037,11 @@ qqc2-desktop-style
|
||||
qrencode
|
||||
qscintilla
|
||||
qsstv
|
||||
qstylizer
|
||||
qt-creator
|
||||
qt3d
|
||||
qt5ct
|
||||
qt6base
|
||||
qtbase
|
||||
qtcanvas3d
|
||||
qtcharts
|
||||
@@ -4039,12 +4108,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
|
||||
@@ -4068,6 +4139,8 @@ rope
|
||||
rpcbind
|
||||
rpcsvc-proto
|
||||
rpm
|
||||
rpm-py-installer
|
||||
rpmfile
|
||||
rr
|
||||
rrdtool
|
||||
rsa
|
||||
@@ -4132,6 +4205,7 @@ shared-mime-info
|
||||
sharutils
|
||||
shim
|
||||
siege
|
||||
signond
|
||||
simg-tools
|
||||
simple-scan
|
||||
simplegeneric
|
||||
@@ -4183,8 +4257,6 @@ sphinxcontrib-websupport
|
||||
spice
|
||||
spice-gtk
|
||||
spice-protocol
|
||||
spyder-ide
|
||||
spyder-kernels
|
||||
spyrk
|
||||
sqlite-autoconf
|
||||
sqlparse
|
||||
@@ -4255,13 +4327,9 @@ tdb
|
||||
telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-qt
|
||||
templated-dictionary
|
||||
tempora
|
||||
tensorboard
|
||||
tensorflow
|
||||
tensorflow-addons
|
||||
tensorflow-estimator
|
||||
tensorflow-probability
|
||||
tensorflow-serving
|
||||
tenacity
|
||||
tepl
|
||||
termcolor
|
||||
terminado
|
||||
@@ -4308,6 +4376,7 @@ tldextract
|
||||
tmux
|
||||
tokyocabinet
|
||||
toml
|
||||
tomli
|
||||
tomlkit
|
||||
toolz
|
||||
tornado
|
||||
@@ -4326,6 +4395,7 @@ tracker-miners
|
||||
traefik
|
||||
traitlets
|
||||
tree
|
||||
tree-sitter
|
||||
twine
|
||||
typed_ast
|
||||
typeguard
|
||||
@@ -4348,7 +4418,6 @@ unicodedata2
|
||||
unifdef
|
||||
unison
|
||||
unit
|
||||
unittest2
|
||||
unixODBC
|
||||
unzip
|
||||
upower
|
||||
@@ -4367,7 +4436,6 @@ usrbinpython
|
||||
usrbinvi
|
||||
utf8cpp
|
||||
util-linux
|
||||
util-linux-man
|
||||
util-macros
|
||||
uwsgi
|
||||
v4l-utils
|
||||
@@ -4380,11 +4448,13 @@ vim-fugitive
|
||||
vim-gnupg
|
||||
vim-go
|
||||
vinagre
|
||||
virglrenderer
|
||||
virt-manager
|
||||
virt-viewer
|
||||
virtualenv
|
||||
vkd3d
|
||||
vlc
|
||||
volatile
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
@@ -4396,6 +4466,7 @@ vsts-cd-manager
|
||||
vte
|
||||
waffle
|
||||
waitress
|
||||
watchdog
|
||||
wavpack
|
||||
wayland
|
||||
wayland-protocols
|
||||
@@ -4485,6 +4556,8 @@ xkill
|
||||
xl2tpd
|
||||
xlog
|
||||
xmlb
|
||||
xmldiff
|
||||
xmlschema
|
||||
xmlsec1
|
||||
xmlstarlet
|
||||
xmlto
|
||||
@@ -4508,6 +4581,7 @@ xss-lock
|
||||
xterm
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwayland
|
||||
xwd
|
||||
xwdrun
|
||||
xwininfo
|
||||
@@ -4522,11 +4596,14 @@ yasm
|
||||
yelp
|
||||
yelp-tools
|
||||
yelp-xsl
|
||||
yq
|
||||
ytnef
|
||||
zabbix
|
||||
zathura
|
||||
zathura-pdf-poppler
|
||||
zc.lockfile
|
||||
zeek
|
||||
zeek-af_packet-plugin
|
||||
zenity
|
||||
zeroconf
|
||||
zeroconf-ioslave
|
||||
@@ -4553,3 +4630,4 @@ zope.testrunner
|
||||
zopfli
|
||||
zsh
|
||||
zstd
|
||||
zstd-bin
|
||||
|
||||
Reference in New Issue
Block a user