mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
57 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2de768ab6d | |||
| 6ce9826071 | |||
| d96968cc98 | |||
| 4b284ecb9b | |||
| 746d69c99b | |||
| 14f1e53183 | |||
| a734764581 | |||
| 0c9a4e6802 | |||
| c44e74f556 | |||
| 16e5086381 | |||
| ae3cbddb46 | |||
| 7b1ffd3045 | |||
| 75610ac5f7 | |||
| 8b98eabe53 | |||
| 8b7cfc2cf1 | |||
| ddb800af7e | |||
| c514292f56 | |||
| a1b55a619a | |||
| 0896766e26 | |||
| 68da68007d | |||
| 35cdf3d618 | |||
| c646187f11 | |||
| af28bdadf7 | |||
| 39c9a566a6 | |||
| b0ab451ae0 | |||
| ac1c648189 | |||
| 2939f3c5f8 | |||
| e361b3ab2f | |||
| 6081437611 | |||
| d6c8858c6e | |||
| 9d5c67d124 | |||
| 72406d0525 | |||
| 1368df937f | |||
| 4668b03fdd | |||
| d612ea1d6d | |||
| 36d49108a6 | |||
| cbfa62d79e | |||
| 312f6398a9 | |||
| ee431ed33f | |||
| 349d8c6645 | |||
| 1aecb3dcf5 | |||
| be88b856de | |||
| e610c46517 | |||
| f78b8dad99 | |||
| 19e7a08dee | |||
| 3a7b28e5fa | |||
| 8997481daf | |||
| 896832831f | |||
| 1978d3268c | |||
| 7d9588c779 | |||
| 7794fa715c | |||
| 1c79b04db3 | |||
| b52570a7ad | |||
| 1a0e21943f | |||
| c4fe341972 | |||
| 23cc04134a | |||
| 9614d9e14e |
+59
-4
@@ -20,7 +20,7 @@ LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||
DEBUGINFO_RPM = $(wildcard rpms/${PKG_NAME}-debuginfo-$(shell $(call queryspec,%{V}-%{R},${SPECFILE})).*.rpm)
|
||||
RPMS ?= $(LATEST_RPMS)
|
||||
|
||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||
WITH_SUDO = sudo
|
||||
|
||||
# MOCK_CONFIG_VAL is set in Makefile.shared
|
||||
MOCK_SMP_FLAGS=$(patsubst -j%, -D_smp_mflags\ -j%,$(filter -j%, $(MAKEFLAGS)))
|
||||
@@ -217,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))); \
|
||||
@@ -329,6 +339,13 @@ koji: prekoji-checks kojidef
|
||||
git tag $(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.
|
||||
@@ -352,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
|
||||
|
||||
|
||||
+1
-1
@@ -168,7 +168,7 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
#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 --stat); :) ;\
|
||||
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git --no-pager diff --stat); :) ;\
|
||||
done
|
||||
|
||||
#help log: Run git log origin/main..HEAD for all package repos, thus
|
||||
|
||||
@@ -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,7 +48,6 @@ QAT_engine
|
||||
QGIS
|
||||
R
|
||||
R-AER
|
||||
R-AMORE
|
||||
R-ATR
|
||||
R-Amelia
|
||||
R-AmesHousing
|
||||
@@ -56,7 +55,6 @@ R-BB
|
||||
R-BBmisc
|
||||
R-BH
|
||||
R-BMA
|
||||
R-BMS
|
||||
R-BatchJobs
|
||||
R-BayesFactor
|
||||
R-BiasedUrn
|
||||
@@ -166,7 +164,7 @@ R-Rserve
|
||||
R-Rsolnp
|
||||
R-Rtsne
|
||||
R-Rvmmin
|
||||
R-SDMTools
|
||||
R-Ryacas
|
||||
R-SGP
|
||||
R-SGPdata
|
||||
R-SQUAREM
|
||||
@@ -201,7 +199,6 @@ R-adespatial
|
||||
R-admisc
|
||||
R-afex
|
||||
R-alabama
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
R-ape
|
||||
@@ -287,7 +284,6 @@ R-config
|
||||
R-conflicted
|
||||
R-conquer
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
R-corrgram
|
||||
R-corrplot
|
||||
@@ -347,7 +343,6 @@ R-dynlm
|
||||
R-e1071
|
||||
R-eRm
|
||||
R-earth
|
||||
R-eco
|
||||
R-ecodist
|
||||
R-eddington
|
||||
R-effects
|
||||
@@ -371,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
|
||||
@@ -508,6 +500,7 @@ R-influenceR
|
||||
R-ini
|
||||
R-inline
|
||||
R-insight
|
||||
R-interp
|
||||
R-inum
|
||||
R-invgamma
|
||||
R-ipred
|
||||
@@ -644,12 +637,12 @@ R-nnls
|
||||
R-nortest
|
||||
R-npsurv
|
||||
R-numDeriv
|
||||
R-nws
|
||||
R-nycflights13
|
||||
R-officer
|
||||
R-openssl
|
||||
R-openxlsx
|
||||
R-optextras
|
||||
R-optimParallel
|
||||
R-optimx
|
||||
R-optparse
|
||||
R-ordinal
|
||||
@@ -719,9 +712,9 @@ R-princurve
|
||||
R-processx
|
||||
R-procmaps
|
||||
R-prodlim
|
||||
R-profdpm
|
||||
R-profileModel
|
||||
R-profmem
|
||||
R-profvis
|
||||
R-progress
|
||||
R-progressr
|
||||
R-projpred
|
||||
@@ -836,7 +829,6 @@ R-runjags
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-s2
|
||||
R-sROC
|
||||
R-sampling
|
||||
R-sandwich
|
||||
R-sass
|
||||
@@ -954,10 +946,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
|
||||
@@ -1069,7 +1061,6 @@ ansible
|
||||
ansible-core
|
||||
antlr4-python3-runtime
|
||||
apache-ant
|
||||
applaunchservices
|
||||
appstream
|
||||
appstream-glib
|
||||
apr
|
||||
@@ -1093,9 +1084,7 @@ aspell-pt_BR
|
||||
assimp
|
||||
asunder
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
atk
|
||||
atkmm
|
||||
attica
|
||||
attr
|
||||
@@ -1115,7 +1104,6 @@ automake
|
||||
autossh
|
||||
avahi
|
||||
awesome-wm
|
||||
aws-sam-translator
|
||||
awscli
|
||||
axel
|
||||
azure-configs
|
||||
@@ -1166,6 +1154,7 @@ bridge-utils
|
||||
brotli
|
||||
bsdiff
|
||||
bspwm
|
||||
btop
|
||||
btrfs-progs
|
||||
bubblewrap
|
||||
buildreq-R
|
||||
@@ -1186,7 +1175,6 @@ byobu
|
||||
bz2file
|
||||
bzip2
|
||||
c-ares
|
||||
c-basic-meta
|
||||
cJSON
|
||||
c_rehash
|
||||
ca-certs
|
||||
@@ -1284,6 +1272,7 @@ compat-curl-gnutls-soname4
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gcc-10
|
||||
compat-gcr-soname1
|
||||
compat-gdal-soname27
|
||||
compat-glibmm-soname24
|
||||
compat-gnome-bluetooth-soname-13
|
||||
@@ -1295,18 +1284,16 @@ 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-openssl-soname11
|
||||
compat-pangomm-soname14
|
||||
compat-poppler-soname112
|
||||
compat-poppler-soname117
|
||||
compat-protobuf-soname23
|
||||
compat-poppler-soname123
|
||||
compat-protobuf-soname29
|
||||
compat-readline-soname5
|
||||
compat-rest-soname07
|
||||
compat-tbb-soname12
|
||||
compat-tracker-soname2.0
|
||||
compat-webkitgtk-soname40
|
||||
component
|
||||
compute-image-packages
|
||||
@@ -1342,6 +1329,7 @@ cups-bjnp
|
||||
cups-filters
|
||||
cups-pk-helper
|
||||
curl
|
||||
curl-mini
|
||||
custom_inherit
|
||||
cycler
|
||||
cyrus-sasl
|
||||
@@ -1374,6 +1362,7 @@ diffutils
|
||||
digikam
|
||||
ding-libs
|
||||
dino
|
||||
directx-headers
|
||||
direwolf
|
||||
dist-pam-configs
|
||||
distro
|
||||
@@ -1393,7 +1382,6 @@ docbook2X
|
||||
docker
|
||||
docker-cli
|
||||
dockerpty
|
||||
docutils
|
||||
dolphin
|
||||
dolphin-plugins
|
||||
dos2unix
|
||||
@@ -1409,6 +1397,7 @@ dropwatch
|
||||
dssi
|
||||
dstat
|
||||
dtc
|
||||
duktape
|
||||
dunst
|
||||
duperemove
|
||||
dvisvgm
|
||||
@@ -1418,6 +1407,7 @@ e2fsprogs
|
||||
earlyoom
|
||||
ebtables
|
||||
ed
|
||||
editorconfig-core-c
|
||||
edk2
|
||||
efibootmgr
|
||||
efitools
|
||||
@@ -1471,7 +1461,6 @@ filelight
|
||||
filesystem
|
||||
findutils
|
||||
fio
|
||||
firecracker
|
||||
firefox
|
||||
firewalld
|
||||
fish
|
||||
@@ -1504,6 +1493,7 @@ freetype
|
||||
fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
fsarchiver
|
||||
fsearch
|
||||
fuse
|
||||
fwupd
|
||||
@@ -1701,7 +1691,6 @@ hexchat
|
||||
hexedit
|
||||
hicolor-icon-theme
|
||||
hiredis-c
|
||||
home-assistant
|
||||
hostname
|
||||
hplip
|
||||
htop
|
||||
@@ -1732,6 +1721,7 @@ icon-naming-utils
|
||||
icu4c
|
||||
idle-python3.7-assets
|
||||
iftop
|
||||
igsc
|
||||
igt-gpu-tools
|
||||
iio-sensor-proxy
|
||||
imagescan
|
||||
@@ -1769,12 +1759,12 @@ ipvsadm
|
||||
ipxe
|
||||
irqbalance
|
||||
irrlicht
|
||||
irrlichtmt
|
||||
irssi
|
||||
isa-l
|
||||
iso-codes
|
||||
isodate
|
||||
isomd5sum
|
||||
ister
|
||||
isync
|
||||
itstool
|
||||
iw
|
||||
@@ -1804,11 +1794,6 @@ kapidox
|
||||
kapman
|
||||
kapptemplate
|
||||
karchive
|
||||
kata-image
|
||||
kata-proxy
|
||||
kata-qemu-lite
|
||||
kata-runtime
|
||||
kata-shim
|
||||
kate
|
||||
katomic
|
||||
kauth
|
||||
@@ -1829,6 +1814,7 @@ kcharselect
|
||||
kcmutils
|
||||
kcodecs
|
||||
kcolorchooser
|
||||
kcolorpicker
|
||||
kcompletion
|
||||
kconfig
|
||||
kconfigwidgets
|
||||
@@ -1899,6 +1885,7 @@ kidletime
|
||||
kig
|
||||
kigo
|
||||
killbots
|
||||
kimageannotator
|
||||
kimageformats
|
||||
kimagemapeditor
|
||||
kimap
|
||||
@@ -1969,6 +1956,7 @@ kross
|
||||
kruler
|
||||
krunner
|
||||
krusader
|
||||
ksanecore
|
||||
kscreen
|
||||
kscreenlocker
|
||||
kservice
|
||||
@@ -2075,6 +2063,7 @@ libcerf
|
||||
libcgroup
|
||||
libchamplain
|
||||
libclc
|
||||
libcloudproviders
|
||||
libcmis
|
||||
libcomps
|
||||
libconfig
|
||||
@@ -2132,7 +2121,6 @@ libgtop
|
||||
libgudev
|
||||
libgusb
|
||||
libgweather
|
||||
libgweather4
|
||||
libhandy
|
||||
libical
|
||||
libidn
|
||||
@@ -2211,6 +2199,7 @@ libpipeline
|
||||
libplacebo
|
||||
libpng
|
||||
libportal
|
||||
libproxy
|
||||
libpsl
|
||||
libpthread-stubs
|
||||
libpwquality
|
||||
@@ -2315,18 +2304,15 @@ 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
|
||||
@@ -2408,7 +2394,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
|
||||
@@ -2448,7 +2440,7 @@ mosh
|
||||
mosquitto
|
||||
motd-update
|
||||
motif
|
||||
mozjs78
|
||||
mozjs102
|
||||
mozjs91
|
||||
mpc
|
||||
mpfr
|
||||
@@ -2549,6 +2541,7 @@ octave
|
||||
oiio
|
||||
okteta
|
||||
okular
|
||||
oneVPL
|
||||
onig
|
||||
opa-fm
|
||||
opa-psm2
|
||||
@@ -2610,13 +2603,13 @@ pass
|
||||
patch
|
||||
patchelf
|
||||
patchutils
|
||||
pathlib2
|
||||
pathos
|
||||
pavucontrol
|
||||
pbzip2
|
||||
pciutils
|
||||
pcmanfm
|
||||
pcmanfm-qt
|
||||
pcp
|
||||
pcre
|
||||
pcre2
|
||||
pcs
|
||||
@@ -2970,6 +2963,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
|
||||
@@ -3040,6 +3034,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
|
||||
@@ -3071,6 +3067,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
|
||||
@@ -3563,7 +3560,7 @@ postgresql
|
||||
postgresql11
|
||||
postgresql12
|
||||
postgresql13
|
||||
postgresql14
|
||||
postgresql9
|
||||
potrace
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
@@ -3612,6 +3609,7 @@ pypi-aiohttp_cors
|
||||
pypi-aiosignal
|
||||
pypi-aiosmtpd
|
||||
pypi-alabaster
|
||||
pypi-altgraph
|
||||
pypi-ansi2html
|
||||
pypi-ansible_compat
|
||||
pypi-ansible_pygments
|
||||
@@ -3620,10 +3618,11 @@ pypi-apacheconfig
|
||||
pypi-apipkg
|
||||
pypi-appdirs
|
||||
pypi-applicationinsights
|
||||
pypi-appnope
|
||||
pypi-argcomplete
|
||||
pypi-argh
|
||||
pypi-argon2_cffi
|
||||
pypi-argon2_cffi_bindings
|
||||
pypi-argparse
|
||||
pypi-arrow
|
||||
pypi-asgiref
|
||||
pypi-asn1crypto
|
||||
@@ -3635,16 +3634,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
|
||||
@@ -3653,6 +3654,7 @@ pypi-azure_mgmt_resource
|
||||
pypi-azure_mgmt_storage
|
||||
pypi-babel
|
||||
pypi-backcall
|
||||
pypi-backoff
|
||||
pypi-backports.cached_property
|
||||
pypi-backports.entry_points_selectable
|
||||
pypi-backports.functools_lru_cache
|
||||
@@ -3723,12 +3725,13 @@ pypi-columnize
|
||||
pypi-commonmark
|
||||
pypi-complete
|
||||
pypi-compreffor
|
||||
pypi-comtypes
|
||||
pypi-configargparse
|
||||
pypi-configparser
|
||||
pypi-cons
|
||||
pypi-constantly
|
||||
pypi-contextlib2
|
||||
pypi-contextvars
|
||||
pypi-contourpy
|
||||
pypi-cookiecutter
|
||||
pypi-cookies
|
||||
pypi-coverage
|
||||
@@ -3760,14 +3763,14 @@ pypi-diffoscope
|
||||
pypi-dill
|
||||
pypi-diskcache
|
||||
pypi-distlib
|
||||
pypi-distributed
|
||||
pypi-dj_database_url
|
||||
pypi-django
|
||||
pypi-django_appconf
|
||||
pypi-django_babel
|
||||
pypi-django_compressor
|
||||
pypi-django_discover_runner
|
||||
pypi-django_nose
|
||||
pypi-django_pyscss
|
||||
pypi-dnacentersdk
|
||||
pypi-dns_lexicon
|
||||
pypi-dnspython
|
||||
pypi-docker
|
||||
@@ -3777,6 +3780,7 @@ pypi-docopt
|
||||
pypi-docstring_parser
|
||||
pypi-docutils
|
||||
pypi-dpcontracts
|
||||
pypi-dulwich
|
||||
pypi-ecdsa
|
||||
pypi-editables
|
||||
pypi-elementpath
|
||||
@@ -3784,6 +3788,7 @@ pypi-enrich
|
||||
pypi-entrypoints
|
||||
pypi-envs
|
||||
pypi-eternalegypt
|
||||
pypi-etils
|
||||
pypi-etuples
|
||||
pypi-evdev
|
||||
pypi-exceptiongroup
|
||||
@@ -3797,6 +3802,7 @@ pypi-falcon
|
||||
pypi-fasteners
|
||||
pypi-fastimport
|
||||
pypi-fastjsonschema
|
||||
pypi-filecache
|
||||
pypi-filelock
|
||||
pypi-fissix
|
||||
pypi-flake8
|
||||
@@ -3804,6 +3810,7 @@ pypi-flake8_blind_except
|
||||
pypi-flake8_class_newline
|
||||
pypi-flake8_docstrings
|
||||
pypi-flake8_import_order
|
||||
pypi-flaky
|
||||
pypi-flask
|
||||
pypi-flatten_json
|
||||
pypi-flit
|
||||
@@ -3813,6 +3820,7 @@ pypi-fontmath
|
||||
pypi-freezegun
|
||||
pypi-frozenlist
|
||||
pypi-fsspec
|
||||
pypi-ftfy
|
||||
pypi-funcparserlib
|
||||
pypi-future
|
||||
pypi-gast
|
||||
@@ -3833,6 +3841,8 @@ pypi-google_auth_oauthlib
|
||||
pypi-google_pasta
|
||||
pypi-google_reauth
|
||||
pypi-googleapis_common_protos
|
||||
pypi-gql
|
||||
pypi-graphql_core
|
||||
pypi-graphviz
|
||||
pypi-greenlet
|
||||
pypi-grpcio
|
||||
@@ -3847,6 +3857,8 @@ pypi-h11
|
||||
pypi-h2
|
||||
pypi-h5py
|
||||
pypi-hammock
|
||||
pypi-hatch_fancy_pypi_readme
|
||||
pypi-hatch_nodejs_version
|
||||
pypi-hatch_vcs
|
||||
pypi-hatchling
|
||||
pypi-heapdict
|
||||
@@ -3858,10 +3870,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
|
||||
@@ -3874,6 +3886,7 @@ pypi-imagesize
|
||||
pypi-immutables
|
||||
pypi-importlib_metadata
|
||||
pypi-importlib_resources
|
||||
pypi-incremental
|
||||
pypi-infi.dtypes.iqn
|
||||
pypi-infi.dtypes.wwn
|
||||
pypi-inflect
|
||||
@@ -3883,6 +3896,7 @@ pypi-iniconfig
|
||||
pypi-inspursmsdk
|
||||
pypi-intervaltree
|
||||
pypi-invoke
|
||||
pypi-iocapture
|
||||
pypi-ipaddress
|
||||
pypi-ipdb
|
||||
pypi-ipdbplugin
|
||||
@@ -3945,6 +3959,7 @@ pypi-khal
|
||||
pypi-kiwisolver
|
||||
pypi-krb5
|
||||
pypi-kubernetes
|
||||
pypi-langcodes
|
||||
pypi-lark_parser
|
||||
pypi-latexcodec
|
||||
pypi-lazy_object_proxy
|
||||
@@ -3958,6 +3973,8 @@ pypi-logical_unification
|
||||
pypi-logilab_common
|
||||
pypi-lxml
|
||||
pypi-lz4
|
||||
pypi-m2r
|
||||
pypi-macholib
|
||||
pypi-mako
|
||||
pypi-markdown
|
||||
pypi-markdown2
|
||||
@@ -3970,10 +3987,9 @@ 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
|
||||
@@ -4028,23 +4044,25 @@ 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-pathlib2
|
||||
pypi-pathspec
|
||||
pypi-pathtools
|
||||
pypi-patsy
|
||||
pypi-pbr
|
||||
pypi-pdm_pep517
|
||||
pypi-pdocs
|
||||
pypi-pecan
|
||||
pypi-ped
|
||||
pypi-pep517
|
||||
@@ -4057,7 +4075,9 @@ pypi-phabricator
|
||||
pypi-pickleshare
|
||||
pypi-pid
|
||||
pypi-pillow
|
||||
pypi-pint
|
||||
pypi-pip
|
||||
pypi-pip_tools
|
||||
pypi-pkgconfig
|
||||
pypi-pkginfo
|
||||
pypi-platformdirs
|
||||
@@ -4067,10 +4087,11 @@ pypi-ply
|
||||
pypi-pockets
|
||||
pypi-poetry
|
||||
pypi-poetry_core
|
||||
pypi-poetry_plugin_export
|
||||
pypi-polib
|
||||
pypi-port_for
|
||||
pypi-portalocker
|
||||
pypi-portend
|
||||
pypi-portray
|
||||
pypi-posix_ipc
|
||||
pypi-poyo
|
||||
pypi-pre_commit
|
||||
@@ -4089,7 +4110,6 @@ pypi-purestorage
|
||||
pypi-purity_fb
|
||||
pypi-py
|
||||
pypi-py_cpuinfo
|
||||
pypi-py_pure_client
|
||||
pypi-pyaml
|
||||
pypi-pyasn1
|
||||
pypi-pyasn1_modules
|
||||
@@ -4107,6 +4127,7 @@ pypi-pycryptodome
|
||||
pypi-pycryptodomex
|
||||
pypi-pycups
|
||||
pypi-pycurl
|
||||
pypi-pydantic
|
||||
pypi-pydata_sphinx_theme
|
||||
pypi-pydispatcher
|
||||
pypi-pydocstyle
|
||||
@@ -4127,14 +4148,17 @@ 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
|
||||
pypi-pyqt6_sip
|
||||
pypi-pyquery
|
||||
pypi-pyreadline
|
||||
pypi-pyrfc3339
|
||||
@@ -4183,14 +4207,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
|
||||
@@ -4199,6 +4226,7 @@ pypi-pyzmq
|
||||
pypi-qtawesome
|
||||
pypi-qtconsole
|
||||
pypi-qtpy
|
||||
pypi-rapidfuzz_capi
|
||||
pypi-rcssmin
|
||||
pypi-readme_renderer
|
||||
pypi-recommonmark
|
||||
@@ -4261,7 +4289,6 @@ pypi-sh
|
||||
pypi-shapely
|
||||
pypi-shellingham
|
||||
pypi-simplegeneric
|
||||
pypi-singledispatch
|
||||
pypi-six
|
||||
pypi-smart_open
|
||||
pypi-smartypants
|
||||
@@ -4274,7 +4301,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
|
||||
@@ -4283,7 +4309,6 @@ 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
|
||||
@@ -4297,9 +4322,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
|
||||
@@ -4320,12 +4347,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
|
||||
@@ -4338,10 +4367,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
|
||||
@@ -4354,6 +4385,7 @@ pypi-types_dataclasses
|
||||
pypi-types_enum34
|
||||
pypi-types_ipaddress
|
||||
pypi-types_mock
|
||||
pypi-types_psutil
|
||||
pypi-types_pyopenssl
|
||||
pypi-types_pyrfc3339
|
||||
pypi-types_python_dateutil
|
||||
@@ -4363,6 +4395,7 @@ pypi-types_requests
|
||||
pypi-types_setuptools
|
||||
pypi-types_six
|
||||
pypi-types_termcolor
|
||||
pypi-types_typed_ast
|
||||
pypi-types_urllib3
|
||||
pypi-typing_extensions
|
||||
pypi-typogrify
|
||||
@@ -4374,7 +4407,6 @@ pypi-uc_micro_py
|
||||
pypi-ufolib2
|
||||
pypi-uharfbuzz
|
||||
pypi-ujson
|
||||
pypi-uncertainpy
|
||||
pypi-unicodedata2
|
||||
pypi-unidecode
|
||||
pypi-unidiff
|
||||
@@ -4389,7 +4421,6 @@ pypi-virtualenv
|
||||
pypi-volatile
|
||||
pypi-voluptuous
|
||||
pypi-voluptuous_serialize
|
||||
pypi-vsts
|
||||
pypi-vsts_cd_manager
|
||||
pypi-waitress
|
||||
pypi-watchdog
|
||||
@@ -4404,6 +4435,7 @@ pypi-werkzeug
|
||||
pypi-wheel
|
||||
pypi-widgetsnbextension
|
||||
pypi-wikipedia
|
||||
pypi-wordfreq
|
||||
pypi-wrapt
|
||||
pypi-wsgiproxy2
|
||||
pypi-wsproto
|
||||
@@ -4419,7 +4451,6 @@ pypi-yamlloader
|
||||
pypi-yapf
|
||||
pypi-yarg
|
||||
pypi-yarl
|
||||
pypi-yaspin
|
||||
pypi-zabbix_api
|
||||
pypi-zc.lockfile
|
||||
pypi-zeroconf
|
||||
@@ -4462,6 +4493,7 @@ python-zstandard
|
||||
python3
|
||||
pyudev
|
||||
qalculate-gtk
|
||||
qatlib
|
||||
qbittorrent
|
||||
qca-qt5
|
||||
qemu
|
||||
@@ -4511,6 +4543,7 @@ qtwebchannel
|
||||
qtwebengine
|
||||
qtwebsockets
|
||||
qtx11extras
|
||||
qtxdg-tools
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quassel
|
||||
@@ -4539,7 +4572,6 @@ renderdoc
|
||||
requests-ntlm
|
||||
rest
|
||||
restic
|
||||
retrying
|
||||
rhythmbox
|
||||
rinutils
|
||||
rlwrap
|
||||
@@ -4586,6 +4618,7 @@ sddm-kcm
|
||||
seahorse
|
||||
seatd
|
||||
sed
|
||||
seer
|
||||
serf
|
||||
setserial
|
||||
setxkbmap
|
||||
@@ -4625,6 +4658,7 @@ speexdsp
|
||||
spice
|
||||
spice-gtk
|
||||
spice-protocol
|
||||
spice-vdagent
|
||||
sqlite-autoconf
|
||||
squashfs-tools
|
||||
squid
|
||||
@@ -4688,7 +4722,6 @@ telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-qt
|
||||
tepl
|
||||
termcolor
|
||||
terminology
|
||||
terminus-font
|
||||
tesseract
|
||||
@@ -4697,7 +4730,6 @@ tevent
|
||||
texinfo
|
||||
texlive
|
||||
texmaker
|
||||
texttable
|
||||
tgt
|
||||
the_silver_searcher
|
||||
thermal_daemon
|
||||
@@ -4726,7 +4758,6 @@ trace-cmd
|
||||
traceroute
|
||||
tracker
|
||||
tracker-miners
|
||||
traefik
|
||||
tree
|
||||
tree-sitter
|
||||
tzdata
|
||||
@@ -4736,6 +4767,7 @@ udisks2
|
||||
udunits
|
||||
uget
|
||||
uhttpmock
|
||||
umockdev
|
||||
unbundle
|
||||
unibilium
|
||||
unifdef
|
||||
@@ -4749,7 +4781,6 @@ usb-modeswitch-data
|
||||
usbredir
|
||||
usbutils
|
||||
user-manager
|
||||
usermode
|
||||
userspace-rcu
|
||||
usrbinjava
|
||||
usrbinpython
|
||||
@@ -4785,6 +4816,7 @@ wayland
|
||||
wayland-protocols
|
||||
wcslib
|
||||
webkitgtk
|
||||
webkitgtk50
|
||||
weechat
|
||||
weston
|
||||
wget
|
||||
@@ -4792,6 +4824,7 @@ which
|
||||
whois
|
||||
wine
|
||||
wireless-regdb-master
|
||||
wireplumber
|
||||
wireshark
|
||||
wlroots
|
||||
wmctrl
|
||||
@@ -4799,6 +4832,7 @@ woff2
|
||||
wol
|
||||
wpa_supplicant
|
||||
wsjtx
|
||||
wslu
|
||||
wxWidgets
|
||||
x11perf
|
||||
x11vnc
|
||||
|
||||
Reference in New Issue
Block a user