kumquat-buildroot/package
Alexey Brodkin 747dff5a36 package/gcc: pass toolchain wrapper flags during build
With [1], [2] & [3] we made sure Buildroot packages get built with
proper MMU page size assumed. This was done nicely through insertion of
required flags into the toolchain wrapper so that there's no need to
pass these flags to each and every package separately - toolchain
wrapper used for real building has all set internally and so proper
flags are implicitly used.

But there's yet another corner case which is not handled that way -
these are binaries or rather libraries which are being used as a part of
GCC compilation: libgcc_s.so.1 and libstdc++.so.

And so to make sure both the libraries get built properly we need to
set TARGET_CFLAGS (cures libgcc_s.so) & TARGET_LDFLAGS (cures
libstdc++.so).

In case of ARM by defaut 64 KiB page size seems to be used, as w/o
that patch we see the following for BR2_ARM64_PAGE_SIZE_4K=y:

--------------------------->8----------------------------
$ ./output/host/bin/aarch64-linux-readelf -l ./output/target/lib/libgcc_s.so.1

Elf file type is DYN (Shared object file)
Entry point 0x0
There are 6 program headers, starting at offset 64

Program Headers:
  Type           Offset             VirtAddr           PhysAddr
                 FileSiz            MemSiz              Flags  Align
  LOAD           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000013d1c 0x0000000000013d1c  R E    0x10000
  LOAD           0x000000000001fd98 0x000000000002fd98 0x000000000002fd98
                 0x0000000000000438 0x00000000000005c8  RW     0x10000
  DYNAMIC        0x000000000001fdb8 0x000000000002fdb8 0x000000000002fdb8
                 0x0000000000000200 0x0000000000000200  RW     0x8

$ ./output/host/bin/aarch64-linux-readelf -l ./output/target/usr/lib/libstdc++.so.6.0.32

Elf file type is DYN (Shared object file)
Entry point 0x0
There are 7 program headers, starting at offset 64

Program Headers:
  Type           Offset             VirtAddr           PhysAddr
                 FileSiz            MemSiz              Flags  Align
  LOAD           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x00000000001d3462 0x00000000001d3462  R E    0x10000
  LOAD           0x00000000001d5760 0x00000000001e5760 0x00000000001e5760
                 0x000000000000e528 0x0000000000012de8  RW     0x10000
  DYNAMIC        0x00000000001deef0 0x00000000001eeef0 0x00000000001eeef0
                 0x0000000000000240 0x0000000000000240  RW     0x8
--------------------------->8----------------------------

Note alignment of 0x10000 in sections marked for loading.

And with the patch applied we get expected alignment of 0x1000 (4
KiB):

--------------------------->8----------------------------
$ ./output/host/bin/aarch64-linux-readelf -l ./output/target/lib/libgcc_s.so.1

Elf file type is DYN (Shared object file)
Entry point 0x0
There are 6 program headers, starting at offset 64

Program Headers:
  Type           Offset             VirtAddr           PhysAddr
                 FileSiz            MemSiz              Flags  Align
  LOAD           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000013d1c 0x0000000000013d1c  R E    0x1000
  LOAD           0x0000000000013d98 0x0000000000014d98 0x0000000000014d98
                 0x0000000000000438 0x00000000000005c8  RW     0x1000
  DYNAMIC        0x0000000000013db8 0x0000000000014db8 0x0000000000014db8
                 0x0000000000000200 0x0000000000000200  RW     0x8

$ ./output/host/bin/aarch64-linux-readelf -l ./output/target/usr/lib/libstdc++.so.6.0.32

Elf file type is DYN (Shared object file)
Entry point 0x0
There are 7 program headers, starting at offset 64

Program Headers:
  Type           Offset             VirtAddr           PhysAddr
                 FileSiz            MemSiz              Flags  Align
  LOAD           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x00000000001d3462 0x00000000001d3462  R E    0x1000
  LOAD           0x00000000001d3760 0x00000000001d4760 0x00000000001d4760
                 0x000000000000e528 0x0000000000012de8  RW     0x1000
  DYNAMIC        0x00000000001dcef0 0x00000000001ddef0 0x00000000001ddef0
                 0x0000000000000240 0x0000000000000240  RW     0x8
--------------------------->8----------------------------

A nice side effect is that we can get rid of the special handling of
"-matomic" as it's already part of ARCH_TOOLCHAIN_WRAPPER_OPTS.

[1] https://git.buildroot.net/buildroot/commit/?id=3cc2c6d19ab2e1bb4634f26f9318da9b07df5fff
[2] https://git.buildroot.net/buildroot/commit/?id=dcb74db89e74e512e36b32cea6f574a1a1ca84c4
[3] https://git.buildroot.net/buildroot/commit/?id=5e52c28397b79f8c4c99552217cbe95202166626

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Vladimir Isaev <VVIsaev@gmail.com>
Signed-off-by: Pavel Kozlov <kozlov@synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-01-05 23:48:43 +01:00
..
4th
18xx-ti-utils
a10disp
abootimg
ace
acl
acpica
acpid
acpitool
acsccid
adwaita-icon-theme
aer-inject
aespipe
agent-proxy
agentpp
aircrack-ng
alchemy
alfred
alsa-lib
alsa-plugins
alsa-utils
alsamixergui
altera-stapl
alure
am33x-cm3
am335x-pru-package
amlogic-boot-fip
android-tools
angular-websocket
angularjs
aoetools
apache package/apache: fix build with libxml2-2.12 2023-12-24 18:52:43 +01:00
apcupsd
apg
apitrace
apparmor
apr
apr-util
argp-standalone
argparse
argus
arm-gnu-toolchain
armadillo
armbian-firmware
arp-scan
arptables
ascii-invaders
asn1c
assimp package/assimp: bump to version 5.3.1 2023-12-29 21:55:46 +01:00
asterisk
at
at-spi2-core
atest package/atest: bump to latest commit 2023-12-30 18:51:30 +01:00
atf
atftp
atkmm
atkmm2_28
atop
attr
aubio
audit package/audit: bump to version 3.1.2 2023-12-30 18:51:40 +01:00
aufs
aufs-util
augeas
aumix
autoconf
autoconf-archive
autofs package/autofs: bump to version 5.1.9 2024-01-01 22:05:31 +01:00
automake
autossh
avahi
avocado
avrdude
avro-c
axel
axfsutils
azmq
azure-iot-sdk-c
b43-firmware
b43-fwcutter
babeld
babeltrace2
balena-engine
bandwidthd
bash
bash-completion
bat
batctl
batman-adv
bats-core
bayer2rgb-neon
bc
bcache-tools
bcg729
bcm2835
bctoolbox
bcusdk
bdwgc
bearssl
beecrypt
belle-sip
belr
benejson
bento4
berkeleydb
bind
binutils toolchain: bump ARC toolchain components to arc-2023.09-release 2024-01-05 09:31:05 +01:00
biosdevname
bird
bison
bitcoin
bitstream
bitstream-vera
bitwise
blktrace
bluez5_utils
bluez5_utils-headers
bluez-alsa
bluez-tools
bmap-tools
bmon
bmx7
boinc
bonnie
boost
bootgen
bootstrap
botan package/botan: bump to version 3.2.0 2024-01-05 14:00:54 +01:00
bpftool
brcm-patchram-plus
brcmfmac_sdio-firmware-rpi
brickd
bridge-utils
brltty
brotli
bsdiff
btrfs-progs
bubblewrap
bullet
bustle
busybox
bwm-ng
bzip2
c-ares
c-capnproto
c-icap
c-icap-modules
c-periphery
ca-certificates
cache-calibrator
cage
cairo
cairomm
cairomm1_14
can-utils
cannelloni
cantarell
capnproto
caps
casync
catatonit package/catatonit: bump to version 0.2.0 2023-12-30 18:52:37 +01:00
catch2 package/catch2: bump to version 3.5.0 2023-12-30 18:57:34 +01:00
cbootimage
cc-tool
ccache
ccid
ccrypt
cctz
cdrkit
cegui
cereal
cfm
cgic
cgilua
cgroupfs-mount
chartjs
check
checkpolicy
checksec
chipmunk
chocolate-doom
chrony
cifs-utils
circus
civetweb
cjson package/cjson: security bump to version 1.7.17 2023-12-26 14:13:09 +01:00
clamav
cli11
clinfo
cloop
clpeak
cmake package/cmake: bump version to 3.28.1 2024-01-05 13:48:21 +01:00
cmocka
cni-plugins
cog
collectd
collectl
comix-cursors
composer
conmon
connman
connman-gtk
conntrack-tools
containerd
copas
coremark
coremark-pro
coreutils
corkscrew
coxpcall
cpio
cppcms
cppdb
cppunit
cppzmq
cpuburn-arm
cpulimit
cpuload
cracklib package/cracklib: bump to version 2.9.11 2023-12-30 18:53:01 +01:00
cramfs
crda
criu
crucible
crudini
crun
cryptodev-linux package/cryptodev-linux: fix build with linux >= 6.4 2024-01-04 22:43:22 +01:00
cryptopp
cryptsetup
ctorrent
cukinia
cunit
cups package/cups: bump to version 2.4.7 2023-12-30 18:53:15 +01:00
cups-filters
cups-pk-helper
curlftpfs
curlpp
cutekeyboard
cutelyst
cvs
cwiid
cxxtest
czmq
dacapo
dado
daemon
dahdi-linux package/dahdi-linux: bump to version 3.3.0 2024-01-05 09:44:53 +01:00
dahdi-tools package/dahdi-tools: bump to version 3.3.0 2024-01-05 09:44:57 +01:00
dante
daq
daq3
darkhttpd
dash
datatables
datatables-buttons
datatables-fixedcolumns
datatables-responsive
dav1d
davfs2
davici
davinci-bootcount
dawgdic
dbus package/dbus: bump to version 1.14.10 2023-12-25 21:44:03 +01:00
dbus-broker
dbus-cpp
dbus-cxx
dbus-glib
dbus-python
dbus-triggerd
dc3dd
dcron
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
directfb-examples
dmalloc
dmenu-wayland package/dmenu-wayland: new package 2023-12-24 19:48:59 +01:00
dmidecode
dmraid
dnsmasq
docker Revert "package/docker: enable selinux module" 2024-01-02 20:55:48 +01:00
docker-cli
docker-compose
docker-engine
docopt-cpp
domoticz package/domoticz: bump to version 2024.1 2024-01-02 09:48:07 +01:00
doom-wad
dos2unix
dosfstools
dotconf
double-conversion
dovecot
dovecot-pigeonhole
doxygen
dracut
drbd-utils
dropbear package/dropbear: fix CVE-2023-48795 2024-01-02 09:51:07 +01:00
dropwatch
dstat
dt
dt-utils
dtach
dtbocfg
dtc
dtv-scan-tables
duktape
duma
dump1090 package/dump1090: bump to version 9.0 2023-12-30 18:53:21 +01:00
dust
dvb-apps
dvblast
dvbsnoop
dvdauthor
dvdrw-tools
e2fsprogs
e2tools
earlyoom
easy-rsa package/easy-rsa: bump to version 3.1.7 2024-01-05 09:45:01 +01:00
easydbus
easyframes
ebtables
ecryptfs-utils
ed
edid-decode
edk2-non-osi
edk2-platforms
efibootmgr
efivar package/efivar: add BR2_RISCV_64 in _ARCH_SUPPORTS 2024-01-05 14:00:49 +01:00
efl
eigen
ejabberd
elf2flt
elftosb
elfutils
ell package/ell: bump to version 0.61 2023-12-29 22:14:15 +01:00
embiggen-disk
emlog
empty package/empty: bump to version 0.6.23c 2023-12-29 22:14:19 +01:00
enchant
enet
enlightenment
enscript
environment-setup
erlang
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.97.1 2024-01-04 22:20:10 +01:00
exiv2
expat
expect
explorercanvas
eza
f2fs-tools
faad2
faifa
fail2ban
fakedate
fakeroot
faketime
falcosecurity-libs
fan-ctrl
fastd
fatcat
fb-test-app
fbdump
fbgrab
fbset
fbterm
fbtft
fbv
fcft package/fcft: disable uClibc support 2024-01-04 22:27:57 +01:00
fcgiwrap
fconfig
fdk-aac
feh
fetchmail
ffmpeg
fft-eval
fftw
ficl
file
filemq
findutils
fio
firewalld
firmware-utils
flac
flann
flannel
flare-engine
flare-game
flashbench
flashrom
flatbuffers
flatcc
flex
flite
flot
fltk
fluent-bit
fluid-soundfont
fluidsynth
flutter-engine
flutter-gallery
flutter-pi
flutter-sdk-bin
fluxbox
fmc
fmlib
fmt package/fmt: bump to version 1.2.0 2024-01-02 21:20:23 +01:00
fmtools
font-awesome
fontconfig
foot package/fcft: disable uClibc support 2024-01-04 22:27:57 +01:00
forge
fping
freeipmi
freeradius-client
freeradius-server
freerdp
freescale-imx
freeswitch package/freeswitch: security bump version to 1.10.11 2024-01-05 13:48:13 +01:00
freeswitch-mod-bcg729
freetype
frotz
frr
fscryptctl
fstrcmp
fswebcam
ftop
fuse-overlayfs
fwts
fwup
fxdiv
fxload
gamin
gauche
gawk
gcc package/gcc: pass toolchain wrapper flags during build 2024-01-05 23:48:43 +01:00
gcnano-binaries package/gcnano-binaries: bump version to 6.4.13 2024-01-04 23:34:05 +01:00
gconf
gcr
gd
gdal package/gdal: add sqlite optional dependency 2024-01-04 22:12:37 +01:00
gdb toolchain: bump ARC toolchain components to arc-2023.09-release 2024-01-05 09:31:05 +01:00
gdbm
gdk-pixbuf
gdk-pixbuf-xlib
genext2fs
gengetopt
genimage
genpart
genromfs
gensio
geoip
gerbera
gesftpserver
getent
gettext
gettext-gnu
gettext-tiny
gflags
ghostscript
ghostscript-fonts
giblib
giflib
git
git-crypt
gitlab-runner
gkrellm
gli package/gli: bump to latest commit 2024-01-02 21:05:58 +01:00
glib-networking
glibc package/glibc: ignore CVEs not considered as security issues by upstream 2023-12-23 11:11:37 +01:00
glibmm
glibmm2_66
glm package/glm: bump to version 0.9.9.8 2024-01-02 21:05:43 +01:00
glmark2
glog
gloox
glorytun
glslsandbox-player
gmp
gmrender-resurrect
gnu-efi
gnuchess
gnupg
gnupg2
gnuplot package/gnuplot: bump to version 5.4.10 2023-12-29 22:14:09 +01:00
gnuradio
gnutls
go
go-bootstrap-stage1
go-bootstrap-stage2
gob2
gobject-introspection
gocryptfs
google-breakpad package/google-breakpad: bump version to f49c2f1a2023da0cb055874fba050563dfea57db 2023-12-24 11:49:38 +01:00
googlefontdirectory
gperf
gpm
gpsd
gptfdisk
gqrx
gr-osmosdr
granite
grantlee
graphicsmagick
graphite2
grep
grpc
gsettings-desktop-schemas
gsl
gssdp package/gssdp: bump to version 1.6.3 2023-12-29 22:20:40 +01:00
gstreamer1 package/gstreamer1-editing-services: bump to version 1.22.8 2023-12-28 21:10:45 +01:00
gtest
gtk2-engines
gtkmm3
gtkperf
gtksourceview
guile
gumbo-parser
gupnp package/gupnp: bump to version 1.6.6 2023-12-29 22:21:30 +01:00
gupnp-av package/gupnp-av: bump to version 0.14.1 2024-01-01 21:17:03 +01:00
gupnp-dlna
gupnp-tools package/gupnp-tools: bump to version 0.12.1 2024-01-01 21:18:51 +01:00
gutenprint
gvfs
gzip
hackrf
hans
haproxy
harfbuzz
haserl
haveged
hawktracer package/hawktracer: bump to version 0.11.0 2024-01-02 21:05:39 +01:00
hddtemp
hdparm
heimdal
heirloom-mailx
hiawatha
hicolor-icon-theme
hidapi package/hidapi: bump to version 0.14.0 2024-01-02 21:20:14 +01:00
highway package/highway: bump to version 1.0.7 2024-01-02 09:53:51 +01:00
hiredis
hostapd
hplip
htop
htpdate
httping
hwdata
hwloc
hyperfine
i2c-tools
i2pd
i7z
ibm-sw-tpm2
ibrcommon
ibrdtn
ibrdtn-tools
ibrdtnd
icu
ifenslave
ifmetric
ifplugd
iftop
ifupdown
ifupdown-scripts
igd2-for-linux
igh-ethercat
igmpproxy
ijs
ima-evm-utils
imagemagick package/imagemagick: add option to build host-imagemagick with XML support 2023-12-24 19:38:25 +01:00
imlib2
imx-mkimage
imx-usb-loader
inadyn
inconsolata
inih package/inih: bump to version 57 2024-01-05 13:50:02 +01:00
initscripts
inotify-tools
input-event-daemon
intel-gmmlib package/intel-gmmlib: bump version to 22.3.16 2023-12-24 17:18:05 +01:00
intel-mediadriver package/intel-mediadriver: bump version to 23.4.3 2023-12-24 17:18:06 +01:00
intel-mediasdk
intel-microcode
intltool
iodine
iotop
iozone
ipcalc package/ipcalc: bump to version 1.0.3 2023-12-30 18:49:49 +01:00
iperf package/iperf: bump to version 2.1.9 2024-01-02 23:18:36 +01:00
iperf3
ipmitool
ipmiutil package/ipmiutil: bump to version 3.1.9 2024-01-02 23:17:35 +01:00
iproute2
iprutils
ipset
iptables
iptraf-ng
iputils package/iputils: fix IPUTILS_SITE URL 2023-12-26 22:08:41 +01:00
irda-utils
irqbalance package/irqbalance: bump to version 1.9.3 2024-01-05 13:49:53 +01:00
irrlicht
irssi
isl package/isl: bump to version 0.26 2024-01-05 13:49:57 +01:00
iucode-tool
iw
iwd
jack1
jack2
jailhouse
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
json-glib
json-javascript
jsoncpp
jszip package/jszip: bump to version 3.10.1 2024-01-05 13:50:06 +01:00
kbd
keepalived
kexec
kexec-lite
keyutils
kf5
kismet
kmemd
kmod
kmscube
kmsxx
knock
kodi
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 package/kodi-inputstream-adaptive: bump version to 20.3.15-Nexus 2023-12-24 18:53:02 +01:00
kodi-inputstream-ffmpegdirect
kodi-inputstream-rtmp
kodi-jsonschemabuilder
kodi-peripheral-joystick package/kodi-peripheral-joystick: bump version to 20.1.14-Nexus 2024-01-05 23:46:51 +01:00
kodi-peripheral-xarcade
kodi-pvr-argustv
kodi-pvr-dvblink
kodi-pvr-dvbviewer
kodi-pvr-filmon
kodi-pvr-hdhomerun
kodi-pvr-hts package/kodi-pvr-hts: bump version to 20.7.0-Nexus 2023-12-23 15:14:50 +01:00
kodi-pvr-iptvsimple
kodi-pvr-mediaportal-tvserver
kodi-pvr-mythtv package/kodi-pvr-mythtv: bump version 20.5.8-Nexus 2024-01-05 14:07:48 +01:00
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 package/kodi-pvr-waipu: bump version to 20.11.0-Nexus 2024-01-05 23:46:56 +01:00
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: security bump to version 3.5.1 2023-12-26 21:23:45 +01:00
kvazaar
kvm-unit-tests
kvmtool
kyua
lame
lapack
latencytop
lbase64
lbreakout2
lcdapi
lcdproc
lcms2 package/lcms2: bump to version 2.16 2023-12-29 21:56:06 +01:00
leafnode2
leafpad
ledmon
lensfun
leptonica
less
lesstif
let-me-create
leveldb
lft
lftp
libaacs
libabseil-cpp
libaio
libao
libapparmor
libarchive
libargon2
libargtable2
libart
libass
libassuan
libatasmart
libatomic_ops package/libatomic_ops: bump to version 7.8.2 2023-12-25 21:44:05 +01:00
libavl
libb2
libb64
libbacktrace
libbdplus
libblockdev
libbluray
libbpf
libbroadvoice
libbsd
libbson
libbytesize
libcamera package/libcamera: add i.MX8 ISI pipeline option 2023-12-27 23:30:14 +01:00
libcamera-apps Revert "package/libcamera-apps: bump to version 1.3.0" 2023-12-27 23:04:54 +01:00
libcanberra
libcap
libcap-ng package/libcap-ng: bump to version 0.8.4 2023-12-29 21:52:53 +01:00
libcdaudio
libcddb
libcdio
libcdio-paranoia
libcec
libcgi
libcgicc package/libcgicc: bump to version 3.2.20 2023-12-29 21:56:10 +01:00
libcgroup package/libcgroup: needs threads 2024-01-02 23:17:31 +01:00
libcli
libcoap
libcodec2
libcofi
libconfig
libconfuse
libcorrect
libcpprestsdk
libcrossguid
libcsv
libcue
libcuefile
libcurl package/libcurl: fix build with GnuTLS and no verbose 2023-12-23 11:28:51 +01:00
libcutl
libdaemon
libdbi
libdbi-drivers
libde265 package/libde265: security bump to version 1.0.15 2023-12-26 21:23:29 +01:00
libdecor
libdeflate
libdill
libdisplay-info
libdmtx
libdnet
libdri2
libdrm package/libdrm: bump version to 2.4.119 2024-01-05 13:48:17 +01:00
libdvbcsa
libdvbpsi
libdvbsi
libdvdcss
libdvdnav
libdvdread
libeastl
libebml package/libebml: security bump to version 1.4.5 2023-12-26 21:23:41 +01:00
libebur128
libedit
libee
libenca
libepoxy
liberation
libesmtp
libest
libestr
libev
libevdev
libevent
libexecinfo
libexif
libeXosip2
libfastjson
libfcgi
libffi
libfm
libfm-extra
libfreefare
libfreeglut
libfreeimage
libfribidi
libftdi
libftdi1
libfuse
libfuse3
libfutils
libg7221
libgcrypt
libgdiplus
libgee
libgeos
libgeotiff
libgit2
libglade
libglew
libglfw
libglib2
libglob
libglu
libglvnd
libgpg-error
libgpgme
libgphoto2
libgpiod
libgsasl
libgsm
libgta
libgtk2
libgtk3 package/libgtk3: bump to version 3.24.39 2023-12-25 21:44:07 +01:00
libgudev
libhdhomerun
libheif package/libheif: security bump to version 1.17.6 2023-12-26 21:23:25 +01:00
libhid
libhtp
libhttpparser
libhttpserver package/libhttpserver: bump to version 0.19.0 2023-12-30 18:49:58 +01:00
libiberty
libical
libiconv
libid3tag
libidn
libidn2
libiec61850 package/libiec61850: bump to version 1.5.3 2024-01-01 21:36:46 +01:00
libiio package/libiio: fix build with libxml2 >= 2.12 2024-01-01 21:34:46 +01:00
libilbc
libimxvpuapi
libinput
libiqrf
libiscsi
libite
libjpeg
libjson
libjxl package/libjxl: bump to version 0.9.0 2024-01-02 09:54:03 +01:00
libkcapi
libkrb5
libks
libksba
libldns
liblinear
libllcp
liblo
liblockfile
liblog4c-localtime
liblogging
libloki
libmad
libmanette
libmatroska
libmaxminddb
libmbim
libmbus
libmd
libmdbx
libmediaart
libmemcached
libmhash
libmicrohttpd
libminiupnpc
libmms
libmng
libmnl
libmodbus
libmodplug
libmodsecurity package/libmodsecurity: bump to version 3.0.11 2023-12-23 14:41:45 +01:00
libmpdclient package/libmpdclient: bump to version 2.22 2023-12-29 22:13:34 +01:00
libmpeg2
libmspack
libnatpmp
libndp
libnet
libnetconf2
libnetfilter_acct
libnetfilter_conntrack
libnetfilter_cthelper
libnetfilter_cttimeout
libnetfilter_log
libnetfilter_queue
libnfc
libnfnetlink
libnfs
libnftnl
libnice
libnids
libnl package/libnl: bump to version 3.9.0 2024-01-01 22:05:51 +01:00
libnpth
libnpupnp
libnspr
libnss
libnvme
liboauth
libodb
libodb-boost
libodb-mysql
libodb-pgsql
libogg
libolm
libopenaptx
libopenh264 package/libopenh264: bump to version 2.4.0 2024-01-01 22:05:55 +01:00
libopenssl package/libopenssl: fix build without MMU 2024-01-02 21:06:31 +01:00
liboping
libopusenc
libosip2
libosmium
libostree package/libostree: switch to libsoup3 2023-12-30 18:57:29 +01:00
libp11
libpagekite
libpam-nfc
libpam-radius-auth
libpam-tacplus
libpcap
libpciaccess
libpeas
libpfm4
libphidget
libpjsip
libplatform
libplist
libpng
libpqxx
libpri
libpsl
libpthread-stubs
libpthsem
libpwquality
libqb
libqmi
libqrencode
libqrtr-glib
libraw package/libraw: bump to version 0.21.2 2023-12-29 21:55:50 +01:00
libraw1394
librelp package/librelp: bump to version 1.11.0 2024-01-01 22:07:27 +01:00
libreplaygain
libressl
libroxml
librsvg
librsync
librtas
librtlsdr
libsamplerate
libscrypt
libseccomp package/libseccomp: bump to version 2.5.5 2024-01-01 22:07:32 +01:00
libsecret
libselinux
libsemanage
libsepol
libserial
libserialport
libsexy
libsha1
libshairplay
libshdata
libshout
libsidplay2
libsigc
libsigc2
libsigrok
libsigrokdecode
libsigsegv package/libsigsegv: fix musl build with powerpc 2024-01-02 23:17:01 +01:00
libsilk
libsndfile
libsoc
libsocketcan
libsodium
libsolv
libsoundtouch
libsoup package/libsoup: fix build with libxml2 2.12 2023-12-27 22:41:43 +01:00
libsoup3 package/libsoup3: enable vala bindings 2024-01-01 22:16:41 +01:00
libsoxr
libspatialindex
libspdm
libsquish
libsrtp
libss7
libssh package/libssh: security bump to version 0.10.6 2023-12-23 15:14:16 +01:00
libssh2 package/libssh2: fix CVE-2023-48795 2024-01-02 09:50:53 +01:00
libstrophe
libsvg
libsvg-cairo
libsvgtiny
libsysfs
libtalloc
libtasn1
libteam
libtelnet
libtheora
libtirpc
libtomcrypt
libtommath
libtool
libtorrent
libtorrent-rasterbar
libtpl
libubootenv
libubox
libuci
libucl package/libucl: bump to version 0.8.2 2024-01-01 22:07:40 +01:00
libucontext
libudfread
libuecc
libuev
libuhttpd
libuio
libunibreak
libunistring
libunwind
libupnp
libupnpp
liburcu
liburing package/liburing: bump to version 2.5 2023-12-29 21:56:02 +01:00
liburiparser
libusb
libusb-compat
libusbgx
libutempter package/libutempter: fix license information 2023-12-20 23:38:19 +01:00
libutp
libuv
libuwsc
libv4l
libva
libva-intel-driver
libva-utils package/libva-utils: bump version to 2.20.1 2023-12-24 17:32:14 +01:00
libvdpau
libvips
libvirt
libvncserver
libvorbis
libvpl package/libvpl: bump version to 2.10.1 2023-12-24 17:32:04 +01:00
libvpx
libwebsock
libwebsockets package/libwebsockets: fix wolfssl build 2024-01-05 14:00:56 +01:00
libwpe
libxcrypt
libxkbcommon
libxml2 package/libxml2: bump to version 2.12.3 2024-01-01 22:05:42 +01:00
libxml-parser-perl
libxmlpp package/libxmlpp: fix build with libxml2 >= 2.12 2024-01-01 21:09:39 +01:00
libxmlrpc
libxslt package/libxslt: bump to version 1.1.39 2023-12-24 18:52:25 +01:00
libyaml
libyang
libyuv
libzenoh-pico
libzip
libzlib
lightning
lighttpd
lilv
linenoise
linknx
links
linphone
linux-backports
linux-firmware
linux-fusion
linux-headers {linux, linux-headers}: bump 5.{10, 15}.x / 6.{1, 6}.x series 2024-01-05 23:47:14 +01:00
linux-pam
linux-serial-test
linux-syscall-support
linux-tools
linux-zigbee
linuxconsoletools
linuxptp package/linuxptp: bump version to 4.2 2024-01-04 22:35:39 +01:00
liquid-dsp
lirc-tools
lite
live555
ljlinenoise
ljsyscall
lksctp-tools
lldpd package/lldpd: bump to version 1.0.17 2023-12-29 22:14:17 +01:00
llvm-project
lm-sensors
lmbench
localedef
lockdev
lockfile-progs
log4cplus
log4cpp package/log4cpp: bump to version 1.1.4 2024-01-01 22:07:58 +01:00
log4cxx
log4qt
logrotate package/logrotate: bump to version 3.21.0 2024-01-01 22:08:04 +01:00
logsurfer
lpc3250loader
lpeg
lpty
lrandom
lrzip
lrzsz
lshw
lsof package/lsof: fix build without wchar or locale 2024-01-05 13:43:19 +01:00
lsqlite3
lsscsi
lsuio
ltp-testsuite
ltrace
ltris
lttng-babeltrace
lttng-libust
lttng-modules
lttng-tools
lua
lua-ansicolors package/lua-ansicolors: new package 2023-12-23 18:04:22 +01:00
lua-argon2
lua-argparse package/lua-argparse: new package 2023-12-23 18:05:00 +01:00
lua-augeas
lua-basexx
lua-binaryheap
lua-bit32
lua-cffi
lua-cjson
lua-coat
lua-coatpersistent
lua-codegen
lua-compat53
lua-conciseserialization package/lua-conciseserialization: new package 2023-12-23 18:13:43 +01:00
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 package/lua-messagepack: bump to version 0.5.4 2023-12-23 18:12:59 +01:00
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 package/lua-ubjson: new package 2023-12-23 18:18:51 +01:00
lua-utf8
lua-valua
lua-zlib
luabitop
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
make
makedevs
makedumpfile
mali-driver
mali-t76x
mariadb
matchbox
matchbox-common
matchbox-desktop
matchbox-fakekey
matchbox-keyboard
matchbox-lib
matchbox-panel
matchbox-startup-monitor
matio package/matio: bump to version 1.5.26 2024-01-02 21:09:28 +01:00
mawk
mbedtls
mbpfan
mbpoll
mbuffer
mbw
mc
mcelog
mdadm
mdevd
mdio-tools
mdnsd
mediastreamer
memcached
memstat
memtest86
memtester
memtool
mender
mender-artifact
mender-connect
mender-grubenv
menu-cache
mesa3d package/{mesa3d, mesa3d-headers}: bump version to 23.3.1 2024-01-05 14:06:30 +01:00
mesa3d-demos
mesa3d-headers package/{mesa3d, mesa3d-headers}: bump version to 23.3.1 2024-01-05 14:06:30 +01:00
meson
meson-tools
metacity
mfgtools
mfoc
mg
mhz
microchip-hss-payload-generator
micropython
micropython-lib
midori
mii-diag
mimic
minetest
minetest-game
mini-snmpd
minicom
minidlna
minimodem
minissdpd
minizip package/minizip: bump to version 4.0.3 2023-12-29 22:14:07 +01:00
minizip-zlib
miraclecast
mjpegtools
mjpg-streamer
mkpasswd
mkpimage
mksh
mmc-utils
moarvm
mobile-broadband-provider-info
moby-buildkit
modem-manager
modplugtools
modsecurity2
mongodb
mongoose
mongrel2
monit
mono
mono-gtksharp3
monolite
mosh
mosquitto
most
motion package/motion: bump to version 4.6.0 2023-12-29 21:55:58 +01:00
mp4v2 package/mp4v2: security bump to version 2.1.3 2023-12-27 20:15:55 +01:00
mpc
mpd
mpd-mpc package/mpd-mpc: bump to version 0.35 2024-01-05 14:00:55 +01:00
mpdecimal
mpfr
mpg123
mpir
mpv
mraa
mrouted
mrp
msgpack
msmtp
msr-tools
mstpd
mtd
mtdev
mtools
mtr
multicat
multipath-tools
mupdf
murata-cyw-fw
musepack
musl
musl-compat-headers
musl-fts
mutt
mxml
mxsldr
mysql
nano
nanocom
nanomsg
nasm
nbd package/nbd: bump to version 3.25 2024-01-01 21:33:10 +01:00
ncdu package/ncdu: bump to version 1.19 2024-01-01 21:33:52 +01:00
ncftp
ncmpc package/ncmpc: bump to version 0.49 2023-12-29 22:14:08 +01:00
ncurses package/ncurses: install foot terminfo if foot is selected 2023-12-24 22:48:26 +01:00
ndisc6
ne10
neard package/neard: bump to version 0.19 2024-01-01 22:05:34 +01:00
neardal
neofetch
neon
neon-2-sse
nerdctl
net-tools
netatalk
netcalc
netcat
netcat-openbsd
netdata
netifrc
netopeer2
netperf
netplug
netsniff-ng
netsnmp
netstat-nat
netsurf
netsurf-buildsystem
nettle
network-manager
network-manager-openvpn
networkd-dispatcher
newt
nfacct
nfs-utils package/nfs-utils: bump version to 2.6.4 2024-01-02 23:22:55 +01:00
nftables
nghttp2
nginx
nginx-dav-ext
nginx-modsecurity
nginx-naxsi
nginx-upload
ngircd
ngrep
nilfs-utils
ninja
nload
nmap
nmon
nodejs
nodm
noip
norm
nss-mdns
nss-myhostname
nss-pam-ldapd
ntfs-3g
ntp
ntpsec
numactl
nushell
nut
nuttcp
nvidia-driver
nvidia-modprobe
nvidia-persistenced
nvme
oatpp
obsidian-cursors
ocrad
octave
odb
odhcp6c
odhcploc
odroidc2-firmware
ofono package/ofono: bump to version 2.2 2023-12-29 22:14:16 +01:00
ogre
ola
olsr
omap-u-boot-utils
omniorb
omxplayer
on2-8170-libs
on2-8170-modules
onevpl-intel-gpu package/onevpl-intel-gpu: add CPE variables 2023-12-26 21:21:21 +01:00
oniguruma
open2300
open62541
open-iscsi
open-isns
open-lldp
open-plc-utils
openal
openblas
openbox
opencl-clhpp
opencore-amr
opencsd
opencv3
opencv4
opencv4-contrib
openfpgaloader
opengl
openipmi
openjdk
openjdk-bin
openjpeg
openlayers
openldap
openmpi
openntpd
openobex
openocd
openpgm
openpowerlink
openrc package/openrc: bump version to 0.52.1 2023-12-23 21:00:39 +01:00
openresolv
opensc package/opensc: security bump to version 0.24.0 2023-12-26 21:23:37 +01:00
openssh
openssl
openswan
opentracing-cpp
opentyrian
opentyrian-data
openvmtools
openvpn
openzwave
opkg
opkg-utils
oprofile
optee-client
optee-examples
optee-test
opus
opus-tools
opusfile
oracle-mysql
orbit
orc package/orc: bump to version 0.4.34 2024-01-02 21:09:23 +01:00
ortp
osm2pgsql
owfs
owl-linux
p7zip
p11-kit package/p11-kit: bump to version 0.25.3 2024-01-02 21:09:18 +01:00
p910nd
paho-mqtt-c
paho-mqtt-cpp
pahole
pamtester
pango
pangomm
pangomm2_46
parprouted
parted
patch
patchelf
pax-utils package/pax-utils: bump to version 1.3.7 2024-01-02 21:08:15 +01:00
paxtest
pciutils
pcm-tools
pcmanfm
pcre
pcre2
pcsc-lite
pdbg
pdmenu
perftest package/perftest: bump to version 23.10.0-0.29 2023-12-24 19:18:25 +01:00
perl package/perl: fix static build 2024-01-02 21:10:28 +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: bump version to 8.2.14 2023-12-24 18:52:50 +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 package/picocom: bump to version 2023-04 2024-01-04 22:44:05 +01:00
pifmrds
piglit
pigpio
pigz
pimd
pinentry
pipewire
pipewire-media-session
pistache
pixiewps
pixman
pixz
pkcs11-helper package/pkcs11-helper: bump to version 1.30.0 2023-12-29 22:14:13 +01:00
pkgconf
ply
pngquant
poco
poke
policycoreutils
polkit
popperjs
poppler
popt
portaudio
postgis package/postgis: bump to version 3.4.1 2024-01-05 13:50:18 +01:00
postgresql package/postgresql: bump version to 16.1 2024-01-02 22:48:05 +01:00
pound
powerpc-utils
powertop
powervr
pppd
pps-tools
pptp-linux
prboom
prelink-cross
privoxy
procps-ng
procrank_linux
procs
proftpd package/proftpd: security bump to version 1.3.8b 2024-01-02 09:48:30 +01:00
proj
prosody
protobuf
protobuf-c
protozero
proxychains-ng
pru-software-support
psmisc
psplash
ptm2human
ptpd
ptpd2
pugixml package/pugixml: bump to version 1.14 2024-01-05 13:50:27 +01:00
pulseaudio
pulseview
pure-ftpd
putty package/putty: security bump to version 0.80 2023-12-23 15:14:08 +01:00
pv package/pv: bump to version 1.8.5 2024-01-05 13:51:06 +01:00
pwgen
python3 package/python3: add option to support curses in host-python 2023-12-24 18:51:35 +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 package/python-aiomonitor: bump to version 0.7.0 2024-01-04 22:35:37 +01:00
python-aioprocessing
python-aioredis
python-aiorwlock
python-aiosignal
python-aiozipkin
python-alembic
python-alsaaudio
python-annotated-types
python-ansicolors
python-anyio package/python-anyio: new package 2023-12-25 11:30:16 +01:00
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 package/python-asyncssh: security bump to version 2.14.2 2024-01-02 09:53:14 +01:00
python-attrs
python-augeas
python-autobahn
python-automat
python-avro
python-babel
python-backcall
python-bcrypt
python-beautifulsoup4
python-beniget
python-bidict
python-bitstring
python-bleak
python-blinker
python-bluezero
python-boto3
python-botocore
python-bottle
python-brotli
python-bsdiff4
python-cached-property
python-cachetools package/python-cachetools: new package 2024-01-02 23:34:43 +01:00
python-calver
python-can
python-canopen
python-cbor
python-cbor2
python-cchardet
python-certifi package/python-certifi: bump to version 2023.11.17 2023-12-24 18:54:36 +01:00
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 package/python-contourpy: needs C++ 2024-01-02 21:06:59 +01:00
python-couchdb
python-cppy
python-crayons
python-crc16
python-crcmod
python-crontab
python-crossbar
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 package/python-decouple: new package 2023-12-25 11:11:51 +01:00
python-defusedxml
python-dialog3
python-dicttoxml
python-dicttoxml2
python-distlib
python-distro
python-django
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 package/python-fastapi: add CPE variables 2023-12-26 14:13:03 +01:00
python-fastapi-sessions package/python-fastapi-sessions: new package 2023-12-25 21:20:05 +01:00
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 package/python-google-api-core: new package 2024-01-02 23:36:12 +01:00
python-google-auth package/python-google-auth: new package 2024-01-02 23:34:46 +01:00
python-googleapis-common-protos package/python-googleapis-common-protos: new package 2024-01-02 23:35:38 +01:00
python-gpiozero
python-greenlet
python-grpc-requests package/python-grpc-requests: new package 2024-01-02 23:36:34 +01:00
python-grpcio package/python-grpcio: new package 2024-01-02 23:34:38 +01:00
python-grpcio-reflection package/python-grpcio-reflection: new package 2024-01-02 23:34:41 +01:00
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 package/python-httpcore: new package 2023-12-25 21:24:37 +01:00
python-httplib2
python-httpx package/python-httpx: add CPE variables 2023-12-26 14:13:07 +01:00
python-huepy
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-maturin
python-mbstrdecoder
python-memory-profiler
python-meson-python
python-midiutil
python-mimeparse
python-minimalmodbus
python-mistune
python-ml-dtypes package/python-ml-dtypes: new package 2023-12-25 11:20:24 +01:00
python-modbus-tk
python-more-itertools
python-mpd2
python-msgfy
python-msgpack
python-multidict
python-multipart package/python-multipart: new package 2023-12-25 11:12:20 +01:00
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 package/python-paramiko: security bump to version 3.4.0 2024-01-02 09:52:53 +01:00
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
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-pygame
python-pygments
python-pyhamcrest
python-pyicu
python-pyinotify
python-pyjwt
python-pylibfdt
python-pylibftdi
python-pylru
python-pymodbus
python-pymupdf
python-pymysql
python-pynacl
python-pyndiff
python-pyopenssl
python-pypa-build
python-pyparsing
python-pyparted
python-pyphen
python-pyproject-hooks
python-pyproject-metadata
python-pyqrcode
python-pyqt5
python-pyratemp
python-pyroute2
python-pyrsistent
python-pysendfile
python-pysensors package/python-pysensors: fix build without host lm-sensors 2024-01-05 13:47:24 +01:00
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
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-setuptools-scm-git-archive
python-sh
python-shutilwhich
python-simpleaudio
python-simplegeneric
python-simplejson
python-simplelogging
python-simplesqlite
python-sip
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 package/python-sqlalchemy: bump version to 2.0.25 2024-01-04 23:04:05 +01:00
python-sqliteschema
python-sqlparse
python-stack-data
python-starlette package/python-starlette: add CPE variables 2023-12-26 14:13:02 +01:00
python-systemd
python-tabledata
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 package/python-trafaret: new package 2024-01-04 22:35:36 +01:00
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 package/python-typing-extensions: bump to version 4.9.0 2023-12-25 11:29:53 +01:00
python-typing-inspect
python-u-msgpack
python-ubjson
python-uhid
python-ujson
python-unittest-xml-reporting
python-urllib3
python-urwid
python-urwid-readline
python-uvicorn package/python-uvicorn: add CPE variables 2023-12-26 14:13:05 +01:00
python-uvloop
python-validators package/python-validators: bump to version 0.22.0 2024-01-02 09:54:30 +01:00
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 package/python-werkzeug: security bump to version 2.3.8 2024-01-02 09:54:39 +01:00
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
qoriq-cadence-dp-firmware
qoriq-fm-ucode
qoriq-rcw
qpdf
qpid-proton
qprint
qt5
qt5cinex
qt6 package/qt6base: remove $(TARGET_DIR)/usr/mkspecs in target-finalize 2023-12-28 21:31:42 +01:00
qt-webkit-kiosk
quagga
quazip
quickjs
quota
quotatool
qwt package/qt6base: remove $(TARGET_DIR)/usr/mkspecs in target-finalize 2023-12-28 21:31:42 +01:00
rabbitmq-c
racehound
radvd
ragel
ramsmp
ramspeed
ranger
rapidjson
rapidxml
raptor
raspberrypi-usbboot
raspi-gpio
ratpoison
rauc package/rauc: bump version to 1.11 2024-01-04 22:35:38 +01:00
rauc-hawkbit-updater
rcw-smarc-sal28
rdesktop
rdma-core
re2
read-edid
readline
reaver
redir
redis
redis-plus-plus
refpolicy
reproc
resiprocate
restclient-cpp
restorecond
rhash package/rhash: bump to version 1.4.4 2024-01-01 22:15:56 +01:00
riemann-c-client
rings
ripgrep
riscv64-elf-toolchain
riscv-isa-sim
rng-tools
rockchip-mali
rockchip-rkbin
rocksdb
rp-pppoe
rpcbind
rpi-firmware
rpi-rgb-led-matrix
rpi-userland
rpm
rrdtool
rs485conf
rsh-redone
rsync
rsyslog
rt-tests
rtai
rtc-tools
rtl8188eu package/rtl8188eu: bump to 2023-12-04 version on v5.2.2.4 branch 2023-12-23 15:53:05 +01:00
rtl8189es
rtl8189fs
rtl8192eu
rtl8723bu package/rtl8723bu: bump to 2023-12-04 version 2023-12-23 15:52:49 +01:00
rtl8723ds
rtl8723ds-bt
rtl8812au-aircrack-ng
rtl8821au
rtl8821cu
rtl8822cs
rtl_433 package/rtl_433: bump to version 23.11 2023-12-29 21:55:54 +01:00
rtmpdump
rtorrent
rtptools
rtty
rubix
ruby
runc
rust package/{rust, rust-bin}: bump to version 1.74.1 2023-12-30 18:58:30 +01:00
rust-bin package/{rust, rust-bin}: bump to version 1.74.1 2023-12-30 18:58:30 +01:00
rust-bindgen
rustc package/{rust, rust-bin}: bump to version 1.74.1 2023-12-30 18:58:30 +01:00
rwmem
rygel
s6
s6-dns
s6-linux-init
s6-linux-utils
s6-networking
s6-portable-utils
s6-rc
s390-tools
safeclib
sam-ba
samba4
sane-backends
sbc
sconeserver
scons
screen
screenfetch
scrub
scrypt package/scrypt: bump to version 1.3.2 2024-01-01 22:15:46 +01:00
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
semodule-utils
sentry-cli
sentry-native
ser2net
serd
setools
setserial
sexpect
sg3_utils
shadow
shadowsocks-libev
shairport-sync
shapelib package/shapelib: bump to version 1.6.0 2023-12-29 22:14:12 +01:00
shared-mime-info
shellinabox
signal-estimator
sigrok-cli
simple-mail
siproxd
sispmctl
skalibs
skeleton
skeleton-custom
skeleton-init-common
skeleton-init-none
skeleton-init-openrc
skeleton-init-systemd
skeleton-init-sysv
sl
slang
slirp
slirp4netns
sloci-image
smack
smartmontools
smcroute
smstools3
snappy
sngrep
snmpclitools
snmppp
snort
snort3
socat
socketcand
sofia-sip
softether
softhsm2
solarus
sord
sound-theme-borealis
sound-theme-freedesktop
sox
sp-oops-extract
spandsp
spawn-fcgi
spdlog
speechd
speex
speexdsp
sphinxbase
spi-tools
spice
spice-protocol
spidev_test
spirv-headers
spirv-llvm-translator
spirv-tools
sqlcipher
sqlite
squashfs
squeezelite
squid package/squid: security bump to version 6.6 2023-12-26 22:06:02 +01:00
sratom
sredird
sscep
ssdp-responder
sshfs
sshguard
sshpass
sslh
start-stop-daemon
startup-notification
statserial
stb
stella
stellarium
stm32flash
strace
stress package/stress: bump to version 1.0.7 2024-01-04 22:21:14 +01:00
stress-ng
strongswan package/strongswan: security bump to version 5.9.13 2023-12-26 21:23:33 +01:00
stunnel
subversion
sudo
sunwait
sunxi-boards
sunxi-cedarx
sunxi-mali-utgard
sunxi-mali-utgard-driver
sunxi-tools
supertux
supertuxkart
supervisor
suricata
sway package/sway/Config.in: Add a help note about the default terminal 2023-12-24 23:22:58 +01:00
swaybg
swig
swugenerator
swupdate package/swupdate: bump version to 2023.12 2023-12-23 18:41:56 +01:00
sylpheed
synergy
sysdig
sysklogd
syslog-ng
sysprof
sysrepo
sysstat
system-config-printer
systemd
systemd-bootchart
sysvinit
szip
taglib
tar
targetcli-fb
taskd
tbb
tcf-agent
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
ti-sgx-km
ti-sgx-um
ti-uim
ti-utils
tiff
time
timescaledb
tinc
tini
tinifier
tinyalsa
tinycbor
tinycompress
tinydtls
tinymembench
tinyproxy
tinyssh package/tinyssh: security bump to version 20240101 2024-01-02 09:48:20 +01:00
tinyxml
tinyxml2 package/tinyxml2: bump to version 10.0.0 2024-01-04 22:20:22 +01:00
tio
tk
tl-expected
tllist
tmux
tor
tpm2-abrmd
tpm2-pkcs11
tpm2-tools
tpm2-totp
tpm2-tss
tpm-tools
trace-cmd
traceroute
transmission
tree
tremor
triggerhappy
trinity
trousers
ts4900-fpga
tslib
tstools
ttyd
tunctl
turbolua
tvheadend package/tvheadend: bump version 2024-01-04 22:23:22 +01:00
twolame
tz
tzdata
tzdump
uacme
uboot-tools
ubus
uclibc
uclibc-ng-test
udev
udev-gentoo-scripts
udftools
udisks
udpcast
udpxy
uemacs
uftp
uftrace
uhd
uhttpd
uhubctl
ulog
ulogd
umtprd
unbound
unclutter-xfixes
unifdef
unionfs
unixodbc
unrar package/unrar: bump version to 6.2.12 2023-12-23 15:24:08 +01:00
unscd
unzip
upmpdcli
upower
upx package/upx: bump to version 4.2.1 2023-12-30 18:51:20 +01:00
uqmi
urandom-scripts
uredir
urg
usb_modeswitch
usb_modeswitch_data
usbguard
usbmount
usbredir
usbutils package/usbutils: bump to version 017 2024-01-04 22:12:53 +01:00
ushare
ussp-push
ustream-ssl
utf8proc package/utf8proc: bump to version 2.9.0 2024-01-04 22:12:06 +01:00
util-linux
utp_com
uuu
uvw
ux500-firmware
v4l2grab
v4l2loopback
vala package/vala: bump to version 0.56.14 2024-01-02 21:24:12 +01:00
valgrind
valijson package/valijson: bump to version 1.0.2 2024-01-04 22:10:37 +01:00
vboot-utils
vde2
vdr
vdr-plugin-vnsiserver
versal-firmware
vim
vis-network
vlc
vmtouch
vnstat package/vnstat: bump to version 2.11 2024-01-04 22:11:07 +01:00
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 package/wavpack: bump to version 5.6.0 2023-12-29 22:14:20 +01:00
wayland
wayland-protocols
wayland-utils
waylandpp
webkitgtk
webp
webrtc-audio-processing
websocketpp
weston
wf111
wget
whetstone
which
whois
wilc-driver
wilc-firmware
wilink-bt-firmware
wine
wipe
wireguard-linux-compat
wireguard-tools
wireless_tools
wireless-regdb
wireplumber
wireshark
wlroots package/wlroots: add hwdata and hwdata_pnp_ids as a dependency 2023-12-23 15:46:58 +01:00
wmctrl
woff2
wolfssl package/wolfssl: security bump to version 5.6.6 2023-12-27 20:16:32 +01:00
wolftpm
wpa_supplicant
wpan-tools
wpebackend-fdo
wpewebkit
wqy-zenhei
wsapi
wsapi-fcgi
wsapi-xavante
wtfutil
x11r7 package/x11r7/xserver_xorg-server: security bump to version 21.1.10 2024-01-01 21:37:48 +01:00
x11vnc
x264
x265
xapian
xavante
xdg-dbus-proxy
xdotool
xen
xenomai
xerces
xfsprogs
xinetd
xl2tp
xml-security-c
xmlstarlet package/xmlstarlet: fix build with libxml2-2.12 2023-12-23 21:34:44 +01:00
xmrig package/xmrig: bump version to 6.21.0 2023-12-23 18:43:37 +01:00
xorcurses
xorriso
xr819-xradio package/xr819-xradio: bump to version 2023-12-25 2023-12-29 22:14:11 +01:00
xscreensaver
xtables-addons
xterm
xutil_util-macros
xvisor
xvkbd
xxhash
xz package/xz: bump to version 5.4.5 2023-12-25 21:44:11 +01:00
yad
yaffs2utils
yajl
yaml-cpp
yasm
yavta
ympd
ytree
z3
zabbix
zbar
zchunk
zd1211-firmware
zeek
zerofree
zeromq
zfs
zic
zip
zisofs-tools
zlib
zlib-ng
zlog package/zlog: bump to version 1.2.17 2023-12-27 20:17:41 +01:00
zmqpp
znc
zsh
zstd
zxing-cpp
zynaddsubfx
zyre
zziplib
Config.in package/python-trafaret: new package 2024-01-04 22:35:36 +01:00
Config.in.host
doc-asciidoc.mk
Makefile.in
pkg-autotools.mk
pkg-cargo.mk
pkg-cmake.mk
pkg-download.mk
pkg-generic.mk
pkg-golang.mk
pkg-kconfig.mk
pkg-kernel-module.mk
pkg-luarocks.mk
pkg-meson.mk
pkg-perl.mk
pkg-python.mk
pkg-qmake.mk package/pkg-qmake.mk: drop host-perl dependency 2023-12-28 21:41:20 +01:00
pkg-rebar.mk
pkg-utils.mk
pkg-virtual.mk
pkg-waf.mk