mirror of
https://github.com/clearlinux/common.git
synced 2026-09-06 13:41:33 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f98964d9b9 | ||
|
|
c65c2663b4 | ||
|
|
fc7ba03d0e | ||
|
|
8b81fa9be0 | ||
|
|
1c5b29f61b | ||
|
|
dc69bff43e | ||
|
|
57186b17e5 | ||
|
|
6f6ca85feb | ||
|
|
884b4283cb | ||
|
|
cf423b235d | ||
|
|
5ba591d007 | ||
|
|
e005f2164e | ||
|
|
5ed7435295 | ||
|
|
0215deaf60 | ||
|
|
3bea87a841 | ||
|
|
1d363fd932 | ||
|
|
05ccbbe7a7 | ||
|
|
b4b4a84dbb | ||
|
|
8e2a825ca8 | ||
|
|
e8c53e4a2e | ||
|
|
5d1521256e | ||
|
|
c43ccd01e8 | ||
|
|
f80b262ad7 | ||
|
|
2b6b813c0a | ||
|
|
ec9fa3b778 | ||
|
|
e473e2bce8 | ||
|
|
d5dc76d31e | ||
|
|
f825b6b7fc | ||
|
|
4627d7a47d | ||
|
|
8b2e15fa59 | ||
|
|
ec3903192a | ||
|
|
da6bc31e4a | ||
|
|
c360ffe52c | ||
|
|
f092f66d8d | ||
|
|
704e8c90b8 | ||
|
|
1ca80a16a3 | ||
|
|
27e359bda0 | ||
|
|
3db02dd609 | ||
|
|
5866d7afbf |
@@ -582,6 +582,78 @@ cloc: $(SRPMFILE)
|
|||||||
@$(MOCK) --clean --scrub=chroot --uniqueext=$(PKG_NAME)
|
@$(MOCK) --clean --scrub=chroot --uniqueext=$(PKG_NAME)
|
||||||
cat results/cloc.txt
|
cat results/cloc.txt
|
||||||
|
|
||||||
|
#help catchup: Backport the commits from the current version to the upstream HEAD (not release).
|
||||||
|
#help Only works if giturl is defined and the current package version can be mapped to a git tag.
|
||||||
|
catchup:
|
||||||
|
$(MAKE) catchup-HEAD
|
||||||
|
|
||||||
|
#help catchup-<commit|tag>: Backport the commits from the current version to the specified commit or tag.
|
||||||
|
#help Only works if giturl is defined and the current package version can be mapped to a git tag.
|
||||||
|
catchup-%:
|
||||||
|
@target=$*; \
|
||||||
|
giturl=$$(grep -E '^giturl\s*=\s*\S+' options.conf | sed 's/giturl\s*=\s*//' 2>/dev/null); \
|
||||||
|
if [[ -z "$${giturl}" ]]; then \
|
||||||
|
echo "Error: giturl not defined in options.conf"; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
mkdir -p results; \
|
||||||
|
if [[ -d results/$(PKG_NAME) ]]; then \
|
||||||
|
echo "Reusing existing repository..."; \
|
||||||
|
git -C results/$(PKG_NAME) fetch origin; \
|
||||||
|
else \
|
||||||
|
echo "Cloning upstream repository..."; \
|
||||||
|
git -C results clone "$${giturl}" $(PKG_NAME); \
|
||||||
|
fi; \
|
||||||
|
if ! git -C results/$(PKG_NAME) rev-parse --verify --quiet "$${target}" >/dev/null; then \
|
||||||
|
echo "Error: Target commit/tag $${target} not found"; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
version=$$(rpm -q --qf '%{VERSION}\n' --specfile $(SPECFILE) | head -1); \
|
||||||
|
echo "Version: $${version}"; \
|
||||||
|
current_tag=$$(git -C results/$(PKG_NAME) tag --list | grep -E "^($(PKG_NAME)-)?(.+-|v)?$${version}$$") || { \
|
||||||
|
echo "Error: No tag found for current package version"; \
|
||||||
|
exit 1; \
|
||||||
|
}; \
|
||||||
|
echo "Catching up from $${current_tag} to $${target}"; \
|
||||||
|
for commit in $$(git -C results/$(PKG_NAME) log --reverse --pretty=oneline $${current_tag}..$${target} | cut -d' ' -f1); do \
|
||||||
|
$(MAKE) backport-$${commit}; \
|
||||||
|
done;
|
||||||
|
|
||||||
|
|
||||||
|
#help backport-<commit>: Retrieve a commit from the upstream git repository and save it as a backport patch.
|
||||||
|
#help The giturl is read from options.conf.
|
||||||
|
backport-%:
|
||||||
|
@commit=$*; \
|
||||||
|
echo "Backporting commit: $${commit}"; \
|
||||||
|
giturl=$$(grep -E '^giturl\s*=\s*\S+' options.conf | sed 's/giturl\s*=\s*//' 2>/dev/null); \
|
||||||
|
if [[ -z "$${giturl}" ]]; then \
|
||||||
|
echo "Error: giturl not defined in options.conf"; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
mkdir -p results; \
|
||||||
|
if [[ -d results/$(PKG_NAME) ]]; then \
|
||||||
|
echo "Reusing existing repository..."; \
|
||||||
|
git -C results/$(PKG_NAME) fetch origin; \
|
||||||
|
else \
|
||||||
|
echo "Cloning upstream repository..."; \
|
||||||
|
git -C results clone "$${giturl}" $(PKG_NAME); \
|
||||||
|
fi; \
|
||||||
|
full_commit=$$(git -C results/$(PKG_NAME) show --pretty=oneline $${commit} 2>/dev/null | head -1 | cut -d' ' -f 1); \
|
||||||
|
if [[ -z "$${full_commit}" ]]; then \
|
||||||
|
echo "Error: Commit for $${commit} not found"; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
patch=backport-$${full_commit}.patch; \
|
||||||
|
git -C results/$(PKG_NAME) format-patch -1 --stdout $${full_commit} > $${patch}; \
|
||||||
|
if [[ -s $${patch} ]]; then \
|
||||||
|
echo "$${patch} created"; \
|
||||||
|
grep -qE "^$${patch}$$" series 2>/dev/null || echo "$${patch}" >> series; \
|
||||||
|
else \
|
||||||
|
rm -f $${patch}; \
|
||||||
|
echo "Error: Failed to create backport patch"; \
|
||||||
|
exit 1; \
|
||||||
|
fi \
|
||||||
|
|
||||||
.PHONY: whatrequires
|
.PHONY: whatrequires
|
||||||
#help whatrequires: Output a list of packages that directly depend on this one,
|
#help whatrequires: Output a list of packages that directly depend on this one,
|
||||||
#help showing the subpackage-level breakdown. Each line of output has the format
|
#help showing the subpackage-level breakdown. Each line of output has the format
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
## DISCONTINUATION OF PROJECT.
|
||||||
|
|
||||||
|
This project will no longer be maintained by Intel.
|
||||||
|
|
||||||
|
Intel will not provide or guarantee development of or support for this project, including but not limited to, maintenance, bug fixes, new releases or updates. Patches to this project are no longer accepted by Intel. If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the community, please create your own fork of the project.
|
||||||
|
|
||||||
|
Contact: webadmin@linux.intel.com
|
||||||
# Developer tooling framework for Clear Linux
|
# Developer tooling framework for Clear Linux
|
||||||
|
|
||||||
This repository includes scripts, configuration files, and makefiles that
|
This repository includes scripts, configuration files, and makefiles that
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ CopyQ
|
|||||||
DML
|
DML
|
||||||
Endeavour
|
Endeavour
|
||||||
F-Engrave
|
F-Engrave
|
||||||
|
FreeCAD
|
||||||
FreeRDP
|
FreeRDP
|
||||||
FreeRDP2
|
FreeRDP2
|
||||||
GConf
|
GConf
|
||||||
@@ -49,6 +50,7 @@ PySocks
|
|||||||
PyYAML
|
PyYAML
|
||||||
QAT-ZSTD-Plugin
|
QAT-ZSTD-Plugin
|
||||||
QAT_engine
|
QAT_engine
|
||||||
|
QGIS
|
||||||
QR-Code-generator
|
QR-Code-generator
|
||||||
QXlsx
|
QXlsx
|
||||||
R
|
R
|
||||||
@@ -180,6 +182,7 @@ R-Ryacas
|
|||||||
R-SGP
|
R-SGP
|
||||||
R-SGPdata
|
R-SGPdata
|
||||||
R-SQUAREM
|
R-SQUAREM
|
||||||
|
R-SimDesign
|
||||||
R-Sleuth2
|
R-Sleuth2
|
||||||
R-SnowballC
|
R-SnowballC
|
||||||
R-SparseM
|
R-SparseM
|
||||||
@@ -232,6 +235,7 @@ R-bayesplot
|
|||||||
R-bazar
|
R-bazar
|
||||||
R-bbmle
|
R-bbmle
|
||||||
R-bdsmatrix
|
R-bdsmatrix
|
||||||
|
R-beepr
|
||||||
R-beeswarm
|
R-beeswarm
|
||||||
R-bench
|
R-bench
|
||||||
R-benchr
|
R-benchr
|
||||||
@@ -584,6 +588,7 @@ R-linprog
|
|||||||
R-lintr
|
R-lintr
|
||||||
R-listenv
|
R-listenv
|
||||||
R-listviewer
|
R-listviewer
|
||||||
|
R-litedown
|
||||||
R-lle
|
R-lle
|
||||||
R-lme4
|
R-lme4
|
||||||
R-lmerTest
|
R-lmerTest
|
||||||
@@ -809,6 +814,7 @@ R-readr
|
|||||||
R-readstata13
|
R-readstata13
|
||||||
R-readxl
|
R-readxl
|
||||||
R-recipes
|
R-recipes
|
||||||
|
R-reformulas
|
||||||
R-registry
|
R-registry
|
||||||
R-relimp
|
R-relimp
|
||||||
R-rematch
|
R-rematch
|
||||||
@@ -824,7 +830,6 @@ R-reshape
|
|||||||
R-reshape2
|
R-reshape2
|
||||||
R-reticulate
|
R-reticulate
|
||||||
R-rex
|
R-rex
|
||||||
R-rgdal
|
|
||||||
R-rgenoud
|
R-rgenoud
|
||||||
R-rgeos
|
R-rgeos
|
||||||
R-rgl
|
R-rgl
|
||||||
@@ -871,6 +876,7 @@ R-rsvg
|
|||||||
R-runjags
|
R-runjags
|
||||||
R-rversions
|
R-rversions
|
||||||
R-rvest
|
R-rvest
|
||||||
|
R-rworldmap
|
||||||
R-s2
|
R-s2
|
||||||
R-sampling
|
R-sampling
|
||||||
R-sandwich
|
R-sandwich
|
||||||
@@ -916,6 +922,7 @@ R-sp
|
|||||||
R-spData
|
R-spData
|
||||||
R-spam
|
R-spam
|
||||||
R-sparkline
|
R-sparkline
|
||||||
|
R-sparsevctrs
|
||||||
R-spatstat
|
R-spatstat
|
||||||
R-spatstat.core
|
R-spatstat.core
|
||||||
R-spatstat.data
|
R-spatstat.data
|
||||||
@@ -1056,6 +1063,7 @@ SDL2_image
|
|||||||
SDL2_mixer
|
SDL2_mixer
|
||||||
SDL2_net
|
SDL2_net
|
||||||
SDL2_ttf
|
SDL2_ttf
|
||||||
|
SDL3
|
||||||
SDL_gfx
|
SDL_gfx
|
||||||
SDL_image
|
SDL_image
|
||||||
SDL_mixer
|
SDL_mixer
|
||||||
@@ -1093,6 +1101,7 @@ accountsservice
|
|||||||
acl
|
acl
|
||||||
acpica-unix2
|
acpica-unix2
|
||||||
ade
|
ade
|
||||||
|
adwaita-fonts
|
||||||
adwaita-icon-theme
|
adwaita-icon-theme
|
||||||
akonadi
|
akonadi
|
||||||
akonadi-calendar
|
akonadi-calendar
|
||||||
@@ -1123,6 +1132,7 @@ appstream-glib
|
|||||||
apr
|
apr
|
||||||
apr-util
|
apr-util
|
||||||
arandr
|
arandr
|
||||||
|
ardopcf
|
||||||
argon2
|
argon2
|
||||||
aria2
|
aria2
|
||||||
ark
|
ark
|
||||||
@@ -1204,10 +1214,10 @@ boost
|
|||||||
borgbackup
|
borgbackup
|
||||||
boto3
|
boto3
|
||||||
botocore
|
botocore
|
||||||
|
bottom
|
||||||
bovo
|
bovo
|
||||||
box2d
|
box2d
|
||||||
bpftool
|
bpftool
|
||||||
bpftrace
|
|
||||||
breeze
|
breeze
|
||||||
breeze-gtk
|
breeze-gtk
|
||||||
breeze-icons
|
breeze-icons
|
||||||
@@ -1234,6 +1244,7 @@ buildreq-qmake
|
|||||||
buildreq-qt6
|
buildreq-qt6
|
||||||
buildreq-scons
|
buildreq-scons
|
||||||
buildx
|
buildx
|
||||||
|
bwidget
|
||||||
byobu
|
byobu
|
||||||
bz2file
|
bz2file
|
||||||
bzip2
|
bzip2
|
||||||
@@ -1359,6 +1370,8 @@ compat-libsoup-soname-24
|
|||||||
compat-libva-soname1
|
compat-libva-soname1
|
||||||
compat-libvpx-soname7
|
compat-libvpx-soname7
|
||||||
compat-libvpx-soname8
|
compat-libvpx-soname8
|
||||||
|
compat-libvpx-soname9
|
||||||
|
compat-libxml2-soname2
|
||||||
compat-pangomm-soname14
|
compat-pangomm-soname14
|
||||||
compat-protobuf-soname29
|
compat-protobuf-soname29
|
||||||
compat-protobuf-soname32
|
compat-protobuf-soname32
|
||||||
@@ -1369,6 +1382,7 @@ compat-taglib-soname1
|
|||||||
compat-tbb-soname2
|
compat-tbb-soname2
|
||||||
compat-tiff-soname5
|
compat-tiff-soname5
|
||||||
compat-wlroots-soname11
|
compat-wlroots-soname11
|
||||||
|
compat-yaml-cpp-soname6
|
||||||
component
|
component
|
||||||
compose
|
compose
|
||||||
configobj
|
configobj
|
||||||
@@ -1384,6 +1398,7 @@ coreutils
|
|||||||
corosync
|
corosync
|
||||||
coturn
|
coturn
|
||||||
cov-core
|
cov-core
|
||||||
|
cpdb-libs
|
||||||
cpio
|
cpio
|
||||||
cppcheck
|
cppcheck
|
||||||
cppunit
|
cppunit
|
||||||
@@ -1438,6 +1453,8 @@ dino
|
|||||||
directx-headers
|
directx-headers
|
||||||
direwolf
|
direwolf
|
||||||
dist-pam-configs
|
dist-pam-configs
|
||||||
|
distrobox
|
||||||
|
dive
|
||||||
dkms
|
dkms
|
||||||
dlib
|
dlib
|
||||||
dlt-daemon
|
dlt-daemon
|
||||||
@@ -1526,6 +1543,7 @@ fakeroot
|
|||||||
falcosecurity-libs
|
falcosecurity-libs
|
||||||
fann
|
fann
|
||||||
farstream
|
farstream
|
||||||
|
fast_float
|
||||||
fastfetch
|
fastfetch
|
||||||
faultstat
|
faultstat
|
||||||
fcgi
|
fcgi
|
||||||
@@ -1583,6 +1601,7 @@ fsearch
|
|||||||
fuse
|
fuse
|
||||||
fwupd
|
fwupd
|
||||||
fwupd-efi
|
fwupd-efi
|
||||||
|
game-music-emu
|
||||||
garcon
|
garcon
|
||||||
gawk
|
gawk
|
||||||
gbinder-python
|
gbinder-python
|
||||||
@@ -1593,6 +1612,7 @@ gcc11
|
|||||||
gcc7
|
gcc7
|
||||||
gcc8
|
gcc8
|
||||||
gcc9
|
gcc9
|
||||||
|
gccmakedep
|
||||||
gcompris-qt
|
gcompris-qt
|
||||||
gcr
|
gcr
|
||||||
gdal
|
gdal
|
||||||
@@ -1621,6 +1641,7 @@ gi-docgen
|
|||||||
giflib
|
giflib
|
||||||
gifsicle
|
gifsicle
|
||||||
gimp
|
gimp
|
||||||
|
gimp-xsanecli
|
||||||
girara
|
girara
|
||||||
git
|
git
|
||||||
git-gui
|
git-gui
|
||||||
@@ -1749,6 +1770,7 @@ gstreamer-vaapi
|
|||||||
gtk+
|
gtk+
|
||||||
gtk-doc
|
gtk-doc
|
||||||
gtk-frdp
|
gtk-frdp
|
||||||
|
gtk-layer-shell
|
||||||
gtk-vnc
|
gtk-vnc
|
||||||
gtk-xfce-engine
|
gtk-xfce-engine
|
||||||
gtk3
|
gtk3
|
||||||
@@ -1842,6 +1864,7 @@ ipe
|
|||||||
iperf
|
iperf
|
||||||
ipmitool
|
ipmitool
|
||||||
ipp-crypto
|
ipp-crypto
|
||||||
|
ipp-usb
|
||||||
iproute2
|
iproute2
|
||||||
ipset
|
ipset
|
||||||
iptables
|
iptables
|
||||||
@@ -1854,6 +1877,7 @@ irrlicht
|
|||||||
irrlichtmt
|
irrlichtmt
|
||||||
irssi
|
irssi
|
||||||
isa-l
|
isa-l
|
||||||
|
isl
|
||||||
iso-codes
|
iso-codes
|
||||||
isodate
|
isodate
|
||||||
isomd5sum
|
isomd5sum
|
||||||
@@ -2260,6 +2284,7 @@ libmbim
|
|||||||
libmediaart
|
libmediaart
|
||||||
libmemcached
|
libmemcached
|
||||||
libmicrohttpd
|
libmicrohttpd
|
||||||
|
libmikmod
|
||||||
libmnl
|
libmnl
|
||||||
libmodbus
|
libmodbus
|
||||||
libmodplug
|
libmodplug
|
||||||
@@ -2296,6 +2321,7 @@ libopenzwave
|
|||||||
libopusenc
|
libopusenc
|
||||||
liborcus
|
liborcus
|
||||||
libosinfo
|
libosinfo
|
||||||
|
libp11
|
||||||
libpagemaker
|
libpagemaker
|
||||||
libpanel
|
libpanel
|
||||||
libpcap
|
libpcap
|
||||||
@@ -2380,6 +2406,7 @@ libva
|
|||||||
libva-intel-driver
|
libva-intel-driver
|
||||||
libva-utils
|
libva-utils
|
||||||
libvdpau
|
libvdpau
|
||||||
|
libversion
|
||||||
libvirt
|
libvirt
|
||||||
libvirt-dbus
|
libvirt-dbus
|
||||||
libvirt-glib
|
libvirt-glib
|
||||||
@@ -2433,8 +2460,10 @@ linux-ltscurrent
|
|||||||
linux-ltsprev
|
linux-ltsprev
|
||||||
linux-preempt-rt
|
linux-preempt-rt
|
||||||
linux-tools
|
linux-tools
|
||||||
|
linuxcnc
|
||||||
linuxptp
|
linuxptp
|
||||||
lksctp-tools
|
lksctp-tools
|
||||||
|
llama.cpp
|
||||||
lldpd
|
lldpd
|
||||||
llvm
|
llvm
|
||||||
llvm14
|
llvm14
|
||||||
@@ -2442,6 +2471,7 @@ llvm15
|
|||||||
llvm16
|
llvm16
|
||||||
llvm17
|
llvm17
|
||||||
llvm18
|
llvm18
|
||||||
|
llvm19
|
||||||
lm-sensors
|
lm-sensors
|
||||||
lmdb
|
lmdb
|
||||||
logrotate
|
logrotate
|
||||||
@@ -2459,6 +2489,7 @@ lttng-ust
|
|||||||
lua
|
lua
|
||||||
lua-nginx-module
|
lua-nginx-module
|
||||||
lualgi
|
lualgi
|
||||||
|
luanti
|
||||||
luarocks
|
luarocks
|
||||||
lutris
|
lutris
|
||||||
luv
|
luv
|
||||||
@@ -2474,6 +2505,7 @@ m4
|
|||||||
mailcommon
|
mailcommon
|
||||||
mailimporter
|
mailimporter
|
||||||
make
|
make
|
||||||
|
makedepend
|
||||||
man-db
|
man-db
|
||||||
man-pages
|
man-pages
|
||||||
man-pages-posix
|
man-pages-posix
|
||||||
@@ -2497,10 +2529,10 @@ memtier_benchmark
|
|||||||
menu-cache
|
menu-cache
|
||||||
mercurial
|
mercurial
|
||||||
mesa
|
mesa
|
||||||
|
mesa-clc
|
||||||
mesa-demos
|
mesa-demos
|
||||||
meson
|
meson
|
||||||
messagelib
|
messagelib
|
||||||
meta-c-basic
|
|
||||||
meta-desktop-gnome
|
meta-desktop-gnome
|
||||||
meta-os-core
|
meta-os-core
|
||||||
meta-os-core-plus
|
meta-os-core-plus
|
||||||
@@ -2508,6 +2540,7 @@ metacity
|
|||||||
metee
|
metee
|
||||||
metis
|
metis
|
||||||
metrics-discovery
|
metrics-discovery
|
||||||
|
metrics-library
|
||||||
micro-config-drive
|
micro-config-drive
|
||||||
micro-config-drive-aliyun
|
micro-config-drive-aliyun
|
||||||
micro-config-drive-aws
|
micro-config-drive-aws
|
||||||
@@ -2516,13 +2549,13 @@ micro-config-drive-oci
|
|||||||
milou
|
milou
|
||||||
mimalloc
|
mimalloc
|
||||||
mimetreeparser
|
mimetreeparser
|
||||||
minetest
|
|
||||||
minetest_game
|
minetest_game
|
||||||
mingw-binutils
|
mingw-binutils
|
||||||
mingw-crt
|
mingw-crt
|
||||||
mingw-gcc
|
mingw-gcc
|
||||||
minicom
|
minicom
|
||||||
minimodem
|
minimodem
|
||||||
|
minizip-ng
|
||||||
minuet
|
minuet
|
||||||
mixer-tools
|
mixer-tools
|
||||||
mkfontdir
|
mkfontdir
|
||||||
@@ -2568,7 +2601,6 @@ mtools
|
|||||||
mtr
|
mtr
|
||||||
multimon-ng
|
multimon-ng
|
||||||
multipath-tools
|
multipath-tools
|
||||||
multiprocess
|
|
||||||
mumble
|
mumble
|
||||||
munge
|
munge
|
||||||
muparser
|
muparser
|
||||||
@@ -2626,6 +2658,7 @@ nload
|
|||||||
nlohmann_json
|
nlohmann_json
|
||||||
nlopt
|
nlopt
|
||||||
nmap
|
nmap
|
||||||
|
nng
|
||||||
node-addon-api
|
node-addon-api
|
||||||
nodejs
|
nodejs
|
||||||
nose-parameterized
|
nose-parameterized
|
||||||
@@ -2648,6 +2681,7 @@ numactl
|
|||||||
numatop
|
numatop
|
||||||
numlockx
|
numlockx
|
||||||
numpy-stl
|
numpy-stl
|
||||||
|
nushell
|
||||||
nut
|
nut
|
||||||
nv-codec-headers
|
nv-codec-headers
|
||||||
nvme-cli
|
nvme-cli
|
||||||
@@ -2659,6 +2693,7 @@ ocl-icd
|
|||||||
octave
|
octave
|
||||||
oiio
|
oiio
|
||||||
okular
|
okular
|
||||||
|
ollama
|
||||||
oneDPL
|
oneDPL
|
||||||
oneVPL
|
oneVPL
|
||||||
onig
|
onig
|
||||||
@@ -2712,6 +2747,7 @@ paho.mqtt.c
|
|||||||
paho.mqtt.cpp
|
paho.mqtt.cpp
|
||||||
palapeli
|
palapeli
|
||||||
pam-python
|
pam-python
|
||||||
|
pam_u2f
|
||||||
pam_wrapper
|
pam_wrapper
|
||||||
pandas
|
pandas
|
||||||
pandoc
|
pandoc
|
||||||
@@ -3586,7 +3622,6 @@ perl-prefork
|
|||||||
perl-strictures
|
perl-strictures
|
||||||
pesign
|
pesign
|
||||||
phonon
|
phonon
|
||||||
phonon-vlc
|
|
||||||
phoronix-test-suite
|
phoronix-test-suite
|
||||||
php
|
php
|
||||||
php-APCu
|
php-APCu
|
||||||
@@ -3646,7 +3681,6 @@ php-zmq
|
|||||||
picmi
|
picmi
|
||||||
picocom
|
picocom
|
||||||
pidgin
|
pidgin
|
||||||
pidgin-sipe
|
|
||||||
pigeonhole
|
pigeonhole
|
||||||
pigz
|
pigz
|
||||||
pim-data-exporter
|
pim-data-exporter
|
||||||
@@ -3734,6 +3768,7 @@ pynvim
|
|||||||
pyotherside
|
pyotherside
|
||||||
pyotp
|
pyotp
|
||||||
pyparted
|
pyparted
|
||||||
|
pypi-Yapps
|
||||||
pypi-absl_py
|
pypi-absl_py
|
||||||
pypi-abydos
|
pypi-abydos
|
||||||
pypi-accelerate
|
pypi-accelerate
|
||||||
@@ -3915,6 +3950,7 @@ pypi-decorator
|
|||||||
pypi-deepmerge
|
pypi-deepmerge
|
||||||
pypi-deepspeed
|
pypi-deepspeed
|
||||||
pypi-dep_logic
|
pypi-dep_logic
|
||||||
|
pypi-dependency_groups
|
||||||
pypi-deprecated
|
pypi-deprecated
|
||||||
pypi-deprecation
|
pypi-deprecation
|
||||||
pypi-devpi_client
|
pypi-devpi_client
|
||||||
@@ -3977,6 +4013,7 @@ pypi-falcon
|
|||||||
pypi-fasteners
|
pypi-fasteners
|
||||||
pypi-fastimport
|
pypi-fastimport
|
||||||
pypi-fastjsonschema
|
pypi-fastjsonschema
|
||||||
|
pypi-fido2
|
||||||
pypi-filecache
|
pypi-filecache
|
||||||
pypi-filelock
|
pypi-filelock
|
||||||
pypi-findpython
|
pypi-findpython
|
||||||
@@ -4055,6 +4092,7 @@ pypi-hatch_requirements_txt
|
|||||||
pypi-hatch_vcs
|
pypi-hatch_vcs
|
||||||
pypi-hatchling
|
pypi-hatchling
|
||||||
pypi-heapdict
|
pypi-heapdict
|
||||||
|
pypi-hf_xet
|
||||||
pypi-hishel
|
pypi-hishel
|
||||||
pypi-hjson
|
pypi-hjson
|
||||||
pypi-hkp4py
|
pypi-hkp4py
|
||||||
@@ -4075,6 +4113,7 @@ pypi-hyperlink
|
|||||||
pypi-hypothesis
|
pypi-hypothesis
|
||||||
pypi-icalendar
|
pypi-icalendar
|
||||||
pypi-icecream
|
pypi-icecream
|
||||||
|
pypi-id
|
||||||
pypi-identify
|
pypi-identify
|
||||||
pypi-idna
|
pypi-idna
|
||||||
pypi-idna_ssl
|
pypi-idna_ssl
|
||||||
@@ -4099,8 +4138,8 @@ pypi-iocapture
|
|||||||
pypi-ipaddress
|
pypi-ipaddress
|
||||||
pypi-ipdb
|
pypi-ipdb
|
||||||
pypi-ipykernel
|
pypi-ipykernel
|
||||||
pypi-ipyparallel
|
|
||||||
pypi-ipython
|
pypi-ipython
|
||||||
|
pypi-ipython-pygments-lexers
|
||||||
pypi-ipython_genutils
|
pypi-ipython_genutils
|
||||||
pypi-ipython_sql
|
pypi-ipython_sql
|
||||||
pypi-ipywidgets
|
pypi-ipywidgets
|
||||||
@@ -4152,7 +4191,6 @@ pypi-jupyterlab_server
|
|||||||
pypi-jupyterlab_widgets
|
pypi-jupyterlab_widgets
|
||||||
pypi-jupyterlite_core
|
pypi-jupyterlite_core
|
||||||
pypi-jupyterlite_pyodide_kernel
|
pypi-jupyterlite_pyodide_kernel
|
||||||
pypi-jupyterlite_sphinx
|
|
||||||
pypi-jxmlease
|
pypi-jxmlease
|
||||||
pypi-kcc
|
pypi-kcc
|
||||||
pypi-kerberos
|
pypi-kerberos
|
||||||
@@ -4230,6 +4268,7 @@ pypi-msrest
|
|||||||
pypi-msrestazure
|
pypi-msrestazure
|
||||||
pypi-multidict
|
pypi-multidict
|
||||||
pypi-multipledispatch
|
pypi-multipledispatch
|
||||||
|
pypi-multiprocess
|
||||||
pypi-munch
|
pypi-munch
|
||||||
pypi-munkres
|
pypi-munkres
|
||||||
pypi-mutagen
|
pypi-mutagen
|
||||||
@@ -4268,6 +4307,7 @@ pypi-nvidia_ml_py
|
|||||||
pypi-oauth2client
|
pypi-oauth2client
|
||||||
pypi-oauthlib
|
pypi-oauthlib
|
||||||
pypi-olefile
|
pypi-olefile
|
||||||
|
pypi-ollama
|
||||||
pypi-onnx
|
pypi-onnx
|
||||||
pypi-opcodes
|
pypi-opcodes
|
||||||
pypi-openshift
|
pypi-openshift
|
||||||
@@ -4371,6 +4411,7 @@ pypi-py3dns
|
|||||||
pypi-py3nvml
|
pypi-py3nvml
|
||||||
pypi-py_cpuinfo
|
pypi-py_cpuinfo
|
||||||
pypi-pyaml
|
pypi-pyaml
|
||||||
|
pypi-pyarrow
|
||||||
pypi-pyasn1
|
pypi-pyasn1
|
||||||
pypi-pyasn1_modules
|
pypi-pyasn1_modules
|
||||||
pypi-pybind11
|
pypi-pybind11
|
||||||
@@ -4444,6 +4485,7 @@ pypi-pyroute2.nftables
|
|||||||
pypi-pyroute2.nslink
|
pypi-pyroute2.nslink
|
||||||
pypi-pyrsistent
|
pypi-pyrsistent
|
||||||
pypi-pysaml2
|
pypi-pysaml2
|
||||||
|
pypi-pyscard
|
||||||
pypi-pyscss
|
pypi-pyscss
|
||||||
pypi-pyserial
|
pypi-pyserial
|
||||||
pypi-pysnow
|
pypi-pysnow
|
||||||
@@ -4470,7 +4512,6 @@ pypi-python_debian
|
|||||||
pypi-python_dotenv
|
pypi-python_dotenv
|
||||||
pypi-python_install
|
pypi-python_install
|
||||||
pypi-python_json_logger
|
pypi-python_json_logger
|
||||||
pypi-python_lsp_black
|
|
||||||
pypi-python_lsp_jsonrpc
|
pypi-python_lsp_jsonrpc
|
||||||
pypi-python_lsp_server
|
pypi-python_lsp_server
|
||||||
pypi-python_multilib
|
pypi-python_multilib
|
||||||
@@ -4499,6 +4540,7 @@ pypi-rapidfuzz
|
|||||||
pypi-rapidfuzz_capi
|
pypi-rapidfuzz_capi
|
||||||
pypi-rcssmin
|
pypi-rcssmin
|
||||||
pypi-rdflib
|
pypi-rdflib
|
||||||
|
pypi-re2
|
||||||
pypi-readme_renderer
|
pypi-readme_renderer
|
||||||
pypi-readtime
|
pypi-readtime
|
||||||
pypi-recommonmark
|
pypi-recommonmark
|
||||||
@@ -4519,7 +4561,6 @@ pypi-requirements_parser
|
|||||||
pypi-resolvelib
|
pypi-resolvelib
|
||||||
pypi-responses
|
pypi-responses
|
||||||
pypi-restructuredtext_lint
|
pypi-restructuredtext_lint
|
||||||
pypi-retrolab
|
|
||||||
pypi-retry
|
pypi-retry
|
||||||
pypi-retry_decorator
|
pypi-retry_decorator
|
||||||
pypi-retryz
|
pypi-retryz
|
||||||
@@ -4528,8 +4569,10 @@ pypi-rfc3986
|
|||||||
pypi-rfc3986_validator
|
pypi-rfc3986_validator
|
||||||
pypi-rfc3987
|
pypi-rfc3987
|
||||||
pypi-rich
|
pypi-rich
|
||||||
|
pypi-rich_argparse
|
||||||
pypi-rjsmin
|
pypi-rjsmin
|
||||||
pypi-rlpycairo
|
pypi-rlpycairo
|
||||||
|
pypi-roman_numerals_py
|
||||||
pypi-rope
|
pypi-rope
|
||||||
pypi-routes
|
pypi-routes
|
||||||
pypi-rpds_py
|
pypi-rpds_py
|
||||||
@@ -4700,10 +4743,12 @@ pypi-types_toml
|
|||||||
pypi-types_typed_ast
|
pypi-types_typed_ast
|
||||||
pypi-types_urllib3
|
pypi-types_urllib3
|
||||||
pypi-typing_extensions
|
pypi-typing_extensions
|
||||||
|
pypi-typing_inspection
|
||||||
pypi-typogrify
|
pypi-typogrify
|
||||||
pypi-tzdata
|
pypi-tzdata
|
||||||
pypi-tzlocal
|
pypi-tzlocal
|
||||||
pypi-ua_parser
|
pypi-ua_parser
|
||||||
|
pypi-ua_parser_builtins
|
||||||
pypi-uc_micro_py
|
pypi-uc_micro_py
|
||||||
pypi-ufolib2
|
pypi-ufolib2
|
||||||
pypi-uharfbuzz
|
pypi-uharfbuzz
|
||||||
@@ -4724,6 +4769,7 @@ pypi-uvloop
|
|||||||
pypi-venusian
|
pypi-venusian
|
||||||
pypi-verboselogs
|
pypi-verboselogs
|
||||||
pypi-versioneer
|
pypi-versioneer
|
||||||
|
pypi-versioningit
|
||||||
pypi-vine
|
pypi-vine
|
||||||
pypi-virtualenv
|
pypi-virtualenv
|
||||||
pypi-volatile
|
pypi-volatile
|
||||||
@@ -4755,7 +4801,6 @@ pypi-wsproto
|
|||||||
pypi-wurlitzer
|
pypi-wurlitzer
|
||||||
pypi-wxPython
|
pypi-wxPython
|
||||||
pypi-xcffib
|
pypi-xcffib
|
||||||
pypi-xgboost
|
|
||||||
pypi-xmldiff
|
pypi-xmldiff
|
||||||
pypi-xmljson
|
pypi-xmljson
|
||||||
pypi-xmlschema
|
pypi-xmlschema
|
||||||
@@ -4774,6 +4819,7 @@ pypi-xstatic_jsencrypt
|
|||||||
pypi-xstatic_objectpath
|
pypi-xstatic_objectpath
|
||||||
pypi-xstatic_roboto_fontface
|
pypi-xstatic_roboto_fontface
|
||||||
pypi-xvfbwrapper
|
pypi-xvfbwrapper
|
||||||
|
pypi-xxhash
|
||||||
pypi-xyzservices
|
pypi-xyzservices
|
||||||
pypi-y_py
|
pypi-y_py
|
||||||
pypi-yamllint
|
pypi-yamllint
|
||||||
@@ -4783,6 +4829,7 @@ pypi-yarg
|
|||||||
pypi-yarl
|
pypi-yarl
|
||||||
pypi-yattag
|
pypi-yattag
|
||||||
pypi-ypy_websocket
|
pypi-ypy_websocket
|
||||||
|
pypi-yubikey_manager
|
||||||
pypi-zabbix_api
|
pypi-zabbix_api
|
||||||
pypi-zc.lockfile
|
pypi-zc.lockfile
|
||||||
pypi-zeroconf
|
pypi-zeroconf
|
||||||
@@ -4804,7 +4851,7 @@ pypi-zope.security
|
|||||||
pypi-zope.testing
|
pypi-zope.testing
|
||||||
pypi-zope.testrunner
|
pypi-zope.testrunner
|
||||||
pypi-zopfli
|
pypi-zopfli
|
||||||
python
|
pystring
|
||||||
python-digitalocean
|
python-digitalocean
|
||||||
python-distutils-extra
|
python-distutils-extra
|
||||||
python-gflags
|
python-gflags
|
||||||
@@ -4885,7 +4932,6 @@ qt6webengine
|
|||||||
qt6websockets
|
qt6websockets
|
||||||
qt6webview
|
qt6webview
|
||||||
qtbase
|
qtbase
|
||||||
qtcanvas3d
|
|
||||||
qtcharts
|
qtcharts
|
||||||
qtconnectivity
|
qtconnectivity
|
||||||
qtdatavis3d
|
qtdatavis3d
|
||||||
@@ -4895,7 +4941,6 @@ qtgraphicaleffects
|
|||||||
qtimageformats
|
qtimageformats
|
||||||
qtkeychain
|
qtkeychain
|
||||||
qtlocation
|
qtlocation
|
||||||
qtmqtt
|
|
||||||
qtmultimedia
|
qtmultimedia
|
||||||
qtnetworkauth
|
qtnetworkauth
|
||||||
qtquickcontrols
|
qtquickcontrols
|
||||||
@@ -4928,6 +4973,7 @@ rage
|
|||||||
ragel
|
ragel
|
||||||
rapidjson
|
rapidjson
|
||||||
raptor2
|
raptor2
|
||||||
|
rasdaemon
|
||||||
rasqal
|
rasqal
|
||||||
rclone
|
rclone
|
||||||
rdfind
|
rdfind
|
||||||
@@ -4940,6 +4986,7 @@ recode
|
|||||||
redis2-nginx-module
|
redis2-nginx-module
|
||||||
redland
|
redland
|
||||||
redsocks
|
redsocks
|
||||||
|
redumper
|
||||||
requests-ntlm
|
requests-ntlm
|
||||||
rest
|
rest
|
||||||
restic
|
restic
|
||||||
@@ -4970,9 +5017,11 @@ rustc
|
|||||||
rxvt-unicode
|
rxvt-unicode
|
||||||
s2tc
|
s2tc
|
||||||
s3fs-fuse
|
s3fs-fuse
|
||||||
|
s5cmd
|
||||||
salt
|
salt
|
||||||
samba
|
samba
|
||||||
samtools
|
samtools
|
||||||
|
sane-airscan
|
||||||
sane-backends
|
sane-backends
|
||||||
sassc
|
sassc
|
||||||
sbc
|
sbc
|
||||||
@@ -4985,6 +5034,7 @@ scour
|
|||||||
scowl
|
scowl
|
||||||
screen
|
screen
|
||||||
scummvm
|
scummvm
|
||||||
|
scx
|
||||||
sddm
|
sddm
|
||||||
sddm-kcm
|
sddm-kcm
|
||||||
seahorse
|
seahorse
|
||||||
@@ -5096,7 +5146,9 @@ tallow
|
|||||||
tar
|
tar
|
||||||
taskwarrior
|
taskwarrior
|
||||||
tbb
|
tbb
|
||||||
|
tbtools
|
||||||
tcl
|
tcl
|
||||||
|
tclx
|
||||||
tcpdump
|
tcpdump
|
||||||
tdb
|
tdb
|
||||||
tecla
|
tecla
|
||||||
@@ -5151,13 +5203,16 @@ udisks2
|
|||||||
udunits
|
udunits
|
||||||
uget
|
uget
|
||||||
uhttpmock
|
uhttpmock
|
||||||
|
uhubctl
|
||||||
umockdev
|
umockdev
|
||||||
unbundle
|
unbundle
|
||||||
unibilium
|
unibilium
|
||||||
unifdef
|
unifdef
|
||||||
|
unified-memory-framework
|
||||||
unison
|
unison
|
||||||
unit
|
unit
|
||||||
unixODBC
|
unixODBC
|
||||||
|
unsloth
|
||||||
unzip
|
unzip
|
||||||
upower
|
upower
|
||||||
usb-modeswitch
|
usb-modeswitch
|
||||||
@@ -5165,7 +5220,6 @@ usb-modeswitch-data
|
|||||||
usbredir
|
usbredir
|
||||||
usbutils
|
usbutils
|
||||||
userspace-rcu
|
userspace-rcu
|
||||||
usrbinjava
|
|
||||||
usrbinvi
|
usrbinvi
|
||||||
usrsctp
|
usrsctp
|
||||||
utf8proc
|
utf8proc
|
||||||
@@ -5181,7 +5235,9 @@ valijson
|
|||||||
valkey
|
valkey
|
||||||
vapoursynth
|
vapoursynth
|
||||||
vbox-integration
|
vbox-integration
|
||||||
|
vc-intrinsics
|
||||||
vectorscan
|
vectorscan
|
||||||
|
verilator
|
||||||
vid.stab
|
vid.stab
|
||||||
vifm
|
vifm
|
||||||
vim
|
vim
|
||||||
@@ -5193,7 +5249,6 @@ virglrenderer
|
|||||||
virt-manager
|
virt-manager
|
||||||
virt-viewer
|
virt-viewer
|
||||||
vkd3d
|
vkd3d
|
||||||
vlc
|
|
||||||
volk
|
volk
|
||||||
volume_key
|
volume_key
|
||||||
vpnc
|
vpnc
|
||||||
@@ -5225,6 +5280,7 @@ wlroots
|
|||||||
wmctrl
|
wmctrl
|
||||||
woff2
|
woff2
|
||||||
wol
|
wol
|
||||||
|
wolfssl
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
wsjtx
|
wsjtx
|
||||||
wslu
|
wslu
|
||||||
@@ -5307,10 +5363,13 @@ xorg-server
|
|||||||
xorgproto
|
xorgproto
|
||||||
xorriso
|
xorriso
|
||||||
xprop
|
xprop
|
||||||
|
xpumanager
|
||||||
xrandr
|
xrandr
|
||||||
xrdb
|
xrdb
|
||||||
xrdp
|
xrdp
|
||||||
xrestop
|
xrestop
|
||||||
|
xsane
|
||||||
|
xscorch
|
||||||
xscreensaver
|
xscreensaver
|
||||||
xsel
|
xsel
|
||||||
xset
|
xset
|
||||||
@@ -5335,8 +5394,10 @@ yasm
|
|||||||
yelp
|
yelp
|
||||||
yelp-tools
|
yelp-tools
|
||||||
yelp-xsl
|
yelp-xsl
|
||||||
|
yosys
|
||||||
yq
|
yq
|
||||||
ytnef
|
ytnef
|
||||||
|
yyjson
|
||||||
zabbix
|
zabbix
|
||||||
zathura
|
zathura
|
||||||
zathura-pdf-poppler
|
zathura-pdf-poppler
|
||||||
@@ -5344,6 +5405,7 @@ zenity
|
|||||||
zimg
|
zimg
|
||||||
zip
|
zip
|
||||||
zlib
|
zlib
|
||||||
|
zlib-ng
|
||||||
znc
|
znc
|
||||||
zopfli
|
zopfli
|
||||||
zsh
|
zsh
|
||||||
|
|||||||
Reference in New Issue
Block a user