mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
48 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4fe341972 | |||
| 23cc04134a | |||
| 9614d9e14e | |||
| 7f94ad0fc5 | |||
| 443c6b9694 | |||
| 5d7039fb9a | |||
| f2de7b7dc6 | |||
| 446c96bf65 | |||
| 0e420e434d | |||
| be0cdd6c5d | |||
| 7111d57d6c | |||
| 96850c538a | |||
| 96fd23e88b | |||
| 6f5fd11673 | |||
| 7ea85257af | |||
| 4ccec6a4d0 | |||
| c76272e46a | |||
| 1559d4e0b5 | |||
| 3ab672318e | |||
| 890363f65f | |||
| e90b6f8c72 | |||
| 684a600f80 | |||
| a45fc62812 | |||
| 511bd629c9 | |||
| b0e3083d75 | |||
| 493f2a79af | |||
| 26e68a0cc8 | |||
| 27e4f02f58 | |||
| 2e28a2e579 | |||
| abf5c5748d | |||
| 8290cda118 | |||
| b9bb464a1a | |||
| 0121236923 | |||
| 01b1bf2d23 | |||
| dc5a8bd4ed | |||
| 337699759e | |||
| b4742ce76d | |||
| 2a95bfa0ba | |||
| a11d59cbb5 | |||
| f0cc040b91 | |||
| c55b2aee12 | |||
| 1e12976a64 | |||
| 165d207f03 | |||
| 7e1da9a64b | |||
| 23503a41af | |||
| d06ca6b262 | |||
| 8e0d099005 | |||
| c89e0eb2fd |
+14
-11
@@ -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
|
||||
@@ -307,8 +310,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 +319,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,7 +327,7 @@ 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)
|
||||
|
||||
#help rekoji: In case a previous 'make koji' failed, trigger a rebuild for the
|
||||
|
||||
+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
|
||||
```
|
||||
|
||||
@@ -31,6 +31,7 @@ Aladdin
|
||||
Apache-1.0
|
||||
Apache-1.1
|
||||
Apache-2.0
|
||||
App-s2p
|
||||
Artistic-1.0
|
||||
Artistic-1.0-Perl
|
||||
Artistic-1.0-cl8
|
||||
@@ -138,17 +139,20 @@ CERN-OHL-W-2.0
|
||||
CNRI-Jython
|
||||
CNRI-Python
|
||||
CNRI-Python-GPL-Compatible
|
||||
COIL-1.0
|
||||
CPAL-1.0
|
||||
CPL-1.0
|
||||
CPOL-1.02
|
||||
CUA-OPL-1.0
|
||||
Caldera
|
||||
ClArtistic
|
||||
Community-Spec-1.0
|
||||
Condor-1.1
|
||||
Crossword
|
||||
CrystalStacker
|
||||
Cube
|
||||
D-FSL-1.0
|
||||
DL-DE-BY-2.0
|
||||
DOC
|
||||
DRL-1.0
|
||||
DSDP
|
||||
@@ -164,9 +168,11 @@ EUDatagrid
|
||||
EUPL-1.0
|
||||
EUPL-1.1
|
||||
EUPL-1.2
|
||||
Elastic-2.0
|
||||
Entessa
|
||||
ErlPL-1.1
|
||||
Eurosym
|
||||
FDK-AAC
|
||||
FSFAP
|
||||
FSFUL
|
||||
FSFULLR
|
||||
@@ -240,6 +246,7 @@ Intel-ACPI
|
||||
Interbase-1.0
|
||||
JPNIC
|
||||
JSON
|
||||
Jam
|
||||
JasPer-2.0
|
||||
LAL-1.2
|
||||
LAL-1.3
|
||||
@@ -270,6 +277,7 @@ LiLiQ-R-1.1
|
||||
LiLiQ-Rplus-1.1
|
||||
Libpng
|
||||
Linux-OpenIB
|
||||
Linux-man-pages-copyleft
|
||||
MIT
|
||||
MIT-0
|
||||
MIT-CMU
|
||||
@@ -401,6 +409,7 @@ SSH-short
|
||||
SSPL-1.0
|
||||
SWL
|
||||
Saxpath
|
||||
SchemeReport
|
||||
Sendmail
|
||||
Sendmail-8.23
|
||||
SimPL-2.0
|
||||
@@ -434,6 +443,7 @@ WTFPL
|
||||
Watcom-1.0
|
||||
Wsuipa
|
||||
X11
|
||||
X11-distribute-modifications-variant
|
||||
XFree86-1.1
|
||||
XSkat
|
||||
Xerox
|
||||
|
||||
@@ -12,7 +12,6 @@ F-Engrave
|
||||
FreeRDP
|
||||
GConf
|
||||
Gradio
|
||||
GtkD
|
||||
ImageMagick
|
||||
Imath
|
||||
JAGS
|
||||
@@ -50,6 +49,7 @@ QGIS
|
||||
R
|
||||
R-AER
|
||||
R-AMORE
|
||||
R-ATR
|
||||
R-Amelia
|
||||
R-AmesHousing
|
||||
R-BB
|
||||
@@ -246,6 +246,7 @@ R-bridgesampling
|
||||
R-brio
|
||||
R-brms
|
||||
R-broom
|
||||
R-broom.mixed
|
||||
R-bslib
|
||||
R-bvls
|
||||
R-ca
|
||||
@@ -273,6 +274,7 @@ R-cmprsk
|
||||
R-cobs
|
||||
R-coda
|
||||
R-coin
|
||||
R-collapse
|
||||
R-collections
|
||||
R-colorspace
|
||||
R-colourpicker
|
||||
@@ -336,6 +338,7 @@ R-downlit
|
||||
R-downloader
|
||||
R-dplyr
|
||||
R-drc
|
||||
R-dreamerr
|
||||
R-dtplyr
|
||||
R-dtw
|
||||
R-dygraphs
|
||||
@@ -402,9 +405,11 @@ R-findpython
|
||||
R-fit.models
|
||||
R-fitbitScraper
|
||||
R-fitdistrplus
|
||||
R-fixest
|
||||
R-flashClust
|
||||
R-flexmix
|
||||
R-flexsurv
|
||||
R-flextable
|
||||
R-float
|
||||
R-fontBitstreamVera
|
||||
R-fontLiberation
|
||||
@@ -420,6 +425,7 @@ R-fpc
|
||||
R-fracdiff
|
||||
R-fs
|
||||
R-fst
|
||||
R-fstcore
|
||||
R-furrr
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
@@ -427,6 +433,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
|
||||
@@ -472,6 +481,7 @@ R-gss
|
||||
R-gtable
|
||||
R-gtools
|
||||
R-haplo.stats
|
||||
R-hardhat
|
||||
R-haven
|
||||
R-hdrcde
|
||||
R-here
|
||||
@@ -582,6 +592,7 @@ R-mda
|
||||
R-measures
|
||||
R-memisc
|
||||
R-memoise
|
||||
R-metadat
|
||||
R-metafor
|
||||
R-mi
|
||||
R-mice
|
||||
@@ -594,6 +605,7 @@ R-mirt
|
||||
R-misc3d
|
||||
R-miscF
|
||||
R-miscTools
|
||||
R-mitml
|
||||
R-mitools
|
||||
R-mixtools
|
||||
R-mlbench
|
||||
@@ -634,12 +646,14 @@ 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
|
||||
@@ -871,6 +885,7 @@ R-spatstat.core
|
||||
R-spatstat.data
|
||||
R-spatstat.geom
|
||||
R-spatstat.linnet
|
||||
R-spatstat.random
|
||||
R-spatstat.sparse
|
||||
R-spatstat.utils
|
||||
R-spc
|
||||
@@ -928,6 +943,7 @@ R-tm
|
||||
R-tmvnsim
|
||||
R-toOrdinal
|
||||
R-topicmodels
|
||||
R-tram
|
||||
R-tree
|
||||
R-triebeard
|
||||
R-trimcluster
|
||||
@@ -1003,7 +1019,6 @@ SDL_ttf
|
||||
SFCGAL
|
||||
SFML
|
||||
SPIRV-Cross
|
||||
SPIRV-Headers
|
||||
SPIRV-Tools
|
||||
SVT-AV1
|
||||
SVT-HEVC
|
||||
@@ -1020,7 +1035,6 @@ Vc
|
||||
Vulkan-Headers
|
||||
Vulkan-Loader
|
||||
Vulkan-Tools
|
||||
Vulkan-ValidationLayers
|
||||
WALinuxAgent
|
||||
WireGuard
|
||||
XStatic-term.js
|
||||
@@ -1029,7 +1043,6 @@ abireport
|
||||
accountsservice
|
||||
acl
|
||||
acpica-unix2
|
||||
acrn-hypervisor
|
||||
ade
|
||||
adwaita-icon-theme
|
||||
aesara
|
||||
@@ -1055,7 +1068,6 @@ analitza
|
||||
ansible
|
||||
ansible-core
|
||||
antlr4-python3-runtime
|
||||
anyio
|
||||
apache-ant
|
||||
applaunchservices
|
||||
appstream
|
||||
@@ -1080,7 +1092,6 @@ aspell-fr
|
||||
aspell-pt_BR
|
||||
assimp
|
||||
asunder
|
||||
asv
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
@@ -1122,6 +1133,7 @@ bcache-tools
|
||||
bcc
|
||||
bcftools
|
||||
bdftopcf
|
||||
bemenu
|
||||
bijiben
|
||||
bind-utils
|
||||
binutils
|
||||
@@ -1153,6 +1165,7 @@ breeze-icons
|
||||
bridge-utils
|
||||
brotli
|
||||
bsdiff
|
||||
bspwm
|
||||
btrfs-progs
|
||||
bubblewrap
|
||||
buildreq-R
|
||||
@@ -1173,6 +1186,7 @@ byobu
|
||||
bz2file
|
||||
bzip2
|
||||
c-ares
|
||||
c-basic-meta
|
||||
cJSON
|
||||
c_rehash
|
||||
ca-certs
|
||||
@@ -1195,7 +1209,7 @@ ccid
|
||||
cdparanoia
|
||||
ceph
|
||||
ceph-deploy
|
||||
certbot
|
||||
cereal
|
||||
cfitsio
|
||||
cgdb
|
||||
cgit
|
||||
@@ -1245,6 +1259,7 @@ clutter
|
||||
clutter-gst
|
||||
clutter-gtk
|
||||
cmake
|
||||
cmark
|
||||
cmocka
|
||||
cmrt
|
||||
cmus
|
||||
@@ -1269,9 +1284,12 @@ compat-curl-gnutls-soname4
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gcc-10
|
||||
compat-gdal-soname27
|
||||
compat-glibmm-soname24
|
||||
compat-gnome-bluetooth-soname-13
|
||||
compat-gtksourceview-soname3
|
||||
compat-icu4c-soname67
|
||||
compat-json-c-soname4
|
||||
compat-libffi-soname6
|
||||
compat-libpng-soname12
|
||||
compat-libsigc++-soname20
|
||||
@@ -1282,8 +1300,11 @@ compat-lua-52
|
||||
compat-lua-53
|
||||
compat-nettle-soname7
|
||||
compat-pangomm-soname14
|
||||
compat-poppler-soname112
|
||||
compat-poppler-soname117
|
||||
compat-protobuf-soname23
|
||||
compat-readline-soname5
|
||||
compat-rest-soname07
|
||||
compat-tbb-soname12
|
||||
compat-tracker-soname2.0
|
||||
compat-webkitgtk-soname40
|
||||
@@ -1372,6 +1393,7 @@ docbook2X
|
||||
docker
|
||||
docker-cli
|
||||
dockerpty
|
||||
docutils
|
||||
dolphin
|
||||
dolphin-plugins
|
||||
dos2unix
|
||||
@@ -1483,7 +1505,6 @@ fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
fsearch
|
||||
funcparserlib
|
||||
fuse
|
||||
fwupd
|
||||
fwupd-efi
|
||||
@@ -1492,6 +1513,7 @@ gawk
|
||||
gc
|
||||
gcab
|
||||
gcc
|
||||
gcc11
|
||||
gcc7
|
||||
gcc8
|
||||
gcc9
|
||||
@@ -1523,6 +1545,7 @@ gftp
|
||||
gh
|
||||
ghc
|
||||
ghostscript
|
||||
gi-docgen
|
||||
giflib
|
||||
gifsicle
|
||||
gimp
|
||||
@@ -1562,12 +1585,12 @@ gnome-chess
|
||||
gnome-clocks
|
||||
gnome-color-manager
|
||||
gnome-common
|
||||
gnome-console
|
||||
gnome-contacts
|
||||
gnome-control-center
|
||||
gnome-desktop
|
||||
gnome-desktop-testing
|
||||
gnome-disk-utility
|
||||
gnome-flashback
|
||||
gnome-font-viewer
|
||||
gnome-getting-started-docs
|
||||
gnome-icon-theme
|
||||
@@ -1589,6 +1612,7 @@ gnome-shell-extensions
|
||||
gnome-software
|
||||
gnome-system-monitor
|
||||
gnome-terminal
|
||||
gnome-text-editor
|
||||
gnome-themes-extra
|
||||
gnome-todo
|
||||
gnome-tweaks
|
||||
@@ -1654,6 +1678,7 @@ gtk4
|
||||
gtkmm2
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
gtksourceview4
|
||||
gtkspell3
|
||||
gtkwave
|
||||
guile
|
||||
@@ -1693,7 +1718,6 @@ i3
|
||||
i3blocks
|
||||
i3lock
|
||||
i3status
|
||||
ias
|
||||
iasimage
|
||||
ibus
|
||||
ibus-libpinyin
|
||||
@@ -1714,6 +1738,7 @@ imagescan
|
||||
imapfilter
|
||||
imlib2
|
||||
indent
|
||||
inetutils
|
||||
inih
|
||||
iniparse
|
||||
init-rdahead
|
||||
@@ -1726,7 +1751,6 @@ intel-ipsec-mb
|
||||
intel-media-driver
|
||||
intelhex
|
||||
intltool
|
||||
ioc-cbc-tools
|
||||
ioping
|
||||
ioport
|
||||
iotop
|
||||
@@ -1993,11 +2017,11 @@ layer-shell-qt
|
||||
lcms2
|
||||
lcov
|
||||
ldb
|
||||
ldc
|
||||
ledmon
|
||||
lensfun
|
||||
leptonica
|
||||
less
|
||||
level-zero
|
||||
leveldb
|
||||
lftp
|
||||
libArcus
|
||||
@@ -2047,6 +2071,7 @@ libcap-ng
|
||||
libcddb
|
||||
libcdio
|
||||
libcdr
|
||||
libcerf
|
||||
libcgroup
|
||||
libchamplain
|
||||
libclc
|
||||
@@ -2055,6 +2080,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libcuckoo
|
||||
libcxx
|
||||
libdaemon
|
||||
libdatrie
|
||||
@@ -2106,6 +2132,7 @@ libgtop
|
||||
libgudev
|
||||
libgusb
|
||||
libgweather
|
||||
libgweather4
|
||||
libhandy
|
||||
libical
|
||||
libidn
|
||||
@@ -2209,6 +2236,7 @@ libsecret
|
||||
libsigc++
|
||||
libsignal-protocol-c
|
||||
libskk
|
||||
libslirp
|
||||
libsmbios
|
||||
libsndfile
|
||||
libsodium
|
||||
@@ -2305,11 +2333,10 @@ linux-preempt-rt
|
||||
linux-tools
|
||||
linuxptp
|
||||
lksctp-tools
|
||||
lldb
|
||||
llvm
|
||||
llvm10
|
||||
llvm8
|
||||
llvm9
|
||||
llvm11
|
||||
llvm12
|
||||
llvm13
|
||||
lm-sensors
|
||||
lmdb
|
||||
logrotate
|
||||
@@ -3494,7 +3521,6 @@ picocom
|
||||
pidgin
|
||||
pidgin-sipe
|
||||
pigeonhole
|
||||
piglit
|
||||
pigz
|
||||
pim-data-exporter
|
||||
pim-sieve-editor
|
||||
@@ -3530,6 +3556,7 @@ poppler
|
||||
poppler-data-clr-rename
|
||||
popt
|
||||
portaudio
|
||||
portmidi
|
||||
postfix
|
||||
postgis
|
||||
postgresql
|
||||
@@ -3583,12 +3610,18 @@ 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-appnope
|
||||
pypi-argcomplete
|
||||
pypi-argon2_cffi
|
||||
pypi-argon2_cffi_bindings
|
||||
@@ -3600,10 +3633,12 @@ pypi-astral
|
||||
pypi-astroid
|
||||
pypi-asttokens
|
||||
pypi-astunparse
|
||||
pypi-asv
|
||||
pypi-async_generator
|
||||
pypi-async_timeout
|
||||
pypi-asynctest
|
||||
pypi-atomicwrites
|
||||
pypi-atpublic
|
||||
pypi-attrs
|
||||
pypi-awesomeversion
|
||||
pypi-awscrt
|
||||
@@ -3622,6 +3657,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
|
||||
@@ -3633,6 +3669,7 @@ pypi-binaryornot
|
||||
pypi-bkcharts
|
||||
pypi-black
|
||||
pypi-bleach
|
||||
pypi-blessed
|
||||
pypi-blinker
|
||||
pypi-blivet
|
||||
pypi-blockdiag
|
||||
@@ -3652,8 +3689,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
|
||||
@@ -3739,6 +3779,7 @@ pypi-docstring_parser
|
||||
pypi-docutils
|
||||
pypi-dpcontracts
|
||||
pypi-ecdsa
|
||||
pypi-editables
|
||||
pypi-elementpath
|
||||
pypi-enrich
|
||||
pypi-entrypoints
|
||||
@@ -3746,6 +3787,7 @@ pypi-envs
|
||||
pypi-eternalegypt
|
||||
pypi-etuples
|
||||
pypi-evdev
|
||||
pypi-exceptiongroup
|
||||
pypi-exdir
|
||||
pypi-execnet
|
||||
pypi-executing
|
||||
@@ -3767,10 +3809,12 @@ pypi-flask
|
||||
pypi-flatten_json
|
||||
pypi-flit
|
||||
pypi-flit_core
|
||||
pypi-flit_scm
|
||||
pypi-fontmath
|
||||
pypi-freezegun
|
||||
pypi-frozenlist
|
||||
pypi-fsspec
|
||||
pypi-funcparserlib
|
||||
pypi-future
|
||||
pypi-gast
|
||||
pypi-gcs_oauth2_boto_plugin
|
||||
@@ -3804,6 +3848,8 @@ pypi-h11
|
||||
pypi-h2
|
||||
pypi-h5py
|
||||
pypi-hammock
|
||||
pypi-hatch_vcs
|
||||
pypi-hatchling
|
||||
pypi-heapdict
|
||||
pypi-hkp4py
|
||||
pypi-home_assistant_frontend
|
||||
@@ -3853,6 +3899,7 @@ pypi-itsdangerous
|
||||
pypi-janus
|
||||
pypi-jaraco.classes
|
||||
pypi-jaraco.collections
|
||||
pypi-jaraco.context
|
||||
pypi-jaraco.functools
|
||||
pypi-jaraco.text
|
||||
pypi-jarn.viewdoc
|
||||
@@ -3864,6 +3911,7 @@ pypi-jellyfish
|
||||
pypi-jinja2
|
||||
pypi-jinja2_pluralize
|
||||
pypi-jinja2_time
|
||||
pypi-jinxed
|
||||
pypi-jmespath
|
||||
pypi-joblib
|
||||
pypi-josepy
|
||||
@@ -3896,12 +3944,13 @@ pypi-kerberos
|
||||
pypi-keyring
|
||||
pypi-khal
|
||||
pypi-kiwisolver
|
||||
pypi-krb5
|
||||
pypi-kubernetes
|
||||
pypi-lark_parser
|
||||
pypi-latexcodec
|
||||
pypi-lazy_object_proxy
|
||||
pypi-ldap3
|
||||
pypi-libarchive_c
|
||||
pypi-libcst
|
||||
pypi-linkify_it_py
|
||||
pypi-livereload
|
||||
pypi-llfuse
|
||||
@@ -3910,6 +3959,7 @@ pypi-logical_unification
|
||||
pypi-logilab_common
|
||||
pypi-lxml
|
||||
pypi-lz4
|
||||
pypi-macholib
|
||||
pypi-mako
|
||||
pypi-markdown
|
||||
pypi-markdown2
|
||||
@@ -3926,8 +3976,9 @@ pypi-mkdocs
|
||||
pypi-mkdocs_material
|
||||
pypi-mkdocs_material_extensions
|
||||
pypi-mock
|
||||
pypi-modulegraph
|
||||
pypi-molecule
|
||||
pypi-monkeytype
|
||||
pypi-molecule_docker
|
||||
pypi-monotonic
|
||||
pypi-more_itertools
|
||||
pypi-moreorless
|
||||
@@ -3953,25 +4004,26 @@ 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-numpy_ringbuffer
|
||||
pypi-numpydoc
|
||||
pypi-oauth2client
|
||||
pypi-oauthlib
|
||||
pypi-oldest_supported_numpy
|
||||
pypi-olefile
|
||||
pypi-onnx
|
||||
pypi-opcodes
|
||||
@@ -3983,6 +4035,7 @@ pypi-packaging
|
||||
pypi-paho_mqtt
|
||||
pypi-pandocfilters
|
||||
pypi-paramiko
|
||||
pypi-parse
|
||||
pypi-parsedatetime
|
||||
pypi-parso
|
||||
pypi-partd
|
||||
@@ -3993,6 +4046,7 @@ pypi-pathlib
|
||||
pypi-pathspec
|
||||
pypi-patsy
|
||||
pypi-pbr
|
||||
pypi-pdm_pep517
|
||||
pypi-pdocs
|
||||
pypi-pecan
|
||||
pypi-ped
|
||||
@@ -4064,6 +4118,7 @@ pypi-pydot_ng
|
||||
pypi-pyelftools
|
||||
pypi-pyfakefs
|
||||
pypi-pyflakes
|
||||
pypi-pygame
|
||||
pypi-pygithub
|
||||
pypi-pygments
|
||||
pypi-pyicu
|
||||
@@ -4073,6 +4128,7 @@ pypi-pylint
|
||||
pypi-pyls_black
|
||||
pypi-pymdown_extensions
|
||||
pypi-pynacl
|
||||
pypi-pynetbox
|
||||
pypi-pynsist
|
||||
pypi-pyopengl
|
||||
pypi-pyopenssl
|
||||
@@ -4183,6 +4239,7 @@ pypi-ruamel.yaml.clib
|
||||
pypi-s3transfer
|
||||
pypi-salib
|
||||
pypi-sanic_routing
|
||||
pypi-scikit_build
|
||||
pypi-scikit_image
|
||||
pypi-scp
|
||||
pypi-seaborn
|
||||
@@ -4217,6 +4274,7 @@ pypi-snowballstemmer
|
||||
pypi-sortedcontainers
|
||||
pypi-soupsieve
|
||||
pypi-sphinx
|
||||
pypi-sphinx_ansible_theme
|
||||
pypi-sphinx_argparse
|
||||
pypi-sphinx_autobuild
|
||||
pypi-sphinx_book_theme
|
||||
@@ -4226,8 +4284,10 @@ pypi-sphinx_feature_classification
|
||||
pypi-sphinx_gallery
|
||||
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
|
||||
@@ -4247,6 +4307,7 @@ pypi-sphinxcontrib_seqdiag
|
||||
pypi-sphinxcontrib_serializinghtml
|
||||
pypi-sphinxcontrib_svg2pdfconverter
|
||||
pypi-sphinxcontrib_websupport
|
||||
pypi-sphinxext_opengraph
|
||||
pypi-spyrk
|
||||
pypi-sqlalchemy
|
||||
pypi-sqlparse
|
||||
@@ -4268,6 +4329,7 @@ pypi-testpath
|
||||
pypi-text_unidecode
|
||||
pypi-textdistance
|
||||
pypi-textfsm
|
||||
pypi-texttable
|
||||
pypi-theano
|
||||
pypi-threadpoolctl
|
||||
pypi-three_merge
|
||||
@@ -4300,13 +4362,13 @@ pypi-types_pyopenssl
|
||||
pypi-types_pyrfc3339
|
||||
pypi-types_python_dateutil
|
||||
pypi-types_pytz
|
||||
pypi-types_pyyaml
|
||||
pypi-types_requests
|
||||
pypi-types_setuptools
|
||||
pypi-types_six
|
||||
pypi-types_termcolor
|
||||
pypi-types_urllib3
|
||||
pypi-typing
|
||||
pypi-typing_extensions
|
||||
pypi-typing_inspect
|
||||
pypi-typogrify
|
||||
pypi-tzdata
|
||||
pypi-tzlocal
|
||||
@@ -4314,6 +4376,7 @@ pypi-ua_parser
|
||||
pypi-uamqp
|
||||
pypi-uc_micro_py
|
||||
pypi-ufolib2
|
||||
pypi-uharfbuzz
|
||||
pypi-ujson
|
||||
pypi-uncertainpy
|
||||
pypi-unicodedata2
|
||||
@@ -4324,6 +4387,7 @@ pypi-urllib3
|
||||
pypi-urlobject
|
||||
pypi-urwid
|
||||
pypi-user_agents
|
||||
pypi-userpath
|
||||
pypi-uvloop
|
||||
pypi-virtualenv
|
||||
pypi-volatile
|
||||
@@ -4338,6 +4402,7 @@ pypi-webcolors
|
||||
pypi-webencodings
|
||||
pypi-webob
|
||||
pypi-websocket_client
|
||||
pypi-websockets
|
||||
pypi-webtest
|
||||
pypi-werkzeug
|
||||
pypi-wheel
|
||||
@@ -4450,6 +4515,7 @@ qtwebchannel
|
||||
qtwebengine
|
||||
qtwebsockets
|
||||
qtx11extras
|
||||
qtxdg-tools
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quassel
|
||||
@@ -4500,7 +4566,6 @@ rtmpdump
|
||||
rttr
|
||||
ruby
|
||||
runc
|
||||
rust-std32
|
||||
rustc
|
||||
rxvt-unicode
|
||||
s2tc
|
||||
@@ -4543,6 +4608,7 @@ simplejson
|
||||
simplescreenrecorder
|
||||
sip
|
||||
slang
|
||||
slirp4netns
|
||||
slurm
|
||||
smartcols
|
||||
smartmontools
|
||||
@@ -4636,20 +4702,19 @@ 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
|
||||
tiff
|
||||
tig
|
||||
tigervnc
|
||||
tilix
|
||||
time
|
||||
tini
|
||||
tiptop
|
||||
@@ -4675,6 +4740,7 @@ udisks2
|
||||
udunits
|
||||
uget
|
||||
uhttpmock
|
||||
umockdev
|
||||
unbundle
|
||||
unibilium
|
||||
unifdef
|
||||
@@ -4694,6 +4760,7 @@ usrbinjava
|
||||
usrbinpython
|
||||
usrbinvi
|
||||
utf8cpp
|
||||
utf8proc
|
||||
util-linux
|
||||
util-macros
|
||||
uwsgi
|
||||
@@ -4849,3 +4916,4 @@ zopfli
|
||||
zsh
|
||||
zstd
|
||||
zstd-bin
|
||||
zxing
|
||||
|
||||
Reference in New Issue
Block a user