kumquat-buildroot/package
Thomas Petazzoni 7fd80897a1 package/libxcrypt: make available only with glibc
libxcrypt has been added as a replacement for the libcrypt
implementation that was part of glibc, but dropped from glibc starting
from version 2.39.

However, libxcrypt was made available for all C libraries, and this is
unfortunately causing some problems as it can clash with the libcrypt
implementation provided by the C library.

In particular, linux-pam has been consistently failing with uclibc, in
BR2_PER_PACKAGE_DIRECTORIES=y builds, with the following build
failure:

opasswd.c: In function 'compare_password':
opasswd.c:133:27: error: invalid application of 'sizeof' to incomplete type 'struct crypt_data'

What happens is relatively tricky, but let's try to break it down:

- uclibc-ng install a stub libcrypt.a (no shared variant, as for
  shared libraries, everything is in libc.so), and crypt.h

- libxcrypt installs libcrypt.so.* and crypt.h

So there is no "clash" on the library itself, but there is a clash on
the header file.

Since we're using BR2_PER_PACKAGE_DIRECTORIES=y, when building
linux-pam, we are creating the per-package STAGING_DIR by copying the
STAGING_DIR of linux-pam dependencies, i.e both the libxcrypt
STAGING_DIR and the uclibc-ng STAGING_DIR. But the latter ends up
being copied last, which means that at the end of the day, we have in
the per-package STAGING_DIR of linux-pam:

- The libcrypt.so from libxcrypt
- The crypt.h header from uclibc-ng
- The libcrypt.a from uclibc-ng

When the ./configure script of linux-pam tests whether the library has
crypt_r(), it concludes that yes it's available: and indeed
libcrypt.so from libxcrypt has it.

So it tries to use 'struct crypt_data' and 'crypt_r()', but those are
not supported in uClibc-ng, and so cannot be found in the <crypt.h>
header. So even if the ./configure script and the linux-pam code has
some logic to fallback to crypt() if crypt_r() isn't available, this
fallback doesn't trigger because the installed libcrypt.so does have
crypt_r().

Basically what happens is that uclibc-ng + libxcrypt is a combo that
violates a golden rule of our BR2_PER_PACKAGE_DIRECTORIES=y
implementation: packages shouldn't overwrite files from each other.

To avoid this situation, we make libxcrypt only installable on
glibc. This isn't a problem because as of today, BR2_PACKAGE_LIBXCRYPT
is always selected "if BR2_TOOLCHAIN_USES_GLIBC".

It should be noted though that the case of an older glibc (which still
had its own internal libcrypt) + libxcrypt continues to exist. It's
less likely to cause trouble though, as the libcrypt implementations
are much more similar.

Fixes:

  http://autobuild.buildroot.net/results/560f66b0311d02dc884732221d6870ae3c38067c/

Note: we do not add a Config.in comment for this glibc dependency,
because libxcrypt really is a "replacement" library to fill in the
void left by libcrypt's removal from glibc. There isn't realy a point
showing "libxcrypt needs a toolchain w/ glibc", because with musl or
uclibc-ng, the libcrypt functionality is directly part of the C
library.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 5c0a91f7293523254e9c48667df4468370fda58d)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2025-01-09 10:50:39 +01:00
..
4th
18xx-ti-utils
a10disp
abootimg
ace
acl
acpica
acpid
acpitool
acsccid
adwaita-icon-theme
aer-inject package/aer-inject: switch upstream 2024-09-18 22:19:08 +02:00
aespipe
agent-proxy
agentpp
aircrack-ng
alchemy
alfred
alsa-lib package/alsa-lib: ucm: add BR2_USE_MMU dependency 2024-12-06 23:30:24 +01:00
alsa-plugins
alsa-utils
alsamixergui
altera-stapl
alure package/alure: fix grammar and dependencies typo in comment 2024-09-19 11:04:26 +02:00
am33x-cm3
am335x-pru-package package/am335x-pru-package: correct download hash 2024-09-09 16:22:25 +02:00
amlogic-boot-fip
android-tools package/android-tools: fix b64_pton() issue with GCC >= 14.x 2024-12-06 23:43:14 +01:00
angular-websocket
angularjs
aoetools
apache package/apache: include ap_config_auto.h to define _GNU_SOURCE 2024-11-13 17:16:27 +01:00
apcupsd
apg
apitrace
apparmor
apr package/apr: add upstream security fix for CVE-2023-49582 2024-12-29 20:55:13 +01:00
apr-util package/apr-util: requires DES in openssl 2024-08-29 18:13:07 +02:00
argp-standalone
argparse
argus
arm-gnu-toolchain
armadillo package/armadillo: temporarily update the site URL 2024-09-18 22:27:54 +02:00
armbian-firmware
arp-scan
arptables
ascii-invaders
asn1c
assimp
asterisk package/asterisk: update to 20.10.0 2024-11-09 17:55:07 +01:00
at
at-spi2-core
atest
atf
atftp
atkmm
atkmm2_28
atop
attr package/attr: add missing libgen.h header 2024-08-20 21:28:42 +02:00
aubio
audit package/audit: fix deactivate typo 2024-09-19 11:04:27 +02:00
aufs
aufs-util
augeas
aumix package/aumix: update AUMIX_SITE 2024-09-18 13:12:00 +02:00
autoconf package/autoconf: fix 'uncommitted' typo 2024-12-12 21:07:15 +01:00
autoconf-archive
autofs
automake
autossh
avahi
avocado
avrdude
avro-c
axel
axfsutils
azmq
azure-iot-sdk-c
b43-firmware
b43-fwcutter
babeld package/babeld: unbreak download hash 2024-11-23 19:08:17 +01:00
babeltrace2
balena-engine
bandwidthd
bash
bash-completion
bat
batctl
batman-adv
bats-core
bayer2rgb-neon
bc package/bc: update _SITE to use BR2_GNU_MIRROR 2024-12-13 23:37:23 +01:00
bcache-tools package/bcache-tools: fix compatibility typo 2024-09-19 11:04:40 +02:00
bcg729
bcm2835
bctoolbox
bcusdk package/bcusdk: fix definition typo 2024-09-19 11:04:41 +02:00
bdwgc
bearssl
beecrypt
belle-sip
belr
benejson
bento4
berkeleydb
bind package/bind: update to 9.18.31 2024-11-09 17:56:34 +01:00
binutils
binutils-bare-metal
biosdevname
bird
bison
bitcoin package/bitcoin: bump to version 26.2 2024-08-12 09:09:46 +02:00
bitstream
bitstream-vera
bitwise
blktrace
bluez5_utils
bluez5_utils-headers
bluez-alsa
bluez-tools
bmap-tools package/bmap-tools: select host-python3 if building host package 2024-12-06 10:18:21 +01:00
bmon
bmx7
boinc
bonnie
boost package/boost: update download url 2024-11-26 14:03:38 +01:00
bootgen package/bootgen: add patch to fix crash with -verify 2024-10-25 18:54:19 +02:00
bootstrap
botan package/botan: needs gcc >= 11 2024-09-18 13:06:46 +02:00
bpftool
brcm-patchram-plus
brcmfmac_sdio-firmware-rpi
brickd
bridge-utils
brltty
brotli
bsdiff
btrfs-progs package/btrfs-progs: don't install host udev files 2024-08-31 19:12:43 +02:00
bubblewrap
bullet
bustle
busybox package/busybox: fix menuconfig with GCC 14 2024-09-01 10:57:26 +02:00
bwm-ng
bzip2
c-ares package/c-ares: update site url 2024-07-28 12:03:21 +02:00
c-capnproto
c-icap
c-icap-modules package/c-icap-modules: fix Additional typo 2024-09-19 11:04:43 +02:00
c-periphery
ca-certificates
cache-calibrator package/cache-calibrator: fix build failure for implicit declaration 2024-09-18 22:30:31 +02:00
cage
cairo
cairomm
cairomm1_14
can-utils
cannelloni
cantarell
capnproto
caps
casync
catatonit
catch2
cbootimage
cc-tool
ccache
ccid
ccrypt
cctz
cdrkit package/cdrkit: fix build with gcc 14.x 2024-12-23 09:26:00 +01:00
cegui
cereal
cfm
cgic
cgilua
cgroupfs-mount
chartjs
check package/check: fix build on noMMU configurations 2024-08-07 10:58:48 +02:00
checkpolicy
checksec
chipmunk
chocolate-doom package/chocolate-doom: fix multiple typo 2024-09-19 11:04:44 +02:00
chrony
cifs-utils
circus
civetweb
cjson
clamav package/clamav: security bump version to 1.0.7 2024-09-18 22:59:31 +02:00
cli11
clinfo
cloop
clpeak
cmake
cmocka
cni-plugins
cog
collectd package/collectd: fix typos in help text / comment 2024-09-19 11:04:44 +02:00
collectl
comix-cursors package/comix-cursors: update COMIX_CURSORS_SITE 2024-09-18 22:13:28 +02:00
composer
conmon
connman
connman-gtk
conntrack-tools
containerd package/containerd: bump version to v1.7.18 2024-07-23 09:42:09 +02:00
copas
coremark
coremark-pro
coreutils
corkscrew
coxpcall
cpio
cppcms
cppdb
cppunit
cppzmq
cpuburn-arm
cpulimit
cpuload
cracklib
cramfs
crda
criu package/criu: fix comment condition 2024-11-13 09:02:01 +01:00
crucible
crudini
crun
cryptodev-linux package/cryptodev-linux: ensure <pkg>_LINUX_CONFIG_FIXUPS has an effect 2025-01-08 22:57:52 +01:00
cryptopp
cryptsetup package/cryptsetup: bump version to 2.7.5 2024-10-11 14:54:04 +02:00
ctorrent
cukinia
cunit
cups package/cups: security bump to version 2.4.11 2024-10-19 20:39:16 +02:00
cups-filters
cups-pk-helper
curlftpfs
curlpp
cutekeyboard
cutelyst
cvs
cwiid
cxxtest
czmq
dacapo
dado
daemon
dahdi-linux
dahdi-tools
dante
daq package/daq: workaround for upstream changing the archive 2024-07-11 00:01:12 +02:00
daq3
darkhttpd
dash
datatables
datatables-buttons
datatables-fixedcolumns
datatables-responsive
dav1d
davfs2
davici
dawgdic
dbus
dbus-broker
dbus-cpp
dbus-cxx
dbus-glib
dbus-python
dbus-triggerd
dc3dd
dcron package/dcron: fix opening typo 2024-09-19 11:04:45 +02:00
ddrescue
debianutils
dehydrated
dejavu
delve
depot-tools
desktop-file-utils
dfu-programmer
dfu-util
dhcp
dhcpcd
dhcpdump
dhrystone
dht
dialog
dieharder
diffutils
dillo
ding-libs
directfb package/directfb: enable on riscv32 again 2024-08-12 15:00:40 +02:00
directfb-examples
dmalloc package/dmalloc: fix deactivate typo 2024-09-19 11:04:46 +02:00
dmenu-wayland
dmidecode
dmraid package/dmraid: fix 'maintenance' typo 2024-12-12 21:07:16 +01:00
dnsmasq
docker
docker-cli
docker-compose
docker-engine
docopt-cpp
domoticz
doom-wad
dos2unix
dosfstools
dotconf
double-conversion
dovecot package/dovecot: security bump version to 2.3.21.1 2024-09-18 18:46:58 +02:00
dovecot-pigeonhole package/dovecot-pigeonhole: bump version to 0.5.21.1 2024-09-18 18:47:19 +02:00
doxygen
dracut
drbd-utils
dropbear package/dropbear: bump to version 2024.85 2024-08-18 22:52:26 +02:00
dropwatch
dstat
dt
dt-utils
dtach
dtbocfg
dtc
dtv-scan-tables
duktape
duma
dump1090
dust
dvb-apps
dvblast package/dvblast: fix which typo 2024-09-19 11:04:47 +02:00
dvbsnoop
dvdauthor
dvdrw-tools
e2fsprogs
e2tools
earlyoom
easy-rsa
easydbus
easyframes
ebtables package/ebtables: remove KERNEL_64_USERSPACE_32 workaround 2024-11-20 21:52:11 +01:00
ecryptfs-utils
ed package/ed: bump to version 1.20.2 2024-07-28 12:24:17 +02:00
edid-decode
edk2-non-osi
edk2-platforms
efibootmgr
efivar
efl
eigen
ejabberd
elf2flt
elftosb package/elftosb: fix typos in patch descriptions 2024-09-19 11:04:48 +02:00
elfutils package/elfutils: fix build on microblaze 2024-09-01 10:46:06 +02:00
ell
embiggen-disk
emlog
empty
enchant
enet
enlightenment
enscript
environment-setup
erlang package/erlang: fix inadvertently typo 2024-09-19 11:04:49 +02:00
erlang-base64url
erlang-eimp
erlang-goldrush
erlang-idna
erlang-jiffy
erlang-jose
erlang-lager
erlang-p1-acme
erlang-p1-cache-tab
erlang-p1-mqtree
erlang-p1-oauth2
erlang-p1-pkix
erlang-p1-sip
erlang-p1-stringprep
erlang-p1-stun
erlang-p1-tls
erlang-p1-utils
erlang-p1-xml
erlang-p1-xmpp
erlang-p1-yaml
erlang-p1-yconf
erlang-p1-zlib
erlang-rebar
erofs-utils
esp-hosted
espeak
ethtool
eudev
ev3dev-linux-drivers
evemu
evtest
execline
exempi
exfat
exfat-utils
exfatprogs
exim package/exim: security bump version to 4.98 2024-07-23 16:54:21 +02:00
exiv2 package/exiv2: fix 'information see' typo 2024-09-19 11:04:49 +02:00
expat package/expat: security bump to version 2.6.4 2024-11-26 14:19:37 +01:00
expect
explorercanvas
eza
f2fs-tools
faad2
faifa
fail2ban
fakedate
fakeroot
faketime
falcosecurity-libs package/falcosecurity-libs: fix which typo 2024-09-19 11:04:50 +02:00
fan-ctrl
fastd
fatcat
fb-test-app
fbdump
fbgrab package/fbgrab: fix framebuffer typo in help text 2024-09-19 11:04:51 +02:00
fbset package/fbset: update download URL 2024-09-18 19:08:53 +02:00
fbterm
fbtft
fbv package/fbv: fetch from sources.buildroot.net 2024-11-23 10:36:04 +01:00
fcft
fcgiwrap package/fcgiwrap: fix explicitly typo 2024-09-19 11:04:52 +02:00
fconfig
fdk-aac
feh
fetchmail package/fetchmail: bump version to 6.4.39 2024-08-31 23:46:42 +02:00
ffmpeg package/ffmpeg: add optional dependency on jack 2024-09-02 13:24:08 +02:00
fft-eval
fftw
ficl
file package/file: fix musl compile issue 2024-11-12 21:44:24 +01:00
filemq
findutils
fio
firewalld
firmware-utils
flac
flann
flannel
flare-engine
flare-game
flashbench
flashrom
flatbuffers
flatcc
flex package/flex: fix typo in patch description 2024-09-19 11:04:53 +02:00
flite
flot
fltk
fluent-bit package/fluent-bit: security bump to version 2.2.3 2024-07-08 13:26:53 +02:00
fluid-soundfont
fluidsynth package/fluidsynth: bump to version 2.3.7 2024-11-13 09:22:59 +01:00
flutter-engine package/flutter-engine: fix typos in comments 2024-09-19 11:04:53 +02:00
flutter-gallery
flutter-pi package/flutter-pi: fix Raspberry typo 2024-09-19 11:04:54 +02:00
flutter-sdk-bin
fluxbox
fmc
fmlib
fmt
fmtools
font-awesome
fontconfig
foot package/foot: change to git download to work around codeberg archive issue 2024-12-08 15:44:50 +01:00
forge
fping
freeipmi package/freeipmi: update _SITE to use BR2_GNU_MIRROR 2024-12-14 09:53:17 +01:00
freeradius-client
freeradius-server
freerdp package/freerdp: security bump version to 2.11.7 2024-09-02 13:22:17 +02:00
freescale-imx
freeswitch
freeswitch-mod-bcg729
freetype
frotz
frr package/frr: security bump to version 8.5.6 2024-12-06 12:44:31 +01:00
fscryptctl
fstrcmp
fswebcam
ftop
fuse-overlayfs
fwts package/fwts: fix build with host make >= 4.4 2024-08-07 22:18:25 +02:00
fwup
fxdiv
fxload
gamin package/gamin: fetch from sources.buildroot.net 2024-11-23 19:34:37 +01:00
gauche
gawk
gcc package/gcc: fix explicitly typo 2024-09-19 11:04:55 +02:00
gcc-bare-metal
gcnano-binaries
gconf
gcr
gd
gdal
gdb package/gdb: add hash of licence files 2025-01-02 12:30:19 +01:00
gdbm
gdk-pixbuf
gdk-pixbuf-xlib
genext2fs
gengetopt
genimage
genpart package/genpart: change homepage and download location 2024-09-20 09:36:04 +02:00
genromfs
gensio
geoip
gerbera package/gerbera: fix guaranteed typo 2024-09-19 11:04:57 +02:00
gesftpserver
getent
gettext
gettext-gnu
gettext-tiny
gflags
ghostscript package/ghostscript: security bump version to 10.04.0 2024-11-12 22:07:22 +01:00
ghostscript-fonts
giblib
giflib
git
git-crypt
gitlab-runner
gkrellm
gli
glib-networking
glibc package/glibc: drop support of ARC 7x0 targets 2024-10-03 16:30:19 +02:00
glibmm
glibmm2_66
glm
glmark2
glog
gloox
glorytun
glslsandbox-player
gmp
gmrender-resurrect
gnu-efi package/gnu-efi: mark as not supported on ARM soft-float 2024-09-16 12:21:16 +02:00
gnuchess
gnupg
gnupg2 package/gnupg2: bump to version 2.4.7 2024-12-31 17:05:17 +01:00
gnuplot
gnuradio
gnutls package/gnutls: fix autobuild error from 3.8.8 update 2025-01-02 13:24:16 +01:00
go package/go: bump version to 1.22.10 2024-12-12 21:06:04 +01:00
go-bootstrap-stage1
go-bootstrap-stage2
go-bootstrap-stage3 package/go-bootstrap-stage3: fix go-bootstrap when parent dir contains invalid .git 2024-09-19 14:02:23 +02:00
gob2
gobject-introspection package/gobject-introspection: disable on Microblaze 2025-01-08 23:01:59 +01:00
gocryptfs
google-breakpad
googlefontdirectory
gperf
gpm
gpsd package/gpsd: fix comment about wchar requirement 2024-09-03 20:01:25 +02:00
gptfdisk
gqrx
gr-osmosdr
granite
grantlee
graphicsmagick
graphite2
grep
grpc
gsettings-desktop-schemas
gsl
gssdp
gstreamer1 package/gst-omx: bump version to 1.22.12 2025-01-02 14:19:35 +01:00
gtest package/gtest: fix explanation typo 2024-09-19 11:05:01 +02:00
gtk2-engines
gtkmm3
gtkperf
gtksourceview
guile
gumbo-parser
gupnp
gupnp-av
gupnp-dlna
gupnp-tools
gutenprint
gvfs
gzip
hackrf
hans
haproxy
harfbuzz
haserl
haveged
hawktracer
hddtemp package/hddtemp: fix information typo in help text 2024-09-19 11:05:02 +02:00
hdparm
heimdal package/heimdal: Fix build with autoconf-2.72 2024-11-12 22:36:53 +01:00
heirloom-mailx package/heirloom-mailx: fix attachments typo in help text 2024-09-19 11:05:02 +02:00
hiawatha package/hiawatha: update homepage URL 2024-09-06 13:57:35 +02:00
hicolor-icon-theme
hidapi
highway
hiredis
hostapd package/hostapd: fix proprietary typo in help text 2024-09-19 11:05:03 +02:00
hplip
htop package/htop: fix BR2_SHARED_STATIC_LIBS build 2024-09-03 21:14:30 +02:00
htpdate
httping
hwdata
hwloc
hyperfine
i2c-tools
i2pd
i7z
ibm-sw-tpm2
ibrcommon
ibrdtn
ibrdtn-tools
ibrdtnd
icu package/icu: fix typos in help text and patch description 2024-09-19 13:56:13 +02:00
ifenslave
ifmetric
ifplugd
iftop
ifupdown
ifupdown-scripts
igd2-for-linux
igh-ethercat
igmpproxy
ijs
ima-evm-utils
imagemagick
imlib2
imx-mkimage
imx-usb-loader
inadyn
inconsolata
inih
initscripts
inotify-tools
input-event-daemon
intel-gmmlib
intel-mediadriver
intel-mediasdk
intel-microcode package/intel-microcode: security bump version to 20241112 2024-11-26 14:23:09 +01:00
intltool
iodine
iotop
iozone
ipcalc
iperf
iperf3 package/iperf3: security bump to version 3.18 2025-01-09 10:06:52 +01:00
ipmitool
ipmiutil
iproute2
iprutils
ipset
iptables
iptraf-ng
iputils
irda-utils package/irda-utils: fix typos in patch descriptions 2024-09-19 13:56:14 +02:00
irqbalance
irrlicht
irssi package/irssi: bump version to 1.4.5 2024-11-25 17:40:08 +01:00
isl
iucode-tool
ivi-homescreen
iw
iwd
jack1
jack2
jailhouse package/jailhouse: fix build when python helper scripts are enabled 2024-11-13 09:32:51 +01:00
janet
jansson
janus-gateway
jasper
jbig2dec
jemalloc
jh71xx-tools
jhead
jimtcl
jitterentropy-library
jo
joe
jose
jpeg
jpeg-turbo
jq
jquery
jquery-datetimepicker
jquery-keyboard
jquery-mobile
jquery-sidebar
jquery-sparkline
jquery-ui
jquery-ui-themes
jquery-validation
jsmin
jsmn
json-c
json-for-modern-cpp package/json-for-modern-cpp: fix design typo in help text 2024-09-19 13:56:14 +02:00
json-glib
json-javascript
jsoncpp package/jsoncpp: bump version to 1.9.6 2024-11-12 22:06:00 +01:00
jszip
kbd
keepalived package/keepalived: fix summarize typo in help text 2024-09-19 13:56:15 +02:00
kexec package/kexec: fix link error when BR2_OPTIMIZE_0=y 2024-08-07 00:43:52 +02:00
kexec-lite package/kexec-lite: fix utility typo in help text 2024-09-19 13:56:16 +02:00
keyutils
kf5
kismet
kmemd
kmod
kmscube
kmsxx
knock
kodi package: fix a few Config.in indentation 2024-09-19 09:11:18 +02:00
kodi-audiodecoder-modplug
kodi-audiodecoder-nosefart
kodi-audiodecoder-sidplay
kodi-audiodecoder-snesapu
kodi-audiodecoder-stsound
kodi-audiodecoder-timidity
kodi-audiodecoder-vgmstream
kodi-audioencoder-flac
kodi-audioencoder-lame
kodi-audioencoder-vorbis
kodi-audioencoder-wav
kodi-imagedecoder-heif
kodi-imagedecoder-raw
kodi-inputstream-adaptive
kodi-inputstream-ffmpegdirect
kodi-inputstream-rtmp
kodi-jsonschemabuilder
kodi-peripheral-joystick
kodi-peripheral-xarcade
kodi-pvr-argustv
kodi-pvr-dvblink
kodi-pvr-dvbviewer
kodi-pvr-filmon
kodi-pvr-hdhomerun
kodi-pvr-hts
kodi-pvr-iptvsimple
kodi-pvr-mediaportal-tvserver
kodi-pvr-mythtv
kodi-pvr-nextpvr
kodi-pvr-njoy
kodi-pvr-octonet
kodi-pvr-pctv
kodi-pvr-plutotv
kodi-pvr-stalker
kodi-pvr-vbox
kodi-pvr-vdr-vnsi
kodi-pvr-vuplus
kodi-pvr-waipu
kodi-pvr-wmc
kodi-pvr-zattoo
kodi-screensaver-asteroids
kodi-screensaver-asterwave
kodi-screensaver-biogenesis
kodi-screensaver-cpblobs
kodi-screensaver-greynetic
kodi-screensaver-matrixtrails
kodi-screensaver-pingpong
kodi-screensaver-pyro
kodi-screensaver-rsxs
kodi-screensaver-stars
kodi-skin-confluence
kodi-texturepacker
kodi-vfs-libarchive
kodi-vfs-rar
kodi-vfs-sftp
kodi-visualisation-fishbmc
kodi-visualisation-goom
kodi-visualisation-matrix
kodi-visualisation-shadertoy
kodi-visualisation-spectrum
kodi-visualisation-starburst
kodi-visualisation-waveform
kompexsqlite
ksmbd-tools package/ksmbd-tools: bump to version 3.5.2 2024-08-29 12:11:43 +02:00
kvazaar
kvm-unit-tests
kvmtool
kyua
lame
lapack
latencytop
lbase64
lbreakout2 package/lbreakout2: fix typos in help text 2024-09-19 13:56:16 +02:00
lcdapi
lcdproc
lcms2
leafnode2
leafpad
ledmon
lensfun
leptonica
less
lesstif
let-me-create
leveldb
lft
lftp
libaacs
libabseil-cpp
libaio
libao
libapparmor
libarchive package/libarchive: security bump to version 3.7.7 2024-11-06 22:05:07 +01:00
libargon2
libargtable2
libart
libass
libassuan
libatasmart
libatomic_ops
libavl
libb2
libb64
libbacktrace
libbdplus
libblockdev
libbluray
libbpf
libbroadvoice
libbsd
libbson
libbytesize
libcamera
libcamera-apps
libcanberra
libcap
libcap-ng
libcdaudio
libcddb package/libcddb: fix typo in help text 2024-09-19 13:56:17 +02:00
libcdio
libcdio-paranoia
libcec
libcgi
libcgicc
libcgroup
libcli
libcoap package/libcoap: fix typo in help text 2024-09-19 13:56:18 +02:00
libcodec2
libcofi
libconfig
libconfuse
libcorrect
libcpprestsdk
libcrossguid
libcsv
libcue
libcuefile package/libcuefile: fix build failure due to implicit declaration 2024-09-18 18:43:19 +02:00
libcurl package/libcurl: security bump to version 8.11.1 2024-12-19 09:24:45 +01:00
libcutl
libdaemon
libdbi
libdbi-drivers
libde265
libdecor
libdeflate
libdill
libdisplay-info
libdmtx
libdnet
libdri2
libdrm
libdvbcsa
libdvbpsi
libdvbsi
libdvdcss
libdvdnav
libdvdread
libeastl
libebml
libebur128
libedit
libee package/libee: fix typo in help text 2024-09-19 13:56:19 +02:00
libenca
libepoxy
liberation
libesmtp
libest package/libest: Add support for openssl v3 2024-08-22 14:43:33 +02:00
libestr
libev package/libev: fix deactivate typo 2024-09-19 13:56:19 +02:00
libevdev
libevent
libexecinfo
libexif
libeXosip2
libfastjson
libfcgi
libffi
libfm
libfm-extra
libfreefare
libfreeglut package/libfreeglut: fix typo in help text 2024-09-19 13:56:20 +02:00
libfreeimage
libfribidi
libftdi package/libftdi: fix automatically typo 2024-09-19 13:56:21 +02:00
libftdi1
libfuse
libfuse3
libfutils
libg7221
libgcrypt
libgdiplus
libgee
libgeos package/libgeos: bump version to 3.12.2 2024-07-28 11:54:51 +02:00
libgeotiff
libgit2
libglade
libglew
libglfw
libglib2 package/libglib2: fix deferring typo 2024-09-19 13:56:22 +02:00
libglob package/libglob: update download URL 2024-09-18 18:42:09 +02:00
libglu
libglvnd
libgpg-error package/libgpg-error: needs MMU 2024-09-16 10:27:50 +02:00
libgpgme
libgphoto2
libgpiod
libgsasl
libgsm
libgta
libgtk2
libgtk3 package/libgtk3: security bump to version 3.24.43 2024-08-28 11:10:34 +02:00
libgudev
libhdhomerun
libheif
libhid
libhtp
libhttpparser
libhttpserver
libiberty
libical
libiconv
libid3tag
libidn
libidn2
libiec61850
libiio
libilbc package/libilbc: switch to github 2024-10-19 21:20:25 +02:00
libimxvpuapi
libinput
libiqrf
libiscsi
libite
libjpeg
libjson
libjwt
libjxl
libkcapi package/libkcapi: update site path 2024-09-18 13:14:56 +02:00
libkrb5 package/libkrb5: security bump to version 1.21.3 2024-11-26 14:23:56 +01:00
libks
libksba
libldns package/libldns: bump to version 1.8.4 2024-11-12 21:52:41 +01:00
liblinear package/liblinear: change homepage url to use https 2024-11-11 15:21:37 +01:00
libllcp
liblo
liblockfile
liblog4c-localtime
liblogging
libloki
libmad package/libmad: fix deactivate typo 2024-09-19 13:56:32 +02:00
libmanette
libmatroska
libmaxminddb
libmbim
libmbus
libmd
libmdbx package/libmdbx: bump version to 0.12.12 2024-11-13 09:18:13 +01:00
libmediaart
libmemcached
libmhash
libmicrohttpd
libminiupnpc
libmms
libmng
libmnl
libmodbus package/libmodbus: bump to version 3.1.11 2024-11-20 21:55:21 +01:00
libmodplug
libmodsecurity package/libmodsecurity: fix locally typo 2024-09-19 13:56:33 +02:00
libmpdclient
libmpeg2
libmspack
libnatpmp
libndp
libnet
libnetconf2 package/libnetconf2: fix library typo 2024-09-19 13:56:34 +02:00
libnetfilter_acct
libnetfilter_conntrack
libnetfilter_cthelper
libnetfilter_cttimeout
libnetfilter_log
libnetfilter_queue
libnfc
libnfnetlink
libnfs
libnftnl
libnice
libnids
libnl
libnpth
libnpupnp
libnspr
libnss package/libnss: fix overridden typo in patch description 2024-09-19 13:56:34 +02:00
libnvme
liboauth
libodb
libodb-boost
libodb-mysql
libodb-pgsql
libogg
libolm
libopenaptx
libopenh264 package/libopenh264: bump version to 2.4.1 2024-11-12 21:55:22 +01:00
libopenssl package/libopenssl: security bump to version 3.2.3 2024-09-18 22:56:51 +02:00
liboping
libopusenc
libosip2
libosmium
libostree
libp11
libpagekite
libpam-nfc package/libpam-nfc: fix typo in help text 2024-09-19 13:56:35 +02:00
libpam-radius-auth
libpam-tacplus
libpcap package/libpcap: security bump version to 1.10.5 2024-10-12 16:57:03 +02:00
libpciaccess
libpeas package/libpeas: fix typo in help text 2024-09-19 13:56:36 +02:00
libpfm4
libphidget
libpjsip
libplatform
libplist
libpng Revert "package/libpng: bump version to 1.6.44" 2024-11-14 16:55:19 +01:00
libpqxx
libpri
libpsl
libpthread-stubs
libpthsem
libpwquality package/libpwquality: fix PAM module path 2024-09-01 10:48:29 +02:00
libqb
libqmi
libqrencode
libqrtr-glib
libraw
libraw1394
librelp
libreplaygain
libressl package/libressl: fix powerpc64 build 2024-08-31 19:15:31 +02:00
libroxml
librsvg
librsync
librtas
librtlsdr
libsamplerate
libscrypt
libseccomp
libsecret
libselinux
libsemanage
libsepol
libserial
libserialport
libsexy
libsha1 package/libsha1: Fix gcc14 compilation in libsha1 2025-01-02 12:08:49 +01:00
libshairplay
libshdata
libshout
libsidplay2
libsigc
libsigc2
libsigrok
libsigrokdecode
libsigsegv
libsilk
libsndfile package/libsndfile: add upstream post-1.2.2 security fixes 2024-12-29 20:57:47 +01:00
libsoc
libsocketcan
libsodium
libsolv
libsoundtouch
libsoup
libsoup3 package/libsoup3: security bump to version 3.6.1 2024-12-28 09:42:00 +01:00
libsoxr
libspatialindex
libspdm
libsquish
libsrtp
libss7
libssh
libssh2
libstrophe
libsvg
libsvg-cairo
libsvgtiny
libsysfs
libtalloc
libtasn1
libteam
libtelnet
libtheora
libtirpc
libtomcrypt
libtommath
libtool
libtorrent
libtorrent-rasterbar
libtpl
libtraceevent
libtracefs
libubootenv
libubox
libuci
libucl
libucontext
libudfread
libuecc package/libuecc: switch to a functional Github repo 2024-09-18 19:49:46 +02:00
libuev
libuhttpd
libuio
libunibreak
libunistring
libunwind
libupnp package/libupnp: bump to version 1.4.19 2024-08-29 12:09:11 +02:00
libupnpp
liburcu
liburing
liburiparser
libusb
libusb-compat
libusbgx
libutempter
libutp
libuv
libuwsc
libv4l
libva
libva-intel-driver
libva-utils
libvdpau
libvips
libvirt package/libvirt: do not use 'qemu' user if not defined 2025-01-09 09:58:20 +01:00
libvncserver
libvorbis
libvpl package/libvpl: not supported on mips64 2024-12-06 23:25:53 +01:00
libvpx
libwebsock
libwebsockets
libwpe
libxcrypt package/libxcrypt: make available only with glibc 2025-01-09 10:50:39 +01:00
libxkbcommon
libxml2 package/libxml2: security bump version to 2.12.9 2024-09-03 20:25:15 +02:00
libxml-parser-perl
libxmlpp
libxmlrpc
libxslt package/libxslt: bump to version 1.1.42 2024-08-29 12:10:56 +02:00
libyaml
libyang
libyuv
libzenoh-pico
libzip
libzlib
lightning package/lightning: fix build on mips64 with n32 ABI 2024-10-28 11:35:54 +01:00
lighttpd
lilv
linenoise
linknx
links
linphone
linux-backports
linux-firmware package/linux-firmware: fix typo in Config.in prompt 2024-09-20 12:33:55 +02:00
linux-fusion package/linux-fusion: fix version typo in patch description 2024-09-20 12:33:56 +02:00
linux-headers {linux, linux-headers}: bump 5.{4, 10, 15}.x / 6.{1, 6, 12}.x series 2025-01-05 21:03:42 +01:00
linux-pam package/linux-pam: backport upstream patch to fix build issue 2025-01-09 10:49:01 +01:00
linux-serial-test
linux-syscall-support
linux-tools package/linux-tools: perf: Disable shellcheck 2024-12-06 20:51:47 +01:00
linux-zigbee package/linux-zigbee: fix these typo in patch description 2024-09-20 12:33:57 +02:00
linuxconsoletools
linuxptp
liquid-dsp
lirc-tools
lite
live555
ljlinenoise
ljsyscall
lksctp-tools
lldpd package/lldpd: fix typo in help text 2024-09-20 12:33:58 +02:00
llvm-project package/llvm-project/llvm: remove overriding the ASM compiler 2024-08-12 13:20:46 +02:00
lm-sensors
lmbench package/lmbench: fix build by adjusting LDLIBS logic 2024-12-07 10:45:13 +01:00
localedef package/glibc: security bump to 2.38-81 for post-2.38 security fixes 2024-06-17 07:53:11 +02:00
lockdev
lockfile-progs
log4cplus
log4cpp
log4cxx
log4qt
logrotate
logsurfer
lpc3250loader
lpeg
lpty
lrandom
lrzip
lrzsz package/lrzsz: drop unused LRZSZ_POST_CONFIGURE_HOOKS 2024-08-31 19:23:15 +02:00
lshw
lsof
lsqlite3
lsscsi
lsuio
ltp-testsuite
ltrace package/ltrace: mark as unavailable on musl 2024-11-12 21:05:46 +01:00
ltris
lttng-babeltrace
lttng-libust
lttng-modules
lttng-tools
lua
lua-ansicolors
lua-argon2
lua-argparse
lua-augeas package/lua-augeaus: fix assignment typo 2024-09-20 12:33:59 +02:00
lua-basexx
lua-binaryheap
lua-bit32
lua-cffi
lua-cjson
lua-coat
lua-coatpersistent
lua-codegen
lua-compat53
lua-conciseserialization
lua-cqueues
lua-csnappy
lua-curl
lua-datafile
lua-dkjson
lua-ev
lua-fifo
lua-flu
lua-gd
lua-http
lua-iconv
lua-inotify
lua-livr
lua-livr-extra
lua-lpeg-patterns
lua-lunitx
lua-lunix
lua-lyaml
lua-markdown
lua-messagepack
lua-mqtt
lua-msgpack-native
lua-periphery
lua-resty-http
lua-rotas
lua-sailor
lua-sdl2
lua-silva
lua-std-debug
lua-std-normalize
lua-stdlib
lua-testmore
lua-ubjson
lua-utf8
lua-valua
lua-zlib
luabitop package/luabitop: fix typo in hash comment 2024-09-20 12:34:00 +02:00
luadbi
luadbi-sqlite3
luaexpat
luaexpatutils
luafilesystem
luainterpreter
luajit
luajson
lualdap
lualogging
luaossl
luaposix
luarocks
luasec
luasocket
luasql-sqlite3
luasyslog
lugaru
luksmeta
lutok
luv
luvi
lv2
lvm2
lxc
lynx
lz4
lzip
lzlib
lzma
lzma-alone
lzo
lzop
m4
macchanger
madplay package/madplay: fix typos in comments 2024-09-20 12:34:01 +02:00
make package/make: fix accidentally typo 2024-09-20 12:34:01 +02:00
makedevs package/makedevs/makedevs.c: fix typos 2024-09-20 12:34:02 +02:00
makedumpfile
mali-driver
mali-t76x
mariadb
matchbox
matchbox-common
matchbox-desktop
matchbox-fakekey
matchbox-keyboard
matchbox-lib
matchbox-panel
matchbox-startup-monitor
matio
mawk
mbedtls package/mbedtls: security bump to 2.28.9 2024-11-22 15:31:12 +01:00
mbpfan
mbpoll
mbuffer
mbw
mc
mcelog
mdadm
mdevd
mdio-tools package/mdio-tools: enable CONFIG_NETDEVICES 2024-09-03 18:18:02 +02:00
mdnsd
mediastreamer
memcached
memstat
memtest86
memtester
memtool
mender
mender-artifact
mender-connect
mender-grubenv
menu-cache
mesa3d Revert "package/x11r7/xlib_libxshmfence: disable on riscv32" 2024-08-12 14:59:27 +02:00
mesa3d-demos
mesa3d-headers package/{mesa3d, mesa3d-headers}: bump version to 24.0.9 2024-07-08 07:26:19 +02:00
meson
meson-tools
metacity
mfgtools
mfoc
mg
mhz
microchip-hss-payload-generator
micropython package/micropython: adjust name in description 2024-08-29 15:40:45 +02:00
midori
mii-diag
mimic
minetest
minetest-game
mini-snmpd
minicom
minidlna
minimodem
minisign
minissdpd
minizip package/minizip: fix typo in help text 2024-09-20 12:34:03 +02:00
minizip-zlib
miraclecast
mjpegtools
mjpg-streamer package/mjpg-streamer: fix undefined symbol error 2024-09-03 22:38:48 +02:00
mkpasswd
mkpimage
mksh
mmc-utils package: fix a few Config.in indentation 2024-09-19 09:11:18 +02:00
moarvm
mobile-broadband-provider-info
moby-buildkit
modem-manager
modplugtools
modsecurity2
mongodb
mongoose
mongrel2
monit
mono
mono-gtksharp3
monolite
mosh
mosquitto package/mosquitto: bump to version 2.0.20 2024-12-09 10:01:11 +01:00
most
motion
mp4v2
mpc
mpd
mpd-mpc
mpdecimal
mpfr
mpg123 package/mpg123: fix deactivate typo 2024-09-20 12:34:04 +02:00
mpir package/mpir: fix build with host gcc >= 14 2024-08-29 08:04:32 +02:00
mpv
mraa
mrouted package/mrouted: fix typos and grammar 2024-09-20 12:34:04 +02:00
mrp
msgpack
msmtp
msr-tools
mstpd
mtd
mtdev
mtools
mtr
multicat
multipath-tools
mupdf package/mupdf: make X11 support optional 2024-08-12 11:12:46 +02:00
murata-cyw-fw
musepack package/musepack: fix occurring typo in patch description 2024-09-20 12:34:05 +02:00
musl package/musl: Fix -ztext build failures on microblaze 2024-12-06 22:59:50 +01:00
musl-compat-headers package/musl-compat-headers: fix download of queue.h 2024-11-20 21:53:13 +01:00
musl-fts
mutt
mxml
mxsldr
nano
nanocom
nanomsg
nasm
nbd
ncdu
ncftp package/ncftp: use correct SPDX license code 2024-08-20 19:13:43 +02:00
ncmpc
ncurses
ndisc6
ne10
neard
neardal
neofetch
neon
neon-2-sse
nerdctl
net-tools package/net-tools: fix appropriate typo 2024-09-20 12:34:06 +02:00
netatalk package/netatalk: security bump to version 3.1.19 2024-12-29 20:58:54 +01:00
netcalc
netcat
netcat-openbsd
netdata
netifrc
netopeer2
netperf
netplug
netsniff-ng
netsnmp
netstat-nat
netsurf
netsurf-buildsystem
nettle package/nettle: update _SITE to use BR2_GNU_MIRROR 2024-12-14 09:53:44 +01:00
network-manager package/network-manager: allow building with musl 2024-07-11 10:20:14 +02:00
network-manager-openvpn
networkd-dispatcher
newlib-bare-metal
newt
nfacct
nfs-utils package/nfs-utils: fix unit dependencies without systemd on build host 2024-12-06 23:24:15 +01:00
nftables
nghttp2 package/nghttp2: security bump to 1.64.0 2024-11-13 17:26:22 +01:00
nginx package/nginx: fix symmetric typo 2024-09-20 12:34:07 +02:00
nginx-dav-ext
nginx-modsecurity package/nginx-modsecurity: fix locally typo in hash comment 2024-09-20 12:34:07 +02:00
nginx-naxsi
nginx-upload
ngircd
ngrep
nilfs-utils
ninja
nload package/nload: fix transferred typo in help text 2024-09-20 12:34:08 +02:00
nmap
nmon
nodejs package/nodejs-src: fix convenient typo in patch description 2024-09-20 12:34:09 +02:00
nodm
noip
norm
nss-mdns
nss-myhostname
nss-pam-ldapd
ntfs-3g
ntp package/ntp: add upstream-provided patch to fix regression 2024-11-20 21:46:19 +01:00
ntpsec package/ntpsec: fix host building 2024-09-18 13:13:45 +02:00
numactl
nushell
nut
nuttcp
nvidia-driver package/nvidia-driver: fix targeting typo in patch description 2024-09-20 12:34:09 +02:00
nvidia-modprobe
nvidia-persistenced
nvme
oatpp
obsidian-cursors
ocrad
octave package/octave: update _SITE to use BR2_GNU_MIRROR 2024-12-14 09:52:21 +01:00
odb
odhcp6c
odhcploc
odroidc2-firmware
ofono
ogre
ola
olsr
omap-u-boot-utils
omniorb
omxplayer
on2-8170-libs
on2-8170-modules
onevpl-intel-gpu
oniguruma
open2300 package/open2300: fix 'locally' typo 2024-12-12 21:07:18 +01:00
open62541 package/open62541: fix 'resources' typo 2024-12-12 21:07:19 +01:00
open-iscsi package/open-iscsi: open-isns is optional, not mandatory 2024-09-01 16:52:42 +02:00
open-isns
open-lldp
open-plc-utils
openal
openblas
openbox
opencl-clhpp
opencore-amr
opencsd
opencv3
opencv4
opencv4-contrib
openfpgaloader
opengl
openipmi
openjdk package/openjdk: fix typo in help text of openjdk zero 2024-11-11 15:31:32 +01:00
openjdk-bin
openjpeg
openlayers
openldap package/openldap: update to 2.5.18 2024-09-03 20:54:12 +02:00
openmpi
openntpd
openobex
openocd
openpgm
openpowerlink
openrc
openresolv
opensc package/opensc: fix build issue since bump to 0.26 2025-01-09 10:05:10 +01:00
openssh package/openssh: add CVE ignore for CVE-2024-6387 2024-07-20 10:26:13 +02:00
openssl package/libopenssl: security bump to version 3.2.3 2024-09-18 22:56:51 +02:00
openswan
opentracing-cpp
opentyrian
opentyrian-data
openvmtools
openvpn package/openvpn: fix 'accommodate' typo 2024-12-12 21:07:21 +01:00
openzwave
opkg
opkg-utils
oprofile
optee-client
optee-examples
optee-test
opus
opus-tools
opusfile
orbit
orc
ortp
osm2pgsql
owfs
owl-linux
p7zip
p11-kit
p910nd package/p910nd: update download URL 2024-09-18 22:31:34 +02:00
paho-mqtt-c
paho-mqtt-cpp
pahole
pamtester
pango
pangomm
pangomm2_46
parprouted
parted
patch
patchelf
pax-utils
paxtest
pciutils
pcm-tools package/pcm-tools: fix 'generating' typo 2024-12-12 21:07:23 +01:00
pcmanfm
pcre
pcre2
pcsc-lite
pdbg
pdmenu
perftest
perl package/perl: properly pass CFLAGS/LDFLAGS when building host-perl 2025-01-08 22:45:48 +01:00
perl-apache-logformat-compiler
perl-appconfig
perl-astro-suntime
perl-class-inspector
perl-class-load
perl-class-method-modifiers
perl-class-std
perl-class-std-fast
perl-clone
perl-convert-asn1
perl-cookie-baker
perl-crypt-blowfish
perl-crypt-cbc
perl-crypt-openssl-aes
perl-crypt-openssl-guess
perl-crypt-openssl-random
perl-crypt-openssl-rsa
perl-data-dump
perl-data-optlist
perl-data-uuid
perl-date-manip
perl-datetime-tiny
perl-dbd-mysql
perl-dbi
perl-devel-cycle
perl-devel-globaldestruction
perl-devel-size
perl-devel-stacktrace
perl-devel-stacktrace-ashtml
perl-device-serialport
perl-digest-hmac
perl-digest-sha1
perl-dist-checkconflicts
perl-encode-detect
perl-encode-locale
perl-exporter-tiny
perl-extutils-config
perl-extutils-helpers
perl-extutils-installpaths
perl-extutils-pkgconfig
perl-file-listing
perl-file-sharedir
perl-file-sharedir-install
perl-file-slurp
perl-file-util
perl-filesys-notify-simple
perl-gd
perl-gdgraph
perl-gdtextutil
perl-hash-multivalue
perl-html-parser
perl-html-tagset
perl-http-cookies
perl-http-daemon
perl-http-date
perl-http-entity-parser
perl-http-headers-fast
perl-http-message
perl-http-multipartparser
perl-http-negotiate
perl-i18n
perl-image-exiftool
perl-io-html
perl-io-interface
perl-io-socket-multicast
perl-io-socket-ssl
perl-json-maybexs
perl-json-tiny
perl-libwww-perl
perl-locale-maketext-lexicon
perl-lwp-mediatypes
perl-lwp-protocol-https
perl-mail-dkim
perl-mailtools
perl-math-int64
perl-math-prime-util
perl-mime-base64-urlsafe
perl-mime-tools
perl-module-build
perl-module-build-tiny
perl-module-implementation
perl-module-runtime
perl-mojolicious
perl-mojolicious-plugin-authentication
perl-mojolicious-plugin-authorization
perl-mojolicious-plugin-cspheader
perl-mojolicious-plugin-i18n
perl-mojolicious-plugin-securityheader
perl-moo
perl-mozilla-ca
perl-net-dns
perl-net-http
perl-net-snmp
perl-net-ssh2
perl-net-ssleay
perl-net-telnet
perl-netaddr-ip
perl-number-bytes-human
perl-package-stash
perl-params-util
perl-parse-yapp
perl-path-class
perl-path-tiny
perl-plack
perl-posix-strftime-compiler
perl-role-tiny
perl-stream-buffered
perl-sub-exporter-progressive
perl-sub-install
perl-sub-quote
perl-sys-cpu
perl-sys-meminfo
perl-sys-mmap
perl-time-parsedate
perl-timedate
perl-try-tiny
perl-type-tiny
perl-uri
perl-www-form-urlencoded
perl-www-robotrules
perl-x10
perl-xml-libxml
perl-xml-namespacesupport
perl-xml-sax
perl-xml-sax-base
petitboot
phidgetwebservice
php package/php: fix 'deactivate' typo 2024-12-12 21:07:27 +01:00
php-amqp
php-apcu
php-geoip
php-gnupg
php-imagick
php-lua
php-memcached
php-pam
php-pecl-dbus
php-ssh2
php-xdebug
php-yaml
php-zmq
physfs
phytool
picocom
pifmrds
piglit
pigpio
pigz
pimd
pinentry
pipewire
pipewire-media-session
pistache package/pistache: needs NPTL 2024-09-03 18:26:11 +02:00
pixiewps
pixman package/pixman: backport patch to fix inlining issue 2025-01-08 22:45:50 +01:00
pixz
pkcs11-helper
pkgconf
ply
pngquant
poco
poke
policycoreutils
polkit
popperjs
poppler
popt
portaudio
postgis
postgresql package/postgresql: bump version to 16.6 2024-12-06 10:25:42 +01:00
pound
powerpc-utils
powertop
powervr
pppd package/pppd: add patch fixing build issue on SPARC/SPARC64 2024-08-07 00:41:48 +02:00
pps-tools
pptp-linux
prboom
prelink-cross
privoxy
procps-ng package/procps-ng: add wchar dependency 2025-01-06 17:14:09 +01:00
procrank_linux
procs
proftpd package/proftpd: fix group name preventing server from starting 2024-09-18 19:08:08 +02:00
proj
prosody
protobuf
protobuf-c
protozero
proxychains-ng
pru-software-support
psmisc
psplash
ptm2human
ptpd
ptpd2
pugixml
pulseaudio
pulseview
pure-ftpd package/pure-ftpd: bump version to 1.0.52 2024-10-12 17:14:54 +02:00
putty
pv
pwgen
python3 package/python3: security bump to version 3.11.11 2024-12-13 18:09:21 +01:00
python-aenum
python-aexpect
python-aioblescan
python-aiocoap
python-aioconsole
python-aiodns
python-aiofiles
python-aiohttp
python-aiohttp-cors
python-aiohttp-debugtoolbar
python-aiohttp-jinja2
python-aiohttp-mako
python-aiohttp-remotes
python-aiohttp-security
python-aiohttp-session
python-aiohttp-sse
python-aiojobs
python-aiologstash
python-aiomonitor
python-aioprocessing
python-aioredis
python-aiorwlock
python-aiosignal
python-aiosqlite
python-aiozipkin
python-alembic
python-alsaaudio
python-annotated-types
python-ansicolors
python-anyio
python-apispec
python-appdirs
python-argh
python-argon2-cffi
python-argon2-cffi-bindings
python-arrow
python-asgiref
python-asn1crypto
python-asttokens
python-async-generator
python-async-lru
python-async-timeout
python-asyncssh
python-attrs
python-augeas
python-autobahn
python-automat
python-avro
python-babel
python-backcall
python-bcrypt
python-beautifulsoup4
python-beniget
python-bidict
python-bitarray
python-bitstring
python-bleak
python-blinker
python-bluezero
python-boto3
python-botocore
python-bottle
python-brotli
python-bsdiff4
python-cached-property
python-cachetools
python-calver
python-can package/python-can/Config.in: sort selects 2024-08-31 18:44:31 +02:00
python-canopen
python-cbor
python-cbor2
python-cchardet
python-certifi
python-cffi
python-channels
python-channels-redis
python-characteristic
python-chardet
python-charset-normalizer
python-cheetah
python-cheroot
python-cherrypy
python-click
python-colorama
python-colorlog
python-colorzero
python-configshell-fb
python-constantly
python-construct
python-contourpy
python-couchdb
python-cppy
python-crayons
python-crc16
python-crcmod
python-crontab
python-cryptography
python-cssselect
python-cssselect2
python-cssutils
python-cycler
python-cython
python-daemon
python-daemonize
python-daphne
python-dataproperty
python-dateutil
python-dbus-fast
python-dbus-next
python-decorator
python-decouple
python-defusedxml
python-dialog3
python-dicttoxml
python-dicttoxml2
python-distlib
python-distro
python-django package/python-django: security bump to version 5.0.10 2024-12-19 09:44:32 +01:00
python-django-enumfields
python-dnspython
python-docker
python-docker-pycreds
python-dockerpty
python-docopt
python-docutils
python-dominate
python-dpkt
python-dtschema
python-ecdsa
python-editables
python-engineio
python-entrypoints
python-esptool
python-evdev
python-executing
python-falcon
python-fastapi
python-fastapi-sessions
python-fastentrypoints
python-filelock
python-fire
python-flask
python-flask-babel
python-flask-cors
python-flask-expects-json
python-flask-jsonrpc
python-flask-login
python-flask-smorest
python-flask-sqlalchemy
python-flask-wtf
python-flatbuffers
python-flit-core
python-flup
python-fonttools
python-frozenlist
python-future
python-gast
python-git
python-gitdb2
python-glslang
python-gnupg
python-gobject
python-google-api-core
python-google-auth
python-googleapis-common-protos
python-gpiozero
python-greenlet
python-grpc-requests
python-grpcio
python-grpcio-reflection
python-gunicorn
python-h2
python-h11
python-hatch-fancy-pypi-readme
python-hatch-vcs
python-hatchling
python-hiredis
python-hkdf
python-hpack
python-html5lib
python-httpcore
python-httplib2
python-httpx
python-huepy package/python-huepy: add patch to fix LICENSE file installation 2024-09-16 12:22:07 +02:00
python-humanize
python-hwdata
python-hyperframe
python-hyperlink
python-ibmiotf
python-idna
python-ifaddr
python-incremental
python-inflection
python-influxdb
python-iniconfig
python-iniparse
python-installer
python-intelhex
python-iowait
python-ipdb
python-iptables
python-ipy
python-ipython
python-ipython-genutils
python-iso8601
python-itsdangerous
python-iwlib
python-janus
python-jaraco-classes
python-jaraco-functools
python-jedi
python-jeepney
python-jinja2
python-jmespath
python-json-schema-validator
python-jsonmodels
python-jsonschema
python-jsonschema-specifications
python-keyring
python-kflash
python-kiwisolver
python-kmod
python-lark
python-libconf
python-libconfig
python-libevdev
python-libusb1
python-lmdb
python-lockfile
python-logbook
python-logstash
python-lxml
python-m2crypto
python-magic-wormhole
python-magic-wormhole-mailbox-server
python-magic-wormhole-transit-relay
python-mako
python-markdown
python-markdown2
python-markupsafe
python-marshmallow
python-marshmallow-sqlalchemy
python-matplotlib
python-matplotlib-inline
python-maturin
python-mbstrdecoder
python-memory-profiler
python-meson-python
python-midiutil
python-mimeparse
python-minimalmodbus
python-mistune
python-ml-dtypes
python-modbus-tk
python-more-itertools
python-mpd2
python-msgfy
python-msgpack
python-multidict
python-multipart
python-munch
python-mutagen
python-mwclient
python-mwscrape
python-mwscrape2slob
python-mypy-extensions
python-nested-dict
python-netaddr
python-netifaces
python-networkmanager
python-networkx
python-numpy
python-oauthlib
python-opcua-asyncio
python-orjson
python-outcome
python-packaging
python-paho-mqtt
python-paramiko
python-parso
python-passlib
python-pathpy
python-pathspec
python-pathtools
python-pathvalidate
python-pbr
python-periphery
python-pexpect
python-pickleshare
python-piexif
python-pigpio
python-pillow
python-pip
python-pluggy
python-ply
python-portend
python-posix-ipc
python-priority
python-prompt-toolkit
python-protobuf
python-psutil
python-psycopg2 package/python-psycopg2: add config dependencies from postgresql 2024-12-06 23:19:52 +01:00
python-ptyprocess
python-pudb
python-pure-eval
python-py
python-pyaes
python-pyalsa
python-pyasn1
python-pyasn1-modules
python-pybind
python-pycairo
python-pycares
python-pycparser
python-pycrate
python-pycryptodomex
python-pycups
python-pydal
python-pydantic
python-pydantic-core
python-pydevmem
python-pydyf
python-pyelftools
python-pyftpdlib
python-pygments
python-pyhamcrest
python-pyicu
python-pyinotify
python-pyjwt
python-pylibfdt
python-pylibftdi
python-pylru
python-pymodbus
python-pymupdf package/python-pymupdf: drop dependency on X.org 2024-08-12 11:19:47 +02:00
python-pymysql
python-pynacl
python-pyndiff
python-pyopenssl
python-pypa-build
python-pyparsing
python-pyparted
python-pyphen
python-pypng
python-pyproject-hooks
python-pyproject-metadata
python-pyqrcode
python-pyqt5 package/python-pyqt5: fix 'paths' typo 2024-12-12 21:19:00 +01:00
python-pyqt5-sip package/python-pyqt5-sip: new package 2024-11-11 11:46:26 +01:00
python-pyratemp
python-pyroute2
python-pyrsistent
python-pysendfile
python-pysensors
python-pysftp
python-pysmb
python-pysmi
python-pysnmp
python-pysnmp-mibs
python-pysocks
python-pyspnego
python-pytablereader
python-pytablewriter
python-pytest
python-pytest-asyncio
python-pythran
python-pytrie
python-pytz
python-pyudev
python-pyusb
python-pyyaml
python-pyzmq
python-qrcode
python-raven
python-redis
python-reedsolo
python-reentry
python-referencing
python-regex
python-remi
python-request-id
python-requests
python-requests-oauthlib
python-requests-toolbelt
python-rfc3987
python-rpds-py
python-rpi-gpio
python-rpi-ws281x
python-rsa
python-rtoml
python-rtslib-fb
python-ruamel-yaml package/python-ruamel-yaml: fix comment in hash file 2024-07-28 13:06:57 +02:00
python-s3transfer
python-scandir
python-scapy
python-schedule
python-scipy
python-sdnotify
python-secretstorage
python-see
python-segno
python-selenium
python-semantic-version
python-semver
python-sentry-sdk
python-serial
python-serial-asyncio
python-service-identity
python-setproctitle
python-setuptools
python-setuptools-rust
python-setuptools-scm
python-sh
python-shutilwhich
python-simpleaudio
python-simplegeneric
python-simplejson
python-simplelogging
python-simplesqlite
python-sip package/python-sip: disable parallel install 2024-12-06 10:19:24 +01:00
python-six
python-slob
python-smbprotocol
python-smbus-cffi
python-smmap2
python-snappy
python-sniffio
python-socketio
python-sockjs
python-sortedcontainers
python-soupsieve
python-spake2
python-spidev
python-sqlalchemy
python-sqliteschema
python-sqlparse package/python-sqlparse: security bump to version 0.5.1 2024-09-18 18:10:18 +02:00
python-stack-data
python-starlette
python-systemd
python-tabledata
python-tcolorpy
python-tempora
python-termcolor
python-terminaltables
python-texttable
python-tftpy
python-thrift
python-tinycss2
python-tinyrpc
python-tomako
python-toml
python-tomli
python-tornado
python-tqdm
python-trafaret
python-traitlets
python-treq
python-trio
python-trio-websocket
python-trove-classifiers
python-twisted
python-txaio
python-txdbus
python-txtorcon
python-typeguard
python-typepy
python-types-python-dateutil
python-typing-extensions
python-typing-inspect
python-u-msgpack
python-ubjson
python-uhid
python-ujson
python-unittest-xml-reporting package/python-unittest-xml-reporting: add patch to fix LICENSE file installation 2024-09-16 12:23:12 +02:00
python-urllib3
python-urwid
python-urwid-readline
python-uvicorn
python-uvloop
python-validators
python-vcversioner
python-versioneer
python-versiontools
python-visitor
python-watchdog
python-wcwidth
python-weasyprint
python-web2py
python-webargs
python-webencodings
python-webob
python-webpy
python-websocket-client
python-websockets
python-werkzeug
python-wheel
python-whoosh
python-wrapt
python-ws4py
python-wsaccel
python-wsproto
python-wtforms
python-xlib
python-xlrd
python-xlsxwriter
python-xlutils
python-xlwt
python-xmljson
python-xmltodict
python-xmodem
python-yarl
python-yatl
python-zc-lockfile
python-zeroconf
python-zlmdb
python-zope-interface
python-zopfli
qcom-db410c-firmware
qdecoder
qemu
qextserialport
qhull
qjson
qlibc package/qlibc: fix 'consistent' typo in help text 2024-10-12 17:00:26 +02:00
qoriq-cadence-dp-firmware
qoriq-fm-ucode
qoriq-rcw
qpdf
qpid-proton
qprint
qt5 package/qt5virtualkeyboard: fix 'Portuguese' typo in help text 2024-10-12 17:00:29 +02:00
qt5cinex
qt6 package/qt6base: properly ignore CVE-2023-32573 2024-12-31 17:00:50 +01:00
qt-webkit-kiosk
quagga package/quagga: fetch from sources.buildroot.net 2024-12-06 10:20:57 +01:00
quazip
quickjs
quota
quotatool
qwt
rabbitmq-c
racehound
radvd
ragel
ramsmp
ramspeed
ranger
rapidjson
rapidxml package/rapidxml: fix 'usability' typo in help text 2024-10-12 17:00:31 +02:00
raptor
raspberrypi-usbboot package/raspberrypi-usbboot: bump version to 20221215-105525 2024-07-13 12:59:24 +02:00
raspi-gpio
ratpoison
rauc package: fix a few Config.in indentation 2024-09-19 09:11:18 +02:00
rauc-hawkbit-updater package/rauc-hawkbit-updater: add systemd optional dependency 2024-07-23 16:34:01 +02:00
rcw-smarc-sal28
rdesktop
rdma-core
re2
read-edid
readline
reaver
redir
redis package/redis: fix 'defaults' typo in patch description 2024-10-12 17:00:32 +02:00
redis-plus-plus
refpolicy
reproc
resiprocate
restclient-cpp
restorecond
rhash
riemann-c-client
rings
ripgrep
riscv64-elf-toolchain
riscv-isa-sim
rlwrap package/rlwrap: fix 'whether' typo in help text 2024-10-12 17:00:32 +02:00
rng-tools
rockchip-mali
rockchip-rkbin
rocksdb
rp-pppoe package/rp-pppoe: fixup download URL 2024-09-19 13:26:59 +02:00
rpcbind
rpi-firmware package/rpi-firmware: fix 'partition' typo in help text 2024-10-12 17:00:33 +02:00
rpi-rgb-led-matrix
rpi-userland
rpm
rrdtool
rs485conf
rsh-redone
rsync
rsyslog
rt-tests package/rt-tests: fix _SITE download url 2024-12-06 23:32:00 +01:00
rtai
rtc-tools
rtl8188eu
rtl8189es
rtl8189fs
rtl8192eu
rtl8723bu
rtl8723ds
rtl8723ds-bt
rtl8812au-aircrack-ng
rtl8821au
rtl8821cu
rtl8822cs
rtl_433
rtmpdump
rtorrent
rtptools
rtty
rubix
ruby package/ruby: update to 3.3.5 2024-11-09 17:51:38 +01:00
runc
rust
rust-bin
rust-bindgen
rustc
rwmem
rygel
s6
s6-dns
s6-linux-init
s6-linux-utils
s6-networking
s6-portable-utils
s6-rc
s390-tools
safeclib
sam-ba
samba4 package/samba4: bump version to 4.19.9 2025-01-02 09:16:48 +01:00
sane-backends
sbc
sconeserver
scons
screen
screenfetch
scrub
scrypt
sdbus-cpp
sdbusplus
sdl
sdl2
sdl2_gfx
sdl2_image
sdl2_mixer
sdl2_net
sdl2_ttf
sdl_gfx
sdl_image
sdl_mixer
sdl_net
sdl_sound
sdl_ttf
sdparm
seatd
sed
sedutil
selinux-python package/selinux-python: fix 'family' typo in patch description 2024-10-12 17:00:34 +02:00
semodule-utils
sentry-cli package/sentry-cli: needs pkgconf and openssl 2024-06-23 10:57:09 +02:00
sentry-native
ser2net
serd
setools
setserial
sexpect
sg3_utils
shadow
shadowsocks-libev
shairport-sync
shapelib
shared-mime-info
shellinabox
signal-estimator
sigrok-cli
simple-mail
siproxd
sispmctl
skalibs
skeleton package/skeleton: create lib64 symlink on s390x 2025-01-06 14:59:02 +01:00
skeleton-custom
skeleton-init-common
skeleton-init-none
skeleton-init-openrc
skeleton-init-systemd package/skeleton-init-systemd: fix "won't" typo in comment 2024-10-12 17:00:35 +02:00
skeleton-init-sysv
sl
slang
slirp package/slirp: fix typos in help text 2024-10-12 17:00:35 +02:00
slirp4netns
sloci-image
smack
smartmontools
smcroute package/smcroute: fix 'assume' typo 2024-10-12 17:00:36 +02:00
smstools3
snappy package/snappy: fix compilation error raised by vqtbl1q_u8 instruction 2024-07-28 11:56:32 +02:00
sngrep
snmpclitools
snmppp
snort
snort3
socat package/socat: fix 'incompatible' typo in comment 2024-10-12 17:00:37 +02:00
socketcand
sofia-sip package/sofia-sip: fix static build with openssl >= 3.2.0 2024-09-18 18:48:48 +02:00
softether package/softether: fix typos in patch description 2024-10-12 17:00:38 +02:00
softhsm2
solarus
sord
sound-theme-borealis
sound-theme-freedesktop
sox
sp-oops-extract
spandsp
spawn-fcgi
spdlog
speechd
speex package/speex: ARM5E needs ARM mode 2024-08-31 19:00:00 +02:00
speexdsp
sphinxbase
spi-tools
spice
spice-protocol
spidev_test
spirv-headers
spirv-llvm-translator
spirv-tools
sqlcipher
sqlite package/sqlite: fix 'access' typo in help text 2024-10-12 17:00:38 +02:00
squashfs
squeezelite
squid package/squid: bump version to 6.10 2024-08-10 10:47:26 +02:00
sratom
sredird
sscep
ssdp-responder
sshfs
sshguard package/sshguard: patch /usr/local/sbin/sshguard path in systemd service 2024-11-20 21:53:51 +01:00
sshpass
sslh
start-stop-daemon
startup-notification
statserial
stb
stella
stellarium
stm32flash
strace
stress
stress-ng package/stress-ng: fix 'correctly' typo in comment 2024-10-12 17:00:39 +02:00
strongswan package/strongswan: work-around wolfssl compile issue 2024-09-18 13:09:04 +02:00
stunnel
subversion package/subversion: security bump to version 1.14.5 2024-12-19 09:24:31 +01:00
sudo
sunwait
sunxi-boards
sunxi-cedarx
sunxi-mali-utgard
sunxi-mali-utgard-driver
sunxi-tools package/sunxi-tools: sunxi-fel needs dynamic library 2024-08-11 09:32:56 +02:00
supertux package/supertux: fix 'according' typo in help text 2024-10-12 17:00:40 +02:00
supertuxkart
supervisor
suricata
sway
swaybg package/swaybg: bump to version 1.2.1 2024-09-03 20:35:06 +02:00
swig
swugenerator
swupdate
sylpheed
synergy
sysdig
sysklogd package/sysklogd: fix typos in help text 2024-10-12 17:00:41 +02:00
syslog-ng
sysprof
sysrepo
sysstat
system-config-printer
systemd package/systemd: fix bcachefs magic patch 2024-12-01 20:34:29 +01:00
systemd-bootchart
sysvinit package/sysvinit: add version number to SYSVINIT_MAKE_OPTS 2024-11-11 11:35:08 +01:00
szip package/szip: update SZIP_SITE 2024-09-18 22:14:21 +02:00
taglib
tar
targetcli-fb
taskd
tbb
tcf-agent package/tcf-agent: fix 'will not' and 'unmodified' typos 2024-12-12 21:19:03 +01:00
tcl
tclap
tcllib
tcpdump
tcping
tcpreplay
tealdeer
tegrarcm
tekui
termcolor
terminology
tesseract-ocr
tftpd
thermald
thrift
thttpd
ti-cgt-pru
ti-gfx
ti-sgx-demos package/ti-sgx-demos: fix 'available' typo 2024-12-12 21:19:05 +01:00
ti-sgx-km
ti-sgx-um
ti-uim
ti-utils
tiff package/tiff: security bump to version 4.7.0 2024-11-26 14:22:31 +01:00
time
timescaledb
tinc
tini
tinifier
tinyalsa
tinycbor
tinycompress
tinydtls
tinyproxy
tinyssh package/tinyssh: fix static-only build 2024-08-31 23:47:42 +02:00
tinyxml
tinyxml2
tio
tk
tl-expected
tllist package/tllist: update download URL 2024-09-18 22:19:42 +02:00
tmux
tor package/tor: bump version to 0.4.8.13 2024-11-12 22:14:29 +01:00
tpm2-abrmd
tpm2-pkcs11
tpm2-tools
tpm2-totp
tpm2-tss package/tpm2-tss: fix 'and' typo 2024-12-12 21:19:06 +01:00
tpm-tools
trace-cmd
traceroute
transmission package/transmission: fix 'environment' and 'RECOMMENDED' typos 2024-12-12 21:19:07 +01:00
tree
tremor
triggerhappy
trinity
trousers
ts4900-fpga
tslib
tstools
ttyd
tunctl
turbolua
tvheadend
twolame
tz
tzdata package/tzdata: bump version to 2024b 2025-01-09 10:19:11 +01:00
tzdump
uacme
uboot-bootcount
uboot-tools
ubus package/ubus: remove obsolete systemd option 2024-07-28 12:05:09 +02:00
uclibc package/uclibc: add patch for libucontext usage 2024-08-28 11:07:08 +02:00
uclibc-ng-test package/uclibc-ng-test: fix build with the musl C library 2024-09-01 00:02:45 +02:00
udev
udev-gentoo-scripts
udftools
udisks
udpcast
udpxy
uemacs
uftp
uftrace
uhd
uhttpd
uhubctl
ulog
ulogd
umtprd
unbound package/unbound: security bump to version 1.21.0 2024-09-18 18:44:54 +02:00
unclutter-xfixes
unifdef
unionfs
unixodbc
unrar
unscd
unzip
upmpdcli
upower
upx
uqmi
urandom-scripts
uredir
urg
usb_modeswitch
usb_modeswitch_data
usbguard
usbmount
usbredir package/usbredir: fix package homepage URL 2024-11-26 14:08:16 +01:00
usbutils
ushare
ussp-push
ustream-ssl
utf8proc
util-linux package/util-linux: fix build with uclibc-ng < 1.0.39 2024-07-28 12:51:09 +02:00
utp_com
uuu package/uuu: update upstream link 2024-08-31 18:54:44 +02:00
uvw package/uvw: bump to 3.4.0 2024-08-08 14:01:56 +02:00
ux500-firmware
v4l2grab
v4l2loopback package/v4l2loopback: enable CONFIG_MEDIA_CAMERA_SUPPORT kernel option 2025-01-08 22:45:49 +01:00
vala
valgrind
valijson
vboot-utils
vde2
vdr
vdr-plugin-vnsiserver package/vdr-plugin-vnsiserver: fix 'several' typo 2024-12-12 21:19:09 +01:00
versal-firmware
vim package/vim: fix 'highlighting' typo 2024-12-12 21:19:10 +01:00
vis-network
vlc package/vlc: security bump to version 3.0.21 2024-07-08 22:24:12 +02:00
vmtouch
vnstat
vo-aacenc
volk
vorbis-tools
vpnc
vsftpd
vte
vtun
vuejs
vuejs-router
vulkan-headers
vulkan-loader
vulkan-tools
w_scan
waf
waffle
wampcc
watchdog
watchdogd
wavemon
wavpack
wayland
wayland-protocols
wayland-utils
waylandpp
webkitgtk package/webkitgtk: needs NPTL 2024-12-28 11:29:46 +01:00
webp
webrtc-audio-processing
websocketpp
weston Revert "package/x11r7/xlib_libxshmfence: disable on riscv32" 2024-08-12 14:59:27 +02:00
wf111
wget package/wget: security bump version to 1.25.0 2024-12-14 11:58:23 +01:00
whetstone
which
whois
wilc-driver
wilc-firmware package/wilc-firmware: fix 'acceptable' typo 2024-12-12 21:19:12 +01:00
wilink-bt-firmware
wine
wipe
wireguard-linux-compat
wireguard-tools
wireless_tools
wireless-regdb
wireplumber
wireshark package/wireshark: security bump to version 4.0.17 2024-12-14 12:50:49 +01:00
wlroots Revert "package/x11r7/xlib_libxshmfence: disable on riscv32" 2024-08-12 14:59:27 +02:00
wmctrl
woff2
wolfssl package/wolfssl: security bump to version 5.7.2 2024-08-12 22:17:41 +02:00
wolftpm
wpa_supplicant
wpan-tools
wpebackend-fdo package/wpebackend-fdo: bump version to 1.14.3 2024-11-12 21:10:32 +01:00
wpewebkit package/wpewebkit: needs NPTL 2024-12-28 11:30:21 +01:00
wqy-zenhei
wsapi
wsapi-fcgi
wsapi-xavante
wtfutil
x11r7 package/xdriver_xf86-video-qxl: fix 'appropriate' typo 2024-12-12 21:19:13 +01:00
x11vnc package/x11vnc: add and rework compile patches 2024-11-25 17:27:44 +01:00
x264 package/x264: disable assembly code on x86 + musl + PIC/PIE 2024-09-18 19:04:12 +02:00
x265 package/x265: fix runtime issue on ARMv6, ensure correctness on ARMv7 2024-08-09 21:27:59 +02:00
xapian
xavante
xdg-dbus-proxy
xdotool
xen package/xen: fix 'available' typo 2024-12-12 21:19:15 +01:00
xenomai package/xenomai: fix build with gcc 11 2024-09-19 22:27:33 +02:00
xerces
xfsprogs package/xfsprogs: update Kconfig package homepage URL 2024-07-13 13:11:47 +02:00
xinetd
xl2tp
xml-security-c
xmlstarlet
xmrig package/xmrig: bump version to 6.21.3 2024-07-08 22:27:26 +02:00
xorcurses
xorriso
xr819-xradio
xscreensaver
xtables-addons
xterm
xutil_util-macros
xvisor package/xvisor: fix RISC-V hang when BR2_SHARED_LIBS=y 2024-08-07 10:47:33 +02:00
xvkbd
xxhash
xz
yad
yaffs2utils
yajl
yaml-cpp
yasm
yavta
ympd
ytree
z3
zabbix package/zabbix: fixup download URL 2024-09-18 19:51:20 +02:00
zbar
zchunk
zd1211-firmware
zeek
zerofree
zeromq
zfs package/zfs: replace wip patch by upstream patch 2024-09-03 22:37:51 +02:00
zic package/zic: bump version to 2024b 2025-01-09 10:18:06 +01:00
zip
zisofs-tools
zlib
zlib-ng
zlog
zmqpp
znc package/znc: security bump version to 1.9.1 2024-07-11 20:31:03 +02:00
zsh
zstd
zxing-cpp
zynaddsubfx
zyre
zziplib
Config.in package/python-pyqt5-sip: new package 2024-11-11 11:46:26 +01:00
Config.in.host package/go-bootstrap-stage3: add stage3 for go1.22 support 2024-09-19 14:01:42 +02:00
doc-asciidoc.mk
Makefile.in support/scripts/apply-patches: use appropriate TAR 2024-07-08 08:40:13 +02:00
pkg-autotools.mk
pkg-cargo.mk package/pkg-carco.mk: fix 'unknown' typo 2024-12-12 21:07:30 +01:00
pkg-cmake.mk package/pkg-cmake: remove override of CMAKE_ASM_COMPILER 2024-08-12 13:20:43 +02:00
pkg-download.mk
pkg-generic.mk package/pkg-generic: fix 'globally' typo 2024-12-12 21:07:33 +01:00
pkg-golang.mk package/pkg-golang: fix 'unknown' typo 2024-12-12 21:07:35 +01:00
pkg-kconfig.mk package/pkg-kconfig: cleanup savedefconfig MAKE 2024-09-02 12:15:07 +02:00
pkg-kernel-module.mk package/pkg-kernel-module: disable CONFIG_TRIM_UNUSED_KSYMS 2025-01-08 22:59:40 +01:00
pkg-luarocks.mk
pkg-meson.mk
pkg-perl.mk
pkg-python.mk
pkg-qmake.mk
pkg-rebar.mk
pkg-utils.mk package/pkg-utils: fix 'necessary' and 'dictionary' typos 2024-12-12 21:07:36 +01:00
pkg-virtual.mk
pkg-waf.mk