mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
63 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| b443e169d5 | |||
| cd55363a3c | |||
| e0054520f8 | |||
| ecb84bfabf | |||
| 6b3a74eea5 | |||
| 9b81676c6f | |||
| e0844510f6 | |||
| 536b562a5b | |||
| c4cb75a89f | |||
| 244e21ef2d | |||
| 8defd1c276 | |||
| 3bd55aea4f | |||
| e76c4bd179 | |||
| 2383eca632 | |||
| 89f861fda6 | |||
| 447126c594 | |||
| a3ad322a0a | |||
| c357625466 | |||
| ee3938da6c | |||
| d86d9e564d | |||
| df467c348a | |||
| 581aa3f813 | |||
| 5946c4dfa9 | |||
| f3e7eec6dc | |||
| fca54d3027 | |||
| 6550c61092 | |||
| d2d8b886bd | |||
| e227e8722b | |||
| b924031ba6 | |||
| 0981d133b1 |
+18
-12
@@ -9,13 +9,15 @@ include $(TOPLVL)/projects/common/Makefile.shared
|
||||
|
||||
SHELL = /bin/bash
|
||||
|
||||
CURRENT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
||||
|
||||
SPECFILE = $(addsuffix .spec, $(PKG_NAME))
|
||||
|
||||
SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || rpmspec -D '_vendor clr' --srpm -q --queryformat '%{NAME}-%{VERSION}-%{RELEASE}\n' $(SPECFILE))
|
||||
SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || $(call queryspec,%{NVR}\n,$(SPECFILE)))
|
||||
SRPMFILE = results/$(SRPMVERS).src.rpm
|
||||
|
||||
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||
DEBUGINFO_RPM = $(wildcard rpms/*-debuginfo-*.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 )
|
||||
@@ -46,7 +48,7 @@ upstream:
|
||||
#help spdxcheck: Checks that the package license is a valid SPDX license,
|
||||
#help or that it is in the exceptions list.
|
||||
spdxcheck: $(SPECFILE)
|
||||
@for LICENSE in `rpmspec -D '_vendor clr' --srpm -q --queryformat '%{LICENSE}\n' $(SPECFILE)`; do \
|
||||
@for LICENSE in `$(call queryspec,%{LICENSE}\n,$(SPECFILE))`; do \
|
||||
if ! grep -qx "$$LICENSE" $(TOPLVL)/projects/common/licenses-{spdx,exceptions,extra}; then FAIL=yes; echo "ERROR: License '$$LICENSE' is not an allowed SPDX license ID"; fi; \
|
||||
done; test -z "$$FAIL"
|
||||
|
||||
@@ -76,7 +78,7 @@ configemail:
|
||||
|
||||
#help checkblacklist: Verify rpms files to not include banned files for Clear Linux OS.
|
||||
checkblacklist:
|
||||
@$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist results/*.rpm
|
||||
@$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(filter-out ${DEBUGINFO_RPM},${RPMS})
|
||||
|
||||
prebuild-checks:
|
||||
|
||||
@@ -217,12 +219,12 @@ bump:
|
||||
git pull --rebase
|
||||
$(MAKE) bumpnogit
|
||||
git add $(SPECFILE) release
|
||||
git commit -a -m "version bump from $(shell rpmspec -D '_vendor clr' --srpm -q --queryformat '%{VERSION}-%{RELEASE}\n' $(SPECFILE)) to `rpmspec -D '_vendor clr' --srpm -q --queryformat '%{VERSION}-%{RELEASE}\n' $(SPECFILE)`"
|
||||
git commit -a -m "version bump from $(shell $(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))) to `$(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))`"
|
||||
|
||||
#help bumpnogit: Increments the release file by one and does not commit changes.
|
||||
bumpnogit:
|
||||
@$(MAKE) spdxcheck
|
||||
oldrel=$(shell rpmspec -D '_vendor clr' --srpm -q --queryformat '%{RELEASE}\n' $(SPECFILE)); \
|
||||
oldrel=$(shell $(call queryspec,%{RELEASE}\n,$(SPECFILE))); \
|
||||
newrel=$$(($$oldrel + 1)); \
|
||||
sed -i "s/^\(Release[[:blank:]]*:[[:blank:]]*\)$$oldrel$$/\1$$newrel/" $(SPECFILE); \
|
||||
echo "$$newrel" > release;
|
||||
@@ -232,7 +234,7 @@ $(__missingsources): sources
|
||||
# First argument is a Clear Linux build number (e.g. 22000)
|
||||
define fetch-from-srpm
|
||||
tmp=$$(mktemp -d -p "."); \
|
||||
srpm=$$(rpmspec --srpm -q --qf "%{NVR}.src.rpm\n" $(SPECFILE)); \
|
||||
srpm=$$($(call queryspec,%{NVR}.src.rpm\n,$(SPECFILE))); \
|
||||
if cd "$$tmp" && ! curl -s -S -f -L -O $(MIRROR_CURL_OPTS) $(DOWNLOAD_MIRROR)/releases/$(1)/clear/source/SRPMS/$$srpm; then \
|
||||
echo "Failed to download $$srpm from Clear Linux release $(1)." >&2; \
|
||||
cd .. && rm -rf "$$tmp"; \
|
||||
@@ -240,7 +242,7 @@ define fetch-from-srpm
|
||||
fi; \
|
||||
rpm2cpio $$srpm | cpio --quiet -id; \
|
||||
cd ..; \
|
||||
srclist=$$(rpmspec --srpm -q --qf "[%{SOURCE}\n]" $(SPECFILE)); \
|
||||
srclist=$$($(call queryspec,[%{SOURCE}\n],$(SPECFILE))); \
|
||||
for s in $$srclist; do \
|
||||
if ! mv --no-clobber "$$tmp"/$$s .; then \
|
||||
echo "Missing source file \"$$s\" in $${srpm}." >&2; \
|
||||
@@ -279,7 +281,7 @@ else
|
||||
sources:
|
||||
@$(MAKE) generateupstream; \
|
||||
[ $$? -eq 0 ] && exit 0; \
|
||||
nvr="$$(rpmspec --srpm -q --qf '%{NAME}\t%{VERSION}\t%{RELEASE}\n' $(SPECFILE))"; \
|
||||
nvr="$$($(call queryspec,%{NAME}\t%{VERSION}\t%{RELEASE}\n,$(SPECFILE)))"; \
|
||||
git -C $(TOPLVL)/projects/common fetch --tags >/dev/null 2>&1; \
|
||||
latest_builds=$$(git -C $(TOPLVL)/projects/common tag -l | sort -rn); \
|
||||
for b in $$latest_builds; do \
|
||||
@@ -305,8 +307,8 @@ prekoji-checks:
|
||||
koji: prekoji-checks kojidef
|
||||
@$(MAKE) spdxcheck
|
||||
@$(MAKE) checkblacklist
|
||||
@if [ "$$(git rev-parse --abbrev-ref HEAD)" != "master" ]; then \
|
||||
echo "Error: Must be on the master branch to submit to koji" >&2; \
|
||||
@if [ "$(CURRENT_BRANCH)" != "master" ] && [ "$(CURRENT_BRANCH)" != "main" ]; then \
|
||||
echo "Error: Must be on the \"master\" or \"main\" branch to submit to koji" >&2; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
if ! git diff --quiet HEAD -- ${SPECFILE}; then \
|
||||
@@ -322,7 +324,7 @@ koji: prekoji-checks kojidef
|
||||
exit 1; \
|
||||
fi
|
||||
git tag $(SRPMVERS)
|
||||
git push origin master refs/tags/$(SRPMVERS)
|
||||
git push origin $(CURRENT_BRANCH):master refs/tags/$(SRPMVERS)
|
||||
$(KOJI_CMD) build $$KOJI_NOWAIT $(KOJI_TAG) $(PKG_BASE_URL)/$(PKG_NAME)?#$(SRPMVERS)
|
||||
|
||||
#help rekoji: In case a previous 'make koji' failed, trigger a rebuild for the
|
||||
@@ -449,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/; \
|
||||
|
||||
@@ -47,6 +47,14 @@ define subjectprefix
|
||||
git config format.subjectPrefix "PATCH $(1)"
|
||||
endef
|
||||
|
||||
# Query the spec file (or spec files) listed in argument 2 for the field(s)
|
||||
# specified in argument 1. The fields are derived from the source rpm(s)
|
||||
# generated by the specs. Queried fields that are declared within the spec file
|
||||
# must be declared above the first %files section.
|
||||
define queryspec
|
||||
rpmspec --define='_vendor clr' --srpm --query --queryformat='$(1)' <(sed -n '1,/%files/p' $(2))
|
||||
endef
|
||||
|
||||
# If GITOLITE_BASE_URL is defined, sets a repo's push URL for that gitolite
|
||||
# instance. Accepts one argument: the path to the repo on gitolite. If
|
||||
# GITOLITE_BASE_URL is not defined, no push URL is set -- the shell's null
|
||||
|
||||
+3
-3
@@ -163,7 +163,7 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
#help diffstat. Requires that diffstat is installed.
|
||||
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
(cd $$p ; git status | grep -q 'nothing to commit, working [^ ]* clean' || (echo "Uncommitted changes in: $$p"; git diff |diffstat -p1)) ;\
|
||||
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git diff | diffstat -p1); :) ;\
|
||||
done
|
||||
|
||||
#help log: Run git log origin/master..HEAD for all package repos, thus
|
||||
@@ -178,13 +178,13 @@ log: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
#help versions: Displays the version of each package in the ./packages tree.
|
||||
versions: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
(cd $$p; if ls *.spec &> /dev/null; then rpmspec -q --queryformat '%{NAME}-%{VERSION}\n' *.spec | head -n1; fi) ;\
|
||||
(cd $$p; if ls *.spec &> /dev/null; then $(call queryspec,%{NAME}-%{VERSION}\n,*.spec) | head -n1; fi) ;\
|
||||
done
|
||||
|
||||
#help releases: Like 'make versions', but also displays the release number.
|
||||
releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
(cd $$p; if ls *.spec &> /dev/null; then rpmspec -q --queryformat '%{NAME}-%{VERSION}-%{RELEASE}\n' *.spec | head -n1; fi) ;\
|
||||
(cd $$p; if ls *.spec &> /dev/null; then $(call queryspec,%{NVR}\n,*.spec) | head -n1; fi) ;\
|
||||
done
|
||||
|
||||
#help provides: Is used to find out which RPM package provides some file.
|
||||
|
||||
Binary file not shown.
@@ -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,6 +65,7 @@ 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
|
||||
@@ -96,6 +100,7 @@ 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
|
||||
@@ -104,6 +109,7 @@ CC-PDDC
|
||||
CC0-1.0
|
||||
CDDL-1.0
|
||||
CDDL-1.1
|
||||
CDL-1.0
|
||||
CDLA-Permissive-1.0
|
||||
CDLA-Sharing-1.0
|
||||
CECILL-1.0
|
||||
@@ -132,6 +138,7 @@ CrystalStacker
|
||||
Cube
|
||||
D-FSL-1.0
|
||||
DOC
|
||||
DRL-1.0
|
||||
DSDP
|
||||
Dotseqn
|
||||
ECL-1.0
|
||||
@@ -154,7 +161,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 +261,7 @@ Linux-OpenIB
|
||||
MIT
|
||||
MIT-0
|
||||
MIT-CMU
|
||||
MIT-Modern-Variant
|
||||
MIT-advertising
|
||||
MIT-enna
|
||||
MIT-feh
|
||||
@@ -271,6 +281,7 @@ MulanPSL-1.0
|
||||
MulanPSL-2.0
|
||||
Multics
|
||||
Mup
|
||||
NAIST-2003
|
||||
NASA-1.3
|
||||
NBPL-1.0
|
||||
NCGL-UK-2.0
|
||||
@@ -306,6 +317,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
|
||||
|
||||
@@ -23,6 +23,7 @@ Gradio
|
||||
GtkD
|
||||
HeapDict
|
||||
ImageMagick
|
||||
Imath
|
||||
JAGS
|
||||
Jinja2
|
||||
Judy
|
||||
@@ -72,6 +73,7 @@ PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
Pyro4
|
||||
QAT_engine
|
||||
QGIS
|
||||
QtAwesome
|
||||
QtPy
|
||||
@@ -92,6 +94,7 @@ R-BiocManager
|
||||
R-BoolNet
|
||||
R-BradleyTerry2
|
||||
R-Brobdingnag
|
||||
R-C50
|
||||
R-CVST
|
||||
R-Cairo
|
||||
R-CircStats
|
||||
@@ -107,6 +110,7 @@ R-DT
|
||||
R-DendSer
|
||||
R-Deriv
|
||||
R-DescTools
|
||||
R-DiagrammeR
|
||||
R-DistributionUtils
|
||||
R-DoseFinding
|
||||
R-Ecdat
|
||||
@@ -208,6 +212,7 @@ R-VGAM
|
||||
R-VGAMdata
|
||||
R-VIM
|
||||
R-WDI
|
||||
R-WikidataQueryServiceR
|
||||
R-WikidataR
|
||||
R-WikipediR
|
||||
R-XML
|
||||
@@ -260,9 +265,11 @@ R-bridgesampling
|
||||
R-brio
|
||||
R-brms
|
||||
R-broom
|
||||
R-bslib
|
||||
R-bvls
|
||||
R-ca
|
||||
R-caTools
|
||||
R-cachem
|
||||
R-calibrate
|
||||
R-calibrator
|
||||
R-callr
|
||||
@@ -293,6 +300,7 @@ R-commonmark
|
||||
R-compositions
|
||||
R-conditionz
|
||||
R-config
|
||||
R-conflicted
|
||||
R-conquer
|
||||
R-contfrac
|
||||
R-conting
|
||||
@@ -303,6 +311,7 @@ R-covr
|
||||
R-cowplot
|
||||
R-cpp11
|
||||
R-crayon
|
||||
R-credentials
|
||||
R-crosstalk
|
||||
R-crul
|
||||
R-csvy
|
||||
@@ -339,6 +348,7 @@ R-doParallel
|
||||
R-doRNG
|
||||
R-doSNOW
|
||||
R-dotCall64
|
||||
R-downlit
|
||||
R-downloader
|
||||
R-dplyr
|
||||
R-drc
|
||||
@@ -352,6 +362,7 @@ R-eRm
|
||||
R-earth
|
||||
R-eco
|
||||
R-ecodist
|
||||
R-eddington
|
||||
R-effects
|
||||
R-eha
|
||||
R-eiPack
|
||||
@@ -391,12 +402,14 @@ R-fUnitRoots
|
||||
R-fail
|
||||
R-fansi
|
||||
R-farver
|
||||
R-fastGHQuad
|
||||
R-fastICA
|
||||
R-fastcluster
|
||||
R-fastmap
|
||||
R-fastmatch
|
||||
R-fauxpas
|
||||
R-fda
|
||||
R-fds
|
||||
R-feather
|
||||
R-ff
|
||||
R-fields
|
||||
@@ -415,6 +428,7 @@ R-forcats
|
||||
R-foreach
|
||||
R-forecast
|
||||
R-formatR
|
||||
R-formattable
|
||||
R-fossil
|
||||
R-fpc
|
||||
R-fracdiff
|
||||
@@ -427,6 +441,7 @@ R-future
|
||||
R-g.data
|
||||
R-gam
|
||||
R-gamm4
|
||||
R-gargle
|
||||
R-gbRd
|
||||
R-gbm
|
||||
R-gbutils
|
||||
@@ -438,6 +453,7 @@ R-geiger
|
||||
R-generics
|
||||
R-geojson
|
||||
R-geometry
|
||||
R-gert
|
||||
R-getopt
|
||||
R-ggjoy
|
||||
R-ggplot2
|
||||
@@ -446,6 +462,8 @@ R-ggridges
|
||||
R-ggvis
|
||||
R-gh
|
||||
R-git2r
|
||||
R-gitcreds
|
||||
R-gld
|
||||
R-glmnet
|
||||
R-globals
|
||||
R-glue
|
||||
@@ -454,10 +472,13 @@ R-gmp
|
||||
R-gnm
|
||||
R-goftest
|
||||
R-googleVis
|
||||
R-googledrive
|
||||
R-googlesheets4
|
||||
R-gower
|
||||
R-gplots
|
||||
R-gridBase
|
||||
R-gridExtra
|
||||
R-gsl
|
||||
R-gss
|
||||
R-gtable
|
||||
R-gtools
|
||||
@@ -480,6 +501,7 @@ R-hunspell
|
||||
R-hwriter
|
||||
R-hypergeo
|
||||
R-ica
|
||||
R-ids
|
||||
R-igraph
|
||||
R-import
|
||||
R-ineq
|
||||
@@ -498,7 +520,9 @@ R-joineR
|
||||
R-joineRML
|
||||
R-jpeg
|
||||
R-jqr
|
||||
R-jquerylib
|
||||
R-jsonlite
|
||||
R-kableExtra
|
||||
R-keras
|
||||
R-kernlab
|
||||
R-kimisc
|
||||
@@ -509,6 +533,7 @@ R-ks
|
||||
R-labeling
|
||||
R-labelled
|
||||
R-laeken
|
||||
R-lamW
|
||||
R-lambda.r
|
||||
R-languageR
|
||||
R-languageserver
|
||||
@@ -533,6 +558,7 @@ R-listviewer
|
||||
R-lle
|
||||
R-lme4
|
||||
R-lmerTest
|
||||
R-lmom
|
||||
R-lmtest
|
||||
R-locfit
|
||||
R-logcondens
|
||||
@@ -554,6 +580,7 @@ R-mapproj
|
||||
R-maps
|
||||
R-maptools
|
||||
R-markdown
|
||||
R-mathjaxr
|
||||
R-matrixStats
|
||||
R-matrixcalc
|
||||
R-maxLik
|
||||
@@ -563,6 +590,7 @@ R-mda
|
||||
R-measures
|
||||
R-memisc
|
||||
R-memoise
|
||||
R-metafor
|
||||
R-mi
|
||||
R-mice
|
||||
R-microbenchmark
|
||||
@@ -619,7 +647,9 @@ R-optparse
|
||||
R-ordinal
|
||||
R-pROC
|
||||
R-packrat
|
||||
R-palmerpenguins
|
||||
R-pamr
|
||||
R-pander
|
||||
R-parallelly
|
||||
R-parsedate
|
||||
R-partitions
|
||||
@@ -651,6 +681,7 @@ R-pkgload
|
||||
R-pkgmaker
|
||||
R-plm
|
||||
R-plogr
|
||||
R-plot3D
|
||||
R-plotly
|
||||
R-plotmo
|
||||
R-plotrix
|
||||
@@ -671,6 +702,7 @@ R-prefmod
|
||||
R-prettyunits
|
||||
R-princurve
|
||||
R-processx
|
||||
R-procmaps
|
||||
R-prodlim
|
||||
R-profdpm
|
||||
R-profileModel
|
||||
@@ -701,6 +733,8 @@ R-quantmod
|
||||
R-quantreg
|
||||
R-questionr
|
||||
R-qvcalc
|
||||
R-ragg
|
||||
R-rainbow
|
||||
R-randomForest
|
||||
R-randomNames
|
||||
R-randtests
|
||||
@@ -709,10 +743,13 @@ R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-ratelimitr
|
||||
R-rbenchmark
|
||||
R-rbibutils
|
||||
R-rcmdcheck
|
||||
R-rcorpora
|
||||
R-reactR
|
||||
R-reactable
|
||||
R-reactlog
|
||||
R-readODS
|
||||
R-readr
|
||||
@@ -728,6 +765,7 @@ R-remotes
|
||||
R-rentrez
|
||||
R-repr
|
||||
R-reprex
|
||||
R-repurrrsive
|
||||
R-reshape
|
||||
R-reshape2
|
||||
R-reticulate
|
||||
@@ -760,6 +798,7 @@ R-robustbase
|
||||
R-rootSolve
|
||||
R-rotl
|
||||
R-roxygen2
|
||||
R-rpart.plot
|
||||
R-rprojroot
|
||||
R-rrcov
|
||||
R-rredlist
|
||||
@@ -769,6 +808,7 @@ R-rsdmx
|
||||
R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstpm2
|
||||
R-rstudio
|
||||
R-rstudio-server
|
||||
R-rstudioapi
|
||||
@@ -779,6 +819,7 @@ R-rvest
|
||||
R-sROC
|
||||
R-sampling
|
||||
R-sandwich
|
||||
R-sass
|
||||
R-scales
|
||||
R-scatterplot3d
|
||||
R-sde
|
||||
@@ -818,8 +859,13 @@ R-sourcetools
|
||||
R-sp
|
||||
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
|
||||
R-spdep
|
||||
@@ -842,15 +888,18 @@ R-subselect
|
||||
R-superpc
|
||||
R-survey
|
||||
R-svUnit
|
||||
R-svglite
|
||||
R-sys
|
||||
R-systemfit
|
||||
R-systemfonts
|
||||
R-tables
|
||||
R-tau
|
||||
R-taxize
|
||||
R-tclust
|
||||
R-tensor
|
||||
R-tensorA
|
||||
R-tensorflow
|
||||
R-terra
|
||||
R-testit
|
||||
R-testthat
|
||||
R-texreg
|
||||
@@ -859,6 +908,7 @@ R-tfruns
|
||||
R-threejs
|
||||
R-tibble
|
||||
R-tidyr
|
||||
R-tidyrules
|
||||
R-tidyselect
|
||||
R-tidyverse
|
||||
R-tikzDevice
|
||||
@@ -892,17 +942,21 @@ R-vcdExtra
|
||||
R-vcr
|
||||
R-vctrs
|
||||
R-vegan
|
||||
R-vembedr
|
||||
R-vioplot
|
||||
R-viridis
|
||||
R-viridisLite
|
||||
R-visNetwork
|
||||
R-waldo
|
||||
R-warp
|
||||
R-webfakes
|
||||
R-webmockr
|
||||
R-webshot
|
||||
R-webutils
|
||||
R-whisker
|
||||
R-whoami
|
||||
R-wikitaxa
|
||||
R-winch
|
||||
R-withr
|
||||
R-worrms
|
||||
R-xfun
|
||||
@@ -968,6 +1022,7 @@ XStatic-term.js
|
||||
Z3
|
||||
abireport
|
||||
absl-py
|
||||
abydos
|
||||
accountsservice
|
||||
acl
|
||||
acme
|
||||
@@ -996,10 +1051,12 @@ alsa-tools
|
||||
alsa-ucm-conf
|
||||
alsa-utils
|
||||
amazon-efs-utils
|
||||
amazon-ssm-agent
|
||||
amtk
|
||||
analitza
|
||||
ansible
|
||||
antlr4-python3-runtime
|
||||
anyio
|
||||
apache-ant
|
||||
apipkg
|
||||
appdirs
|
||||
@@ -1037,6 +1094,7 @@ astunparse
|
||||
asunder
|
||||
asv
|
||||
async-timeout
|
||||
async_generator
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
@@ -1062,99 +1120,15 @@ automake
|
||||
autossh
|
||||
avahi
|
||||
awesome-wm
|
||||
awesomeversion
|
||||
awscli
|
||||
axel
|
||||
azure-batch
|
||||
azure-cli
|
||||
azure-cli-command-modules-nspkg
|
||||
azure-cli-core
|
||||
azure-cli-nspkg
|
||||
azure-cli-telemetry
|
||||
azure-common
|
||||
azure-configs
|
||||
azure-core
|
||||
azure-cosmos
|
||||
azure-datalake-store
|
||||
azure-functions-devops-build
|
||||
azure-graphrbac
|
||||
azure-iot-sdk
|
||||
azure-keyvault
|
||||
azure-keyvault-certificates
|
||||
azure-keyvault-keys
|
||||
azure-keyvault-secrets
|
||||
azure-loganalytics
|
||||
azure-mgmt-advisor
|
||||
azure-mgmt-apimanagement
|
||||
azure-mgmt-appconfiguration
|
||||
azure-mgmt-applicationinsights
|
||||
azure-mgmt-authorization
|
||||
azure-mgmt-batch
|
||||
azure-mgmt-batchai
|
||||
azure-mgmt-billing
|
||||
azure-mgmt-botservice
|
||||
azure-mgmt-cdn
|
||||
azure-mgmt-cognitiveservices
|
||||
azure-mgmt-compute
|
||||
azure-mgmt-consumption
|
||||
azure-mgmt-containerinstance
|
||||
azure-mgmt-containerregistry
|
||||
azure-mgmt-containerservice
|
||||
azure-mgmt-core
|
||||
azure-mgmt-cosmosdb
|
||||
azure-mgmt-datalake-analytics
|
||||
azure-mgmt-datalake-nspkg
|
||||
azure-mgmt-datalake-store
|
||||
azure-mgmt-datamigration
|
||||
azure-mgmt-deploymentmanager
|
||||
azure-mgmt-devtestlabs
|
||||
azure-mgmt-dns
|
||||
azure-mgmt-eventgrid
|
||||
azure-mgmt-eventhub
|
||||
azure-mgmt-hdinsight
|
||||
azure-mgmt-imagebuilder
|
||||
azure-mgmt-iotcentral
|
||||
azure-mgmt-iothub
|
||||
azure-mgmt-iothubprovisioningservices
|
||||
azure-mgmt-keyvault
|
||||
azure-mgmt-kusto
|
||||
azure-mgmt-loganalytics
|
||||
azure-mgmt-managedservices
|
||||
azure-mgmt-managementgroups
|
||||
azure-mgmt-maps
|
||||
azure-mgmt-marketplaceordering
|
||||
azure-mgmt-media
|
||||
azure-mgmt-monitor
|
||||
azure-mgmt-msi
|
||||
azure-mgmt-netapp
|
||||
azure-mgmt-network
|
||||
azure-mgmt-nspkg
|
||||
azure-mgmt-policyinsights
|
||||
azure-mgmt-privatedns
|
||||
azure-mgmt-rdbms
|
||||
azure-mgmt-recoveryservices
|
||||
azure-mgmt-recoveryservicesbackup
|
||||
azure-mgmt-redhatopenshift
|
||||
azure-mgmt-redis
|
||||
azure-mgmt-relay
|
||||
azure-mgmt-reservations
|
||||
azure-mgmt-resource
|
||||
azure-mgmt-search
|
||||
azure-mgmt-security
|
||||
azure-mgmt-servicebus
|
||||
azure-mgmt-servicefabric
|
||||
azure-mgmt-signalr
|
||||
azure-mgmt-sql
|
||||
azure-mgmt-sqlvirtualmachine
|
||||
azure-mgmt-storage
|
||||
azure-mgmt-trafficmanager
|
||||
azure-mgmt-web
|
||||
azure-multiapi-storage
|
||||
azure-nspkg
|
||||
azure-storage-blob
|
||||
azure-storage-common
|
||||
babeltrace
|
||||
babl
|
||||
backcall
|
||||
backports.entry_points_selectable
|
||||
backports.ssl_match_hostname
|
||||
backports.weakref
|
||||
baloo
|
||||
@@ -1183,6 +1157,8 @@ bleach
|
||||
blender
|
||||
blinken
|
||||
blinker
|
||||
blivet
|
||||
blivet-gui
|
||||
blktrace
|
||||
blockdiag
|
||||
bluedevil
|
||||
@@ -1201,6 +1177,7 @@ boto
|
||||
boto3
|
||||
botocore
|
||||
bovo
|
||||
box2d
|
||||
bpftrace
|
||||
breeze
|
||||
breeze-gtk
|
||||
@@ -1231,6 +1208,7 @@ byobu
|
||||
bz2file
|
||||
bzip2
|
||||
c-ares
|
||||
cJSON
|
||||
c_rehash
|
||||
ca-certs
|
||||
ca-certs-static
|
||||
@@ -1335,25 +1313,31 @@ colord-gtk
|
||||
colordiff
|
||||
columbiad
|
||||
commonmark
|
||||
compat-boost-soname1.72.0
|
||||
compat-atkmm-soname16
|
||||
compat-boost-soname1.73.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-hunspell-soname1.6
|
||||
compat-icu4c-soname64
|
||||
compat-libffi-soname6
|
||||
compat-libhandy-0.0
|
||||
compat-libpng-soname12
|
||||
compat-libraw-soname19
|
||||
compat-libsigc++-soname20
|
||||
compat-libva-soname1
|
||||
compat-nettle-soname6
|
||||
compat-lua-52
|
||||
compat-lua-53
|
||||
compat-mlt-soname6
|
||||
compat-nettle-soname7
|
||||
compat-opencv-soname42
|
||||
compat-protobuf-soname22
|
||||
compat-openexr-soname25
|
||||
compat-pangomm-soname14
|
||||
compat-re2-soname7
|
||||
compat-readline-soname5
|
||||
compat-tracker-soname2.0
|
||||
complete
|
||||
component
|
||||
compute-image-packages
|
||||
conda
|
||||
@@ -1393,6 +1377,7 @@ cups
|
||||
cups-bjnp
|
||||
cups-filters
|
||||
cups-pk-helper
|
||||
curio
|
||||
curl
|
||||
custom_inherit
|
||||
cve-bin-tool
|
||||
@@ -1420,6 +1405,7 @@ decorator
|
||||
defusedxml
|
||||
dejagnu
|
||||
dejavu-fonts
|
||||
deprecation
|
||||
desktop-file-utils
|
||||
devhelp
|
||||
dfc
|
||||
@@ -1431,16 +1417,17 @@ diffoscope
|
||||
diffstat
|
||||
diffutils
|
||||
digikam
|
||||
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
|
||||
@@ -1462,6 +1449,7 @@ docbook-utils
|
||||
docbook-xml
|
||||
docbook2X
|
||||
docker
|
||||
docker-cli
|
||||
docker-compose
|
||||
docker-py
|
||||
docker-pycreds
|
||||
@@ -1597,6 +1585,7 @@ fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
fsearch
|
||||
fsspec
|
||||
funcparserlib
|
||||
funcsigs
|
||||
fuse
|
||||
@@ -1619,12 +1608,14 @@ gdal
|
||||
gdb
|
||||
gdbm
|
||||
gdk-pixbuf
|
||||
gdk-pixbuf-xlib
|
||||
gdl
|
||||
gdm
|
||||
geany
|
||||
geany-plugins
|
||||
geary
|
||||
gedit
|
||||
gedit-plugins-gnome
|
||||
geeqie
|
||||
gegl
|
||||
gensim
|
||||
@@ -1771,6 +1762,7 @@ gst-plugins-bad
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
gst-plugins-ugly
|
||||
gst-python
|
||||
gstreamer
|
||||
gstreamer-vaapi
|
||||
gsutil
|
||||
@@ -1779,6 +1771,7 @@ gtk-doc
|
||||
gtk-vnc
|
||||
gtk-xfce-engine
|
||||
gtk3
|
||||
gtk4
|
||||
gtkmm2
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
@@ -1865,14 +1858,13 @@ importlib_metadata
|
||||
indent
|
||||
influxdb
|
||||
iniconfig
|
||||
inih
|
||||
iniparse
|
||||
init-rdahead
|
||||
inkscape
|
||||
innoextract
|
||||
inotify-tools
|
||||
intel-compute-runtime
|
||||
intel-gmmlib
|
||||
intel-graphics-compiler
|
||||
intel-hybrid-driver
|
||||
intel-ipsec-mb
|
||||
intel-media-driver
|
||||
@@ -1891,6 +1883,7 @@ ipe
|
||||
iperf
|
||||
ipmctl
|
||||
ipmitool
|
||||
ipp-crypto
|
||||
iproute2
|
||||
ipset
|
||||
iptables
|
||||
@@ -1921,6 +1914,7 @@ iwd
|
||||
ixion
|
||||
jack2
|
||||
jansson
|
||||
janus
|
||||
jaraco.classes
|
||||
jaraco.collections
|
||||
jaraco.functools
|
||||
@@ -1930,6 +1924,7 @@ javaproperties
|
||||
jdcal
|
||||
jedi
|
||||
jeepney
|
||||
jellyfish
|
||||
jemalloc
|
||||
jmespath
|
||||
joblib
|
||||
@@ -1937,6 +1932,7 @@ joe
|
||||
josepy
|
||||
jpegoptim
|
||||
jq
|
||||
js8call
|
||||
jsmin
|
||||
json-c
|
||||
json-glib
|
||||
@@ -1952,13 +1948,16 @@ juk
|
||||
jupyter
|
||||
jupyter-nbgallery
|
||||
jupyter-notebook-gist
|
||||
jupyter-packaging
|
||||
jupyter_client
|
||||
jupyter_console
|
||||
jupyter_core
|
||||
jupyter_server
|
||||
jupyterlab
|
||||
jupyterlab_launcher
|
||||
jupyterlab_pygments
|
||||
jupyterlab_server
|
||||
jupyterlab_widgets
|
||||
kactivities
|
||||
kactivities-stats
|
||||
kactivitymanagerd
|
||||
@@ -2163,6 +2162,7 @@ ktp-desktop-applets
|
||||
ktuberling
|
||||
kturtle
|
||||
kubernetes
|
||||
kubernetes-migration-1.18
|
||||
kunitconversion
|
||||
kwallet
|
||||
kwallet-pam
|
||||
@@ -2213,9 +2213,9 @@ libXtst
|
||||
libXv
|
||||
libXvMC
|
||||
libXxf86dga
|
||||
libXxf86misc
|
||||
libabigail
|
||||
libabw
|
||||
libadwaita
|
||||
libaio
|
||||
libappindicator
|
||||
libarchive
|
||||
@@ -2246,6 +2246,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libcst
|
||||
libcxx
|
||||
libdaemon
|
||||
libdatrie
|
||||
@@ -2257,6 +2258,7 @@ libdmx
|
||||
libdnf
|
||||
libdrm
|
||||
libe-book
|
||||
libebur128
|
||||
libeconf
|
||||
libedit
|
||||
libepoxy
|
||||
@@ -2357,6 +2359,7 @@ libnice
|
||||
libnl
|
||||
libnma
|
||||
libnotify
|
||||
libnsl
|
||||
libnumbertext
|
||||
liboauth
|
||||
libodfgen
|
||||
@@ -2379,6 +2382,7 @@ libpwquality
|
||||
libqalculate
|
||||
libqb
|
||||
libqmi
|
||||
libqrtr-glib
|
||||
libqtxdg
|
||||
libqxp
|
||||
libratbag
|
||||
@@ -2412,6 +2416,7 @@ libssh
|
||||
libssh2
|
||||
libstaroffice
|
||||
libstatgrab
|
||||
libstemmer_c
|
||||
libstoragemgmt
|
||||
libsysstat
|
||||
libtasn1
|
||||
@@ -2421,11 +2426,14 @@ libtheora
|
||||
libtirpc
|
||||
libtool
|
||||
libtorrent-rasterbar
|
||||
libtraceevent
|
||||
libtracefs
|
||||
libudev0-shim
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
libusb
|
||||
libusb-compat
|
||||
libuser
|
||||
libuv
|
||||
libva
|
||||
@@ -2489,6 +2497,7 @@ lksctp-tools
|
||||
lldb
|
||||
llfuse
|
||||
llvm
|
||||
llvm10
|
||||
llvm8
|
||||
llvm9
|
||||
lm-sensors
|
||||
@@ -2510,7 +2519,6 @@ lttng-tools
|
||||
lttng-ust
|
||||
lua
|
||||
lua-nginx-module
|
||||
lua52
|
||||
lualgi
|
||||
luarocks
|
||||
lutris
|
||||
@@ -2548,6 +2556,7 @@ man-pages-posix
|
||||
marble
|
||||
mariadb
|
||||
matplotlib
|
||||
matplotlib-inline
|
||||
mc
|
||||
mccabe
|
||||
mcelog
|
||||
@@ -2592,6 +2601,7 @@ mkl-dnn
|
||||
mkosi
|
||||
mlocate
|
||||
mlt
|
||||
mm-common
|
||||
mmc-utils
|
||||
mobile-broadband-provider-info
|
||||
mock
|
||||
@@ -2610,7 +2620,6 @@ mosh
|
||||
mosquitto
|
||||
motd-update
|
||||
motif
|
||||
mozjs68
|
||||
mozjs78
|
||||
mpc
|
||||
mpfr
|
||||
@@ -2618,14 +2627,11 @@ mpg123
|
||||
mpi4py
|
||||
mpmath
|
||||
mpv
|
||||
msal
|
||||
msal-extensions
|
||||
msgpack
|
||||
msgpack-c
|
||||
msmtp
|
||||
msr-tools
|
||||
msrest
|
||||
msrestazure
|
||||
mstflint
|
||||
mtd-utils
|
||||
mtdev
|
||||
@@ -2651,6 +2657,8 @@ nagios-plugins
|
||||
nano
|
||||
nasm
|
||||
nautilus
|
||||
nbclassic
|
||||
nbclient
|
||||
nbconvert
|
||||
nbformat
|
||||
nbval
|
||||
@@ -2663,6 +2671,7 @@ ndpi
|
||||
neofetch
|
||||
neomutt
|
||||
neovim
|
||||
nest_asyncio
|
||||
net-snmp
|
||||
net-tools
|
||||
netaddr
|
||||
@@ -2792,6 +2801,7 @@ p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacrunner
|
||||
paho-mqtt
|
||||
paho.mqtt.c
|
||||
paho.mqtt.cpp
|
||||
palapeli
|
||||
@@ -2829,6 +2839,7 @@ pdns
|
||||
pdns-recursor
|
||||
pdsh
|
||||
pecan
|
||||
ped
|
||||
pep517
|
||||
pep8
|
||||
perftest
|
||||
@@ -2984,7 +2995,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
|
||||
@@ -3232,6 +3242,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
|
||||
@@ -3391,6 +3402,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
|
||||
@@ -3415,6 +3427,7 @@ perl-SGMLS
|
||||
perl-SMTP-Server
|
||||
perl-SQL-Abstract
|
||||
perl-SQL-Abstract-Classic
|
||||
perl-SQL-Abstract-Pg
|
||||
perl-SQL-SplitStatement
|
||||
perl-SQL-Tokenizer
|
||||
perl-SQL-Translator
|
||||
@@ -3651,6 +3664,7 @@ perl-prefork
|
||||
perl-strictures
|
||||
persistent
|
||||
pesign
|
||||
petastorm
|
||||
pexpect
|
||||
phonon
|
||||
phonon-vlc
|
||||
@@ -3682,7 +3696,6 @@ php-gnupg
|
||||
php-hprose
|
||||
php-hrtime
|
||||
php-igbinary
|
||||
php-imagick
|
||||
php-inotify
|
||||
php-jsmin
|
||||
php-json_post
|
||||
@@ -3723,6 +3736,7 @@ php-zmq
|
||||
pickleshare
|
||||
picmi
|
||||
picocom
|
||||
pid
|
||||
pidgin
|
||||
pidgin-sipe
|
||||
pigeonhole
|
||||
@@ -3746,6 +3760,7 @@ plasma-framework
|
||||
plasma-integration
|
||||
plasma-nm
|
||||
plasma-pa
|
||||
plasma-systemmonitor
|
||||
plasma-vault
|
||||
plasma-wayland-protocols
|
||||
plasma-workspace
|
||||
@@ -3788,6 +3803,7 @@ prison
|
||||
processor-trace
|
||||
procmail
|
||||
procps-ng
|
||||
progress
|
||||
progressbar
|
||||
proj
|
||||
prometheus_client
|
||||
@@ -3839,12 +3855,20 @@ pynvim
|
||||
pyotherside
|
||||
pyotp
|
||||
pyparsing
|
||||
pyparted
|
||||
pyperclip
|
||||
pyperf
|
||||
pyquery
|
||||
pyreadline
|
||||
pyroma
|
||||
pyroute2
|
||||
pyroute2.core
|
||||
pyroute2.ethtool
|
||||
pyroute2.ipdb
|
||||
pyroute2.ipset
|
||||
pyroute2.ndb
|
||||
pyroute2.nftables
|
||||
pyroute2.nslink
|
||||
pyrsistent
|
||||
pyserial
|
||||
pyside2-setup
|
||||
@@ -3867,6 +3891,7 @@ python-Levenshtein
|
||||
python-augeas
|
||||
python-crfsuite
|
||||
python-dateutil
|
||||
python-dbusmock
|
||||
python-digitalocean
|
||||
python-distutils-extra
|
||||
python-dotenv
|
||||
@@ -3877,6 +3902,8 @@ python-hwinfo
|
||||
python-jsonrpc-server
|
||||
python-kconfiglib
|
||||
python-language-server
|
||||
python-lsp-jsonrpc
|
||||
python-lsp-server
|
||||
python-magic
|
||||
python-memcached
|
||||
python-mimeparse
|
||||
@@ -3903,6 +3930,7 @@ pyu2f
|
||||
pyudev
|
||||
pyusb
|
||||
pywbem
|
||||
pyxDamerauLevenshtein
|
||||
pyxattr
|
||||
pyxdg
|
||||
pyzmq
|
||||
@@ -3993,6 +4021,7 @@ requests-mock
|
||||
requests-ntlm
|
||||
requests-oauthlib
|
||||
requests-toolbelt
|
||||
requests-unixsocket
|
||||
responses
|
||||
rest
|
||||
restic
|
||||
@@ -4008,11 +4037,13 @@ rinutils
|
||||
rjsmin
|
||||
rlwrap
|
||||
rng-tools
|
||||
robin-map
|
||||
roboto
|
||||
rocs
|
||||
rofi
|
||||
rope
|
||||
rpcbind
|
||||
rpcsvc-proto
|
||||
rpm
|
||||
rr
|
||||
rrdtool
|
||||
@@ -4058,6 +4089,7 @@ seahorse
|
||||
secretstorage
|
||||
sed
|
||||
selenium
|
||||
semantic_version
|
||||
seqdiag
|
||||
serf
|
||||
serpent
|
||||
@@ -4065,6 +4097,7 @@ setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
setuptools-legacy
|
||||
setuptools-rust
|
||||
setuptools_scm
|
||||
setuptools_scm_git_archive
|
||||
setxkbmap
|
||||
@@ -4180,6 +4213,7 @@ sysdig
|
||||
syslinux
|
||||
sysprof
|
||||
sysstat
|
||||
system-config-printer
|
||||
systemd
|
||||
systemd-bootchart
|
||||
systemsettings
|
||||
@@ -4222,6 +4256,7 @@ texinfo
|
||||
texlive
|
||||
texmaker
|
||||
text-unidecode
|
||||
textdistance
|
||||
texttable
|
||||
tflearn
|
||||
tgt
|
||||
@@ -4248,6 +4283,7 @@ tldextract
|
||||
tmux
|
||||
tokyocabinet
|
||||
toml
|
||||
tomlkit
|
||||
toolz
|
||||
tornado
|
||||
totem
|
||||
@@ -4269,9 +4305,11 @@ twine
|
||||
typed_ast
|
||||
typeguard
|
||||
typing_extensions
|
||||
typing_inspect
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
uamqp
|
||||
ucpp
|
||||
udisks2
|
||||
udunits
|
||||
@@ -4303,6 +4341,7 @@ usrbinpython
|
||||
usrbinvi
|
||||
utf8cpp
|
||||
util-linux
|
||||
util-linux-man
|
||||
util-macros
|
||||
uwsgi
|
||||
v4l-utils
|
||||
|
||||
Reference in New Issue
Block a user