mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
67 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a5f1ccf07 | |||
| 5c3916cd20 | |||
| d3ba502fa7 | |||
| 3fb868c3a9 | |||
| 9c109bcd84 | |||
| 3f723df7db | |||
| e5d8879be6 | |||
| 51d154950f | |||
| c1db07181a | |||
| a3635036b3 | |||
| bcdaa56d6d | |||
| 1ff6b2708d | |||
| f2e52a194e | |||
| 261c6a8cfd | |||
| 3fd783daf9 | |||
| 09df0bd218 | |||
| 80513e6a77 | |||
| c727ce3e5e | |||
| 7b3623e199 | |||
| 2aed8ce561 | |||
| 908afb2637 | |||
| 13d61f38fc | |||
| 3a34726589 | |||
| f7747fad82 | |||
| f562dba8ac | |||
| a875acb1fe | |||
| 2de768ab6d | |||
| 6ce9826071 | |||
| d96968cc98 | |||
| 4b284ecb9b | |||
| 746d69c99b | |||
| 14f1e53183 | |||
| a734764581 | |||
| 0c9a4e6802 | |||
| c44e74f556 | |||
| 16e5086381 | |||
| ae3cbddb46 | |||
| 7b1ffd3045 | |||
| 75610ac5f7 | |||
| 8b98eabe53 | |||
| 8b7cfc2cf1 | |||
| ddb800af7e | |||
| c514292f56 | |||
| a1b55a619a | |||
| 0896766e26 | |||
| 68da68007d | |||
| 35cdf3d618 | |||
| c646187f11 | |||
| af28bdadf7 | |||
| 39c9a566a6 | |||
| b0ab451ae0 | |||
| ac1c648189 | |||
| 2939f3c5f8 | |||
| e361b3ab2f | |||
| 6081437611 | |||
| d6c8858c6e | |||
| 9d5c67d124 | |||
| 72406d0525 | |||
| 1368df937f | |||
| 4668b03fdd | |||
| d612ea1d6d | |||
| 36d49108a6 | |||
| cbfa62d79e | |||
| 312f6398a9 | |||
| ee431ed33f | |||
| 349d8c6645 | |||
| 1aecb3dcf5 |
+37
-5
@@ -20,7 +20,7 @@ LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||
DEBUGINFO_RPM = $(wildcard rpms/${PKG_NAME}-debuginfo-$(shell $(call queryspec,%{V}-%{R},${SPECFILE})).*.rpm)
|
||||
RPMS ?= $(LATEST_RPMS)
|
||||
|
||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||
WITH_SUDO = sudo
|
||||
|
||||
# MOCK_CONFIG_VAL is set in Makefile.shared
|
||||
MOCK_SMP_FLAGS=$(patsubst -j%, -D_smp_mflags\ -j%,$(filter -j%, $(MAKEFLAGS)))
|
||||
@@ -217,14 +217,24 @@ autospecnostate:
|
||||
scanlicense:
|
||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py -t . --config $(AUTOSPEC_CONF) --license-only $(firstword $(NEWURL) $(URL)) --name $(PKG_NAME)
|
||||
|
||||
#help bump: Increments the release file by one.
|
||||
#help bump: Increments the package release number by one and commits the result. If
|
||||
#help the variable BUMP_MSG is set, its value is used as the commit summary.
|
||||
#help Otherwise a generic commit summary is used.
|
||||
bump:
|
||||
git pull --rebase
|
||||
$(MAKE) bumpnogit
|
||||
git add $(SPECFILE) release
|
||||
git commit -a -m "version bump from $(shell $(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))) to `$(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))`"
|
||||
fromver=$(shell $(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))); \
|
||||
tover=`$(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))`; \
|
||||
if [[ -n "$(BUMP_MSG)" ]]; then \
|
||||
bumpmsg="$(BUMP_MSG)"; \
|
||||
else \
|
||||
bumpmsg="version bump from $$fromver to $$tover"; \
|
||||
fi; \
|
||||
git commit -a -m "$$bumpmsg"
|
||||
|
||||
#help bumpnogit: Increments the release file by one and does not commit changes.
|
||||
#help bumpnogit: Increments the package release number by one and does not commit
|
||||
#help changes.
|
||||
bumpnogit:
|
||||
@$(MAKE) spdxcheck
|
||||
oldrel=$(shell $(call queryspec,%{RELEASE}\n,$(SPECFILE))); \
|
||||
@@ -331,8 +341,9 @@ koji: prekoji-checks kojidef
|
||||
$(KOJI_CMD) build $$KOJI_NOWAIT $(KOJI_TAG) $(PKG_BASE_URL)/$(PKG_NAME)?#$(SRPMVERS)
|
||||
@if [ -f bump.list ]; then \
|
||||
$(MAKE) koji-waitrepo; \
|
||||
msg="Bump for $(shell $(call queryspec,%{NAME} %{VERSION}\n,$(SPECFILE)))"; \
|
||||
for bump_dep in $$(cat bump.list); do \
|
||||
(cd ../"$$bump_dep" && $(MAKE) bump && $(MAKE) koji-nowait) \
|
||||
(cd ../"$$bump_dep" && $(MAKE) bump BUMP_MSG="$$msg" && $(MAKE) koji-nowait) \
|
||||
done \
|
||||
fi
|
||||
|
||||
@@ -375,6 +386,27 @@ koji-waitrepo: kojidef
|
||||
koji wait-repo --build=${SRPMVERS} ${WAIT_OPTS} ${KOJI_TAG}-build; \
|
||||
fi
|
||||
|
||||
update-versions:
|
||||
|
||||
.PHONY: update
|
||||
#help update: Tries to run update.sh if it exists. update.sh is expected
|
||||
#help to check for version updates, exit (successfully) if none are found
|
||||
#help or update the package and push the update to koji.
|
||||
#help If no update.sh exists, update the version, autospec and push the
|
||||
#help update to koji (bumping the bump.list if found).
|
||||
update:
|
||||
@if [ -f update.sh ]; then \
|
||||
./update.sh; \
|
||||
else \
|
||||
$(MAKE) -s update-versions && \
|
||||
$(MAKE) autospec CLEANUP=1 && \
|
||||
if [ -f bump.list ]; then \
|
||||
$(MAKE) -s koji; \
|
||||
else \
|
||||
$(MAKE) -s koji-nowait; \
|
||||
fi \
|
||||
fi \
|
||||
|
||||
logcheck:
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
|
||||
|
||||
+2
-2
@@ -52,7 +52,7 @@ $(clone_PKGS): $(PACKAGES_FILE) packages/common/Makefile.common
|
||||
remotepkg=$(call remotepkgname,$$pkg); \
|
||||
[ -d packages/$$pkg ] || ( \
|
||||
echo "Checking out: packages/$$pkg"; \
|
||||
git clone $(PKG_BASE_URL)/$$remotepkg packages/$$pkg; \
|
||||
git clone -b main $(PKG_BASE_URL)/$$remotepkg packages/$$pkg; \
|
||||
cd packages/$$pkg; \
|
||||
$(call gitoliteurl,packages/$$pkg); \
|
||||
$(call subjectprefix,$$pkg); \
|
||||
@@ -168,7 +168,7 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
#help the --stat flag.
|
||||
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git diff --stat); :) ;\
|
||||
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git --no-pager diff --stat); :) ;\
|
||||
done
|
||||
|
||||
#help log: Run git log origin/main..HEAD for all package repos, thus
|
||||
|
||||
@@ -32,6 +32,7 @@ Apache-1.0
|
||||
Apache-1.1
|
||||
Apache-2.0
|
||||
App-s2p
|
||||
Arphic-1999
|
||||
Artistic-1.0
|
||||
Artistic-1.0-Perl
|
||||
Artistic-1.0-cl8
|
||||
@@ -59,11 +60,13 @@ BSD-Protection
|
||||
BSD-Source-Code
|
||||
BSL-1.0
|
||||
BUSL-1.1
|
||||
Baekmuk
|
||||
Bahyph
|
||||
Barr
|
||||
Beerware
|
||||
BitTorrent-1.0
|
||||
BitTorrent-1.1
|
||||
Bitstream-Vera
|
||||
BlueOak-1.0.0
|
||||
Borceux
|
||||
C-UDA-1.0
|
||||
@@ -77,6 +80,7 @@ CC-BY-2.5-AU
|
||||
CC-BY-3.0
|
||||
CC-BY-3.0-AT
|
||||
CC-BY-3.0-DE
|
||||
CC-BY-3.0-IGO
|
||||
CC-BY-3.0-NL
|
||||
CC-BY-3.0-US
|
||||
CC-BY-4.0
|
||||
@@ -176,6 +180,7 @@ FDK-AAC
|
||||
FSFAP
|
||||
FSFUL
|
||||
FSFULLR
|
||||
FSFULLRWD
|
||||
FTL
|
||||
Fair
|
||||
Frameworx-1.0
|
||||
@@ -248,6 +253,7 @@ JPNIC
|
||||
JSON
|
||||
Jam
|
||||
JasPer-2.0
|
||||
Knuth-CTAN
|
||||
LAL-1.2
|
||||
LAL-1.3
|
||||
LGPL-2.0
|
||||
@@ -270,6 +276,8 @@ LPPL-1.1
|
||||
LPPL-1.2
|
||||
LPPL-1.3a
|
||||
LPPL-1.3c
|
||||
LZMA-SDK-9.11-to-9.20
|
||||
LZMA-SDK-9.22
|
||||
Latex2e
|
||||
Leptonica
|
||||
LiLiQ-P-1.1
|
||||
@@ -291,10 +299,12 @@ MPL-1.0
|
||||
MPL-1.1
|
||||
MPL-2.0
|
||||
MPL-2.0-no-copyleft-exception
|
||||
MS-LPL
|
||||
MS-PL
|
||||
MS-RL
|
||||
MTLL
|
||||
MakeIndex
|
||||
Minpack
|
||||
MirOS
|
||||
Motosoto
|
||||
MulanPSL-1.0
|
||||
@@ -307,6 +317,7 @@ NBPL-1.0
|
||||
NCGL-UK-2.0
|
||||
NCSA
|
||||
NGPL
|
||||
NICTA-1.0
|
||||
NIST-PD
|
||||
NIST-PD-fallback
|
||||
NLOD-1.0
|
||||
@@ -381,6 +392,7 @@ PolyForm-Noncommercial-1.0.0
|
||||
PolyForm-Small-Business-1.0.0
|
||||
PostgreSQL
|
||||
Python-2.0
|
||||
Python-2.0.1
|
||||
QPL-1.0
|
||||
Qhull
|
||||
RHeCos-1.1
|
||||
@@ -461,6 +473,7 @@ Zlib
|
||||
blessing
|
||||
bzip2-1.0.5
|
||||
bzip2-1.0.6
|
||||
checkmk
|
||||
copyleft-next-0.3.0
|
||||
copyleft-next-0.3.1
|
||||
curl
|
||||
@@ -475,7 +488,10 @@ iMatix
|
||||
libpng-2.0
|
||||
libselinux-1.0
|
||||
libtiff
|
||||
libutil-David-Nugent
|
||||
mpi-permissive
|
||||
mpich2
|
||||
mplus
|
||||
psfrag
|
||||
psutils
|
||||
wxWindows
|
||||
|
||||
@@ -37,6 +37,7 @@ OpenCASCADE
|
||||
OpenCSG
|
||||
OpenColorIO
|
||||
OpenIPMI
|
||||
OpenSC
|
||||
OpenSP
|
||||
Pacemaker
|
||||
ParaView
|
||||
@@ -48,7 +49,6 @@ QAT_engine
|
||||
QGIS
|
||||
R
|
||||
R-AER
|
||||
R-AMORE
|
||||
R-ATR
|
||||
R-Amelia
|
||||
R-AmesHousing
|
||||
@@ -56,7 +56,6 @@ R-BB
|
||||
R-BBmisc
|
||||
R-BH
|
||||
R-BMA
|
||||
R-BMS
|
||||
R-BatchJobs
|
||||
R-BayesFactor
|
||||
R-BiasedUrn
|
||||
@@ -166,7 +165,7 @@ R-Rserve
|
||||
R-Rsolnp
|
||||
R-Rtsne
|
||||
R-Rvmmin
|
||||
R-SDMTools
|
||||
R-Ryacas
|
||||
R-SGP
|
||||
R-SGPdata
|
||||
R-SQUAREM
|
||||
@@ -201,7 +200,6 @@ R-adespatial
|
||||
R-admisc
|
||||
R-afex
|
||||
R-alabama
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
R-ape
|
||||
@@ -267,6 +265,7 @@ R-classInt
|
||||
R-cli
|
||||
R-clipr
|
||||
R-clisymbols
|
||||
R-clock
|
||||
R-clue
|
||||
R-clustMixType
|
||||
R-clusterGeneration
|
||||
@@ -287,7 +286,6 @@ R-config
|
||||
R-conflicted
|
||||
R-conquer
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
R-corrgram
|
||||
R-corrplot
|
||||
@@ -302,6 +300,7 @@ R-csvy
|
||||
R-cubature
|
||||
R-curl
|
||||
R-cvTools
|
||||
R-cvar
|
||||
R-cyclocomp
|
||||
R-data.table
|
||||
R-data.tree
|
||||
@@ -347,7 +346,6 @@ R-dynlm
|
||||
R-e1071
|
||||
R-eRm
|
||||
R-earth
|
||||
R-eco
|
||||
R-ecodist
|
||||
R-eddington
|
||||
R-effects
|
||||
@@ -371,18 +369,15 @@ R-evd
|
||||
R-expint
|
||||
R-expm
|
||||
R-expsmooth
|
||||
R-fAsianOptions
|
||||
R-fAssets
|
||||
R-fBasics
|
||||
R-fBonds
|
||||
R-fCopulae
|
||||
R-fExoticOptions
|
||||
R-fExtremes
|
||||
R-fGarch
|
||||
R-fImport
|
||||
R-fMultivar
|
||||
R-fNonlinear
|
||||
R-fOptions
|
||||
R-fRegression
|
||||
R-fTrading
|
||||
R-fUnitRoots
|
||||
@@ -645,12 +640,12 @@ R-nnls
|
||||
R-nortest
|
||||
R-npsurv
|
||||
R-numDeriv
|
||||
R-nws
|
||||
R-nycflights13
|
||||
R-officer
|
||||
R-openssl
|
||||
R-openxlsx
|
||||
R-optextras
|
||||
R-optimParallel
|
||||
R-optimx
|
||||
R-optparse
|
||||
R-ordinal
|
||||
@@ -720,9 +715,9 @@ R-princurve
|
||||
R-processx
|
||||
R-procmaps
|
||||
R-prodlim
|
||||
R-profdpm
|
||||
R-profileModel
|
||||
R-profmem
|
||||
R-profvis
|
||||
R-progress
|
||||
R-progressr
|
||||
R-projpred
|
||||
@@ -829,15 +824,12 @@ R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstpm2
|
||||
R-rstudio
|
||||
R-rstudio-server
|
||||
R-rstudioapi
|
||||
R-rsvg
|
||||
R-runjags
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-s2
|
||||
R-sROC
|
||||
R-sampling
|
||||
R-sandwich
|
||||
R-sass
|
||||
@@ -884,8 +876,10 @@ R-sparkline
|
||||
R-spatstat
|
||||
R-spatstat.core
|
||||
R-spatstat.data
|
||||
R-spatstat.explore
|
||||
R-spatstat.geom
|
||||
R-spatstat.linnet
|
||||
R-spatstat.model
|
||||
R-spatstat.random
|
||||
R-spatstat.sparse
|
||||
R-spatstat.utils
|
||||
@@ -938,6 +932,7 @@ R-tidyverse
|
||||
R-tikzDevice
|
||||
R-timeDate
|
||||
R-timeSeries
|
||||
R-timechange
|
||||
R-tinytex
|
||||
R-tis
|
||||
R-tm
|
||||
@@ -955,10 +950,10 @@ R-tseries
|
||||
R-tsne
|
||||
R-tzdb
|
||||
R-ucminf
|
||||
R-unbalanced
|
||||
R-units
|
||||
R-unix
|
||||
R-urca
|
||||
R-urlchecker
|
||||
R-urltools
|
||||
R-uroot
|
||||
R-usethis
|
||||
@@ -1093,9 +1088,7 @@ aspell-pt_BR
|
||||
assimp
|
||||
asunder
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
atk
|
||||
atkmm
|
||||
attica
|
||||
attr
|
||||
@@ -1115,7 +1108,6 @@ automake
|
||||
autossh
|
||||
avahi
|
||||
awesome-wm
|
||||
aws-sam-translator
|
||||
awscli
|
||||
axel
|
||||
azure-configs
|
||||
@@ -1166,6 +1158,7 @@ bridge-utils
|
||||
brotli
|
||||
bsdiff
|
||||
bspwm
|
||||
btop
|
||||
btrfs-progs
|
||||
bubblewrap
|
||||
buildreq-R
|
||||
@@ -1214,7 +1207,6 @@ cgdb
|
||||
cgit
|
||||
check
|
||||
cheese
|
||||
chrome-gnome-shell
|
||||
chrony
|
||||
chrpath
|
||||
cifs-utils
|
||||
@@ -1276,13 +1268,14 @@ colord-gtk
|
||||
colordiff
|
||||
columbiad
|
||||
compat-atkmm-soname16
|
||||
compat-boost-soname1.73.0
|
||||
compat-babeltrace-one
|
||||
compat-boost-soname1.74.0
|
||||
compat-cairomm-soname10
|
||||
compat-curl-gnutls-soname4
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gcc-10
|
||||
compat-gcr-soname1
|
||||
compat-gdal-soname27
|
||||
compat-glibmm-soname24
|
||||
compat-gnome-bluetooth-soname-13
|
||||
@@ -1294,22 +1287,16 @@ compat-libpng-soname12
|
||||
compat-libsigc++-soname20
|
||||
compat-libsoup-soname-24
|
||||
compat-libva-soname1
|
||||
compat-libvpx-soname6
|
||||
compat-lua-52
|
||||
compat-lua-53
|
||||
compat-nettle-soname7
|
||||
compat-openssl-soname11
|
||||
compat-pangomm-soname14
|
||||
compat-poppler-soname112
|
||||
compat-poppler-soname117
|
||||
compat-protobuf-soname23
|
||||
compat-protobuf-soname29
|
||||
compat-readline-soname5
|
||||
compat-rest-soname07
|
||||
compat-tbb-soname12
|
||||
compat-tracker-soname2.0
|
||||
compat-webkitgtk-soname40
|
||||
component
|
||||
compute-image-packages
|
||||
conda
|
||||
configobj
|
||||
confuse
|
||||
conky
|
||||
@@ -1341,11 +1328,11 @@ cups-bjnp
|
||||
cups-filters
|
||||
cups-pk-helper
|
||||
curl
|
||||
curl-mini
|
||||
custom_inherit
|
||||
cycler
|
||||
cyrus-sasl
|
||||
dapl
|
||||
darkflow
|
||||
darktable
|
||||
datefudge
|
||||
dav1d
|
||||
@@ -1376,7 +1363,6 @@ dino
|
||||
directx-headers
|
||||
direwolf
|
||||
dist-pam-configs
|
||||
distro
|
||||
dkms
|
||||
dlm
|
||||
dlt-daemon
|
||||
@@ -1403,11 +1389,13 @@ doxygen
|
||||
dpdk
|
||||
dracut
|
||||
dragon
|
||||
dragonbox
|
||||
drkonqi
|
||||
dropwatch
|
||||
dssi
|
||||
dstat
|
||||
dtc
|
||||
duktape
|
||||
dunst
|
||||
duperemove
|
||||
dvisvgm
|
||||
@@ -1417,6 +1405,7 @@ e2fsprogs
|
||||
earlyoom
|
||||
ebtables
|
||||
ed
|
||||
editorconfig-core-c
|
||||
edk2
|
||||
efibootmgr
|
||||
efitools
|
||||
@@ -1470,7 +1459,6 @@ filelight
|
||||
filesystem
|
||||
findutils
|
||||
fio
|
||||
firecracker
|
||||
firefox
|
||||
firewalld
|
||||
fish
|
||||
@@ -1503,6 +1491,7 @@ freetype
|
||||
fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
fsarchiver
|
||||
fsearch
|
||||
fuse
|
||||
fwupd
|
||||
@@ -1532,6 +1521,7 @@ gedit
|
||||
gedit-plugins-gnome
|
||||
geeqie
|
||||
gegl
|
||||
gengetopt
|
||||
geocam-v4l2
|
||||
geoclue
|
||||
geocode-glib
|
||||
@@ -1637,6 +1627,7 @@ gpgme
|
||||
gphoto2
|
||||
gpm
|
||||
gpredict
|
||||
gpsd
|
||||
gptfdisk
|
||||
gramps
|
||||
granatier
|
||||
@@ -1700,7 +1691,6 @@ hexchat
|
||||
hexedit
|
||||
hicolor-icon-theme
|
||||
hiredis-c
|
||||
home-assistant
|
||||
hostname
|
||||
hplip
|
||||
htop
|
||||
@@ -1731,6 +1721,7 @@ icon-naming-utils
|
||||
icu4c
|
||||
idle-python3.7-assets
|
||||
iftop
|
||||
igsc
|
||||
igt-gpu-tools
|
||||
iio-sensor-proxy
|
||||
imagescan
|
||||
@@ -1744,6 +1735,7 @@ init-rdahead
|
||||
inkscape
|
||||
innoextract
|
||||
inotify-tools
|
||||
intel-cmt-cat
|
||||
intel-gmmlib
|
||||
intel-hybrid-driver
|
||||
intel-ipsec-mb
|
||||
@@ -1768,12 +1760,12 @@ ipvsadm
|
||||
ipxe
|
||||
irqbalance
|
||||
irrlicht
|
||||
irrlichtmt
|
||||
irssi
|
||||
isa-l
|
||||
iso-codes
|
||||
isodate
|
||||
isomd5sum
|
||||
ister
|
||||
isync
|
||||
itstool
|
||||
iw
|
||||
@@ -1803,11 +1795,6 @@ kapidox
|
||||
kapman
|
||||
kapptemplate
|
||||
karchive
|
||||
kata-image
|
||||
kata-proxy
|
||||
kata-qemu-lite
|
||||
kata-runtime
|
||||
kata-shim
|
||||
kate
|
||||
katomic
|
||||
kauth
|
||||
@@ -1828,6 +1815,7 @@ kcharselect
|
||||
kcmutils
|
||||
kcodecs
|
||||
kcolorchooser
|
||||
kcolorpicker
|
||||
kcompletion
|
||||
kconfig
|
||||
kconfigwidgets
|
||||
@@ -1898,6 +1886,7 @@ kidletime
|
||||
kig
|
||||
kigo
|
||||
killbots
|
||||
kimageannotator
|
||||
kimageformats
|
||||
kimagemapeditor
|
||||
kimap
|
||||
@@ -1968,6 +1957,7 @@ kross
|
||||
kruler
|
||||
krunner
|
||||
krusader
|
||||
ksanecore
|
||||
kscreen
|
||||
kscreenlocker
|
||||
kservice
|
||||
@@ -1995,6 +1985,7 @@ kturtle
|
||||
kubernetes
|
||||
kubernetes-migration-1.18
|
||||
kunitconversion
|
||||
kuserfeedback
|
||||
kwallet
|
||||
kwallet-pam
|
||||
kwalletmanager
|
||||
@@ -2067,6 +2058,7 @@ libcacard
|
||||
libcanberra
|
||||
libcap
|
||||
libcap-ng
|
||||
libcbor
|
||||
libcddb
|
||||
libcdio
|
||||
libcdr
|
||||
@@ -2074,6 +2066,7 @@ libcerf
|
||||
libcgroup
|
||||
libchamplain
|
||||
libclc
|
||||
libcloudproviders
|
||||
libcmis
|
||||
libcomps
|
||||
libconfig
|
||||
@@ -2107,6 +2100,8 @@ libexttextcat
|
||||
libfakekey
|
||||
libfastjson
|
||||
libffi
|
||||
libfido2
|
||||
libfixmath
|
||||
libfm
|
||||
libfm-qt
|
||||
libfontenc
|
||||
@@ -2131,7 +2126,6 @@ libgtop
|
||||
libgudev
|
||||
libgusb
|
||||
libgweather
|
||||
libgweather4
|
||||
libhandy
|
||||
libical
|
||||
libidn
|
||||
@@ -2210,6 +2204,7 @@ libpipeline
|
||||
libplacebo
|
||||
libpng
|
||||
libportal
|
||||
libproxy
|
||||
libpsl
|
||||
libpthread-stubs
|
||||
libpwquality
|
||||
@@ -2228,6 +2223,7 @@ libreswan
|
||||
librevenge
|
||||
librsvg
|
||||
librtlsdr
|
||||
librttopo
|
||||
libsamplerate
|
||||
libsass
|
||||
libseccomp
|
||||
@@ -2314,18 +2310,15 @@ linux-aws
|
||||
linux-current
|
||||
linux-firmware
|
||||
linux-firmware-ipu
|
||||
linux-gce
|
||||
linux-hyperv
|
||||
linux-hyperv-lts
|
||||
linux-iot-lts2018
|
||||
linux-iot-lts2018-preempt-rt
|
||||
linux-kata
|
||||
linux-kvm
|
||||
linux-libc-headers
|
||||
linux-lts2017
|
||||
linux-lts2018
|
||||
linux-lts2019
|
||||
linux-lts2020
|
||||
linux-lts2021
|
||||
linux-mainline
|
||||
linux-oracle
|
||||
linux-preempt-rt
|
||||
@@ -2336,6 +2329,7 @@ llvm
|
||||
llvm11
|
||||
llvm12
|
||||
llvm13
|
||||
llvm14
|
||||
lm-sensors
|
||||
lmdb
|
||||
logrotate
|
||||
@@ -2410,12 +2404,16 @@ messagelib
|
||||
meta-c-basic
|
||||
meta-desktop-gnome
|
||||
meta-desktop-kde
|
||||
meta-os-core
|
||||
meta-os-core-plus
|
||||
metacity
|
||||
metee
|
||||
metis
|
||||
metrics-discovery
|
||||
micro-config-drive
|
||||
micro-config-drive-aliyun
|
||||
micro-config-drive-aws
|
||||
micro-config-drive-equinix
|
||||
micro-config-drive-oci
|
||||
milou
|
||||
minetest
|
||||
@@ -2450,7 +2448,7 @@ mosh
|
||||
mosquitto
|
||||
motd-update
|
||||
motif
|
||||
mozjs78
|
||||
mozjs102
|
||||
mozjs91
|
||||
mpc
|
||||
mpfr
|
||||
@@ -2551,6 +2549,7 @@ octave
|
||||
oiio
|
||||
okteta
|
||||
okular
|
||||
oneVPL
|
||||
onig
|
||||
opa-fm
|
||||
opa-psm2
|
||||
@@ -2565,6 +2564,7 @@ openbox
|
||||
opencl-clang
|
||||
opencl-headers
|
||||
openconnect
|
||||
openct
|
||||
opencv
|
||||
openexr
|
||||
openjade
|
||||
@@ -2574,6 +2574,7 @@ openjdk13
|
||||
openjpeg
|
||||
openldap
|
||||
openmpi
|
||||
openpace
|
||||
openscad
|
||||
openshot-qt
|
||||
opensm
|
||||
@@ -2612,7 +2613,6 @@ pass
|
||||
patch
|
||||
patchelf
|
||||
patchutils
|
||||
pathlib2
|
||||
pathos
|
||||
pavucontrol
|
||||
pbzip2
|
||||
@@ -2624,6 +2624,7 @@ pcre
|
||||
pcre2
|
||||
pcs
|
||||
pcsc-lite
|
||||
pcsc-tools
|
||||
pdns
|
||||
pdns-recursor
|
||||
pdsh
|
||||
@@ -2637,6 +2638,7 @@ perl-Algorithm-Diff-XS
|
||||
perl-Algorithm-Merge
|
||||
perl-Algorithm-Munkres
|
||||
perl-Alien-Build
|
||||
perl-Alien-Build-Plugin-Download-GitLab
|
||||
perl-Alien-Libxml2
|
||||
perl-Alien-m4
|
||||
perl-AnyEvent
|
||||
@@ -2702,6 +2704,7 @@ perl-Carp-Always
|
||||
perl-Carp-Assert
|
||||
perl-Carp-Assert-More
|
||||
perl-Carp-Clan
|
||||
perl-Chipcard-PCSC
|
||||
perl-Class-Accessor
|
||||
perl-Class-Accessor-Chained
|
||||
perl-Class-Accessor-Grouped
|
||||
@@ -2973,6 +2976,7 @@ perl-IO-All
|
||||
perl-IO-Async
|
||||
perl-IO-Capture
|
||||
perl-IO-CaptureOutput
|
||||
perl-IO-FDPass
|
||||
perl-IO-HTML
|
||||
perl-IO-Interactive
|
||||
perl-IO-Interactive-Tiny
|
||||
@@ -3043,6 +3047,8 @@ perl-Log-Message
|
||||
perl-Log-Message-Simple
|
||||
perl-Log-Trace
|
||||
perl-MARC-Record
|
||||
perl-MCE
|
||||
perl-MCE-Shared
|
||||
perl-MIME-Base32
|
||||
perl-MIME-Base64
|
||||
perl-MIME-Base64-URLSafe
|
||||
@@ -3564,10 +3570,6 @@ portmidi
|
||||
postfix
|
||||
postgis
|
||||
postgresql
|
||||
postgresql11
|
||||
postgresql12
|
||||
postgresql13
|
||||
postgresql14
|
||||
potrace
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
@@ -3617,7 +3619,9 @@ pypi-aiosignal
|
||||
pypi-aiosmtpd
|
||||
pypi-alabaster
|
||||
pypi-altgraph
|
||||
pypi-aniso8601
|
||||
pypi-ansi2html
|
||||
pypi-ansible_builder
|
||||
pypi-ansible_compat
|
||||
pypi-ansible_pygments
|
||||
pypi-anyio
|
||||
@@ -3646,12 +3650,13 @@ pypi-asynctest
|
||||
pypi-atomicwrites
|
||||
pypi-atpublic
|
||||
pypi-attrs
|
||||
pypi-autocommand
|
||||
pypi-automat
|
||||
pypi-awesomeversion
|
||||
pypi-awscrt
|
||||
pypi-awxkit
|
||||
pypi-azure_common
|
||||
pypi-azure_core
|
||||
pypi-azure_devops
|
||||
pypi-azure_mgmt_compute
|
||||
pypi-azure_mgmt_core
|
||||
pypi-azure_mgmt_netapp
|
||||
@@ -3660,18 +3665,15 @@ pypi-azure_mgmt_resource
|
||||
pypi-azure_mgmt_storage
|
||||
pypi-babel
|
||||
pypi-backcall
|
||||
pypi-backports.cached_property
|
||||
pypi-backports.entry_points_selectable
|
||||
pypi-backports.functools_lru_cache
|
||||
pypi-backports.shutil_get_terminal_size
|
||||
pypi-backoff
|
||||
pypi-backports.ssl_match_hostname
|
||||
pypi-backports.weakref
|
||||
pypi-bash_kernel
|
||||
pypi-bashlex
|
||||
pypi-bcrypt
|
||||
pypi-beautifulsoup4
|
||||
pypi-beniget
|
||||
pypi-binaryornot
|
||||
pypi-bindep
|
||||
pypi-bkcharts
|
||||
pypi-black
|
||||
pypi-bleach
|
||||
@@ -3694,9 +3696,9 @@ pypi-cachecontrol
|
||||
pypi-cached_property
|
||||
pypi-cachetools
|
||||
pypi-cachy
|
||||
pypi-calver
|
||||
pypi-capturer
|
||||
pypi-cattrs
|
||||
pypi-cchardet
|
||||
pypi-cerberus
|
||||
pypi-certbot
|
||||
pypi-certbot_dns_google
|
||||
@@ -3707,6 +3709,7 @@ pypi-cfgv
|
||||
pypi-chaospy
|
||||
pypi-chardet
|
||||
pypi-charset_normalizer
|
||||
pypi-check_jsonschema
|
||||
pypi-check_manifest
|
||||
pypi-cheetah3
|
||||
pypi-cheroot
|
||||
@@ -3736,8 +3739,8 @@ pypi-cons
|
||||
pypi-constantly
|
||||
pypi-contextlib2
|
||||
pypi-contextvars
|
||||
pypi-contourpy
|
||||
pypi-cookiecutter
|
||||
pypi-cookies
|
||||
pypi-coverage
|
||||
pypi-coveralls
|
||||
pypi-cppy
|
||||
@@ -3750,6 +3753,7 @@ pypi-cssselect
|
||||
pypi-cu2qu
|
||||
pypi-curio
|
||||
pypi-cve_bin_tool
|
||||
pypi-cvss
|
||||
pypi-cxxfilt
|
||||
pypi-cython
|
||||
pypi-cytoolz
|
||||
@@ -3767,14 +3771,14 @@ pypi-diffoscope
|
||||
pypi-dill
|
||||
pypi-diskcache
|
||||
pypi-distlib
|
||||
pypi-distributed
|
||||
pypi-distro
|
||||
pypi-dj_database_url
|
||||
pypi-django
|
||||
pypi-django_appconf
|
||||
pypi-django_babel
|
||||
pypi-django_compressor
|
||||
pypi-django_discover_runner
|
||||
pypi-django_nose
|
||||
pypi-django_pyscss
|
||||
pypi-dnacentersdk
|
||||
pypi-dns_lexicon
|
||||
pypi-dnspython
|
||||
@@ -3783,8 +3787,10 @@ pypi-docker_compose
|
||||
pypi-docker_pycreds
|
||||
pypi-docopt
|
||||
pypi-docstring_parser
|
||||
pypi-docstring_to_markdown
|
||||
pypi-docutils
|
||||
pypi-dpcontracts
|
||||
pypi-dulwich
|
||||
pypi-ecdsa
|
||||
pypi-editables
|
||||
pypi-elementpath
|
||||
@@ -3806,6 +3812,7 @@ pypi-falcon
|
||||
pypi-fasteners
|
||||
pypi-fastimport
|
||||
pypi-fastjsonschema
|
||||
pypi-filecache
|
||||
pypi-filelock
|
||||
pypi-fissix
|
||||
pypi-flake8
|
||||
@@ -3828,7 +3835,6 @@ pypi-funcparserlib
|
||||
pypi-future
|
||||
pypi-gast
|
||||
pypi-gcs_oauth2_boto_plugin
|
||||
pypi-gensim
|
||||
pypi-gevent
|
||||
pypi-geventhttpclient
|
||||
pypi-ghp_import
|
||||
@@ -3844,6 +3850,8 @@ pypi-google_auth_oauthlib
|
||||
pypi-google_pasta
|
||||
pypi-google_reauth
|
||||
pypi-googleapis_common_protos
|
||||
pypi-gql
|
||||
pypi-graphql_core
|
||||
pypi-graphviz
|
||||
pypi-greenlet
|
||||
pypi-grpcio
|
||||
@@ -3858,6 +3866,8 @@ pypi-h11
|
||||
pypi-h2
|
||||
pypi-h5py
|
||||
pypi-hammock
|
||||
pypi-hatch_fancy_pypi_readme
|
||||
pypi-hatch_nodejs_version
|
||||
pypi-hatch_vcs
|
||||
pypi-hatchling
|
||||
pypi-heapdict
|
||||
@@ -3869,7 +3879,6 @@ pypi-httpcore
|
||||
pypi-httplib2
|
||||
pypi-httpretty
|
||||
pypi-httpx
|
||||
pypi-hug
|
||||
pypi-humanfriendly
|
||||
pypi-humanize
|
||||
pypi-hyperframe
|
||||
@@ -3893,7 +3902,6 @@ pypi-inflect
|
||||
pypi-inflection
|
||||
pypi-influxdb
|
||||
pypi-iniconfig
|
||||
pypi-inspursmsdk
|
||||
pypi-intervaltree
|
||||
pypi-invoke
|
||||
pypi-iocapture
|
||||
@@ -3984,11 +3992,10 @@ pypi-matplotlib_inline
|
||||
pypi-mdit_py_plugins
|
||||
pypi-mdurl
|
||||
pypi-mergedeep
|
||||
pypi-meson_python
|
||||
pypi-mido
|
||||
pypi-minikanren
|
||||
pypi-mistune
|
||||
pypi-mkdocs
|
||||
pypi-mkdocs_material
|
||||
pypi-mkdocs_material_extensions
|
||||
pypi-mock
|
||||
pypi-modulegraph
|
||||
@@ -4013,7 +4020,6 @@ pypi-natsort
|
||||
pypi-nbclassic
|
||||
pypi-nbclient
|
||||
pypi-nbconvert
|
||||
pypi-nbdime
|
||||
pypi-nbformat
|
||||
pypi-nbsphinx
|
||||
pypi-nbval
|
||||
@@ -4054,18 +4060,18 @@ pypi-paramiko
|
||||
pypi-parse
|
||||
pypi-parse_type
|
||||
pypi-parsedatetime
|
||||
pypi-parsley
|
||||
pypi-parso
|
||||
pypi-partd
|
||||
pypi-paste
|
||||
pypi-pastedeploy
|
||||
pypi-pastel
|
||||
pypi-pathlib
|
||||
pypi-pathlib2
|
||||
pypi-pathspec
|
||||
pypi-pathtools
|
||||
pypi-patsy
|
||||
pypi-pbr
|
||||
pypi-pdm_pep517
|
||||
pypi-pdocs
|
||||
pypi-pecan
|
||||
pypi-ped
|
||||
pypi-pep517
|
||||
@@ -4078,6 +4084,7 @@ pypi-phabricator
|
||||
pypi-pickleshare
|
||||
pypi-pid
|
||||
pypi-pillow
|
||||
pypi-pint
|
||||
pypi-pip
|
||||
pypi-pip_tools
|
||||
pypi-pkgconfig
|
||||
@@ -4089,11 +4096,11 @@ pypi-ply
|
||||
pypi-pockets
|
||||
pypi-poetry
|
||||
pypi-poetry_core
|
||||
pypi-poetry_plugin_export
|
||||
pypi-polib
|
||||
pypi-port_for
|
||||
pypi-portalocker
|
||||
pypi-portend
|
||||
pypi-portray
|
||||
pypi-posix_ipc
|
||||
pypi-poyo
|
||||
pypi-pre_commit
|
||||
@@ -4112,7 +4119,6 @@ pypi-purestorage
|
||||
pypi-purity_fb
|
||||
pypi-py
|
||||
pypi-py_cpuinfo
|
||||
pypi-py_pure_client
|
||||
pypi-pyaml
|
||||
pypi-pyasn1
|
||||
pypi-pyasn1_modules
|
||||
@@ -4130,6 +4136,7 @@ pypi-pycryptodome
|
||||
pypi-pycryptodomex
|
||||
pypi-pycups
|
||||
pypi-pycurl
|
||||
pypi-pydantic
|
||||
pypi-pydata_sphinx_theme
|
||||
pypi-pydispatcher
|
||||
pypi-pydocstyle
|
||||
@@ -4150,14 +4157,19 @@ pypi-pymdown_extensions
|
||||
pypi-pynacl
|
||||
pypi-pynetbox
|
||||
pypi-pynsist
|
||||
pypi-pyomo
|
||||
pypi-pyopengl
|
||||
pypi-pyopenssl
|
||||
pypi-pyparsing
|
||||
pypi-pyperclip
|
||||
pypi-pyperf
|
||||
pypi-pyproject_api
|
||||
pypi-pyproject_metadata
|
||||
pypi-pyprojectx
|
||||
pypi-pypsrp
|
||||
pypi-pyqrcode
|
||||
pypi-pyqt6_sip
|
||||
pypi-pyqt_builder
|
||||
pypi-pyquery
|
||||
pypi-pyreadline
|
||||
pypi-pyrfc3339
|
||||
@@ -4172,6 +4184,7 @@ pypi-pyroute2.ndb
|
||||
pypi-pyroute2.nftables
|
||||
pypi-pyroute2.nslink
|
||||
pypi-pyrsistent
|
||||
pypi-pysaml2
|
||||
pypi-pyscss
|
||||
pypi-pyserial
|
||||
pypi-pysnow
|
||||
@@ -4206,6 +4219,7 @@ pypi-python_lsp_server
|
||||
pypi-python_multilib
|
||||
pypi-python_slugify
|
||||
pypi-python_string_utils
|
||||
pypi-python_version
|
||||
pypi-python_xlib
|
||||
pypi-pythran
|
||||
pypi-pytoolconfig
|
||||
@@ -4215,6 +4229,7 @@ pypi-pyu2f
|
||||
pypi-pyusb
|
||||
pypi-pywavelets
|
||||
pypi-pywbem
|
||||
pypi-pywinrm
|
||||
pypi-pyxattr
|
||||
pypi-pyxdameraulevenshtein
|
||||
pypi-pyxdg
|
||||
@@ -4223,6 +4238,8 @@ pypi-pyzmq
|
||||
pypi-qtawesome
|
||||
pypi-qtconsole
|
||||
pypi-qtpy
|
||||
pypi-rapidfuzz
|
||||
pypi-rapidfuzz_capi
|
||||
pypi-rcssmin
|
||||
pypi-readme_renderer
|
||||
pypi-recommonmark
|
||||
@@ -4238,6 +4255,7 @@ pypi-requests_mock
|
||||
pypi-requests_oauthlib
|
||||
pypi-requests_toolbelt
|
||||
pypi-requests_unixsocket
|
||||
pypi-requirements_parser
|
||||
pypi-resolvelib
|
||||
pypi-responses
|
||||
pypi-restructuredtext_lint
|
||||
@@ -4260,9 +4278,11 @@ pypi-ruamel.yaml.clib
|
||||
pypi-s3transfer
|
||||
pypi-salib
|
||||
pypi-sanic_routing
|
||||
pypi-scikit-learn
|
||||
pypi-scikit_build
|
||||
pypi-scikit_image
|
||||
pypi-scp
|
||||
pypi-scrypt
|
||||
pypi-seaborn
|
||||
pypi-secretstorage
|
||||
pypi-selectors2
|
||||
@@ -4278,6 +4298,7 @@ pypi-serpent
|
||||
pypi-setproctitle
|
||||
pypi-setuptools
|
||||
pypi-setuptools_git_ls_files
|
||||
pypi-setuptools_git_versioning
|
||||
pypi-setuptools_rust
|
||||
pypi-setuptools_scm
|
||||
pypi-setuptools_scm_git_archive
|
||||
@@ -4285,7 +4306,6 @@ pypi-sh
|
||||
pypi-shapely
|
||||
pypi-shellingham
|
||||
pypi-simplegeneric
|
||||
pypi-singledispatch
|
||||
pypi-six
|
||||
pypi-smart_open
|
||||
pypi-smartypants
|
||||
@@ -4298,7 +4318,6 @@ pypi-sphinx
|
||||
pypi-sphinx_ansible_theme
|
||||
pypi-sphinx_argparse
|
||||
pypi-sphinx_autobuild
|
||||
pypi-sphinx_book_theme
|
||||
pypi-sphinx_copybutton
|
||||
pypi-sphinx_design
|
||||
pypi-sphinx_feature_classification
|
||||
@@ -4307,7 +4326,6 @@ pypi-sphinx_issues
|
||||
pypi-sphinx_last_updated_by_git
|
||||
pypi-sphinx_notfound_page
|
||||
pypi-sphinx_rtd_theme
|
||||
pypi-sphinx_thebe
|
||||
pypi-sphinx_theme_builder
|
||||
pypi-sphinx_togglebutton
|
||||
pypi-sphinxcontrib_apidoc
|
||||
@@ -4346,6 +4364,7 @@ pypi-tblib
|
||||
pypi-templated_dictionary
|
||||
pypi-tempora
|
||||
pypi-tenacity
|
||||
pypi-termcolor
|
||||
pypi-terminado
|
||||
pypi-terminaltables
|
||||
pypi-testpath
|
||||
@@ -4353,7 +4372,6 @@ pypi-text_unidecode
|
||||
pypi-textdistance
|
||||
pypi-textfsm
|
||||
pypi-texttable
|
||||
pypi-theano
|
||||
pypi-threadpoolctl
|
||||
pypi-three_merge
|
||||
pypi-tifffile
|
||||
@@ -4373,6 +4391,7 @@ pypi-trampolim
|
||||
pypi-trimesh
|
||||
pypi-trio
|
||||
pypi-trio_websocket
|
||||
pypi-trove_classifiers
|
||||
pypi-ttp
|
||||
pypi-twine
|
||||
pypi-typed_ast
|
||||
@@ -4383,6 +4402,7 @@ pypi-types_dataclasses
|
||||
pypi-types_enum34
|
||||
pypi-types_ipaddress
|
||||
pypi-types_mock
|
||||
pypi-types_psutil
|
||||
pypi-types_pyopenssl
|
||||
pypi-types_pyrfc3339
|
||||
pypi-types_python_dateutil
|
||||
@@ -4392,18 +4412,18 @@ pypi-types_requests
|
||||
pypi-types_setuptools
|
||||
pypi-types_six
|
||||
pypi-types_termcolor
|
||||
pypi-types_toml
|
||||
pypi-types_typed_ast
|
||||
pypi-types_urllib3
|
||||
pypi-typing_extensions
|
||||
pypi-typogrify
|
||||
pypi-tzdata
|
||||
pypi-tzlocal
|
||||
pypi-ua_parser
|
||||
pypi-uamqp
|
||||
pypi-uc_micro_py
|
||||
pypi-ufolib2
|
||||
pypi-uharfbuzz
|
||||
pypi-ujson
|
||||
pypi-uncertainpy
|
||||
pypi-unicodedata2
|
||||
pypi-unidecode
|
||||
pypi-unidiff
|
||||
@@ -4418,9 +4438,9 @@ pypi-virtualenv
|
||||
pypi-volatile
|
||||
pypi-voluptuous
|
||||
pypi-voluptuous_serialize
|
||||
pypi-vsts
|
||||
pypi-vsts_cd_manager
|
||||
pypi-waitress
|
||||
pypi-warlock
|
||||
pypi-watchdog
|
||||
pypi-wcwidth
|
||||
pypi-webcolors
|
||||
@@ -4444,12 +4464,23 @@ pypi-xmlschema
|
||||
pypi-xmltodict
|
||||
pypi-xpra
|
||||
pypi-xstatic
|
||||
pypi-xstatic_angular
|
||||
pypi-xstatic_angular_bootstrap
|
||||
pypi-xstatic_angular_gettext
|
||||
pypi-xstatic_angular_lrdragndrop
|
||||
pypi-xstatic_angular_schema_form
|
||||
pypi-xstatic_bootstrap_scss
|
||||
pypi-xstatic_bootswatch
|
||||
pypi-xstatic_jasmine
|
||||
pypi-xstatic_jsencrypt
|
||||
pypi-xstatic_objectpath
|
||||
pypi-xstatic_roboto_fontface
|
||||
pypi-xvfbwrapper
|
||||
pypi-yamllint
|
||||
pypi-yamlloader
|
||||
pypi-yapf
|
||||
pypi-yarg
|
||||
pypi-yarl
|
||||
pypi-yaspin
|
||||
pypi-zabbix_api
|
||||
pypi-zc.lockfile
|
||||
pypi-zeroconf
|
||||
@@ -4492,6 +4523,7 @@ python-zstandard
|
||||
python3
|
||||
pyudev
|
||||
qalculate-gtk
|
||||
qatlib
|
||||
qbittorrent
|
||||
qca-qt5
|
||||
qemu
|
||||
@@ -4566,11 +4598,9 @@ redis2-nginx-module
|
||||
redland
|
||||
redshift
|
||||
redsocks
|
||||
renderdoc
|
||||
requests-ntlm
|
||||
rest
|
||||
restic
|
||||
retrying
|
||||
rhythmbox
|
||||
rinutils
|
||||
rlwrap
|
||||
@@ -4605,7 +4635,6 @@ sbc
|
||||
sbsigntools
|
||||
scdoc
|
||||
scene-alembic
|
||||
scikit-learn
|
||||
scipy
|
||||
scons
|
||||
scour
|
||||
@@ -4657,11 +4686,13 @@ speexdsp
|
||||
spice
|
||||
spice-gtk
|
||||
spice-protocol
|
||||
spice-vdagent
|
||||
sqlite-autoconf
|
||||
squashfs-tools
|
||||
squid
|
||||
sshfs
|
||||
sshpass
|
||||
sshuttle
|
||||
ssocr
|
||||
sssd
|
||||
ssw
|
||||
@@ -4720,7 +4751,6 @@ telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-qt
|
||||
tepl
|
||||
termcolor
|
||||
terminology
|
||||
terminus-font
|
||||
tesseract
|
||||
@@ -4780,13 +4810,12 @@ usb-modeswitch-data
|
||||
usbredir
|
||||
usbutils
|
||||
user-manager
|
||||
usermode
|
||||
userspace-rcu
|
||||
usrbinjava
|
||||
usrbinpython
|
||||
usrbinvi
|
||||
utf8cpp
|
||||
utf8proc
|
||||
utfcpp
|
||||
util-linux
|
||||
util-macros
|
||||
uwsgi
|
||||
@@ -4816,6 +4845,7 @@ wayland
|
||||
wayland-protocols
|
||||
wcslib
|
||||
webkitgtk
|
||||
webkitgtk50
|
||||
weechat
|
||||
weston
|
||||
wget
|
||||
@@ -4831,6 +4861,7 @@ woff2
|
||||
wol
|
||||
wpa_supplicant
|
||||
wsjtx
|
||||
wslu
|
||||
wxWidgets
|
||||
x11perf
|
||||
x11vnc
|
||||
|
||||
Reference in New Issue
Block a user