mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
44 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ecc540786b | |||
| ee24dc9199 | |||
| d3616700c1 | |||
| e6f9dc64cf | |||
| c818274cec | |||
| 8094f8a358 | |||
| 1fe250bb13 | |||
| 48312c546e | |||
| 2ed43dee7c | |||
| 2c29d463aa | |||
| 916aa9ce90 | |||
| e5c860f7c9 | |||
| b9b24a353b | |||
| 45b72cc7bc | |||
| baabce03b6 | |||
| 191989a32a | |||
| f1f9d44878 | |||
| ae6182ad24 | |||
| f8bc62ae39 | |||
| e750687701 | |||
| 28747a2037 | |||
| 3208712529 | |||
| 9e94a00898 | |||
| e053e67bd5 | |||
| 68768eb65f | |||
| 2a7d53c6cd | |||
| 213b7b4d57 | |||
| 17f5e2eb9d | |||
| a85ca255c1 | |||
| 4133026569 | |||
| 60de5ce7d5 | |||
| 91a4c42013 | |||
| 49289f00d9 | |||
| 64a279e8f8 | |||
| c4709f40af | |||
| b443e169d5 | |||
| cd55363a3c | |||
| e0054520f8 | |||
| ecb84bfabf | |||
| 6b3a74eea5 | |||
| 9b81676c6f | |||
| e0844510f6 | |||
| 536b562a5b | |||
| c4cb75a89f |
+6
-2
@@ -17,7 +17,7 @@ SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || $(call queryspec,%{NVR}\n,$(SPECFILE)
|
|||||||
SRPMFILE = results/$(SRPMVERS).src.rpm
|
SRPMFILE = results/$(SRPMVERS).src.rpm
|
||||||
|
|
||||||
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||||
DEBUGINFO_RPM = $(wildcard rpms/*-debuginfo-*.rpm)
|
DEBUGINFO_RPM = $(wildcard rpms/${PKG_NAME}-debuginfo-$(shell $(call queryspec,%{V}-%{R},${SPECFILE})).*.rpm)
|
||||||
RPMS ?= $(LATEST_RPMS)
|
RPMS ?= $(LATEST_RPMS)
|
||||||
|
|
||||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||||
@@ -78,7 +78,7 @@ configemail:
|
|||||||
|
|
||||||
#help checkblacklist: Verify rpms files to not include banned files for Clear Linux OS.
|
#help checkblacklist: Verify rpms files to not include banned files for Clear Linux OS.
|
||||||
checkblacklist:
|
checkblacklist:
|
||||||
@$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist results/*.rpm
|
@$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(filter-out ${DEBUGINFO_RPM},${RPMS})
|
||||||
|
|
||||||
prebuild-checks:
|
prebuild-checks:
|
||||||
|
|
||||||
@@ -451,6 +451,10 @@ install-debuginfo-local:
|
|||||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||||
sudo cp -a "$$d" $$dest/; \
|
sudo cp -a "$$d" $$dest/; \
|
||||||
done; \
|
done; \
|
||||||
|
find $$tmpdir/usr/share/debug/.build-id -type l 2> /dev/null | while read -r link; do \
|
||||||
|
new_target=$$(readlink $$link | sed 's|/usr/share/debug|/usr/lib/debug|'); \
|
||||||
|
sudo ln -sf "$$new_target" "$$link"; \
|
||||||
|
done; \
|
||||||
find $$tmpdir/usr/share/debug/ -mindepth 1 -maxdepth 1 -regextype awk -regex '.*/(.build-id|boot|lib|sbin|usr)$$' 2> /dev/null | while read -r d; do \
|
find $$tmpdir/usr/share/debug/ -mindepth 1 -maxdepth 1 -regextype awk -regex '.*/(.build-id|boot|lib|sbin|usr)$$' 2> /dev/null | while read -r d; do \
|
||||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||||
sudo cp -a "$$d" $$dest/; \
|
sudo cp -a "$$d" $$dest/; \
|
||||||
|
|||||||
+1
-1
@@ -163,7 +163,7 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
|||||||
#help diffstat. Requires that diffstat is installed.
|
#help diffstat. Requires that diffstat is installed.
|
||||||
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 | grep -q 'nothing to commit, working [^ ]* clean' || (echo "Uncommitted changes in: $$p"; git diff |diffstat -p1)) ;\
|
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git diff | diffstat -p1); :) ;\
|
||||||
done
|
done
|
||||||
|
|
||||||
#help log: Run git log origin/master..HEAD for all package repos, thus
|
#help log: Run git log origin/master..HEAD for all package repos, thus
|
||||||
|
|||||||
Binary file not shown.
@@ -45,11 +45,14 @@ BSD-3-Clause
|
|||||||
BSD-3-Clause-Attribution
|
BSD-3-Clause-Attribution
|
||||||
BSD-3-Clause-Clear
|
BSD-3-Clause-Clear
|
||||||
BSD-3-Clause-LBNL
|
BSD-3-Clause-LBNL
|
||||||
|
BSD-3-Clause-Modification
|
||||||
|
BSD-3-Clause-No-Military-License
|
||||||
BSD-3-Clause-No-Nuclear-License
|
BSD-3-Clause-No-Nuclear-License
|
||||||
BSD-3-Clause-No-Nuclear-License-2014
|
BSD-3-Clause-No-Nuclear-License-2014
|
||||||
BSD-3-Clause-No-Nuclear-Warranty
|
BSD-3-Clause-No-Nuclear-Warranty
|
||||||
BSD-3-Clause-Open-MPI
|
BSD-3-Clause-Open-MPI
|
||||||
BSD-4-Clause
|
BSD-4-Clause
|
||||||
|
BSD-4-Clause-Shortened
|
||||||
BSD-4-Clause-UC
|
BSD-4-Clause-UC
|
||||||
BSD-Protection
|
BSD-Protection
|
||||||
BSD-Source-Code
|
BSD-Source-Code
|
||||||
@@ -62,6 +65,7 @@ BitTorrent-1.0
|
|||||||
BitTorrent-1.1
|
BitTorrent-1.1
|
||||||
BlueOak-1.0.0
|
BlueOak-1.0.0
|
||||||
Borceux
|
Borceux
|
||||||
|
C-UDA-1.0
|
||||||
CAL-1.0
|
CAL-1.0
|
||||||
CAL-1.0-Combined-Work-Exception
|
CAL-1.0-Combined-Work-Exception
|
||||||
CATOSL-1.1
|
CATOSL-1.1
|
||||||
@@ -96,6 +100,7 @@ CC-BY-ND-4.0
|
|||||||
CC-BY-SA-1.0
|
CC-BY-SA-1.0
|
||||||
CC-BY-SA-2.0
|
CC-BY-SA-2.0
|
||||||
CC-BY-SA-2.0-UK
|
CC-BY-SA-2.0-UK
|
||||||
|
CC-BY-SA-2.1-JP
|
||||||
CC-BY-SA-2.5
|
CC-BY-SA-2.5
|
||||||
CC-BY-SA-3.0
|
CC-BY-SA-3.0
|
||||||
CC-BY-SA-3.0-AT
|
CC-BY-SA-3.0-AT
|
||||||
@@ -104,6 +109,7 @@ CC-PDDC
|
|||||||
CC0-1.0
|
CC0-1.0
|
||||||
CDDL-1.0
|
CDDL-1.0
|
||||||
CDDL-1.1
|
CDDL-1.1
|
||||||
|
CDL-1.0
|
||||||
CDLA-Permissive-1.0
|
CDLA-Permissive-1.0
|
||||||
CDLA-Sharing-1.0
|
CDLA-Sharing-1.0
|
||||||
CECILL-1.0
|
CECILL-1.0
|
||||||
@@ -132,6 +138,7 @@ CrystalStacker
|
|||||||
Cube
|
Cube
|
||||||
D-FSL-1.0
|
D-FSL-1.0
|
||||||
DOC
|
DOC
|
||||||
|
DRL-1.0
|
||||||
DSDP
|
DSDP
|
||||||
Dotseqn
|
Dotseqn
|
||||||
ECL-1.0
|
ECL-1.0
|
||||||
@@ -154,7 +161,9 @@ FSFULLR
|
|||||||
FTL
|
FTL
|
||||||
Fair
|
Fair
|
||||||
Frameworx-1.0
|
Frameworx-1.0
|
||||||
|
FreeBSD-DOC
|
||||||
FreeImage
|
FreeImage
|
||||||
|
GD
|
||||||
GFDL-1.1
|
GFDL-1.1
|
||||||
GFDL-1.1-invariants-only
|
GFDL-1.1-invariants-only
|
||||||
GFDL-1.1-invariants-or-later
|
GFDL-1.1-invariants-or-later
|
||||||
@@ -252,6 +261,7 @@ Linux-OpenIB
|
|||||||
MIT
|
MIT
|
||||||
MIT-0
|
MIT-0
|
||||||
MIT-CMU
|
MIT-CMU
|
||||||
|
MIT-Modern-Variant
|
||||||
MIT-advertising
|
MIT-advertising
|
||||||
MIT-enna
|
MIT-enna
|
||||||
MIT-feh
|
MIT-feh
|
||||||
@@ -271,6 +281,7 @@ MulanPSL-1.0
|
|||||||
MulanPSL-2.0
|
MulanPSL-2.0
|
||||||
Multics
|
Multics
|
||||||
Mup
|
Mup
|
||||||
|
NAIST-2003
|
||||||
NASA-1.3
|
NASA-1.3
|
||||||
NBPL-1.0
|
NBPL-1.0
|
||||||
NCGL-UK-2.0
|
NCGL-UK-2.0
|
||||||
@@ -306,6 +317,7 @@ OFL-1.1
|
|||||||
OFL-1.1-RFN
|
OFL-1.1-RFN
|
||||||
OFL-1.1-no-RFN
|
OFL-1.1-no-RFN
|
||||||
OGC-1.0
|
OGC-1.0
|
||||||
|
OGDL-Taiwan-1.0
|
||||||
OGL-Canada-2.0
|
OGL-Canada-2.0
|
||||||
OGL-UK-1.0
|
OGL-UK-1.0
|
||||||
OGL-UK-2.0
|
OGL-UK-2.0
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ Gradio
|
|||||||
GtkD
|
GtkD
|
||||||
HeapDict
|
HeapDict
|
||||||
ImageMagick
|
ImageMagick
|
||||||
|
Imath
|
||||||
JAGS
|
JAGS
|
||||||
Jinja2
|
Jinja2
|
||||||
Judy
|
Judy
|
||||||
@@ -72,6 +73,7 @@ PyWavelets
|
|||||||
PyYAML
|
PyYAML
|
||||||
Pygments
|
Pygments
|
||||||
Pyro4
|
Pyro4
|
||||||
|
QAT_engine
|
||||||
QGIS
|
QGIS
|
||||||
QtAwesome
|
QtAwesome
|
||||||
QtPy
|
QtPy
|
||||||
@@ -92,6 +94,7 @@ R-BiocManager
|
|||||||
R-BoolNet
|
R-BoolNet
|
||||||
R-BradleyTerry2
|
R-BradleyTerry2
|
||||||
R-Brobdingnag
|
R-Brobdingnag
|
||||||
|
R-C50
|
||||||
R-CVST
|
R-CVST
|
||||||
R-Cairo
|
R-Cairo
|
||||||
R-CircStats
|
R-CircStats
|
||||||
@@ -107,6 +110,7 @@ R-DT
|
|||||||
R-DendSer
|
R-DendSer
|
||||||
R-Deriv
|
R-Deriv
|
||||||
R-DescTools
|
R-DescTools
|
||||||
|
R-DiagrammeR
|
||||||
R-DistributionUtils
|
R-DistributionUtils
|
||||||
R-DoseFinding
|
R-DoseFinding
|
||||||
R-Ecdat
|
R-Ecdat
|
||||||
@@ -208,6 +212,7 @@ R-VGAM
|
|||||||
R-VGAMdata
|
R-VGAMdata
|
||||||
R-VIM
|
R-VIM
|
||||||
R-WDI
|
R-WDI
|
||||||
|
R-WikidataQueryServiceR
|
||||||
R-WikidataR
|
R-WikidataR
|
||||||
R-WikipediR
|
R-WikipediR
|
||||||
R-XML
|
R-XML
|
||||||
@@ -397,6 +402,7 @@ R-fUnitRoots
|
|||||||
R-fail
|
R-fail
|
||||||
R-fansi
|
R-fansi
|
||||||
R-farver
|
R-farver
|
||||||
|
R-fastGHQuad
|
||||||
R-fastICA
|
R-fastICA
|
||||||
R-fastcluster
|
R-fastcluster
|
||||||
R-fastmap
|
R-fastmap
|
||||||
@@ -435,6 +441,7 @@ R-future
|
|||||||
R-g.data
|
R-g.data
|
||||||
R-gam
|
R-gam
|
||||||
R-gamm4
|
R-gamm4
|
||||||
|
R-gargle
|
||||||
R-gbRd
|
R-gbRd
|
||||||
R-gbm
|
R-gbm
|
||||||
R-gbutils
|
R-gbutils
|
||||||
@@ -465,10 +472,13 @@ R-gmp
|
|||||||
R-gnm
|
R-gnm
|
||||||
R-goftest
|
R-goftest
|
||||||
R-googleVis
|
R-googleVis
|
||||||
|
R-googledrive
|
||||||
|
R-googlesheets4
|
||||||
R-gower
|
R-gower
|
||||||
R-gplots
|
R-gplots
|
||||||
R-gridBase
|
R-gridBase
|
||||||
R-gridExtra
|
R-gridExtra
|
||||||
|
R-gsl
|
||||||
R-gss
|
R-gss
|
||||||
R-gtable
|
R-gtable
|
||||||
R-gtools
|
R-gtools
|
||||||
@@ -491,6 +501,7 @@ R-hunspell
|
|||||||
R-hwriter
|
R-hwriter
|
||||||
R-hypergeo
|
R-hypergeo
|
||||||
R-ica
|
R-ica
|
||||||
|
R-ids
|
||||||
R-igraph
|
R-igraph
|
||||||
R-import
|
R-import
|
||||||
R-ineq
|
R-ineq
|
||||||
@@ -522,6 +533,7 @@ R-ks
|
|||||||
R-labeling
|
R-labeling
|
||||||
R-labelled
|
R-labelled
|
||||||
R-laeken
|
R-laeken
|
||||||
|
R-lamW
|
||||||
R-lambda.r
|
R-lambda.r
|
||||||
R-languageR
|
R-languageR
|
||||||
R-languageserver
|
R-languageserver
|
||||||
@@ -550,6 +562,7 @@ R-lmom
|
|||||||
R-lmtest
|
R-lmtest
|
||||||
R-locfit
|
R-locfit
|
||||||
R-logcondens
|
R-logcondens
|
||||||
|
R-logger
|
||||||
R-logspline
|
R-logspline
|
||||||
R-loo
|
R-loo
|
||||||
R-lpSolve
|
R-lpSolve
|
||||||
@@ -635,6 +648,7 @@ R-optparse
|
|||||||
R-ordinal
|
R-ordinal
|
||||||
R-pROC
|
R-pROC
|
||||||
R-packrat
|
R-packrat
|
||||||
|
R-palmerpenguins
|
||||||
R-pamr
|
R-pamr
|
||||||
R-pander
|
R-pander
|
||||||
R-parallelly
|
R-parallelly
|
||||||
@@ -668,6 +682,7 @@ R-pkgload
|
|||||||
R-pkgmaker
|
R-pkgmaker
|
||||||
R-plm
|
R-plm
|
||||||
R-plogr
|
R-plogr
|
||||||
|
R-plot3D
|
||||||
R-plotly
|
R-plotly
|
||||||
R-plotmo
|
R-plotmo
|
||||||
R-plotrix
|
R-plotrix
|
||||||
@@ -729,9 +744,11 @@ R-ranger
|
|||||||
R-rappdirs
|
R-rappdirs
|
||||||
R-raster
|
R-raster
|
||||||
R-rasterVis
|
R-rasterVis
|
||||||
|
R-ratelimitr
|
||||||
R-rbenchmark
|
R-rbenchmark
|
||||||
R-rbibutils
|
R-rbibutils
|
||||||
R-rcmdcheck
|
R-rcmdcheck
|
||||||
|
R-rcorpora
|
||||||
R-reactR
|
R-reactR
|
||||||
R-reactable
|
R-reactable
|
||||||
R-reactlog
|
R-reactlog
|
||||||
@@ -749,6 +766,7 @@ R-remotes
|
|||||||
R-rentrez
|
R-rentrez
|
||||||
R-repr
|
R-repr
|
||||||
R-reprex
|
R-reprex
|
||||||
|
R-repurrrsive
|
||||||
R-reshape
|
R-reshape
|
||||||
R-reshape2
|
R-reshape2
|
||||||
R-reticulate
|
R-reticulate
|
||||||
@@ -781,6 +799,7 @@ R-robustbase
|
|||||||
R-rootSolve
|
R-rootSolve
|
||||||
R-rotl
|
R-rotl
|
||||||
R-roxygen2
|
R-roxygen2
|
||||||
|
R-rpart.plot
|
||||||
R-rprojroot
|
R-rprojroot
|
||||||
R-rrcov
|
R-rrcov
|
||||||
R-rredlist
|
R-rredlist
|
||||||
@@ -790,6 +809,7 @@ R-rsdmx
|
|||||||
R-rstan
|
R-rstan
|
||||||
R-rstanarm
|
R-rstanarm
|
||||||
R-rstantools
|
R-rstantools
|
||||||
|
R-rstpm2
|
||||||
R-rstudio
|
R-rstudio
|
||||||
R-rstudio-server
|
R-rstudio-server
|
||||||
R-rstudioapi
|
R-rstudioapi
|
||||||
@@ -797,6 +817,7 @@ R-rsvg
|
|||||||
R-runjags
|
R-runjags
|
||||||
R-rversions
|
R-rversions
|
||||||
R-rvest
|
R-rvest
|
||||||
|
R-s2
|
||||||
R-sROC
|
R-sROC
|
||||||
R-sampling
|
R-sampling
|
||||||
R-sandwich
|
R-sandwich
|
||||||
@@ -842,8 +863,10 @@ R-spData
|
|||||||
R-spam
|
R-spam
|
||||||
R-sparkline
|
R-sparkline
|
||||||
R-spatstat
|
R-spatstat
|
||||||
|
R-spatstat.core
|
||||||
R-spatstat.data
|
R-spatstat.data
|
||||||
R-spatstat.geom
|
R-spatstat.geom
|
||||||
|
R-spatstat.linnet
|
||||||
R-spatstat.sparse
|
R-spatstat.sparse
|
||||||
R-spatstat.utils
|
R-spatstat.utils
|
||||||
R-spc
|
R-spc
|
||||||
@@ -867,6 +890,7 @@ R-subselect
|
|||||||
R-superpc
|
R-superpc
|
||||||
R-survey
|
R-survey
|
||||||
R-svUnit
|
R-svUnit
|
||||||
|
R-svglite
|
||||||
R-sys
|
R-sys
|
||||||
R-systemfit
|
R-systemfit
|
||||||
R-systemfonts
|
R-systemfonts
|
||||||
@@ -877,6 +901,7 @@ R-tclust
|
|||||||
R-tensor
|
R-tensor
|
||||||
R-tensorA
|
R-tensorA
|
||||||
R-tensorflow
|
R-tensorflow
|
||||||
|
R-terra
|
||||||
R-testit
|
R-testit
|
||||||
R-testthat
|
R-testthat
|
||||||
R-texreg
|
R-texreg
|
||||||
@@ -885,6 +910,7 @@ R-tfruns
|
|||||||
R-threejs
|
R-threejs
|
||||||
R-tibble
|
R-tibble
|
||||||
R-tidyr
|
R-tidyr
|
||||||
|
R-tidyrules
|
||||||
R-tidyselect
|
R-tidyselect
|
||||||
R-tidyverse
|
R-tidyverse
|
||||||
R-tikzDevice
|
R-tikzDevice
|
||||||
@@ -925,6 +951,7 @@ R-viridisLite
|
|||||||
R-visNetwork
|
R-visNetwork
|
||||||
R-waldo
|
R-waldo
|
||||||
R-warp
|
R-warp
|
||||||
|
R-webfakes
|
||||||
R-webmockr
|
R-webmockr
|
||||||
R-webshot
|
R-webshot
|
||||||
R-webutils
|
R-webutils
|
||||||
@@ -933,6 +960,7 @@ R-whoami
|
|||||||
R-wikitaxa
|
R-wikitaxa
|
||||||
R-winch
|
R-winch
|
||||||
R-withr
|
R-withr
|
||||||
|
R-wk
|
||||||
R-worrms
|
R-worrms
|
||||||
R-xfun
|
R-xfun
|
||||||
R-xml2
|
R-xml2
|
||||||
@@ -948,6 +976,7 @@ R-zoo
|
|||||||
RawTherapee
|
RawTherapee
|
||||||
Remmina
|
Remmina
|
||||||
Routes
|
Routes
|
||||||
|
Rtree
|
||||||
SDL
|
SDL
|
||||||
SDL2
|
SDL2
|
||||||
SDL2_gfx
|
SDL2_gfx
|
||||||
@@ -1026,6 +1055,7 @@ alsa-tools
|
|||||||
alsa-ucm-conf
|
alsa-ucm-conf
|
||||||
alsa-utils
|
alsa-utils
|
||||||
amazon-efs-utils
|
amazon-efs-utils
|
||||||
|
amazon-ssm-agent
|
||||||
amtk
|
amtk
|
||||||
analitza
|
analitza
|
||||||
ansible
|
ansible
|
||||||
@@ -1049,6 +1079,7 @@ ark
|
|||||||
armadillo
|
armadillo
|
||||||
arp-scan
|
arp-scan
|
||||||
arpack-ng
|
arpack-ng
|
||||||
|
arrow
|
||||||
artikulate
|
artikulate
|
||||||
asciidoc
|
asciidoc
|
||||||
asciinema
|
asciinema
|
||||||
@@ -1102,6 +1133,7 @@ azure-iot-sdk
|
|||||||
babeltrace
|
babeltrace
|
||||||
babl
|
babl
|
||||||
backcall
|
backcall
|
||||||
|
backports.entry_points_selectable
|
||||||
backports.ssl_match_hostname
|
backports.ssl_match_hostname
|
||||||
backports.weakref
|
backports.weakref
|
||||||
baloo
|
baloo
|
||||||
@@ -1120,7 +1152,9 @@ bcftools
|
|||||||
bcrypt
|
bcrypt
|
||||||
bdftopcf
|
bdftopcf
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
|
beniget
|
||||||
bijiben
|
bijiben
|
||||||
|
binaryornot
|
||||||
bind-utils
|
bind-utils
|
||||||
binutils
|
binutils
|
||||||
binwalk
|
binwalk
|
||||||
@@ -1210,6 +1244,7 @@ ceph-deploy
|
|||||||
certbot
|
certbot
|
||||||
certifi
|
certifi
|
||||||
cffi
|
cffi
|
||||||
|
cfgv
|
||||||
cfitsio
|
cfitsio
|
||||||
cgdb
|
cgdb
|
||||||
cgit
|
cgit
|
||||||
@@ -1287,28 +1322,30 @@ colordiff
|
|||||||
columbiad
|
columbiad
|
||||||
commonmark
|
commonmark
|
||||||
compat-atkmm-soname16
|
compat-atkmm-soname16
|
||||||
compat-boost-soname1.72.0
|
|
||||||
compat-boost-soname1.73.0
|
compat-boost-soname1.73.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-glibmm-soname24
|
compat-glibmm-soname24
|
||||||
|
compat-goocanvas-soname2
|
||||||
compat-gtksourceview-soname3
|
compat-gtksourceview-soname3
|
||||||
compat-icu4c-soname64
|
compat-libffi-soname6
|
||||||
compat-libhandy-0.0
|
compat-libhandy-0.0
|
||||||
compat-libpng-soname12
|
compat-libpng-soname12
|
||||||
compat-libraw-soname19
|
|
||||||
compat-libsigc++-soname20
|
compat-libsigc++-soname20
|
||||||
compat-libva-soname1
|
compat-libva-soname1
|
||||||
compat-nettle-soname6
|
compat-lua-52
|
||||||
|
compat-lua-53
|
||||||
|
compat-mlt-soname6
|
||||||
compat-nettle-soname7
|
compat-nettle-soname7
|
||||||
compat-opencv-soname42
|
compat-openexr-soname25
|
||||||
compat-pangomm-soname14
|
compat-pangomm-soname14
|
||||||
compat-protobuf-soname22
|
|
||||||
compat-re2-soname7
|
compat-re2-soname7
|
||||||
compat-readline-soname5
|
compat-readline-soname5
|
||||||
compat-tracker-soname2.0
|
compat-tracker-soname2.0
|
||||||
|
complete
|
||||||
component
|
component
|
||||||
compute-image-packages
|
compute-image-packages
|
||||||
conda
|
conda
|
||||||
@@ -1321,6 +1358,7 @@ conntrack-tools
|
|||||||
console-autostart
|
console-autostart
|
||||||
containerd
|
containerd
|
||||||
contextlib2
|
contextlib2
|
||||||
|
cookiecutter
|
||||||
cookies
|
cookies
|
||||||
coreutils
|
coreutils
|
||||||
corosync
|
corosync
|
||||||
@@ -1372,6 +1410,7 @@ dconf
|
|||||||
dconf-editor
|
dconf-editor
|
||||||
ddd
|
ddd
|
||||||
deap
|
deap
|
||||||
|
debugedit
|
||||||
decorator
|
decorator
|
||||||
defusedxml
|
defusedxml
|
||||||
dejagnu
|
dejagnu
|
||||||
@@ -1392,13 +1431,13 @@ dill
|
|||||||
ding-libs
|
ding-libs
|
||||||
dino
|
dino
|
||||||
direwolf
|
direwolf
|
||||||
|
diskcache
|
||||||
dist-pam-configs
|
dist-pam-configs
|
||||||
distlib
|
distlib
|
||||||
distributed
|
distributed
|
||||||
distro
|
distro
|
||||||
dj-database-url
|
dj-database-url
|
||||||
django-appconf
|
django-appconf
|
||||||
django-babel
|
|
||||||
django-discover-runner
|
django-discover-runner
|
||||||
django-nose
|
django-nose
|
||||||
django-pyscss
|
django-pyscss
|
||||||
@@ -1420,6 +1459,7 @@ docbook-utils
|
|||||||
docbook-xml
|
docbook-xml
|
||||||
docbook2X
|
docbook2X
|
||||||
docker
|
docker
|
||||||
|
docker-cli
|
||||||
docker-compose
|
docker-compose
|
||||||
docker-py
|
docker-py
|
||||||
docker-pycreds
|
docker-pycreds
|
||||||
@@ -1555,6 +1595,7 @@ fribidi
|
|||||||
fritzing-app
|
fritzing-app
|
||||||
fs
|
fs
|
||||||
fsearch
|
fsearch
|
||||||
|
fsspec
|
||||||
funcparserlib
|
funcparserlib
|
||||||
funcsigs
|
funcsigs
|
||||||
fuse
|
fuse
|
||||||
@@ -1731,6 +1772,7 @@ gst-plugins-bad
|
|||||||
gst-plugins-base
|
gst-plugins-base
|
||||||
gst-plugins-good
|
gst-plugins-good
|
||||||
gst-plugins-ugly
|
gst-plugins-ugly
|
||||||
|
gst-python
|
||||||
gstreamer
|
gstreamer
|
||||||
gstreamer-vaapi
|
gstreamer-vaapi
|
||||||
gsutil
|
gsutil
|
||||||
@@ -1739,6 +1781,7 @@ gtk-doc
|
|||||||
gtk-vnc
|
gtk-vnc
|
||||||
gtk-xfce-engine
|
gtk-xfce-engine
|
||||||
gtk3
|
gtk3
|
||||||
|
gtk4
|
||||||
gtkmm2
|
gtkmm2
|
||||||
gtkmm3
|
gtkmm3
|
||||||
gtksourceview
|
gtksourceview
|
||||||
@@ -1809,6 +1852,7 @@ iceauth
|
|||||||
icecream
|
icecream
|
||||||
icon-naming-utils
|
icon-naming-utils
|
||||||
icu4c
|
icu4c
|
||||||
|
identify
|
||||||
idle-python3.7-assets
|
idle-python3.7-assets
|
||||||
idna
|
idna
|
||||||
idna-ssl
|
idna-ssl
|
||||||
@@ -1831,9 +1875,7 @@ init-rdahead
|
|||||||
inkscape
|
inkscape
|
||||||
innoextract
|
innoextract
|
||||||
inotify-tools
|
inotify-tools
|
||||||
intel-compute-runtime
|
|
||||||
intel-gmmlib
|
intel-gmmlib
|
||||||
intel-graphics-compiler
|
|
||||||
intel-hybrid-driver
|
intel-hybrid-driver
|
||||||
intel-ipsec-mb
|
intel-ipsec-mb
|
||||||
intel-media-driver
|
intel-media-driver
|
||||||
@@ -1852,6 +1894,7 @@ ipe
|
|||||||
iperf
|
iperf
|
||||||
ipmctl
|
ipmctl
|
||||||
ipmitool
|
ipmitool
|
||||||
|
ipp-crypto
|
||||||
iproute2
|
iproute2
|
||||||
ipset
|
ipset
|
||||||
iptables
|
iptables
|
||||||
@@ -1894,12 +1937,14 @@ jedi
|
|||||||
jeepney
|
jeepney
|
||||||
jellyfish
|
jellyfish
|
||||||
jemalloc
|
jemalloc
|
||||||
|
jinja2-time
|
||||||
jmespath
|
jmespath
|
||||||
joblib
|
joblib
|
||||||
joe
|
joe
|
||||||
josepy
|
josepy
|
||||||
jpegoptim
|
jpegoptim
|
||||||
jq
|
jq
|
||||||
|
js8call
|
||||||
jsmin
|
jsmin
|
||||||
json-c
|
json-c
|
||||||
json-glib
|
json-glib
|
||||||
@@ -2120,6 +2165,7 @@ kstars
|
|||||||
ksudoku
|
ksudoku
|
||||||
ksysguard
|
ksysguard
|
||||||
ksystemlog
|
ksystemlog
|
||||||
|
ksystemstats
|
||||||
kteatime
|
kteatime
|
||||||
ktexteditor
|
ktexteditor
|
||||||
ktextwidgets
|
ktextwidgets
|
||||||
@@ -2149,6 +2195,7 @@ ladspa_sdk
|
|||||||
lark-parser
|
lark-parser
|
||||||
latencytop
|
latencytop
|
||||||
latte-dock
|
latte-dock
|
||||||
|
layer-shell-qt
|
||||||
lazy-object-proxy
|
lazy-object-proxy
|
||||||
lcms2
|
lcms2
|
||||||
lcov
|
lcov
|
||||||
@@ -2180,9 +2227,9 @@ libXtst
|
|||||||
libXv
|
libXv
|
||||||
libXvMC
|
libXvMC
|
||||||
libXxf86dga
|
libXxf86dga
|
||||||
libXxf86misc
|
|
||||||
libabigail
|
libabigail
|
||||||
libabw
|
libabw
|
||||||
|
libadwaita
|
||||||
libaio
|
libaio
|
||||||
libappindicator
|
libappindicator
|
||||||
libarchive
|
libarchive
|
||||||
@@ -2213,6 +2260,7 @@ libcomps
|
|||||||
libconfig
|
libconfig
|
||||||
libcroco
|
libcroco
|
||||||
libcryptui
|
libcryptui
|
||||||
|
libcst
|
||||||
libcxx
|
libcxx
|
||||||
libdaemon
|
libdaemon
|
||||||
libdatrie
|
libdatrie
|
||||||
@@ -2325,6 +2373,7 @@ libnice
|
|||||||
libnl
|
libnl
|
||||||
libnma
|
libnma
|
||||||
libnotify
|
libnotify
|
||||||
|
libnsl
|
||||||
libnumbertext
|
libnumbertext
|
||||||
liboauth
|
liboauth
|
||||||
libodfgen
|
libodfgen
|
||||||
@@ -2347,6 +2396,7 @@ libpwquality
|
|||||||
libqalculate
|
libqalculate
|
||||||
libqb
|
libqb
|
||||||
libqmi
|
libqmi
|
||||||
|
libqrtr-glib
|
||||||
libqtxdg
|
libqtxdg
|
||||||
libqxp
|
libqxp
|
||||||
libratbag
|
libratbag
|
||||||
@@ -2380,6 +2430,7 @@ libssh
|
|||||||
libssh2
|
libssh2
|
||||||
libstaroffice
|
libstaroffice
|
||||||
libstatgrab
|
libstatgrab
|
||||||
|
libstemmer_c
|
||||||
libstoragemgmt
|
libstoragemgmt
|
||||||
libsysstat
|
libsysstat
|
||||||
libtasn1
|
libtasn1
|
||||||
@@ -2389,11 +2440,14 @@ libtheora
|
|||||||
libtirpc
|
libtirpc
|
||||||
libtool
|
libtool
|
||||||
libtorrent-rasterbar
|
libtorrent-rasterbar
|
||||||
|
libtraceevent
|
||||||
|
libtracefs
|
||||||
libudev0-shim
|
libudev0-shim
|
||||||
libuninameslist
|
libuninameslist
|
||||||
libunistring
|
libunistring
|
||||||
libunwind
|
libunwind
|
||||||
libusb
|
libusb
|
||||||
|
libusb-compat
|
||||||
libuser
|
libuser
|
||||||
libuv
|
libuv
|
||||||
libva
|
libva
|
||||||
@@ -2457,6 +2511,7 @@ lksctp-tools
|
|||||||
lldb
|
lldb
|
||||||
llfuse
|
llfuse
|
||||||
llvm
|
llvm
|
||||||
|
llvm10
|
||||||
llvm8
|
llvm8
|
||||||
llvm9
|
llvm9
|
||||||
lm-sensors
|
lm-sensors
|
||||||
@@ -2478,7 +2533,6 @@ lttng-tools
|
|||||||
lttng-ust
|
lttng-ust
|
||||||
lua
|
lua
|
||||||
lua-nginx-module
|
lua-nginx-module
|
||||||
lua52
|
|
||||||
lualgi
|
lualgi
|
||||||
luarocks
|
luarocks
|
||||||
lutris
|
lutris
|
||||||
@@ -2516,6 +2570,7 @@ man-pages-posix
|
|||||||
marble
|
marble
|
||||||
mariadb
|
mariadb
|
||||||
matplotlib
|
matplotlib
|
||||||
|
matplotlib-inline
|
||||||
mc
|
mc
|
||||||
mccabe
|
mccabe
|
||||||
mcelog
|
mcelog
|
||||||
@@ -2579,7 +2634,6 @@ mosh
|
|||||||
mosquitto
|
mosquitto
|
||||||
motd-update
|
motd-update
|
||||||
motif
|
motif
|
||||||
mozjs68
|
|
||||||
mozjs78
|
mozjs78
|
||||||
mpc
|
mpc
|
||||||
mpfr
|
mpfr
|
||||||
@@ -2668,6 +2722,7 @@ nltk
|
|||||||
nmap
|
nmap
|
||||||
nocasedict
|
nocasedict
|
||||||
nocaselist
|
nocaselist
|
||||||
|
nodeenv
|
||||||
nodejs
|
nodejs
|
||||||
nose
|
nose
|
||||||
nose-parameterized
|
nose-parameterized
|
||||||
@@ -2955,7 +3010,6 @@ perl-DBIx-ContextualFetch
|
|||||||
perl-DBIx-DBSchema
|
perl-DBIx-DBSchema
|
||||||
perl-DBIx-Simple
|
perl-DBIx-Simple
|
||||||
perl-DB_File
|
perl-DB_File
|
||||||
perl-Data-Alias
|
|
||||||
perl-Data-Compare
|
perl-Data-Compare
|
||||||
perl-Data-Denter
|
perl-Data-Denter
|
||||||
perl-Data-Dump
|
perl-Data-Dump
|
||||||
@@ -3203,6 +3257,7 @@ perl-List-MoreUtils
|
|||||||
perl-List-MoreUtils-XS
|
perl-List-MoreUtils-XS
|
||||||
perl-List-SomeUtils
|
perl-List-SomeUtils
|
||||||
perl-List-SomeUtils-XS
|
perl-List-SomeUtils-XS
|
||||||
|
perl-List-Util
|
||||||
perl-List-UtilsBy
|
perl-List-UtilsBy
|
||||||
perl-Locale-Maketext-Gettext
|
perl-Locale-Maketext-Gettext
|
||||||
perl-Locale-Maketext-Lexicon
|
perl-Locale-Maketext-Lexicon
|
||||||
@@ -3362,6 +3417,7 @@ perl-Pod-Constants
|
|||||||
perl-Pod-Coverage
|
perl-Pod-Coverage
|
||||||
perl-Pod-LaTeX
|
perl-Pod-LaTeX
|
||||||
perl-Pod-POM
|
perl-Pod-POM
|
||||||
|
perl-Pod-Parser
|
||||||
perl-Pod-Plainer
|
perl-Pod-Plainer
|
||||||
perl-Pod-Spell
|
perl-Pod-Spell
|
||||||
perl-Pod-Strip
|
perl-Pod-Strip
|
||||||
@@ -3391,6 +3447,7 @@ perl-SQL-SplitStatement
|
|||||||
perl-SQL-Tokenizer
|
perl-SQL-Tokenizer
|
||||||
perl-SQL-Translator
|
perl-SQL-Translator
|
||||||
perl-SUPER
|
perl-SUPER
|
||||||
|
perl-Safe-Isa
|
||||||
perl-Scalar-String
|
perl-Scalar-String
|
||||||
perl-Scope-Guard
|
perl-Scope-Guard
|
||||||
perl-Scope-Upper
|
perl-Scope-Upper
|
||||||
@@ -3470,6 +3527,7 @@ perl-Test-File-ShareDir-Dist
|
|||||||
perl-Test-Fork
|
perl-Test-Fork
|
||||||
perl-Test-Identity
|
perl-Test-Identity
|
||||||
perl-Test-Inter
|
perl-Test-Inter
|
||||||
|
perl-Test-LWP-UserAgent
|
||||||
perl-Test-LeakTrace
|
perl-Test-LeakTrace
|
||||||
perl-Test-LectroTest
|
perl-Test-LectroTest
|
||||||
perl-Test-LongString
|
perl-Test-LongString
|
||||||
@@ -3655,7 +3713,6 @@ php-gnupg
|
|||||||
php-hprose
|
php-hprose
|
||||||
php-hrtime
|
php-hrtime
|
||||||
php-igbinary
|
php-igbinary
|
||||||
php-imagick
|
|
||||||
php-inotify
|
php-inotify
|
||||||
php-jsmin
|
php-jsmin
|
||||||
php-json_post
|
php-json_post
|
||||||
@@ -3720,6 +3777,7 @@ plasma-framework
|
|||||||
plasma-integration
|
plasma-integration
|
||||||
plasma-nm
|
plasma-nm
|
||||||
plasma-pa
|
plasma-pa
|
||||||
|
plasma-systemmonitor
|
||||||
plasma-vault
|
plasma-vault
|
||||||
plasma-wayland-protocols
|
plasma-wayland-protocols
|
||||||
plasma-workspace
|
plasma-workspace
|
||||||
@@ -3754,7 +3812,9 @@ powerline-fonts
|
|||||||
powerstat
|
powerstat
|
||||||
powertop
|
powertop
|
||||||
poxml
|
poxml
|
||||||
|
poyo
|
||||||
ppp
|
ppp
|
||||||
|
pre_commit
|
||||||
pretend
|
pretend
|
||||||
prettytable
|
prettytable
|
||||||
print-manager
|
print-manager
|
||||||
@@ -3762,6 +3822,7 @@ prison
|
|||||||
processor-trace
|
processor-trace
|
||||||
procmail
|
procmail
|
||||||
procps-ng
|
procps-ng
|
||||||
|
progress
|
||||||
progressbar
|
progressbar
|
||||||
proj
|
proj
|
||||||
prometheus_client
|
prometheus_client
|
||||||
@@ -3820,6 +3881,13 @@ pyquery
|
|||||||
pyreadline
|
pyreadline
|
||||||
pyroma
|
pyroma
|
||||||
pyroute2
|
pyroute2
|
||||||
|
pyroute2.core
|
||||||
|
pyroute2.ethtool
|
||||||
|
pyroute2.ipdb
|
||||||
|
pyroute2.ipset
|
||||||
|
pyroute2.ndb
|
||||||
|
pyroute2.nftables
|
||||||
|
pyroute2.nslink
|
||||||
pyrsistent
|
pyrsistent
|
||||||
pyserial
|
pyserial
|
||||||
pyside2-setup
|
pyside2-setup
|
||||||
@@ -3842,6 +3910,7 @@ python-Levenshtein
|
|||||||
python-augeas
|
python-augeas
|
||||||
python-crfsuite
|
python-crfsuite
|
||||||
python-dateutil
|
python-dateutil
|
||||||
|
python-dbusmock
|
||||||
python-digitalocean
|
python-digitalocean
|
||||||
python-distutils-extra
|
python-distutils-extra
|
||||||
python-dotenv
|
python-dotenv
|
||||||
@@ -3852,6 +3921,8 @@ python-hwinfo
|
|||||||
python-jsonrpc-server
|
python-jsonrpc-server
|
||||||
python-kconfiglib
|
python-kconfiglib
|
||||||
python-language-server
|
python-language-server
|
||||||
|
python-lsp-jsonrpc
|
||||||
|
python-lsp-server
|
||||||
python-magic
|
python-magic
|
||||||
python-memcached
|
python-memcached
|
||||||
python-mimeparse
|
python-mimeparse
|
||||||
@@ -3872,6 +3943,7 @@ python-zeep
|
|||||||
python-zstandard
|
python-zstandard
|
||||||
python3
|
python3
|
||||||
python37
|
python37
|
||||||
|
pythran
|
||||||
pytorch
|
pytorch
|
||||||
pytz
|
pytz
|
||||||
pyu2f
|
pyu2f
|
||||||
@@ -3985,11 +4057,13 @@ rinutils
|
|||||||
rjsmin
|
rjsmin
|
||||||
rlwrap
|
rlwrap
|
||||||
rng-tools
|
rng-tools
|
||||||
|
robin-map
|
||||||
roboto
|
roboto
|
||||||
rocs
|
rocs
|
||||||
rofi
|
rofi
|
||||||
rope
|
rope
|
||||||
rpcbind
|
rpcbind
|
||||||
|
rpcsvc-proto
|
||||||
rpm
|
rpm
|
||||||
rr
|
rr
|
||||||
rrdtool
|
rrdtool
|
||||||
@@ -4035,6 +4109,7 @@ seahorse
|
|||||||
secretstorage
|
secretstorage
|
||||||
sed
|
sed
|
||||||
selenium
|
selenium
|
||||||
|
semantic_version
|
||||||
seqdiag
|
seqdiag
|
||||||
serf
|
serf
|
||||||
serpent
|
serpent
|
||||||
@@ -4042,6 +4117,7 @@ setproctitle
|
|||||||
setserial
|
setserial
|
||||||
setuptools
|
setuptools
|
||||||
setuptools-legacy
|
setuptools-legacy
|
||||||
|
setuptools-rust
|
||||||
setuptools_scm
|
setuptools_scm
|
||||||
setuptools_scm_git_archive
|
setuptools_scm_git_archive
|
||||||
setxkbmap
|
setxkbmap
|
||||||
@@ -4157,6 +4233,7 @@ sysdig
|
|||||||
syslinux
|
syslinux
|
||||||
sysprof
|
sysprof
|
||||||
sysstat
|
sysstat
|
||||||
|
system-config-printer
|
||||||
systemd
|
systemd
|
||||||
systemd-bootchart
|
systemd-bootchart
|
||||||
systemsettings
|
systemsettings
|
||||||
@@ -4220,12 +4297,14 @@ tigervnc
|
|||||||
tilix
|
tilix
|
||||||
time
|
time
|
||||||
tini
|
tini
|
||||||
|
tinycss2
|
||||||
tiptop
|
tiptop
|
||||||
tk
|
tk
|
||||||
tldextract
|
tldextract
|
||||||
tmux
|
tmux
|
||||||
tokyocabinet
|
tokyocabinet
|
||||||
toml
|
toml
|
||||||
|
tomlkit
|
||||||
toolz
|
toolz
|
||||||
tornado
|
tornado
|
||||||
totem
|
totem
|
||||||
@@ -4247,6 +4326,7 @@ twine
|
|||||||
typed_ast
|
typed_ast
|
||||||
typeguard
|
typeguard
|
||||||
typing_extensions
|
typing_extensions
|
||||||
|
typing_inspect
|
||||||
tzdata
|
tzdata
|
||||||
tzlocal
|
tzlocal
|
||||||
ua-parser
|
ua-parser
|
||||||
@@ -4282,6 +4362,7 @@ usrbinpython
|
|||||||
usrbinvi
|
usrbinvi
|
||||||
utf8cpp
|
utf8cpp
|
||||||
util-linux
|
util-linux
|
||||||
|
util-linux-man
|
||||||
util-macros
|
util-macros
|
||||||
uwsgi
|
uwsgi
|
||||||
v4l-utils
|
v4l-utils
|
||||||
|
|||||||
Reference in New Issue
Block a user