mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
64 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| be88b856de | |||
| e610c46517 | |||
| f78b8dad99 | |||
| 19e7a08dee | |||
| 3a7b28e5fa | |||
| 8997481daf | |||
| 896832831f | |||
| 1978d3268c | |||
| 7d9588c779 | |||
| 7794fa715c | |||
| 1c79b04db3 | |||
| b52570a7ad |
+59
-4
@@ -20,7 +20,7 @@ LATEST_RPMS = $(wildcard rpms/*.rpm)
|
|||||||
DEBUGINFO_RPM = $(wildcard rpms/${PKG_NAME}-debuginfo-$(shell $(call queryspec,%{V}-%{R},${SPECFILE})).*.rpm)
|
DEBUGINFO_RPM = $(wildcard rpms/${PKG_NAME}-debuginfo-$(shell $(call queryspec,%{V}-%{R},${SPECFILE})).*.rpm)
|
||||||
RPMS ?= $(LATEST_RPMS)
|
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_CONFIG_VAL is set in Makefile.shared
|
||||||
MOCK_SMP_FLAGS=$(patsubst -j%, -D_smp_mflags\ -j%,$(filter -j%, $(MAKEFLAGS)))
|
MOCK_SMP_FLAGS=$(patsubst -j%, -D_smp_mflags\ -j%,$(filter -j%, $(MAKEFLAGS)))
|
||||||
@@ -217,14 +217,24 @@ autospecnostate:
|
|||||||
scanlicense:
|
scanlicense:
|
||||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py -t . --config $(AUTOSPEC_CONF) --license-only $(firstword $(NEWURL) $(URL)) --name $(PKG_NAME)
|
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:
|
bump:
|
||||||
git pull --rebase
|
git pull --rebase
|
||||||
$(MAKE) bumpnogit
|
$(MAKE) bumpnogit
|
||||||
git add $(SPECFILE) release
|
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:
|
bumpnogit:
|
||||||
@$(MAKE) spdxcheck
|
@$(MAKE) spdxcheck
|
||||||
oldrel=$(shell $(call queryspec,%{RELEASE}\n,$(SPECFILE))); \
|
oldrel=$(shell $(call queryspec,%{RELEASE}\n,$(SPECFILE))); \
|
||||||
@@ -329,6 +339,13 @@ koji: prekoji-checks kojidef
|
|||||||
git tag $(SRPMVERS)
|
git tag $(SRPMVERS)
|
||||||
git push origin $(CURRENT_BRANCH):main refs/tags/$(SRPMVERS)
|
git push origin $(CURRENT_BRANCH):main refs/tags/$(SRPMVERS)
|
||||||
$(KOJI_CMD) build $$KOJI_NOWAIT $(KOJI_TAG) $(PKG_BASE_URL)/$(PKG_NAME)?#$(SRPMVERS)
|
$(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 BUMP_MSG="$$msg" && $(MAKE) koji-nowait) \
|
||||||
|
done \
|
||||||
|
fi
|
||||||
|
|
||||||
#help rekoji: In case a previous 'make koji' failed, trigger a rebuild for the
|
#help rekoji: In case a previous 'make koji' failed, trigger a rebuild for the
|
||||||
#help same tag.
|
#help same tag.
|
||||||
@@ -352,6 +369,44 @@ koji-nowait:
|
|||||||
rekoji-nowait:
|
rekoji-nowait:
|
||||||
$(MAKE) KOJI_NOWAIT="--nowait --background" rekoji
|
$(MAKE) KOJI_NOWAIT="--nowait --background" rekoji
|
||||||
|
|
||||||
|
#help koji-waitrepo: Wait for current package changes to become available in the
|
||||||
|
#help koji repo. If PKG_NAME is overridden on the command line, wait on changes for
|
||||||
|
#help that package instead. This capability allows the developer to "chain" builds
|
||||||
|
#help for submission to koji according to the state of the package repos on their
|
||||||
|
#help system. Additional options for `koji wait-repo` can be specified via the
|
||||||
|
#help WAIT_OPTS variable.
|
||||||
|
koji-waitrepo: kojidef
|
||||||
|
@if [[ ! "${PKG_NAME}" =~ ^[A-Za-z0-9._+-]+$$ ]]; then \
|
||||||
|
echo "[ERROR] Invalid package name \"${PKG_NAME}\""; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
if [[ "${PKG_NAME}" != "$(notdir ${CURDIR})" ]]; then \
|
||||||
|
$(MAKE) -s -C ../${PKG_NAME} koji-waitrepo; \
|
||||||
|
else \
|
||||||
|
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:
|
logcheck:
|
||||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -168,7 +168,7 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
|||||||
#help the --stat flag.
|
#help the --stat flag.
|
||||||
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
@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
|
done
|
||||||
|
|
||||||
#help log: Run git log origin/main..HEAD for all package repos, thus
|
#help log: Run git log origin/main..HEAD for all package repos, thus
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ Apache-1.0
|
|||||||
Apache-1.1
|
Apache-1.1
|
||||||
Apache-2.0
|
Apache-2.0
|
||||||
App-s2p
|
App-s2p
|
||||||
|
Arphic-1999
|
||||||
Artistic-1.0
|
Artistic-1.0
|
||||||
Artistic-1.0-Perl
|
Artistic-1.0-Perl
|
||||||
Artistic-1.0-cl8
|
Artistic-1.0-cl8
|
||||||
@@ -59,11 +60,13 @@ BSD-Protection
|
|||||||
BSD-Source-Code
|
BSD-Source-Code
|
||||||
BSL-1.0
|
BSL-1.0
|
||||||
BUSL-1.1
|
BUSL-1.1
|
||||||
|
Baekmuk
|
||||||
Bahyph
|
Bahyph
|
||||||
Barr
|
Barr
|
||||||
Beerware
|
Beerware
|
||||||
BitTorrent-1.0
|
BitTorrent-1.0
|
||||||
BitTorrent-1.1
|
BitTorrent-1.1
|
||||||
|
Bitstream-Vera
|
||||||
BlueOak-1.0.0
|
BlueOak-1.0.0
|
||||||
Borceux
|
Borceux
|
||||||
C-UDA-1.0
|
C-UDA-1.0
|
||||||
@@ -77,6 +80,7 @@ CC-BY-2.5-AU
|
|||||||
CC-BY-3.0
|
CC-BY-3.0
|
||||||
CC-BY-3.0-AT
|
CC-BY-3.0-AT
|
||||||
CC-BY-3.0-DE
|
CC-BY-3.0-DE
|
||||||
|
CC-BY-3.0-IGO
|
||||||
CC-BY-3.0-NL
|
CC-BY-3.0-NL
|
||||||
CC-BY-3.0-US
|
CC-BY-3.0-US
|
||||||
CC-BY-4.0
|
CC-BY-4.0
|
||||||
@@ -270,6 +274,8 @@ LPPL-1.1
|
|||||||
LPPL-1.2
|
LPPL-1.2
|
||||||
LPPL-1.3a
|
LPPL-1.3a
|
||||||
LPPL-1.3c
|
LPPL-1.3c
|
||||||
|
LZMA-SDK-9.11-to-9.20
|
||||||
|
LZMA-SDK-9.22
|
||||||
Latex2e
|
Latex2e
|
||||||
Leptonica
|
Leptonica
|
||||||
LiLiQ-P-1.1
|
LiLiQ-P-1.1
|
||||||
@@ -291,10 +297,12 @@ MPL-1.0
|
|||||||
MPL-1.1
|
MPL-1.1
|
||||||
MPL-2.0
|
MPL-2.0
|
||||||
MPL-2.0-no-copyleft-exception
|
MPL-2.0-no-copyleft-exception
|
||||||
|
MS-LPL
|
||||||
MS-PL
|
MS-PL
|
||||||
MS-RL
|
MS-RL
|
||||||
MTLL
|
MTLL
|
||||||
MakeIndex
|
MakeIndex
|
||||||
|
Minpack
|
||||||
MirOS
|
MirOS
|
||||||
Motosoto
|
Motosoto
|
||||||
MulanPSL-1.0
|
MulanPSL-1.0
|
||||||
@@ -307,6 +315,7 @@ NBPL-1.0
|
|||||||
NCGL-UK-2.0
|
NCGL-UK-2.0
|
||||||
NCSA
|
NCSA
|
||||||
NGPL
|
NGPL
|
||||||
|
NICTA-1.0
|
||||||
NIST-PD
|
NIST-PD
|
||||||
NIST-PD-fallback
|
NIST-PD-fallback
|
||||||
NLOD-1.0
|
NLOD-1.0
|
||||||
@@ -381,6 +390,7 @@ PolyForm-Noncommercial-1.0.0
|
|||||||
PolyForm-Small-Business-1.0.0
|
PolyForm-Small-Business-1.0.0
|
||||||
PostgreSQL
|
PostgreSQL
|
||||||
Python-2.0
|
Python-2.0
|
||||||
|
Python-2.0.1
|
||||||
QPL-1.0
|
QPL-1.0
|
||||||
Qhull
|
Qhull
|
||||||
RHeCos-1.1
|
RHeCos-1.1
|
||||||
@@ -475,7 +485,9 @@ iMatix
|
|||||||
libpng-2.0
|
libpng-2.0
|
||||||
libselinux-1.0
|
libselinux-1.0
|
||||||
libtiff
|
libtiff
|
||||||
|
mpi-permissive
|
||||||
mpich2
|
mpich2
|
||||||
|
mplus
|
||||||
psfrag
|
psfrag
|
||||||
psutils
|
psutils
|
||||||
wxWindows
|
wxWindows
|
||||||
|
|||||||
@@ -48,7 +48,6 @@ QAT_engine
|
|||||||
QGIS
|
QGIS
|
||||||
R
|
R
|
||||||
R-AER
|
R-AER
|
||||||
R-AMORE
|
|
||||||
R-ATR
|
R-ATR
|
||||||
R-Amelia
|
R-Amelia
|
||||||
R-AmesHousing
|
R-AmesHousing
|
||||||
@@ -56,7 +55,6 @@ R-BB
|
|||||||
R-BBmisc
|
R-BBmisc
|
||||||
R-BH
|
R-BH
|
||||||
R-BMA
|
R-BMA
|
||||||
R-BMS
|
|
||||||
R-BatchJobs
|
R-BatchJobs
|
||||||
R-BayesFactor
|
R-BayesFactor
|
||||||
R-BiasedUrn
|
R-BiasedUrn
|
||||||
@@ -166,7 +164,7 @@ R-Rserve
|
|||||||
R-Rsolnp
|
R-Rsolnp
|
||||||
R-Rtsne
|
R-Rtsne
|
||||||
R-Rvmmin
|
R-Rvmmin
|
||||||
R-SDMTools
|
R-Ryacas
|
||||||
R-SGP
|
R-SGP
|
||||||
R-SGPdata
|
R-SGPdata
|
||||||
R-SQUAREM
|
R-SQUAREM
|
||||||
@@ -201,7 +199,6 @@ R-adespatial
|
|||||||
R-admisc
|
R-admisc
|
||||||
R-afex
|
R-afex
|
||||||
R-alabama
|
R-alabama
|
||||||
R-alr3
|
|
||||||
R-analogue
|
R-analogue
|
||||||
R-animation
|
R-animation
|
||||||
R-ape
|
R-ape
|
||||||
@@ -267,6 +264,7 @@ R-classInt
|
|||||||
R-cli
|
R-cli
|
||||||
R-clipr
|
R-clipr
|
||||||
R-clisymbols
|
R-clisymbols
|
||||||
|
R-clock
|
||||||
R-clue
|
R-clue
|
||||||
R-clustMixType
|
R-clustMixType
|
||||||
R-clusterGeneration
|
R-clusterGeneration
|
||||||
@@ -287,7 +285,6 @@ R-config
|
|||||||
R-conflicted
|
R-conflicted
|
||||||
R-conquer
|
R-conquer
|
||||||
R-contfrac
|
R-contfrac
|
||||||
R-conting
|
|
||||||
R-corpcor
|
R-corpcor
|
||||||
R-corrgram
|
R-corrgram
|
||||||
R-corrplot
|
R-corrplot
|
||||||
@@ -302,6 +299,7 @@ R-csvy
|
|||||||
R-cubature
|
R-cubature
|
||||||
R-curl
|
R-curl
|
||||||
R-cvTools
|
R-cvTools
|
||||||
|
R-cvar
|
||||||
R-cyclocomp
|
R-cyclocomp
|
||||||
R-data.table
|
R-data.table
|
||||||
R-data.tree
|
R-data.tree
|
||||||
@@ -347,7 +345,6 @@ R-dynlm
|
|||||||
R-e1071
|
R-e1071
|
||||||
R-eRm
|
R-eRm
|
||||||
R-earth
|
R-earth
|
||||||
R-eco
|
|
||||||
R-ecodist
|
R-ecodist
|
||||||
R-eddington
|
R-eddington
|
||||||
R-effects
|
R-effects
|
||||||
@@ -371,18 +368,15 @@ R-evd
|
|||||||
R-expint
|
R-expint
|
||||||
R-expm
|
R-expm
|
||||||
R-expsmooth
|
R-expsmooth
|
||||||
R-fAsianOptions
|
|
||||||
R-fAssets
|
R-fAssets
|
||||||
R-fBasics
|
R-fBasics
|
||||||
R-fBonds
|
R-fBonds
|
||||||
R-fCopulae
|
R-fCopulae
|
||||||
R-fExoticOptions
|
|
||||||
R-fExtremes
|
R-fExtremes
|
||||||
R-fGarch
|
R-fGarch
|
||||||
R-fImport
|
R-fImport
|
||||||
R-fMultivar
|
R-fMultivar
|
||||||
R-fNonlinear
|
R-fNonlinear
|
||||||
R-fOptions
|
|
||||||
R-fRegression
|
R-fRegression
|
||||||
R-fTrading
|
R-fTrading
|
||||||
R-fUnitRoots
|
R-fUnitRoots
|
||||||
@@ -508,6 +502,7 @@ R-influenceR
|
|||||||
R-ini
|
R-ini
|
||||||
R-inline
|
R-inline
|
||||||
R-insight
|
R-insight
|
||||||
|
R-interp
|
||||||
R-inum
|
R-inum
|
||||||
R-invgamma
|
R-invgamma
|
||||||
R-ipred
|
R-ipred
|
||||||
@@ -644,12 +639,12 @@ R-nnls
|
|||||||
R-nortest
|
R-nortest
|
||||||
R-npsurv
|
R-npsurv
|
||||||
R-numDeriv
|
R-numDeriv
|
||||||
R-nws
|
|
||||||
R-nycflights13
|
R-nycflights13
|
||||||
R-officer
|
R-officer
|
||||||
R-openssl
|
R-openssl
|
||||||
R-openxlsx
|
R-openxlsx
|
||||||
R-optextras
|
R-optextras
|
||||||
|
R-optimParallel
|
||||||
R-optimx
|
R-optimx
|
||||||
R-optparse
|
R-optparse
|
||||||
R-ordinal
|
R-ordinal
|
||||||
@@ -719,9 +714,9 @@ R-princurve
|
|||||||
R-processx
|
R-processx
|
||||||
R-procmaps
|
R-procmaps
|
||||||
R-prodlim
|
R-prodlim
|
||||||
R-profdpm
|
|
||||||
R-profileModel
|
R-profileModel
|
||||||
R-profmem
|
R-profmem
|
||||||
|
R-profvis
|
||||||
R-progress
|
R-progress
|
||||||
R-progressr
|
R-progressr
|
||||||
R-projpred
|
R-projpred
|
||||||
@@ -828,15 +823,12 @@ R-rstan
|
|||||||
R-rstanarm
|
R-rstanarm
|
||||||
R-rstantools
|
R-rstantools
|
||||||
R-rstpm2
|
R-rstpm2
|
||||||
R-rstudio
|
|
||||||
R-rstudio-server
|
|
||||||
R-rstudioapi
|
R-rstudioapi
|
||||||
R-rsvg
|
R-rsvg
|
||||||
R-runjags
|
R-runjags
|
||||||
R-rversions
|
R-rversions
|
||||||
R-rvest
|
R-rvest
|
||||||
R-s2
|
R-s2
|
||||||
R-sROC
|
|
||||||
R-sampling
|
R-sampling
|
||||||
R-sandwich
|
R-sandwich
|
||||||
R-sass
|
R-sass
|
||||||
@@ -883,8 +875,10 @@ R-sparkline
|
|||||||
R-spatstat
|
R-spatstat
|
||||||
R-spatstat.core
|
R-spatstat.core
|
||||||
R-spatstat.data
|
R-spatstat.data
|
||||||
|
R-spatstat.explore
|
||||||
R-spatstat.geom
|
R-spatstat.geom
|
||||||
R-spatstat.linnet
|
R-spatstat.linnet
|
||||||
|
R-spatstat.model
|
||||||
R-spatstat.random
|
R-spatstat.random
|
||||||
R-spatstat.sparse
|
R-spatstat.sparse
|
||||||
R-spatstat.utils
|
R-spatstat.utils
|
||||||
@@ -937,6 +931,7 @@ R-tidyverse
|
|||||||
R-tikzDevice
|
R-tikzDevice
|
||||||
R-timeDate
|
R-timeDate
|
||||||
R-timeSeries
|
R-timeSeries
|
||||||
|
R-timechange
|
||||||
R-tinytex
|
R-tinytex
|
||||||
R-tis
|
R-tis
|
||||||
R-tm
|
R-tm
|
||||||
@@ -954,10 +949,10 @@ R-tseries
|
|||||||
R-tsne
|
R-tsne
|
||||||
R-tzdb
|
R-tzdb
|
||||||
R-ucminf
|
R-ucminf
|
||||||
R-unbalanced
|
|
||||||
R-units
|
R-units
|
||||||
R-unix
|
R-unix
|
||||||
R-urca
|
R-urca
|
||||||
|
R-urlchecker
|
||||||
R-urltools
|
R-urltools
|
||||||
R-uroot
|
R-uroot
|
||||||
R-usethis
|
R-usethis
|
||||||
@@ -1092,9 +1087,7 @@ aspell-pt_BR
|
|||||||
assimp
|
assimp
|
||||||
asunder
|
asunder
|
||||||
at
|
at
|
||||||
at-spi2-atk
|
|
||||||
at-spi2-core
|
at-spi2-core
|
||||||
atk
|
|
||||||
atkmm
|
atkmm
|
||||||
attica
|
attica
|
||||||
attr
|
attr
|
||||||
@@ -1114,7 +1107,6 @@ automake
|
|||||||
autossh
|
autossh
|
||||||
avahi
|
avahi
|
||||||
awesome-wm
|
awesome-wm
|
||||||
aws-sam-translator
|
|
||||||
awscli
|
awscli
|
||||||
axel
|
axel
|
||||||
azure-configs
|
azure-configs
|
||||||
@@ -1165,6 +1157,7 @@ bridge-utils
|
|||||||
brotli
|
brotli
|
||||||
bsdiff
|
bsdiff
|
||||||
bspwm
|
bspwm
|
||||||
|
btop
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
bubblewrap
|
bubblewrap
|
||||||
buildreq-R
|
buildreq-R
|
||||||
@@ -1185,7 +1178,6 @@ byobu
|
|||||||
bz2file
|
bz2file
|
||||||
bzip2
|
bzip2
|
||||||
c-ares
|
c-ares
|
||||||
c-basic-meta
|
|
||||||
cJSON
|
cJSON
|
||||||
c_rehash
|
c_rehash
|
||||||
ca-certs
|
ca-certs
|
||||||
@@ -1214,7 +1206,6 @@ cgdb
|
|||||||
cgit
|
cgit
|
||||||
check
|
check
|
||||||
cheese
|
cheese
|
||||||
chrome-gnome-shell
|
|
||||||
chrony
|
chrony
|
||||||
chrpath
|
chrpath
|
||||||
cifs-utils
|
cifs-utils
|
||||||
@@ -1276,13 +1267,13 @@ colord-gtk
|
|||||||
colordiff
|
colordiff
|
||||||
columbiad
|
columbiad
|
||||||
compat-atkmm-soname16
|
compat-atkmm-soname16
|
||||||
compat-boost-soname1.73.0
|
|
||||||
compat-boost-soname1.74.0
|
compat-boost-soname1.74.0
|
||||||
compat-cairomm-soname10
|
compat-cairomm-soname10
|
||||||
compat-curl-gnutls-soname4
|
compat-curl-gnutls-soname4
|
||||||
compat-enchant-soname1
|
compat-enchant-soname1
|
||||||
compat-fuse-soname2
|
compat-fuse-soname2
|
||||||
compat-gcc-10
|
compat-gcc-10
|
||||||
|
compat-gcr-soname1
|
||||||
compat-gdal-soname27
|
compat-gdal-soname27
|
||||||
compat-glibmm-soname24
|
compat-glibmm-soname24
|
||||||
compat-gnome-bluetooth-soname-13
|
compat-gnome-bluetooth-soname-13
|
||||||
@@ -1294,22 +1285,16 @@ compat-libpng-soname12
|
|||||||
compat-libsigc++-soname20
|
compat-libsigc++-soname20
|
||||||
compat-libsoup-soname-24
|
compat-libsoup-soname-24
|
||||||
compat-libva-soname1
|
compat-libva-soname1
|
||||||
compat-libvpx-soname6
|
|
||||||
compat-lua-52
|
compat-lua-52
|
||||||
compat-lua-53
|
compat-lua-53
|
||||||
compat-nettle-soname7
|
compat-openssl-soname11
|
||||||
compat-pangomm-soname14
|
compat-pangomm-soname14
|
||||||
compat-poppler-soname112
|
compat-protobuf-soname29
|
||||||
compat-poppler-soname117
|
|
||||||
compat-protobuf-soname23
|
|
||||||
compat-readline-soname5
|
compat-readline-soname5
|
||||||
compat-rest-soname07
|
compat-rest-soname07
|
||||||
compat-tbb-soname12
|
|
||||||
compat-tracker-soname2.0
|
|
||||||
compat-webkitgtk-soname40
|
compat-webkitgtk-soname40
|
||||||
component
|
component
|
||||||
compute-image-packages
|
compute-image-packages
|
||||||
conda
|
|
||||||
configobj
|
configobj
|
||||||
confuse
|
confuse
|
||||||
conky
|
conky
|
||||||
@@ -1341,6 +1326,7 @@ cups-bjnp
|
|||||||
cups-filters
|
cups-filters
|
||||||
cups-pk-helper
|
cups-pk-helper
|
||||||
curl
|
curl
|
||||||
|
curl-mini
|
||||||
custom_inherit
|
custom_inherit
|
||||||
cycler
|
cycler
|
||||||
cyrus-sasl
|
cyrus-sasl
|
||||||
@@ -1373,9 +1359,9 @@ diffutils
|
|||||||
digikam
|
digikam
|
||||||
ding-libs
|
ding-libs
|
||||||
dino
|
dino
|
||||||
|
directx-headers
|
||||||
direwolf
|
direwolf
|
||||||
dist-pam-configs
|
dist-pam-configs
|
||||||
distro
|
|
||||||
dkms
|
dkms
|
||||||
dlm
|
dlm
|
||||||
dlt-daemon
|
dlt-daemon
|
||||||
@@ -1392,7 +1378,6 @@ docbook2X
|
|||||||
docker
|
docker
|
||||||
docker-cli
|
docker-cli
|
||||||
dockerpty
|
dockerpty
|
||||||
docutils
|
|
||||||
dolphin
|
dolphin
|
||||||
dolphin-plugins
|
dolphin-plugins
|
||||||
dos2unix
|
dos2unix
|
||||||
@@ -1403,11 +1388,13 @@ doxygen
|
|||||||
dpdk
|
dpdk
|
||||||
dracut
|
dracut
|
||||||
dragon
|
dragon
|
||||||
|
dragonbox
|
||||||
drkonqi
|
drkonqi
|
||||||
dropwatch
|
dropwatch
|
||||||
dssi
|
dssi
|
||||||
dstat
|
dstat
|
||||||
dtc
|
dtc
|
||||||
|
duktape
|
||||||
dunst
|
dunst
|
||||||
duperemove
|
duperemove
|
||||||
dvisvgm
|
dvisvgm
|
||||||
@@ -1417,6 +1404,7 @@ e2fsprogs
|
|||||||
earlyoom
|
earlyoom
|
||||||
ebtables
|
ebtables
|
||||||
ed
|
ed
|
||||||
|
editorconfig-core-c
|
||||||
edk2
|
edk2
|
||||||
efibootmgr
|
efibootmgr
|
||||||
efitools
|
efitools
|
||||||
@@ -1470,7 +1458,6 @@ filelight
|
|||||||
filesystem
|
filesystem
|
||||||
findutils
|
findutils
|
||||||
fio
|
fio
|
||||||
firecracker
|
|
||||||
firefox
|
firefox
|
||||||
firewalld
|
firewalld
|
||||||
fish
|
fish
|
||||||
@@ -1503,6 +1490,7 @@ freetype
|
|||||||
fribidi
|
fribidi
|
||||||
fritzing-app
|
fritzing-app
|
||||||
fs
|
fs
|
||||||
|
fsarchiver
|
||||||
fsearch
|
fsearch
|
||||||
fuse
|
fuse
|
||||||
fwupd
|
fwupd
|
||||||
@@ -1637,6 +1625,7 @@ gpgme
|
|||||||
gphoto2
|
gphoto2
|
||||||
gpm
|
gpm
|
||||||
gpredict
|
gpredict
|
||||||
|
gpsd
|
||||||
gptfdisk
|
gptfdisk
|
||||||
gramps
|
gramps
|
||||||
granatier
|
granatier
|
||||||
@@ -1700,7 +1689,6 @@ hexchat
|
|||||||
hexedit
|
hexedit
|
||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
hiredis-c
|
hiredis-c
|
||||||
home-assistant
|
|
||||||
hostname
|
hostname
|
||||||
hplip
|
hplip
|
||||||
htop
|
htop
|
||||||
@@ -1731,6 +1719,7 @@ icon-naming-utils
|
|||||||
icu4c
|
icu4c
|
||||||
idle-python3.7-assets
|
idle-python3.7-assets
|
||||||
iftop
|
iftop
|
||||||
|
igsc
|
||||||
igt-gpu-tools
|
igt-gpu-tools
|
||||||
iio-sensor-proxy
|
iio-sensor-proxy
|
||||||
imagescan
|
imagescan
|
||||||
@@ -1768,12 +1757,12 @@ ipvsadm
|
|||||||
ipxe
|
ipxe
|
||||||
irqbalance
|
irqbalance
|
||||||
irrlicht
|
irrlicht
|
||||||
|
irrlichtmt
|
||||||
irssi
|
irssi
|
||||||
isa-l
|
isa-l
|
||||||
iso-codes
|
iso-codes
|
||||||
isodate
|
isodate
|
||||||
isomd5sum
|
isomd5sum
|
||||||
ister
|
|
||||||
isync
|
isync
|
||||||
itstool
|
itstool
|
||||||
iw
|
iw
|
||||||
@@ -1803,11 +1792,6 @@ kapidox
|
|||||||
kapman
|
kapman
|
||||||
kapptemplate
|
kapptemplate
|
||||||
karchive
|
karchive
|
||||||
kata-image
|
|
||||||
kata-proxy
|
|
||||||
kata-qemu-lite
|
|
||||||
kata-runtime
|
|
||||||
kata-shim
|
|
||||||
kate
|
kate
|
||||||
katomic
|
katomic
|
||||||
kauth
|
kauth
|
||||||
@@ -1828,6 +1812,7 @@ kcharselect
|
|||||||
kcmutils
|
kcmutils
|
||||||
kcodecs
|
kcodecs
|
||||||
kcolorchooser
|
kcolorchooser
|
||||||
|
kcolorpicker
|
||||||
kcompletion
|
kcompletion
|
||||||
kconfig
|
kconfig
|
||||||
kconfigwidgets
|
kconfigwidgets
|
||||||
@@ -1898,6 +1883,7 @@ kidletime
|
|||||||
kig
|
kig
|
||||||
kigo
|
kigo
|
||||||
killbots
|
killbots
|
||||||
|
kimageannotator
|
||||||
kimageformats
|
kimageformats
|
||||||
kimagemapeditor
|
kimagemapeditor
|
||||||
kimap
|
kimap
|
||||||
@@ -1968,6 +1954,7 @@ kross
|
|||||||
kruler
|
kruler
|
||||||
krunner
|
krunner
|
||||||
krusader
|
krusader
|
||||||
|
ksanecore
|
||||||
kscreen
|
kscreen
|
||||||
kscreenlocker
|
kscreenlocker
|
||||||
kservice
|
kservice
|
||||||
@@ -1995,6 +1982,7 @@ kturtle
|
|||||||
kubernetes
|
kubernetes
|
||||||
kubernetes-migration-1.18
|
kubernetes-migration-1.18
|
||||||
kunitconversion
|
kunitconversion
|
||||||
|
kuserfeedback
|
||||||
kwallet
|
kwallet
|
||||||
kwallet-pam
|
kwallet-pam
|
||||||
kwalletmanager
|
kwalletmanager
|
||||||
@@ -2074,6 +2062,7 @@ libcerf
|
|||||||
libcgroup
|
libcgroup
|
||||||
libchamplain
|
libchamplain
|
||||||
libclc
|
libclc
|
||||||
|
libcloudproviders
|
||||||
libcmis
|
libcmis
|
||||||
libcomps
|
libcomps
|
||||||
libconfig
|
libconfig
|
||||||
@@ -2107,6 +2096,7 @@ libexttextcat
|
|||||||
libfakekey
|
libfakekey
|
||||||
libfastjson
|
libfastjson
|
||||||
libffi
|
libffi
|
||||||
|
libfixmath
|
||||||
libfm
|
libfm
|
||||||
libfm-qt
|
libfm-qt
|
||||||
libfontenc
|
libfontenc
|
||||||
@@ -2131,7 +2121,6 @@ libgtop
|
|||||||
libgudev
|
libgudev
|
||||||
libgusb
|
libgusb
|
||||||
libgweather
|
libgweather
|
||||||
libgweather4
|
|
||||||
libhandy
|
libhandy
|
||||||
libical
|
libical
|
||||||
libidn
|
libidn
|
||||||
@@ -2210,6 +2199,7 @@ libpipeline
|
|||||||
libplacebo
|
libplacebo
|
||||||
libpng
|
libpng
|
||||||
libportal
|
libportal
|
||||||
|
libproxy
|
||||||
libpsl
|
libpsl
|
||||||
libpthread-stubs
|
libpthread-stubs
|
||||||
libpwquality
|
libpwquality
|
||||||
@@ -2314,18 +2304,15 @@ linux-aws
|
|||||||
linux-current
|
linux-current
|
||||||
linux-firmware
|
linux-firmware
|
||||||
linux-firmware-ipu
|
linux-firmware-ipu
|
||||||
linux-gce
|
|
||||||
linux-hyperv
|
|
||||||
linux-hyperv-lts
|
linux-hyperv-lts
|
||||||
linux-iot-lts2018
|
linux-iot-lts2018
|
||||||
linux-iot-lts2018-preempt-rt
|
linux-iot-lts2018-preempt-rt
|
||||||
linux-kata
|
|
||||||
linux-kvm
|
|
||||||
linux-libc-headers
|
linux-libc-headers
|
||||||
linux-lts2017
|
linux-lts2017
|
||||||
linux-lts2018
|
linux-lts2018
|
||||||
linux-lts2019
|
linux-lts2019
|
||||||
linux-lts2020
|
linux-lts2020
|
||||||
|
linux-lts2021
|
||||||
linux-mainline
|
linux-mainline
|
||||||
linux-oracle
|
linux-oracle
|
||||||
linux-preempt-rt
|
linux-preempt-rt
|
||||||
@@ -2336,6 +2323,7 @@ llvm
|
|||||||
llvm11
|
llvm11
|
||||||
llvm12
|
llvm12
|
||||||
llvm13
|
llvm13
|
||||||
|
llvm14
|
||||||
lm-sensors
|
lm-sensors
|
||||||
lmdb
|
lmdb
|
||||||
logrotate
|
logrotate
|
||||||
@@ -2407,12 +2395,19 @@ mesa
|
|||||||
mesa-demos
|
mesa-demos
|
||||||
meson
|
meson
|
||||||
messagelib
|
messagelib
|
||||||
|
meta-c-basic
|
||||||
|
meta-desktop-gnome
|
||||||
|
meta-desktop-kde
|
||||||
|
meta-os-core
|
||||||
|
meta-os-core-plus
|
||||||
metacity
|
metacity
|
||||||
|
metee
|
||||||
metis
|
metis
|
||||||
metrics-discovery
|
metrics-discovery
|
||||||
micro-config-drive
|
micro-config-drive
|
||||||
micro-config-drive-aliyun
|
micro-config-drive-aliyun
|
||||||
micro-config-drive-aws
|
micro-config-drive-aws
|
||||||
|
micro-config-drive-equinix
|
||||||
micro-config-drive-oci
|
micro-config-drive-oci
|
||||||
milou
|
milou
|
||||||
minetest
|
minetest
|
||||||
@@ -2447,7 +2442,7 @@ mosh
|
|||||||
mosquitto
|
mosquitto
|
||||||
motd-update
|
motd-update
|
||||||
motif
|
motif
|
||||||
mozjs78
|
mozjs102
|
||||||
mozjs91
|
mozjs91
|
||||||
mpc
|
mpc
|
||||||
mpfr
|
mpfr
|
||||||
@@ -2548,6 +2543,7 @@ octave
|
|||||||
oiio
|
oiio
|
||||||
okteta
|
okteta
|
||||||
okular
|
okular
|
||||||
|
oneVPL
|
||||||
onig
|
onig
|
||||||
opa-fm
|
opa-fm
|
||||||
opa-psm2
|
opa-psm2
|
||||||
@@ -2609,13 +2605,13 @@ pass
|
|||||||
patch
|
patch
|
||||||
patchelf
|
patchelf
|
||||||
patchutils
|
patchutils
|
||||||
pathlib2
|
|
||||||
pathos
|
pathos
|
||||||
pavucontrol
|
pavucontrol
|
||||||
pbzip2
|
pbzip2
|
||||||
pciutils
|
pciutils
|
||||||
pcmanfm
|
pcmanfm
|
||||||
pcmanfm-qt
|
pcmanfm-qt
|
||||||
|
pcp
|
||||||
pcre
|
pcre
|
||||||
pcre2
|
pcre2
|
||||||
pcs
|
pcs
|
||||||
@@ -2969,6 +2965,7 @@ perl-IO-All
|
|||||||
perl-IO-Async
|
perl-IO-Async
|
||||||
perl-IO-Capture
|
perl-IO-Capture
|
||||||
perl-IO-CaptureOutput
|
perl-IO-CaptureOutput
|
||||||
|
perl-IO-FDPass
|
||||||
perl-IO-HTML
|
perl-IO-HTML
|
||||||
perl-IO-Interactive
|
perl-IO-Interactive
|
||||||
perl-IO-Interactive-Tiny
|
perl-IO-Interactive-Tiny
|
||||||
@@ -3039,6 +3036,8 @@ perl-Log-Message
|
|||||||
perl-Log-Message-Simple
|
perl-Log-Message-Simple
|
||||||
perl-Log-Trace
|
perl-Log-Trace
|
||||||
perl-MARC-Record
|
perl-MARC-Record
|
||||||
|
perl-MCE
|
||||||
|
perl-MCE-Shared
|
||||||
perl-MIME-Base32
|
perl-MIME-Base32
|
||||||
perl-MIME-Base64
|
perl-MIME-Base64
|
||||||
perl-MIME-Base64-URLSafe
|
perl-MIME-Base64-URLSafe
|
||||||
@@ -3070,6 +3069,7 @@ perl-Metrics-Any
|
|||||||
perl-Minion
|
perl-Minion
|
||||||
perl-Mixin-Linewise
|
perl-Mixin-Linewise
|
||||||
perl-Mock-Config
|
perl-Mock-Config
|
||||||
|
perl-Mock-Sub
|
||||||
perl-Modern-Perl
|
perl-Modern-Perl
|
||||||
perl-Module-Build
|
perl-Module-Build
|
||||||
perl-Module-Build-Tiny
|
perl-Module-Build-Tiny
|
||||||
@@ -3559,10 +3559,6 @@ portmidi
|
|||||||
postfix
|
postfix
|
||||||
postgis
|
postgis
|
||||||
postgresql
|
postgresql
|
||||||
postgresql11
|
|
||||||
postgresql12
|
|
||||||
postgresql13
|
|
||||||
postgresql14
|
|
||||||
potrace
|
potrace
|
||||||
powerdevil
|
powerdevil
|
||||||
powerline-fonts
|
powerline-fonts
|
||||||
@@ -3613,6 +3609,7 @@ pypi-aiosmtpd
|
|||||||
pypi-alabaster
|
pypi-alabaster
|
||||||
pypi-altgraph
|
pypi-altgraph
|
||||||
pypi-ansi2html
|
pypi-ansi2html
|
||||||
|
pypi-ansible_builder
|
||||||
pypi-ansible_compat
|
pypi-ansible_compat
|
||||||
pypi-ansible_pygments
|
pypi-ansible_pygments
|
||||||
pypi-anyio
|
pypi-anyio
|
||||||
@@ -3621,8 +3618,10 @@ pypi-apipkg
|
|||||||
pypi-appdirs
|
pypi-appdirs
|
||||||
pypi-applicationinsights
|
pypi-applicationinsights
|
||||||
pypi-argcomplete
|
pypi-argcomplete
|
||||||
|
pypi-argh
|
||||||
pypi-argon2_cffi
|
pypi-argon2_cffi
|
||||||
pypi-argon2_cffi_bindings
|
pypi-argon2_cffi_bindings
|
||||||
|
pypi-argparse
|
||||||
pypi-arrow
|
pypi-arrow
|
||||||
pypi-asgiref
|
pypi-asgiref
|
||||||
pypi-asn1crypto
|
pypi-asn1crypto
|
||||||
@@ -3634,16 +3633,18 @@ pypi-astunparse
|
|||||||
pypi-asv
|
pypi-asv
|
||||||
pypi-async_generator
|
pypi-async_generator
|
||||||
pypi-async_timeout
|
pypi-async_timeout
|
||||||
|
pypi-asyncssh
|
||||||
pypi-asynctest
|
pypi-asynctest
|
||||||
pypi-atomicwrites
|
pypi-atomicwrites
|
||||||
pypi-atpublic
|
pypi-atpublic
|
||||||
pypi-attrs
|
pypi-attrs
|
||||||
|
pypi-autocommand
|
||||||
|
pypi-automat
|
||||||
pypi-awesomeversion
|
pypi-awesomeversion
|
||||||
pypi-awscrt
|
pypi-awscrt
|
||||||
pypi-awxkit
|
pypi-awxkit
|
||||||
pypi-azure_common
|
pypi-azure_common
|
||||||
pypi-azure_core
|
pypi-azure_core
|
||||||
pypi-azure_devops
|
|
||||||
pypi-azure_mgmt_compute
|
pypi-azure_mgmt_compute
|
||||||
pypi-azure_mgmt_core
|
pypi-azure_mgmt_core
|
||||||
pypi-azure_mgmt_netapp
|
pypi-azure_mgmt_netapp
|
||||||
@@ -3652,18 +3653,15 @@ pypi-azure_mgmt_resource
|
|||||||
pypi-azure_mgmt_storage
|
pypi-azure_mgmt_storage
|
||||||
pypi-babel
|
pypi-babel
|
||||||
pypi-backcall
|
pypi-backcall
|
||||||
pypi-backports.cached_property
|
pypi-backoff
|
||||||
pypi-backports.entry_points_selectable
|
|
||||||
pypi-backports.functools_lru_cache
|
|
||||||
pypi-backports.shutil_get_terminal_size
|
|
||||||
pypi-backports.ssl_match_hostname
|
pypi-backports.ssl_match_hostname
|
||||||
pypi-backports.weakref
|
|
||||||
pypi-bash_kernel
|
pypi-bash_kernel
|
||||||
pypi-bashlex
|
pypi-bashlex
|
||||||
pypi-bcrypt
|
pypi-bcrypt
|
||||||
pypi-beautifulsoup4
|
pypi-beautifulsoup4
|
||||||
pypi-beniget
|
pypi-beniget
|
||||||
pypi-binaryornot
|
pypi-binaryornot
|
||||||
|
pypi-bindep
|
||||||
pypi-bkcharts
|
pypi-bkcharts
|
||||||
pypi-black
|
pypi-black
|
||||||
pypi-bleach
|
pypi-bleach
|
||||||
@@ -3688,7 +3686,6 @@ pypi-cachetools
|
|||||||
pypi-cachy
|
pypi-cachy
|
||||||
pypi-capturer
|
pypi-capturer
|
||||||
pypi-cattrs
|
pypi-cattrs
|
||||||
pypi-cchardet
|
|
||||||
pypi-cerberus
|
pypi-cerberus
|
||||||
pypi-certbot
|
pypi-certbot
|
||||||
pypi-certbot_dns_google
|
pypi-certbot_dns_google
|
||||||
@@ -3725,10 +3722,11 @@ pypi-compreffor
|
|||||||
pypi-configargparse
|
pypi-configargparse
|
||||||
pypi-configparser
|
pypi-configparser
|
||||||
pypi-cons
|
pypi-cons
|
||||||
|
pypi-constantly
|
||||||
pypi-contextlib2
|
pypi-contextlib2
|
||||||
pypi-contextvars
|
pypi-contextvars
|
||||||
|
pypi-contourpy
|
||||||
pypi-cookiecutter
|
pypi-cookiecutter
|
||||||
pypi-cookies
|
|
||||||
pypi-coverage
|
pypi-coverage
|
||||||
pypi-coveralls
|
pypi-coveralls
|
||||||
pypi-cppy
|
pypi-cppy
|
||||||
@@ -3758,14 +3756,15 @@ pypi-diffoscope
|
|||||||
pypi-dill
|
pypi-dill
|
||||||
pypi-diskcache
|
pypi-diskcache
|
||||||
pypi-distlib
|
pypi-distlib
|
||||||
pypi-distributed
|
pypi-distro
|
||||||
pypi-dj_database_url
|
pypi-dj_database_url
|
||||||
pypi-django
|
pypi-django
|
||||||
pypi-django_appconf
|
pypi-django_appconf
|
||||||
|
pypi-django_babel
|
||||||
pypi-django_compressor
|
pypi-django_compressor
|
||||||
pypi-django_discover_runner
|
pypi-django_discover_runner
|
||||||
pypi-django_nose
|
pypi-django_nose
|
||||||
pypi-django_pyscss
|
pypi-dnacentersdk
|
||||||
pypi-dns_lexicon
|
pypi-dns_lexicon
|
||||||
pypi-dnspython
|
pypi-dnspython
|
||||||
pypi-docker
|
pypi-docker
|
||||||
@@ -3775,6 +3774,7 @@ pypi-docopt
|
|||||||
pypi-docstring_parser
|
pypi-docstring_parser
|
||||||
pypi-docutils
|
pypi-docutils
|
||||||
pypi-dpcontracts
|
pypi-dpcontracts
|
||||||
|
pypi-dulwich
|
||||||
pypi-ecdsa
|
pypi-ecdsa
|
||||||
pypi-editables
|
pypi-editables
|
||||||
pypi-elementpath
|
pypi-elementpath
|
||||||
@@ -3782,6 +3782,7 @@ pypi-enrich
|
|||||||
pypi-entrypoints
|
pypi-entrypoints
|
||||||
pypi-envs
|
pypi-envs
|
||||||
pypi-eternalegypt
|
pypi-eternalegypt
|
||||||
|
pypi-etils
|
||||||
pypi-etuples
|
pypi-etuples
|
||||||
pypi-evdev
|
pypi-evdev
|
||||||
pypi-exceptiongroup
|
pypi-exceptiongroup
|
||||||
@@ -3795,6 +3796,7 @@ pypi-falcon
|
|||||||
pypi-fasteners
|
pypi-fasteners
|
||||||
pypi-fastimport
|
pypi-fastimport
|
||||||
pypi-fastjsonschema
|
pypi-fastjsonschema
|
||||||
|
pypi-filecache
|
||||||
pypi-filelock
|
pypi-filelock
|
||||||
pypi-fissix
|
pypi-fissix
|
||||||
pypi-flake8
|
pypi-flake8
|
||||||
@@ -3802,6 +3804,7 @@ pypi-flake8_blind_except
|
|||||||
pypi-flake8_class_newline
|
pypi-flake8_class_newline
|
||||||
pypi-flake8_docstrings
|
pypi-flake8_docstrings
|
||||||
pypi-flake8_import_order
|
pypi-flake8_import_order
|
||||||
|
pypi-flaky
|
||||||
pypi-flask
|
pypi-flask
|
||||||
pypi-flatten_json
|
pypi-flatten_json
|
||||||
pypi-flit
|
pypi-flit
|
||||||
@@ -3811,11 +3814,11 @@ pypi-fontmath
|
|||||||
pypi-freezegun
|
pypi-freezegun
|
||||||
pypi-frozenlist
|
pypi-frozenlist
|
||||||
pypi-fsspec
|
pypi-fsspec
|
||||||
|
pypi-ftfy
|
||||||
pypi-funcparserlib
|
pypi-funcparserlib
|
||||||
pypi-future
|
pypi-future
|
||||||
pypi-gast
|
pypi-gast
|
||||||
pypi-gcs_oauth2_boto_plugin
|
pypi-gcs_oauth2_boto_plugin
|
||||||
pypi-gensim
|
|
||||||
pypi-gevent
|
pypi-gevent
|
||||||
pypi-geventhttpclient
|
pypi-geventhttpclient
|
||||||
pypi-ghp_import
|
pypi-ghp_import
|
||||||
@@ -3831,6 +3834,8 @@ pypi-google_auth_oauthlib
|
|||||||
pypi-google_pasta
|
pypi-google_pasta
|
||||||
pypi-google_reauth
|
pypi-google_reauth
|
||||||
pypi-googleapis_common_protos
|
pypi-googleapis_common_protos
|
||||||
|
pypi-gql
|
||||||
|
pypi-graphql_core
|
||||||
pypi-graphviz
|
pypi-graphviz
|
||||||
pypi-greenlet
|
pypi-greenlet
|
||||||
pypi-grpcio
|
pypi-grpcio
|
||||||
@@ -3845,6 +3850,8 @@ pypi-h11
|
|||||||
pypi-h2
|
pypi-h2
|
||||||
pypi-h5py
|
pypi-h5py
|
||||||
pypi-hammock
|
pypi-hammock
|
||||||
|
pypi-hatch_fancy_pypi_readme
|
||||||
|
pypi-hatch_nodejs_version
|
||||||
pypi-hatch_vcs
|
pypi-hatch_vcs
|
||||||
pypi-hatchling
|
pypi-hatchling
|
||||||
pypi-heapdict
|
pypi-heapdict
|
||||||
@@ -3856,10 +3863,10 @@ pypi-httpcore
|
|||||||
pypi-httplib2
|
pypi-httplib2
|
||||||
pypi-httpretty
|
pypi-httpretty
|
||||||
pypi-httpx
|
pypi-httpx
|
||||||
pypi-hug
|
|
||||||
pypi-humanfriendly
|
pypi-humanfriendly
|
||||||
pypi-humanize
|
pypi-humanize
|
||||||
pypi-hyperframe
|
pypi-hyperframe
|
||||||
|
pypi-hyperlink
|
||||||
pypi-hypothesis
|
pypi-hypothesis
|
||||||
pypi-icalendar
|
pypi-icalendar
|
||||||
pypi-identify
|
pypi-identify
|
||||||
@@ -3872,15 +3879,16 @@ pypi-imagesize
|
|||||||
pypi-immutables
|
pypi-immutables
|
||||||
pypi-importlib_metadata
|
pypi-importlib_metadata
|
||||||
pypi-importlib_resources
|
pypi-importlib_resources
|
||||||
|
pypi-incremental
|
||||||
pypi-infi.dtypes.iqn
|
pypi-infi.dtypes.iqn
|
||||||
pypi-infi.dtypes.wwn
|
pypi-infi.dtypes.wwn
|
||||||
pypi-inflect
|
pypi-inflect
|
||||||
pypi-inflection
|
pypi-inflection
|
||||||
pypi-influxdb
|
pypi-influxdb
|
||||||
pypi-iniconfig
|
pypi-iniconfig
|
||||||
pypi-inspursmsdk
|
|
||||||
pypi-intervaltree
|
pypi-intervaltree
|
||||||
pypi-invoke
|
pypi-invoke
|
||||||
|
pypi-iocapture
|
||||||
pypi-ipaddress
|
pypi-ipaddress
|
||||||
pypi-ipdb
|
pypi-ipdb
|
||||||
pypi-ipdbplugin
|
pypi-ipdbplugin
|
||||||
@@ -3943,6 +3951,7 @@ pypi-khal
|
|||||||
pypi-kiwisolver
|
pypi-kiwisolver
|
||||||
pypi-krb5
|
pypi-krb5
|
||||||
pypi-kubernetes
|
pypi-kubernetes
|
||||||
|
pypi-langcodes
|
||||||
pypi-lark_parser
|
pypi-lark_parser
|
||||||
pypi-latexcodec
|
pypi-latexcodec
|
||||||
pypi-lazy_object_proxy
|
pypi-lazy_object_proxy
|
||||||
@@ -3956,6 +3965,7 @@ pypi-logical_unification
|
|||||||
pypi-logilab_common
|
pypi-logilab_common
|
||||||
pypi-lxml
|
pypi-lxml
|
||||||
pypi-lz4
|
pypi-lz4
|
||||||
|
pypi-m2r
|
||||||
pypi-macholib
|
pypi-macholib
|
||||||
pypi-mako
|
pypi-mako
|
||||||
pypi-markdown
|
pypi-markdown
|
||||||
@@ -3966,11 +3976,10 @@ pypi-matplotlib_inline
|
|||||||
pypi-mdit_py_plugins
|
pypi-mdit_py_plugins
|
||||||
pypi-mdurl
|
pypi-mdurl
|
||||||
pypi-mergedeep
|
pypi-mergedeep
|
||||||
|
pypi-meson_python
|
||||||
pypi-mido
|
pypi-mido
|
||||||
pypi-minikanren
|
pypi-minikanren
|
||||||
pypi-mistune
|
pypi-mistune
|
||||||
pypi-mkdocs
|
|
||||||
pypi-mkdocs_material
|
|
||||||
pypi-mkdocs_material_extensions
|
pypi-mkdocs_material_extensions
|
||||||
pypi-mock
|
pypi-mock
|
||||||
pypi-modulegraph
|
pypi-modulegraph
|
||||||
@@ -3995,7 +4004,6 @@ pypi-natsort
|
|||||||
pypi-nbclassic
|
pypi-nbclassic
|
||||||
pypi-nbclient
|
pypi-nbclient
|
||||||
pypi-nbconvert
|
pypi-nbconvert
|
||||||
pypi-nbdime
|
|
||||||
pypi-nbformat
|
pypi-nbformat
|
||||||
pypi-nbsphinx
|
pypi-nbsphinx
|
||||||
pypi-nbval
|
pypi-nbval
|
||||||
@@ -4028,23 +4036,26 @@ pypi-openshift
|
|||||||
pypi-opt_einsum
|
pypi-opt_einsum
|
||||||
pypi-ouimeaux
|
pypi-ouimeaux
|
||||||
pypi-outcome
|
pypi-outcome
|
||||||
|
pypi-ovirt_imageio
|
||||||
pypi-packaging
|
pypi-packaging
|
||||||
pypi-paho_mqtt
|
pypi-paho_mqtt
|
||||||
pypi-pandocfilters
|
pypi-pandocfilters
|
||||||
pypi-paramiko
|
pypi-paramiko
|
||||||
pypi-parse
|
pypi-parse
|
||||||
|
pypi-parse_type
|
||||||
pypi-parsedatetime
|
pypi-parsedatetime
|
||||||
|
pypi-parsley
|
||||||
pypi-parso
|
pypi-parso
|
||||||
pypi-partd
|
pypi-partd
|
||||||
pypi-paste
|
pypi-paste
|
||||||
pypi-pastedeploy
|
pypi-pastedeploy
|
||||||
pypi-pastel
|
pypi-pastel
|
||||||
pypi-pathlib
|
pypi-pathlib2
|
||||||
pypi-pathspec
|
pypi-pathspec
|
||||||
|
pypi-pathtools
|
||||||
pypi-patsy
|
pypi-patsy
|
||||||
pypi-pbr
|
pypi-pbr
|
||||||
pypi-pdm_pep517
|
pypi-pdm_pep517
|
||||||
pypi-pdocs
|
|
||||||
pypi-pecan
|
pypi-pecan
|
||||||
pypi-ped
|
pypi-ped
|
||||||
pypi-pep517
|
pypi-pep517
|
||||||
@@ -4057,7 +4068,9 @@ pypi-phabricator
|
|||||||
pypi-pickleshare
|
pypi-pickleshare
|
||||||
pypi-pid
|
pypi-pid
|
||||||
pypi-pillow
|
pypi-pillow
|
||||||
|
pypi-pint
|
||||||
pypi-pip
|
pypi-pip
|
||||||
|
pypi-pip_tools
|
||||||
pypi-pkgconfig
|
pypi-pkgconfig
|
||||||
pypi-pkginfo
|
pypi-pkginfo
|
||||||
pypi-platformdirs
|
pypi-platformdirs
|
||||||
@@ -4067,10 +4080,11 @@ pypi-ply
|
|||||||
pypi-pockets
|
pypi-pockets
|
||||||
pypi-poetry
|
pypi-poetry
|
||||||
pypi-poetry_core
|
pypi-poetry_core
|
||||||
|
pypi-poetry_plugin_export
|
||||||
pypi-polib
|
pypi-polib
|
||||||
|
pypi-port_for
|
||||||
pypi-portalocker
|
pypi-portalocker
|
||||||
pypi-portend
|
pypi-portend
|
||||||
pypi-portray
|
|
||||||
pypi-posix_ipc
|
pypi-posix_ipc
|
||||||
pypi-poyo
|
pypi-poyo
|
||||||
pypi-pre_commit
|
pypi-pre_commit
|
||||||
@@ -4089,7 +4103,6 @@ pypi-purestorage
|
|||||||
pypi-purity_fb
|
pypi-purity_fb
|
||||||
pypi-py
|
pypi-py
|
||||||
pypi-py_cpuinfo
|
pypi-py_cpuinfo
|
||||||
pypi-py_pure_client
|
|
||||||
pypi-pyaml
|
pypi-pyaml
|
||||||
pypi-pyasn1
|
pypi-pyasn1
|
||||||
pypi-pyasn1_modules
|
pypi-pyasn1_modules
|
||||||
@@ -4107,6 +4120,7 @@ pypi-pycryptodome
|
|||||||
pypi-pycryptodomex
|
pypi-pycryptodomex
|
||||||
pypi-pycups
|
pypi-pycups
|
||||||
pypi-pycurl
|
pypi-pycurl
|
||||||
|
pypi-pydantic
|
||||||
pypi-pydata_sphinx_theme
|
pypi-pydata_sphinx_theme
|
||||||
pypi-pydispatcher
|
pypi-pydispatcher
|
||||||
pypi-pydocstyle
|
pypi-pydocstyle
|
||||||
@@ -4127,14 +4141,18 @@ pypi-pymdown_extensions
|
|||||||
pypi-pynacl
|
pypi-pynacl
|
||||||
pypi-pynetbox
|
pypi-pynetbox
|
||||||
pypi-pynsist
|
pypi-pynsist
|
||||||
|
pypi-pyomo
|
||||||
pypi-pyopengl
|
pypi-pyopengl
|
||||||
pypi-pyopenssl
|
pypi-pyopenssl
|
||||||
pypi-pyparsing
|
pypi-pyparsing
|
||||||
pypi-pyperclip
|
pypi-pyperclip
|
||||||
pypi-pyperf
|
pypi-pyperf
|
||||||
|
pypi-pyproject_metadata
|
||||||
pypi-pyprojectx
|
pypi-pyprojectx
|
||||||
pypi-pypsrp
|
pypi-pypsrp
|
||||||
pypi-pyqrcode
|
pypi-pyqrcode
|
||||||
|
pypi-pyqt6_sip
|
||||||
|
pypi-pyqt_builder
|
||||||
pypi-pyquery
|
pypi-pyquery
|
||||||
pypi-pyreadline
|
pypi-pyreadline
|
||||||
pypi-pyrfc3339
|
pypi-pyrfc3339
|
||||||
@@ -4183,14 +4201,17 @@ pypi-python_lsp_server
|
|||||||
pypi-python_multilib
|
pypi-python_multilib
|
||||||
pypi-python_slugify
|
pypi-python_slugify
|
||||||
pypi-python_string_utils
|
pypi-python_string_utils
|
||||||
|
pypi-python_version
|
||||||
pypi-python_xlib
|
pypi-python_xlib
|
||||||
pypi-pythran
|
pypi-pythran
|
||||||
|
pypi-pytoolconfig
|
||||||
pypi-pytz
|
pypi-pytz
|
||||||
pypi-pytz_deprecation_shim
|
pypi-pytz_deprecation_shim
|
||||||
pypi-pyu2f
|
pypi-pyu2f
|
||||||
pypi-pyusb
|
pypi-pyusb
|
||||||
pypi-pywavelets
|
pypi-pywavelets
|
||||||
pypi-pywbem
|
pypi-pywbem
|
||||||
|
pypi-pywinrm
|
||||||
pypi-pyxattr
|
pypi-pyxattr
|
||||||
pypi-pyxdameraulevenshtein
|
pypi-pyxdameraulevenshtein
|
||||||
pypi-pyxdg
|
pypi-pyxdg
|
||||||
@@ -4199,6 +4220,7 @@ pypi-pyzmq
|
|||||||
pypi-qtawesome
|
pypi-qtawesome
|
||||||
pypi-qtconsole
|
pypi-qtconsole
|
||||||
pypi-qtpy
|
pypi-qtpy
|
||||||
|
pypi-rapidfuzz_capi
|
||||||
pypi-rcssmin
|
pypi-rcssmin
|
||||||
pypi-readme_renderer
|
pypi-readme_renderer
|
||||||
pypi-recommonmark
|
pypi-recommonmark
|
||||||
@@ -4214,6 +4236,7 @@ pypi-requests_mock
|
|||||||
pypi-requests_oauthlib
|
pypi-requests_oauthlib
|
||||||
pypi-requests_toolbelt
|
pypi-requests_toolbelt
|
||||||
pypi-requests_unixsocket
|
pypi-requests_unixsocket
|
||||||
|
pypi-requirements_parser
|
||||||
pypi-resolvelib
|
pypi-resolvelib
|
||||||
pypi-responses
|
pypi-responses
|
||||||
pypi-restructuredtext_lint
|
pypi-restructuredtext_lint
|
||||||
@@ -4261,7 +4284,6 @@ pypi-sh
|
|||||||
pypi-shapely
|
pypi-shapely
|
||||||
pypi-shellingham
|
pypi-shellingham
|
||||||
pypi-simplegeneric
|
pypi-simplegeneric
|
||||||
pypi-singledispatch
|
|
||||||
pypi-six
|
pypi-six
|
||||||
pypi-smart_open
|
pypi-smart_open
|
||||||
pypi-smartypants
|
pypi-smartypants
|
||||||
@@ -4274,7 +4296,6 @@ pypi-sphinx
|
|||||||
pypi-sphinx_ansible_theme
|
pypi-sphinx_ansible_theme
|
||||||
pypi-sphinx_argparse
|
pypi-sphinx_argparse
|
||||||
pypi-sphinx_autobuild
|
pypi-sphinx_autobuild
|
||||||
pypi-sphinx_book_theme
|
|
||||||
pypi-sphinx_copybutton
|
pypi-sphinx_copybutton
|
||||||
pypi-sphinx_design
|
pypi-sphinx_design
|
||||||
pypi-sphinx_feature_classification
|
pypi-sphinx_feature_classification
|
||||||
@@ -4283,7 +4304,6 @@ pypi-sphinx_issues
|
|||||||
pypi-sphinx_last_updated_by_git
|
pypi-sphinx_last_updated_by_git
|
||||||
pypi-sphinx_notfound_page
|
pypi-sphinx_notfound_page
|
||||||
pypi-sphinx_rtd_theme
|
pypi-sphinx_rtd_theme
|
||||||
pypi-sphinx_thebe
|
|
||||||
pypi-sphinx_theme_builder
|
pypi-sphinx_theme_builder
|
||||||
pypi-sphinx_togglebutton
|
pypi-sphinx_togglebutton
|
||||||
pypi-sphinxcontrib_apidoc
|
pypi-sphinxcontrib_apidoc
|
||||||
@@ -4297,9 +4317,11 @@ pypi-sphinxcontrib_httpdomain
|
|||||||
pypi-sphinxcontrib_jsmath
|
pypi-sphinxcontrib_jsmath
|
||||||
pypi-sphinxcontrib_napoleon
|
pypi-sphinxcontrib_napoleon
|
||||||
pypi-sphinxcontrib_newsfeed
|
pypi-sphinxcontrib_newsfeed
|
||||||
|
pypi-sphinxcontrib_openapi
|
||||||
pypi-sphinxcontrib_plantuml
|
pypi-sphinxcontrib_plantuml
|
||||||
pypi-sphinxcontrib_programoutput
|
pypi-sphinxcontrib_programoutput
|
||||||
pypi-sphinxcontrib_qthelp
|
pypi-sphinxcontrib_qthelp
|
||||||
|
pypi-sphinxcontrib_redoc
|
||||||
pypi-sphinxcontrib_seqdiag
|
pypi-sphinxcontrib_seqdiag
|
||||||
pypi-sphinxcontrib_serializinghtml
|
pypi-sphinxcontrib_serializinghtml
|
||||||
pypi-sphinxcontrib_svg2pdfconverter
|
pypi-sphinxcontrib_svg2pdfconverter
|
||||||
@@ -4320,6 +4342,7 @@ pypi-tblib
|
|||||||
pypi-templated_dictionary
|
pypi-templated_dictionary
|
||||||
pypi-tempora
|
pypi-tempora
|
||||||
pypi-tenacity
|
pypi-tenacity
|
||||||
|
pypi-termcolor
|
||||||
pypi-terminado
|
pypi-terminado
|
||||||
pypi-terminaltables
|
pypi-terminaltables
|
||||||
pypi-testpath
|
pypi-testpath
|
||||||
@@ -4339,10 +4362,12 @@ pypi-tomli_w
|
|||||||
pypi-tomlkit
|
pypi-tomlkit
|
||||||
pypi-toolz
|
pypi-toolz
|
||||||
pypi-tornado
|
pypi-tornado
|
||||||
|
pypi-tornado_xstatic
|
||||||
pypi-tox
|
pypi-tox
|
||||||
pypi-tqdm
|
pypi-tqdm
|
||||||
pypi-traitlets
|
pypi-traitlets
|
||||||
pypi-trampolim
|
pypi-trampolim
|
||||||
|
pypi-trimesh
|
||||||
pypi-trio
|
pypi-trio
|
||||||
pypi-trio_websocket
|
pypi-trio_websocket
|
||||||
pypi-ttp
|
pypi-ttp
|
||||||
@@ -4355,6 +4380,7 @@ pypi-types_dataclasses
|
|||||||
pypi-types_enum34
|
pypi-types_enum34
|
||||||
pypi-types_ipaddress
|
pypi-types_ipaddress
|
||||||
pypi-types_mock
|
pypi-types_mock
|
||||||
|
pypi-types_psutil
|
||||||
pypi-types_pyopenssl
|
pypi-types_pyopenssl
|
||||||
pypi-types_pyrfc3339
|
pypi-types_pyrfc3339
|
||||||
pypi-types_python_dateutil
|
pypi-types_python_dateutil
|
||||||
@@ -4364,18 +4390,18 @@ pypi-types_requests
|
|||||||
pypi-types_setuptools
|
pypi-types_setuptools
|
||||||
pypi-types_six
|
pypi-types_six
|
||||||
pypi-types_termcolor
|
pypi-types_termcolor
|
||||||
|
pypi-types_toml
|
||||||
|
pypi-types_typed_ast
|
||||||
pypi-types_urllib3
|
pypi-types_urllib3
|
||||||
pypi-typing_extensions
|
pypi-typing_extensions
|
||||||
pypi-typogrify
|
pypi-typogrify
|
||||||
pypi-tzdata
|
pypi-tzdata
|
||||||
pypi-tzlocal
|
pypi-tzlocal
|
||||||
pypi-ua_parser
|
pypi-ua_parser
|
||||||
pypi-uamqp
|
|
||||||
pypi-uc_micro_py
|
pypi-uc_micro_py
|
||||||
pypi-ufolib2
|
pypi-ufolib2
|
||||||
pypi-uharfbuzz
|
pypi-uharfbuzz
|
||||||
pypi-ujson
|
pypi-ujson
|
||||||
pypi-uncertainpy
|
|
||||||
pypi-unicodedata2
|
pypi-unicodedata2
|
||||||
pypi-unidecode
|
pypi-unidecode
|
||||||
pypi-unidiff
|
pypi-unidiff
|
||||||
@@ -4390,7 +4416,6 @@ pypi-virtualenv
|
|||||||
pypi-volatile
|
pypi-volatile
|
||||||
pypi-voluptuous
|
pypi-voluptuous
|
||||||
pypi-voluptuous_serialize
|
pypi-voluptuous_serialize
|
||||||
pypi-vsts
|
|
||||||
pypi-vsts_cd_manager
|
pypi-vsts_cd_manager
|
||||||
pypi-waitress
|
pypi-waitress
|
||||||
pypi-watchdog
|
pypi-watchdog
|
||||||
@@ -4405,6 +4430,7 @@ pypi-werkzeug
|
|||||||
pypi-wheel
|
pypi-wheel
|
||||||
pypi-widgetsnbextension
|
pypi-widgetsnbextension
|
||||||
pypi-wikipedia
|
pypi-wikipedia
|
||||||
|
pypi-wordfreq
|
||||||
pypi-wrapt
|
pypi-wrapt
|
||||||
pypi-wsgiproxy2
|
pypi-wsgiproxy2
|
||||||
pypi-wsproto
|
pypi-wsproto
|
||||||
@@ -4415,12 +4441,13 @@ pypi-xmlschema
|
|||||||
pypi-xmltodict
|
pypi-xmltodict
|
||||||
pypi-xpra
|
pypi-xpra
|
||||||
pypi-xstatic
|
pypi-xstatic
|
||||||
|
pypi-xstatic_angular
|
||||||
|
pypi-xstatic_angular_bootstrap
|
||||||
pypi-xvfbwrapper
|
pypi-xvfbwrapper
|
||||||
pypi-yamlloader
|
pypi-yamlloader
|
||||||
pypi-yapf
|
pypi-yapf
|
||||||
pypi-yarg
|
pypi-yarg
|
||||||
pypi-yarl
|
pypi-yarl
|
||||||
pypi-yaspin
|
|
||||||
pypi-zabbix_api
|
pypi-zabbix_api
|
||||||
pypi-zc.lockfile
|
pypi-zc.lockfile
|
||||||
pypi-zeroconf
|
pypi-zeroconf
|
||||||
@@ -4463,6 +4490,7 @@ python-zstandard
|
|||||||
python3
|
python3
|
||||||
pyudev
|
pyudev
|
||||||
qalculate-gtk
|
qalculate-gtk
|
||||||
|
qatlib
|
||||||
qbittorrent
|
qbittorrent
|
||||||
qca-qt5
|
qca-qt5
|
||||||
qemu
|
qemu
|
||||||
@@ -4537,11 +4565,9 @@ redis2-nginx-module
|
|||||||
redland
|
redland
|
||||||
redshift
|
redshift
|
||||||
redsocks
|
redsocks
|
||||||
renderdoc
|
|
||||||
requests-ntlm
|
requests-ntlm
|
||||||
rest
|
rest
|
||||||
restic
|
restic
|
||||||
retrying
|
|
||||||
rhythmbox
|
rhythmbox
|
||||||
rinutils
|
rinutils
|
||||||
rlwrap
|
rlwrap
|
||||||
@@ -4588,6 +4614,7 @@ sddm-kcm
|
|||||||
seahorse
|
seahorse
|
||||||
seatd
|
seatd
|
||||||
sed
|
sed
|
||||||
|
seer
|
||||||
serf
|
serf
|
||||||
setserial
|
setserial
|
||||||
setxkbmap
|
setxkbmap
|
||||||
@@ -4627,11 +4654,13 @@ speexdsp
|
|||||||
spice
|
spice
|
||||||
spice-gtk
|
spice-gtk
|
||||||
spice-protocol
|
spice-protocol
|
||||||
|
spice-vdagent
|
||||||
sqlite-autoconf
|
sqlite-autoconf
|
||||||
squashfs-tools
|
squashfs-tools
|
||||||
squid
|
squid
|
||||||
sshfs
|
sshfs
|
||||||
sshpass
|
sshpass
|
||||||
|
sshuttle
|
||||||
ssocr
|
ssocr
|
||||||
sssd
|
sssd
|
||||||
ssw
|
ssw
|
||||||
@@ -4690,7 +4719,6 @@ telemetrics-client
|
|||||||
telepathy-glib
|
telepathy-glib
|
||||||
telepathy-qt
|
telepathy-qt
|
||||||
tepl
|
tepl
|
||||||
termcolor
|
|
||||||
terminology
|
terminology
|
||||||
terminus-font
|
terminus-font
|
||||||
tesseract
|
tesseract
|
||||||
@@ -4727,7 +4755,6 @@ trace-cmd
|
|||||||
traceroute
|
traceroute
|
||||||
tracker
|
tracker
|
||||||
tracker-miners
|
tracker-miners
|
||||||
traefik
|
|
||||||
tree
|
tree
|
||||||
tree-sitter
|
tree-sitter
|
||||||
tzdata
|
tzdata
|
||||||
@@ -4751,7 +4778,6 @@ usb-modeswitch-data
|
|||||||
usbredir
|
usbredir
|
||||||
usbutils
|
usbutils
|
||||||
user-manager
|
user-manager
|
||||||
usermode
|
|
||||||
userspace-rcu
|
userspace-rcu
|
||||||
usrbinjava
|
usrbinjava
|
||||||
usrbinpython
|
usrbinpython
|
||||||
@@ -4787,6 +4813,7 @@ wayland
|
|||||||
wayland-protocols
|
wayland-protocols
|
||||||
wcslib
|
wcslib
|
||||||
webkitgtk
|
webkitgtk
|
||||||
|
webkitgtk50
|
||||||
weechat
|
weechat
|
||||||
weston
|
weston
|
||||||
wget
|
wget
|
||||||
@@ -4794,6 +4821,7 @@ which
|
|||||||
whois
|
whois
|
||||||
wine
|
wine
|
||||||
wireless-regdb-master
|
wireless-regdb-master
|
||||||
|
wireplumber
|
||||||
wireshark
|
wireshark
|
||||||
wlroots
|
wlroots
|
||||||
wmctrl
|
wmctrl
|
||||||
@@ -4801,6 +4829,7 @@ woff2
|
|||||||
wol
|
wol
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
wsjtx
|
wsjtx
|
||||||
|
wslu
|
||||||
wxWidgets
|
wxWidgets
|
||||||
x11perf
|
x11perf
|
||||||
x11vnc
|
x11vnc
|
||||||
|
|||||||
Reference in New Issue
Block a user