mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 02:56:00 +00:00
Compare commits
55 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| 1a0e21943f | |||
| c4fe341972 | |||
| 23cc04134a | |||
| 9614d9e14e | |||
| 7f94ad0fc5 | |||
| 443c6b9694 | |||
| 5d7039fb9a | |||
| f2de7b7dc6 | |||
| 446c96bf65 | |||
| 0e420e434d | |||
| be0cdd6c5d | |||
| 7111d57d6c | |||
| 96850c538a | |||
| 96fd23e88b | |||
| 6f5fd11673 | |||
| 7ea85257af | |||
| 4ccec6a4d0 | |||
| c76272e46a | |||
| 1559d4e0b5 | |||
| 3ab672318e | |||
| 890363f65f | |||
| e90b6f8c72 |
+72
-14
@@ -26,6 +26,9 @@ WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||
MOCK_SMP_FLAGS=$(patsubst -j%, -D_smp_mflags\ -j%,$(filter -j%, $(MAKEFLAGS)))
|
||||
MOCK ?= $(WITH_SUDO) /usr/bin/mock -r $(MOCK_CONFIG_VAL) $(MOCK_SMP_FLAGS) $(MOCK_OPTS)
|
||||
|
||||
MOCK_CLEANUP_OPT := $(if $(CLEANUP),--cleanup-after,--no-cleanup-after)
|
||||
AUTOSPEC_CLEANUP_OPT := $(if $(CLEANUP),-C)
|
||||
|
||||
ifneq ($(wildcard upstream),)
|
||||
__allsources := $(notdir $(strip $(shell cat upstream)))
|
||||
__missingsources := $(filter-out $(wildcard ${__allsources}), ${__allsources})
|
||||
@@ -71,7 +74,7 @@ mockproper:
|
||||
$(MOCK) --clean --uniqueext=$(PKG_NAME)
|
||||
|
||||
configemail:
|
||||
@test -d .git || git init
|
||||
@test -d .git || git init -b main
|
||||
@$(call subjectprefix,$(PKG_NAME))
|
||||
@echo -n "Subject prefix email configured to: "
|
||||
@git config --get format.subjectPrefix
|
||||
@@ -88,7 +91,7 @@ prebuild-checks:
|
||||
#help which creates a src.rpm file from the spec file.
|
||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options.
|
||||
build: prebuild-checks configemail $(SPECFILE) upstream $(SRPMFILE)
|
||||
$(MOCK) $(SRPMFILE) --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) $(SRPMFILE) --result=results/ $(MOCK_CLEANUP_OPT) --uniqueext=$(PKG_NAME)
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="."
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
@perl $(TOPLVL)/projects/common/count.pl results/build.log &> testresults
|
||||
@@ -96,7 +99,7 @@ build: prebuild-checks configemail $(SPECFILE) upstream $(SRPMFILE)
|
||||
|
||||
#help build-nocheck: Same as 'make build', but do not run the package's test suite.
|
||||
build-nocheck: configemail $(SPECFILE) upstream $(SRPMFILE)
|
||||
$(MOCK) $(SRPMFILE) --nocheck --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) $(SRPMFILE) --nocheck --result=results/ $(MOCK_CLEANUP_OPT) --uniqueext=$(PKG_NAME)
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="."
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
@perl $(TOPLVL)/projects/common/count.pl results/build.log &> testresults
|
||||
@@ -117,7 +120,7 @@ shell:
|
||||
.PHONY: $(SRPMFILE)
|
||||
$(SRPMFILE): $(SPECFILE) $(__allsources) localreponotice clean-old-content
|
||||
@$(MAKE) spdxcheck
|
||||
$(MOCK) --buildsrpm --source=./ --spec=$(SPECFILE) --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) --buildsrpm --source=./ --spec=$(SPECFILE) --result=results/ $(MOCK_CLEANUP_OPT) --uniqueext=$(PKG_NAME)
|
||||
mv results/root.log results/srpm-root.log
|
||||
mv results/build.log results/srpm-build.log
|
||||
|
||||
@@ -129,7 +132,7 @@ $(SRPMFILE): $(SPECFILE) $(__allsources) localreponotice clean-old-content
|
||||
# initialized locally, or if the remote contains no commits.
|
||||
pullrebase:
|
||||
@if [ -z "$$SKIP_GIT" ] && [ -e .git ]; then \
|
||||
if ! git rev-parse --verify --quiet origin/master > /dev/null; then \
|
||||
if ! git rev-parse --verify --quiet origin/main > /dev/null; then \
|
||||
echo "Remote not yet initialized. Continuing."; \
|
||||
exit 0; \
|
||||
fi; \
|
||||
@@ -143,7 +146,7 @@ pullrebase:
|
||||
echo "Current branch up-to-date. Continuing."; \
|
||||
exit 0; \
|
||||
fi; \
|
||||
echo "Rebasing to origin/master"; \
|
||||
echo "Rebasing to origin/main"; \
|
||||
if git status --porcelain | grep -q '^.[^?]'; \
|
||||
then \
|
||||
git stash save; \
|
||||
@@ -179,7 +182,7 @@ autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
$${NON_INTERACTIVE:+ --non_interactive} \
|
||||
$${SKIP_GIT:+ --skip-git} \
|
||||
$${CLEANUP:+ -C} \
|
||||
$(AUTOSPEC_CLEANUP_OPT) \
|
||||
$(firstword $(NEWURL) $(URL));
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="."
|
||||
@$(MAKE) spdxcheck
|
||||
@@ -214,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))); \
|
||||
@@ -307,8 +320,8 @@ prekoji-checks:
|
||||
koji: prekoji-checks kojidef
|
||||
@$(MAKE) spdxcheck
|
||||
@$(MAKE) checkblacklist
|
||||
@if [ "$(CURRENT_BRANCH)" != "master" ] && [ "$(CURRENT_BRANCH)" != "main" ]; then \
|
||||
echo "Error: Must be on the \"master\" or \"main\" branch to submit to koji" >&2; \
|
||||
@if [ "$(CURRENT_BRANCH)" != "main" ]; then \
|
||||
echo "Error: Must be on the \"main\" branch to submit to koji" >&2; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
if ! git diff --quiet HEAD -- ${SPECFILE}; then \
|
||||
@@ -316,7 +329,7 @@ koji: prekoji-checks kojidef
|
||||
exit 1; \
|
||||
fi; \
|
||||
git fetch; \
|
||||
if git rev-parse --verify --quiet origin/master >/dev/null; then \
|
||||
if git rev-parse --verify --quiet origin/main >/dev/null; then \
|
||||
git pull --rebase; \
|
||||
fi; \
|
||||
if git ls-remote --tags --exit-code origin $(SRPMVERS) >/dev/null; then \
|
||||
@@ -324,8 +337,15 @@ koji: prekoji-checks kojidef
|
||||
exit 1; \
|
||||
fi
|
||||
git tag $(SRPMVERS)
|
||||
git push origin $(CURRENT_BRANCH):master 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)
|
||||
@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 same tag.
|
||||
@@ -349,6 +369,44 @@ koji-nowait:
|
||||
rekoji-nowait:
|
||||
$(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:
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
|
||||
|
||||
+17
-12
@@ -68,13 +68,18 @@ ${PULL_PKGS}:
|
||||
if [ ! -d "$$p/.git" ]; then echo "Nothing to pull for $$p - $$p/.git missing"; exit 0; fi; \
|
||||
cd "$$p" ; \
|
||||
if git remote | grep origin >/dev/null 2>&1; then \
|
||||
O=$$(git rev-parse origin/master 2>/dev/null); \
|
||||
case "$$p" in \
|
||||
("projects/"*) BRANCH=master ;; \
|
||||
("packages/"*) BRANCH=main ;; \
|
||||
(*) BRANCH=master ;; \
|
||||
esac; \
|
||||
O=$$(git rev-parse origin/"$$BRANCH" 2>/dev/null); \
|
||||
git fetch --tags origin >/dev/null 2>&1; \
|
||||
N=$$(git rev-parse origin/master); \
|
||||
N=$$(git rev-parse origin/"$$BRANCH"); \
|
||||
if [ "$$O" != "$$N" ]; then \
|
||||
echo "Updating: $$p"; \
|
||||
if ! git merge --ff-only origin/master 2>/dev/null; then \
|
||||
echo "$$p: Cannot fast-forward $$(git rev-parse --abbrev-ref HEAD) to origin/master" ; \
|
||||
if ! git merge --ff-only origin/"$$BRANCH" 2>/dev/null; then \
|
||||
echo "$$p: Cannot fast-forward $$(git rev-parse --abbrev-ref HEAD) to origin/$$BRANCH" ; \
|
||||
fi ; \
|
||||
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit $$O..$$N; echo; \
|
||||
fi ; \
|
||||
@@ -159,19 +164,19 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
if [ -d "$$p/.git" ] && [ -n "$$(git -C $$p status -uno --porcelain)" ]; then echo "Uncommitted changes in $$p:"; git -C "$$p" status --short; fi ;\
|
||||
done
|
||||
|
||||
#help diff: Runs git diff for all package repos and displays the output using
|
||||
#help diffstat. Requires that diffstat is installed.
|
||||
#help diff: Runs git diff for all package repos and displays the diffstat using
|
||||
#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 | diffstat -p1); :) ;\
|
||||
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git diff --stat); :) ;\
|
||||
done
|
||||
|
||||
#help log: Run git log origin/master..HEAD for all package repos, thus
|
||||
#help log: Run git log origin/main..HEAD for all package repos, thus
|
||||
#help displaying any committed but unpushed changes.
|
||||
log: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
( cd $$p; if [ "$$(git rev-parse --verify HEAD)" != "$$(git rev-parse --verify origin/master)" ] ; then \
|
||||
echo $$p ; git --no-pager log --pretty="format:%s" origin/master..HEAD ; echo ; echo;\
|
||||
( cd $$p; if [ -n "$$(git rev-list origin/main..HEAD)" ] ; then \
|
||||
echo $$p ; git --no-pager log --pretty="format:%s" origin/main..HEAD ; echo ; echo;\
|
||||
fi ; ) \
|
||||
done
|
||||
|
||||
@@ -211,7 +216,7 @@ autospecnew: preautospecnew-checks localreponotice
|
||||
mkdir -p $(TOPLVL)/packages/$(NAME); \
|
||||
( \
|
||||
cd $(TOPLVL)/packages/$(NAME); \
|
||||
git init; \
|
||||
git init -b main; \
|
||||
git remote add origin $(PKG_BASE_URL)/$(NAME); \
|
||||
$(call gitoliteurl,packages/$(NAME)); \
|
||||
$(call subjectprefix,$(NAME)); \
|
||||
@@ -262,7 +267,7 @@ autospecnewgo: preautospecnew-checks localreponotice
|
||||
mkdir -p $(TOPLVL)/packages/$(NAME); \
|
||||
( \
|
||||
cd $(TOPLVL)/packages/$(NAME); \
|
||||
git init; \
|
||||
git init -b main; \
|
||||
git remote add origin $(PKG_BASE_URL)/$(NAME); \
|
||||
$(call gitoliteurl,packages/$(NAME)); \
|
||||
$(call subjectprefix,$(NAME)); \
|
||||
|
||||
@@ -23,7 +23,7 @@ Download the [user setup](user-setup.sh) script and run it on your Clear Linux
|
||||
system as an unprivileged user.
|
||||
|
||||
```
|
||||
$ curl -O https://raw.githubusercontent.com/clearlinux/common/master/user-setup.sh
|
||||
$ curl -O https://raw.githubusercontent.com/clearlinux/common/main/user-setup.sh
|
||||
$ chmod +x user-setup.sh
|
||||
$ ./user-setup.sh
|
||||
```
|
||||
|
||||
@@ -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
|
||||
@@ -270,6 +274,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 +297,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 +315,7 @@ NBPL-1.0
|
||||
NCGL-UK-2.0
|
||||
NCSA
|
||||
NGPL
|
||||
NICTA-1.0
|
||||
NIST-PD
|
||||
NIST-PD-fallback
|
||||
NLOD-1.0
|
||||
@@ -381,6 +390,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
|
||||
@@ -475,7 +485,9 @@ iMatix
|
||||
libpng-2.0
|
||||
libselinux-1.0
|
||||
libtiff
|
||||
mpi-permissive
|
||||
mpich2
|
||||
mplus
|
||||
psfrag
|
||||
psutils
|
||||
wxWindows
|
||||
|
||||
@@ -48,14 +48,13 @@ QAT_engine
|
||||
QGIS
|
||||
R
|
||||
R-AER
|
||||
R-AMORE
|
||||
R-ATR
|
||||
R-Amelia
|
||||
R-AmesHousing
|
||||
R-BB
|
||||
R-BBmisc
|
||||
R-BH
|
||||
R-BMA
|
||||
R-BMS
|
||||
R-BatchJobs
|
||||
R-BayesFactor
|
||||
R-BiasedUrn
|
||||
@@ -165,7 +164,7 @@ R-Rserve
|
||||
R-Rsolnp
|
||||
R-Rtsne
|
||||
R-Rvmmin
|
||||
R-SDMTools
|
||||
R-Ryacas
|
||||
R-SGP
|
||||
R-SGPdata
|
||||
R-SQUAREM
|
||||
@@ -200,7 +199,6 @@ R-adespatial
|
||||
R-admisc
|
||||
R-afex
|
||||
R-alabama
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
R-ape
|
||||
@@ -286,7 +284,6 @@ R-config
|
||||
R-conflicted
|
||||
R-conquer
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
R-corrgram
|
||||
R-corrplot
|
||||
@@ -346,7 +343,6 @@ R-dynlm
|
||||
R-e1071
|
||||
R-eRm
|
||||
R-earth
|
||||
R-eco
|
||||
R-ecodist
|
||||
R-eddington
|
||||
R-effects
|
||||
@@ -370,18 +366,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
|
||||
@@ -408,6 +401,7 @@ R-fixest
|
||||
R-flashClust
|
||||
R-flexmix
|
||||
R-flexsurv
|
||||
R-flextable
|
||||
R-float
|
||||
R-fontBitstreamVera
|
||||
R-fontLiberation
|
||||
@@ -431,6 +425,9 @@ R-future
|
||||
R-future.apply
|
||||
R-g.data
|
||||
R-gam
|
||||
R-gamlss
|
||||
R-gamlss.data
|
||||
R-gamlss.dist
|
||||
R-gamm4
|
||||
R-gargle
|
||||
R-gbRd
|
||||
@@ -503,6 +500,7 @@ R-influenceR
|
||||
R-ini
|
||||
R-inline
|
||||
R-insight
|
||||
R-interp
|
||||
R-inum
|
||||
R-invgamma
|
||||
R-ipred
|
||||
@@ -587,6 +585,7 @@ R-mda
|
||||
R-measures
|
||||
R-memisc
|
||||
R-memoise
|
||||
R-metadat
|
||||
R-metafor
|
||||
R-mi
|
||||
R-mice
|
||||
@@ -638,14 +637,15 @@ R-nnls
|
||||
R-nortest
|
||||
R-npsurv
|
||||
R-numDeriv
|
||||
R-nws
|
||||
R-nycflights13
|
||||
R-officer
|
||||
R-openssl
|
||||
R-openxlsx
|
||||
R-optextras
|
||||
R-optimx
|
||||
R-optparse
|
||||
R-ordinal
|
||||
R-ordinalCont
|
||||
R-orthopolynom
|
||||
R-pROC
|
||||
R-packrat
|
||||
@@ -711,9 +711,9 @@ R-princurve
|
||||
R-processx
|
||||
R-procmaps
|
||||
R-prodlim
|
||||
R-profdpm
|
||||
R-profileModel
|
||||
R-profmem
|
||||
R-profvis
|
||||
R-progress
|
||||
R-progressr
|
||||
R-projpred
|
||||
@@ -828,7 +828,6 @@ R-runjags
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-s2
|
||||
R-sROC
|
||||
R-sampling
|
||||
R-sandwich
|
||||
R-sass
|
||||
@@ -935,6 +934,7 @@ R-tm
|
||||
R-tmvnsim
|
||||
R-toOrdinal
|
||||
R-topicmodels
|
||||
R-tram
|
||||
R-tree
|
||||
R-triebeard
|
||||
R-trimcluster
|
||||
@@ -945,10 +945,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
|
||||
@@ -1059,9 +1059,7 @@ analitza
|
||||
ansible
|
||||
ansible-core
|
||||
antlr4-python3-runtime
|
||||
anyio
|
||||
apache-ant
|
||||
applaunchservices
|
||||
appstream
|
||||
appstream-glib
|
||||
apr
|
||||
@@ -1107,7 +1105,6 @@ automake
|
||||
autossh
|
||||
avahi
|
||||
awesome-wm
|
||||
aws-sam-translator
|
||||
awscli
|
||||
axel
|
||||
azure-configs
|
||||
@@ -1125,6 +1122,7 @@ bcache-tools
|
||||
bcc
|
||||
bcftools
|
||||
bdftopcf
|
||||
bemenu
|
||||
bijiben
|
||||
bind-utils
|
||||
binutils
|
||||
@@ -1157,6 +1155,7 @@ bridge-utils
|
||||
brotli
|
||||
bsdiff
|
||||
bspwm
|
||||
btop
|
||||
btrfs-progs
|
||||
bubblewrap
|
||||
buildreq-R
|
||||
@@ -1200,7 +1199,6 @@ cdparanoia
|
||||
ceph
|
||||
ceph-deploy
|
||||
cereal
|
||||
certbot
|
||||
cfitsio
|
||||
cgdb
|
||||
cgit
|
||||
@@ -1286,16 +1284,13 @@ 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-pangomm-soname14
|
||||
compat-poppler-soname112
|
||||
compat-protobuf-soname23
|
||||
compat-poppler-soname117
|
||||
compat-readline-soname5
|
||||
compat-rest-soname07
|
||||
compat-tbb-soname12
|
||||
compat-tracker-soname2.0
|
||||
compat-webkitgtk-soname40
|
||||
component
|
||||
@@ -1364,6 +1359,7 @@ diffutils
|
||||
digikam
|
||||
ding-libs
|
||||
dino
|
||||
directx-headers
|
||||
direwolf
|
||||
dist-pam-configs
|
||||
distro
|
||||
@@ -1398,6 +1394,7 @@ dropwatch
|
||||
dssi
|
||||
dstat
|
||||
dtc
|
||||
duktape
|
||||
dunst
|
||||
duperemove
|
||||
dvisvgm
|
||||
@@ -1494,7 +1491,6 @@ fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
fsearch
|
||||
funcparserlib
|
||||
fuse
|
||||
fwupd
|
||||
fwupd-efi
|
||||
@@ -1503,6 +1499,7 @@ gawk
|
||||
gc
|
||||
gcab
|
||||
gcc
|
||||
gcc11
|
||||
gcc7
|
||||
gcc8
|
||||
gcc9
|
||||
@@ -1690,7 +1687,6 @@ hexchat
|
||||
hexedit
|
||||
hicolor-icon-theme
|
||||
hiredis-c
|
||||
home-assistant
|
||||
hostname
|
||||
hplip
|
||||
htop
|
||||
@@ -1721,6 +1717,7 @@ icon-naming-utils
|
||||
icu4c
|
||||
idle-python3.7-assets
|
||||
iftop
|
||||
igsc
|
||||
igt-gpu-tools
|
||||
iio-sensor-proxy
|
||||
imagescan
|
||||
@@ -1763,7 +1760,6 @@ isa-l
|
||||
iso-codes
|
||||
isodate
|
||||
isomd5sum
|
||||
ister
|
||||
isync
|
||||
itstool
|
||||
iw
|
||||
@@ -2010,6 +2006,7 @@ ledmon
|
||||
lensfun
|
||||
leptonica
|
||||
less
|
||||
level-zero
|
||||
leveldb
|
||||
lftp
|
||||
libArcus
|
||||
@@ -2068,6 +2065,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libcuckoo
|
||||
libcxx
|
||||
libdaemon
|
||||
libdatrie
|
||||
@@ -2302,18 +2300,16 @@ 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
|
||||
@@ -2323,6 +2319,7 @@ lksctp-tools
|
||||
llvm
|
||||
llvm11
|
||||
llvm12
|
||||
llvm13
|
||||
lm-sensors
|
||||
lmdb
|
||||
logrotate
|
||||
@@ -2394,7 +2391,13 @@ mesa
|
||||
mesa-demos
|
||||
meson
|
||||
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
|
||||
@@ -2434,7 +2437,6 @@ mosh
|
||||
mosquitto
|
||||
motd-update
|
||||
motif
|
||||
mozjs78
|
||||
mozjs91
|
||||
mpc
|
||||
mpfr
|
||||
@@ -2535,6 +2537,7 @@ octave
|
||||
oiio
|
||||
okteta
|
||||
okular
|
||||
oneVPL
|
||||
onig
|
||||
opa-fm
|
||||
opa-psm2
|
||||
@@ -2603,6 +2606,7 @@ pbzip2
|
||||
pciutils
|
||||
pcmanfm
|
||||
pcmanfm-qt
|
||||
pcp
|
||||
pcre
|
||||
pcre2
|
||||
pcs
|
||||
@@ -2956,6 +2960,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
|
||||
@@ -3026,6 +3031,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
|
||||
@@ -3057,6 +3064,7 @@ perl-Metrics-Any
|
||||
perl-Minion
|
||||
perl-Mixin-Linewise
|
||||
perl-Mock-Config
|
||||
perl-Mock-Sub
|
||||
perl-Modern-Perl
|
||||
perl-Module-Build
|
||||
perl-Module-Build-Tiny
|
||||
@@ -3542,13 +3550,14 @@ poppler
|
||||
poppler-data-clr-rename
|
||||
popt
|
||||
portaudio
|
||||
portmidi
|
||||
postfix
|
||||
postgis
|
||||
postgresql
|
||||
postgresql11
|
||||
postgresql12
|
||||
postgresql13
|
||||
postgresql14
|
||||
postgresql9
|
||||
potrace
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
@@ -3595,17 +3604,22 @@ pypi-aiofiles
|
||||
pypi-aiohttp
|
||||
pypi-aiohttp_cors
|
||||
pypi-aiosignal
|
||||
pypi-aiosmtpd
|
||||
pypi-alabaster
|
||||
pypi-altgraph
|
||||
pypi-ansi2html
|
||||
pypi-ansible_compat
|
||||
pypi-ansible_pygments
|
||||
pypi-anyio
|
||||
pypi-apacheconfig
|
||||
pypi-apipkg
|
||||
pypi-appdirs
|
||||
pypi-applicationinsights
|
||||
pypi-argcomplete
|
||||
pypi-argh
|
||||
pypi-argon2_cffi
|
||||
pypi-argon2_cffi_bindings
|
||||
pypi-argparse
|
||||
pypi-arrow
|
||||
pypi-asgiref
|
||||
pypi-asn1crypto
|
||||
@@ -3617,15 +3631,18 @@ pypi-astunparse
|
||||
pypi-asv
|
||||
pypi-async_generator
|
||||
pypi-async_timeout
|
||||
pypi-asyncssh
|
||||
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
|
||||
@@ -3637,6 +3654,7 @@ pypi-backcall
|
||||
pypi-backports.cached_property
|
||||
pypi-backports.entry_points_selectable
|
||||
pypi-backports.functools_lru_cache
|
||||
pypi-backports.shutil_get_terminal_size
|
||||
pypi-backports.ssl_match_hostname
|
||||
pypi-backports.weakref
|
||||
pypi-bash_kernel
|
||||
@@ -3668,8 +3686,11 @@ pypi-cached_property
|
||||
pypi-cachetools
|
||||
pypi-cachy
|
||||
pypi-capturer
|
||||
pypi-cattrs
|
||||
pypi-cchardet
|
||||
pypi-cerberus
|
||||
pypi-certbot
|
||||
pypi-certbot_dns_google
|
||||
pypi-certifi
|
||||
pypi-cffi
|
||||
pypi-cffsubr
|
||||
@@ -3700,10 +3721,10 @@ pypi-columnize
|
||||
pypi-commonmark
|
||||
pypi-complete
|
||||
pypi-compreffor
|
||||
pypi-comtypes
|
||||
pypi-configargparse
|
||||
pypi-configparser
|
||||
pypi-cons
|
||||
pypi-constantly
|
||||
pypi-contextlib2
|
||||
pypi-contextvars
|
||||
pypi-cookiecutter
|
||||
@@ -3737,14 +3758,13 @@ pypi-diffoscope
|
||||
pypi-dill
|
||||
pypi-diskcache
|
||||
pypi-distlib
|
||||
pypi-distributed
|
||||
pypi-dj_database_url
|
||||
pypi-django
|
||||
pypi-django_appconf
|
||||
pypi-django_compressor
|
||||
pypi-django_discover_runner
|
||||
pypi-django_nose
|
||||
pypi-django_pyscss
|
||||
pypi-dnacentersdk
|
||||
pypi-dns_lexicon
|
||||
pypi-dnspython
|
||||
pypi-docker
|
||||
@@ -3761,8 +3781,10 @@ pypi-enrich
|
||||
pypi-entrypoints
|
||||
pypi-envs
|
||||
pypi-eternalegypt
|
||||
pypi-etils
|
||||
pypi-etuples
|
||||
pypi-evdev
|
||||
pypi-exceptiongroup
|
||||
pypi-exdir
|
||||
pypi-execnet
|
||||
pypi-executing
|
||||
@@ -3780,14 +3802,18 @@ pypi-flake8_blind_except
|
||||
pypi-flake8_class_newline
|
||||
pypi-flake8_docstrings
|
||||
pypi-flake8_import_order
|
||||
pypi-flaky
|
||||
pypi-flask
|
||||
pypi-flatten_json
|
||||
pypi-flit
|
||||
pypi-flit_core
|
||||
pypi-flit_scm
|
||||
pypi-fontmath
|
||||
pypi-freezegun
|
||||
pypi-frozenlist
|
||||
pypi-fsspec
|
||||
pypi-ftfy
|
||||
pypi-funcparserlib
|
||||
pypi-future
|
||||
pypi-gast
|
||||
pypi-gcs_oauth2_boto_plugin
|
||||
@@ -3821,6 +3847,7 @@ pypi-h11
|
||||
pypi-h2
|
||||
pypi-h5py
|
||||
pypi-hammock
|
||||
pypi-hatch_vcs
|
||||
pypi-hatchling
|
||||
pypi-heapdict
|
||||
pypi-hkp4py
|
||||
@@ -3831,10 +3858,10 @@ pypi-httpcore
|
||||
pypi-httplib2
|
||||
pypi-httpretty
|
||||
pypi-httpx
|
||||
pypi-hug
|
||||
pypi-humanfriendly
|
||||
pypi-humanize
|
||||
pypi-hyperframe
|
||||
pypi-hyperlink
|
||||
pypi-hypothesis
|
||||
pypi-icalendar
|
||||
pypi-identify
|
||||
@@ -3847,6 +3874,7 @@ pypi-imagesize
|
||||
pypi-immutables
|
||||
pypi-importlib_metadata
|
||||
pypi-importlib_resources
|
||||
pypi-incremental
|
||||
pypi-infi.dtypes.iqn
|
||||
pypi-infi.dtypes.wwn
|
||||
pypi-inflect
|
||||
@@ -3856,6 +3884,7 @@ pypi-iniconfig
|
||||
pypi-inspursmsdk
|
||||
pypi-intervaltree
|
||||
pypi-invoke
|
||||
pypi-iocapture
|
||||
pypi-ipaddress
|
||||
pypi-ipdb
|
||||
pypi-ipdbplugin
|
||||
@@ -3918,6 +3947,7 @@ pypi-khal
|
||||
pypi-kiwisolver
|
||||
pypi-krb5
|
||||
pypi-kubernetes
|
||||
pypi-langcodes
|
||||
pypi-lark_parser
|
||||
pypi-latexcodec
|
||||
pypi-lazy_object_proxy
|
||||
@@ -3931,6 +3961,8 @@ pypi-logical_unification
|
||||
pypi-logilab_common
|
||||
pypi-lxml
|
||||
pypi-lz4
|
||||
pypi-m2r
|
||||
pypi-macholib
|
||||
pypi-mako
|
||||
pypi-markdown
|
||||
pypi-markdown2
|
||||
@@ -3943,11 +3975,11 @@ pypi-mergedeep
|
||||
pypi-mido
|
||||
pypi-minikanren
|
||||
pypi-mistune
|
||||
pypi-mkdocs
|
||||
pypi-mkdocs_material
|
||||
pypi-mkdocs_material_extensions
|
||||
pypi-mock
|
||||
pypi-modulegraph
|
||||
pypi-molecule
|
||||
pypi-molecule_docker
|
||||
pypi-monotonic
|
||||
pypi-more_itertools
|
||||
pypi-moreorless
|
||||
@@ -3973,18 +4005,21 @@ pypi-nbsphinx
|
||||
pypi-nbval
|
||||
pypi-ncclient
|
||||
pypi-ndg_httpsclient
|
||||
pypi-neat_python
|
||||
pypi-nest_asyncio
|
||||
pypi-netapp_lib
|
||||
pypi-netdisco
|
||||
pypi-netifaces
|
||||
pypi-networkx
|
||||
pypi-nibabel
|
||||
pypi-nltk
|
||||
pypi-nocasedict
|
||||
pypi-nocaselist
|
||||
pypi-nodeenv
|
||||
pypi-nose
|
||||
pypi-nose_timer
|
||||
pypi-notebook
|
||||
pypi-notebook_shim
|
||||
pypi-numpoly
|
||||
pypi-numpy
|
||||
pypi-numpydoc
|
||||
@@ -3997,22 +4032,24 @@ pypi-openshift
|
||||
pypi-opt_einsum
|
||||
pypi-ouimeaux
|
||||
pypi-outcome
|
||||
pypi-ovirt_imageio
|
||||
pypi-packaging
|
||||
pypi-paho_mqtt
|
||||
pypi-pandocfilters
|
||||
pypi-paramiko
|
||||
pypi-parse
|
||||
pypi-parse_type
|
||||
pypi-parsedatetime
|
||||
pypi-parso
|
||||
pypi-partd
|
||||
pypi-paste
|
||||
pypi-pastedeploy
|
||||
pypi-pastel
|
||||
pypi-pathlib
|
||||
pypi-pathspec
|
||||
pypi-pathtools
|
||||
pypi-patsy
|
||||
pypi-pbr
|
||||
pypi-pdocs
|
||||
pypi-pdm_pep517
|
||||
pypi-pecan
|
||||
pypi-ped
|
||||
pypi-pep517
|
||||
@@ -4026,6 +4063,7 @@ pypi-pickleshare
|
||||
pypi-pid
|
||||
pypi-pillow
|
||||
pypi-pip
|
||||
pypi-pip_tools
|
||||
pypi-pkgconfig
|
||||
pypi-pkginfo
|
||||
pypi-platformdirs
|
||||
@@ -4036,9 +4074,9 @@ pypi-pockets
|
||||
pypi-poetry
|
||||
pypi-poetry_core
|
||||
pypi-polib
|
||||
pypi-port_for
|
||||
pypi-portalocker
|
||||
pypi-portend
|
||||
pypi-portray
|
||||
pypi-posix_ipc
|
||||
pypi-poyo
|
||||
pypi-pre_commit
|
||||
@@ -4057,7 +4095,6 @@ pypi-purestorage
|
||||
pypi-purity_fb
|
||||
pypi-py
|
||||
pypi-py_cpuinfo
|
||||
pypi-py_pure_client
|
||||
pypi-pyaml
|
||||
pypi-pyasn1
|
||||
pypi-pyasn1_modules
|
||||
@@ -4075,6 +4112,7 @@ pypi-pycryptodome
|
||||
pypi-pycryptodomex
|
||||
pypi-pycups
|
||||
pypi-pycurl
|
||||
pypi-pydantic
|
||||
pypi-pydata_sphinx_theme
|
||||
pypi-pydispatcher
|
||||
pypi-pydocstyle
|
||||
@@ -4083,6 +4121,7 @@ pypi-pydot_ng
|
||||
pypi-pyelftools
|
||||
pypi-pyfakefs
|
||||
pypi-pyflakes
|
||||
pypi-pygame
|
||||
pypi-pygithub
|
||||
pypi-pygments
|
||||
pypi-pyicu
|
||||
@@ -4092,12 +4131,15 @@ pypi-pylint
|
||||
pypi-pyls_black
|
||||
pypi-pymdown_extensions
|
||||
pypi-pynacl
|
||||
pypi-pynetbox
|
||||
pypi-pynsist
|
||||
pypi-pyomo
|
||||
pypi-pyopengl
|
||||
pypi-pyopenssl
|
||||
pypi-pyparsing
|
||||
pypi-pyperclip
|
||||
pypi-pyperf
|
||||
pypi-pyproject_metadata
|
||||
pypi-pyprojectx
|
||||
pypi-pypsrp
|
||||
pypi-pyqrcode
|
||||
@@ -4149,14 +4191,17 @@ pypi-python_lsp_server
|
||||
pypi-python_multilib
|
||||
pypi-python_slugify
|
||||
pypi-python_string_utils
|
||||
pypi-python_version
|
||||
pypi-python_xlib
|
||||
pypi-pythran
|
||||
pypi-pytoolconfig
|
||||
pypi-pytz
|
||||
pypi-pytz_deprecation_shim
|
||||
pypi-pyu2f
|
||||
pypi-pyusb
|
||||
pypi-pywavelets
|
||||
pypi-pywbem
|
||||
pypi-pywinrm
|
||||
pypi-pyxattr
|
||||
pypi-pyxdameraulevenshtein
|
||||
pypi-pyxdg
|
||||
@@ -4227,7 +4272,6 @@ pypi-sh
|
||||
pypi-shapely
|
||||
pypi-shellingham
|
||||
pypi-simplegeneric
|
||||
pypi-singledispatch
|
||||
pypi-six
|
||||
pypi-smart_open
|
||||
pypi-smartypants
|
||||
@@ -4240,7 +4284,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
|
||||
@@ -4249,7 +4292,7 @@ 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
|
||||
pypi-sphinxcontrib_applehelp
|
||||
@@ -4262,9 +4305,11 @@ pypi-sphinxcontrib_httpdomain
|
||||
pypi-sphinxcontrib_jsmath
|
||||
pypi-sphinxcontrib_napoleon
|
||||
pypi-sphinxcontrib_newsfeed
|
||||
pypi-sphinxcontrib_openapi
|
||||
pypi-sphinxcontrib_plantuml
|
||||
pypi-sphinxcontrib_programoutput
|
||||
pypi-sphinxcontrib_qthelp
|
||||
pypi-sphinxcontrib_redoc
|
||||
pypi-sphinxcontrib_seqdiag
|
||||
pypi-sphinxcontrib_serializinghtml
|
||||
pypi-sphinxcontrib_svg2pdfconverter
|
||||
@@ -4285,12 +4330,14 @@ pypi-tblib
|
||||
pypi-templated_dictionary
|
||||
pypi-tempora
|
||||
pypi-tenacity
|
||||
pypi-termcolor
|
||||
pypi-terminado
|
||||
pypi-terminaltables
|
||||
pypi-testpath
|
||||
pypi-text_unidecode
|
||||
pypi-textdistance
|
||||
pypi-textfsm
|
||||
pypi-texttable
|
||||
pypi-theano
|
||||
pypi-threadpoolctl
|
||||
pypi-three_merge
|
||||
@@ -4303,10 +4350,12 @@ pypi-tomli_w
|
||||
pypi-tomlkit
|
||||
pypi-toolz
|
||||
pypi-tornado
|
||||
pypi-tornado_xstatic
|
||||
pypi-tox
|
||||
pypi-tqdm
|
||||
pypi-traitlets
|
||||
pypi-trampolim
|
||||
pypi-trimesh
|
||||
pypi-trio
|
||||
pypi-trio_websocket
|
||||
pypi-ttp
|
||||
@@ -4337,8 +4386,8 @@ pypi-ua_parser
|
||||
pypi-uamqp
|
||||
pypi-uc_micro_py
|
||||
pypi-ufolib2
|
||||
pypi-uharfbuzz
|
||||
pypi-ujson
|
||||
pypi-uncertainpy
|
||||
pypi-unicodedata2
|
||||
pypi-unidecode
|
||||
pypi-unidiff
|
||||
@@ -4353,7 +4402,6 @@ pypi-virtualenv
|
||||
pypi-volatile
|
||||
pypi-voluptuous
|
||||
pypi-voluptuous_serialize
|
||||
pypi-vsts
|
||||
pypi-vsts_cd_manager
|
||||
pypi-waitress
|
||||
pypi-watchdog
|
||||
@@ -4362,11 +4410,13 @@ pypi-webcolors
|
||||
pypi-webencodings
|
||||
pypi-webob
|
||||
pypi-websocket_client
|
||||
pypi-websockets
|
||||
pypi-webtest
|
||||
pypi-werkzeug
|
||||
pypi-wheel
|
||||
pypi-widgetsnbextension
|
||||
pypi-wikipedia
|
||||
pypi-wordfreq
|
||||
pypi-wrapt
|
||||
pypi-wsgiproxy2
|
||||
pypi-wsproto
|
||||
@@ -4425,6 +4475,7 @@ python-zstandard
|
||||
python3
|
||||
pyudev
|
||||
qalculate-gtk
|
||||
qatlib
|
||||
qbittorrent
|
||||
qca-qt5
|
||||
qemu
|
||||
@@ -4474,6 +4525,7 @@ qtwebchannel
|
||||
qtwebengine
|
||||
qtwebsockets
|
||||
qtx11extras
|
||||
qtxdg-tools
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quassel
|
||||
@@ -4502,7 +4554,6 @@ renderdoc
|
||||
requests-ntlm
|
||||
rest
|
||||
restic
|
||||
retrying
|
||||
rhythmbox
|
||||
rinutils
|
||||
rlwrap
|
||||
@@ -4549,6 +4600,7 @@ sddm-kcm
|
||||
seahorse
|
||||
seatd
|
||||
sed
|
||||
seer
|
||||
serf
|
||||
setserial
|
||||
setxkbmap
|
||||
@@ -4651,7 +4703,6 @@ telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-qt
|
||||
tepl
|
||||
termcolor
|
||||
terminology
|
||||
terminus-font
|
||||
tesseract
|
||||
@@ -4660,13 +4711,13 @@ tevent
|
||||
texinfo
|
||||
texlive
|
||||
texmaker
|
||||
texttable
|
||||
tgt
|
||||
the_silver_searcher
|
||||
thermal_daemon
|
||||
thermal_monitor
|
||||
thin-provisioning-tools
|
||||
threadweaver
|
||||
thrift
|
||||
thunar-volman
|
||||
thunderbird
|
||||
thunderbolt-software-user-space
|
||||
@@ -4688,7 +4739,6 @@ trace-cmd
|
||||
traceroute
|
||||
tracker
|
||||
tracker-miners
|
||||
traefik
|
||||
tree
|
||||
tree-sitter
|
||||
tzdata
|
||||
@@ -4698,6 +4748,7 @@ udisks2
|
||||
udunits
|
||||
uget
|
||||
uhttpmock
|
||||
umockdev
|
||||
unbundle
|
||||
unibilium
|
||||
unifdef
|
||||
@@ -4717,6 +4768,7 @@ usrbinjava
|
||||
usrbinpython
|
||||
usrbinvi
|
||||
utf8cpp
|
||||
utf8proc
|
||||
util-linux
|
||||
util-macros
|
||||
uwsgi
|
||||
@@ -4753,6 +4805,7 @@ which
|
||||
whois
|
||||
wine
|
||||
wireless-regdb-master
|
||||
wireplumber
|
||||
wireshark
|
||||
wlroots
|
||||
wmctrl
|
||||
@@ -4872,3 +4925,4 @@ zopfli
|
||||
zsh
|
||||
zstd
|
||||
zstd-bin
|
||||
zxing
|
||||
|
||||
Reference in New Issue
Block a user