Commit Graph

5582 Commits

Author SHA1 Message Date
Rosen Penev
e9b710181d lrzsz: fix compilation with gcc15
Add gnu11 to fix compilation. Support for the latest standard takes too
much patching.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2025-10-12 20:04:29 +03:00
Rosen Penev
da5a55a352 lcdproc: fiz compilation with gcc15
__GNU__LIBRARY needs to be defined for a proper definition.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2025-10-12 20:03:09 +03:00
Florian Eckert
7cd42ff940 lm-sensors: packaging isaset and isadump
Also packages isaset and isadump for x86 target only:

isadump:
Is a small helper program to examine registers visible through the ISA bus.

isaset:
Is a small helper program to set registers visible through the ISA bus.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2025-10-12 19:20:09 +03:00
董昊 (Dong, Hao)
ece701bc5a fish: update to 4.1.2
This release fixes several regressions in 4.1.0, including:
- Fixed spurious error output when completing remote file paths for scp
- Fixed the alt-l binding for formatting ls output
- Fixed multiline prompt redraw issues with focus events
- Fixed Midnight Commander compatibility issues
- Fixed Zellij escape key processing
- Fixed web-based configuration tool issue
- Fixed pasting into fish -c read

Signed-off-by: 董昊 (Dong, Hao) <dong_hao@vip.qq.com>
2025-10-12 19:10:57 +03:00
Josef Schlehofer
4e41b92347 base16384: update to version 2.3.2
Release notes:
https://github.com/fumiama/base16384/releases/tag/v2.3.2

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2025-10-11 19:00:56 +03:00
Michal Hrusecky
63b4501754 mariadb: update to 11.8.3
Update to the latest version in 11.8 stable branch.

See https://mariadb.org/11-8-lts-released/ for main changes.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
2025-10-06 19:18:19 -03:00
Javier Marcet
212213d77e docker-compose: Update to version 2.40.0
Release notes:
https://github.com/docker/compose/releases/tag/v2.40.0

Signed-off-by: Javier Marcet <javier@marcet.info>
2025-10-06 16:30:36 +08:00
Michal Hrusecky
d50b5e583c mariadb: add unconditional dependency on libaio
MariaDB now depends on libaio even when uring is enabled.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
2025-10-05 11:21:17 -03:00
Sven Eckelmann
ababcfd7a7 poemgr: update to latest HEAD
17771dd poemgr: Add support for Plasma Cloud PSX28
530433d poemgr: Add support for RTL8239 PSE solution
8821bad poemgr: Add support for Plasma Cloud PSX8/PSX10
ab466a7 poemgr: Add support for IP8008 PSE chip
7863fa8 poemgr: Add support to display POE output type
d81ac54 poemgr: Add support to export port specific device specific metrics
497a9d9 openwrt: Sync with packages feed Makefile
5033450 pd69104: Avoid resource leaks (memory, fds) on init failure

Signed-off-by: Sven Eckelmann <sven@narfation.org>
2025-10-05 11:18:08 -03:00
Josef Schlehofer
3bf64e39b2 gzip: update to version 1.14
Add TARGET_CFLAGS += -std=gnu17
to fix following error discovered by CI/CD:
2025-09-30T23:53:47.3168066Z In file included from gzip.c:66:
2025-09-30T23:53:47.3189341Z gzip.c:131:34: error: expected declaration specifiers or '...' before numeric constant
2025-09-30T23:53:47.3190258Z   131 | # define BUFFER_ALIGNED alignas (4096)
2025-09-30T23:53:47.3190760Z       |                                  ^~~~
2025-09-30T23:53:47.3191259Z gzip.h:108:39: note: in definition of macro 'DECLARE'
2025-09-30T23:53:47.3191864Z   108 | #  define DECLARE(type, array, size)  type array[size]
2025-09-30T23:53:47.3192411Z       |                                       ^~~~
2025-09-30T23:53:47.3192942Z gzip.c:135:13: note: in expansion of macro 'BUFFER_ALIGNED'
2025-09-30T23:53:47.3193587Z   135 | DECLARE(uch BUFFER_ALIGNED, inbuf,  INBUFSIZ +INBUF_EXTRA);
2025-09-30T23:53:47.3194137Z       |             ^~~~~~~~~~~~~~
2025-09-30T23:53:47.3194752Z gzip.c:131:34: error: expected declaration specifiers or '...' before numeric constant
2025-09-30T23:53:47.3195442Z   131 | # define BUFFER_ALIGNED alignas (4096)
2025-09-30T23:53:47.3195880Z       |                                  ^~~~
2025-09-30T23:53:47.3196330Z gzip.h:108:39: note: in definition of macro 'DECLARE'
2025-09-30T23:53:47.3197297Z   108 | #  define DECLARE(type, array, size)  type array[size]
2025-09-30T23:53:47.3197829Z       |                                       ^~~~
2025-09-30T23:53:47.3198342Z gzip.c:136:13: note: in expansion of macro 'BUFFER_ALIGNED'
2025-09-30T23:53:47.3199113Z   136 | DECLARE(uch BUFFER_ALIGNED, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
2025-09-30T23:53:47.3199957Z       |             ^~~~~~~~~~~~~~
2025-09-30T23:53:47.3200589Z gzip.c:131:34: error: expected declaration specifiers or '...' before numeric constant
2025-09-30T23:53:47.3201250Z   131 | # define BUFFER_ALIGNED alignas (4096)
2025-09-30T23:53:47.3201688Z       |                                  ^~~~
2025-09-30T23:53:47.3202128Z gzip.h:108:39: note: in definition of macro 'DECLARE'
2025-09-30T23:53:47.3202665Z   108 | #  define DECLARE(type, array, size)  type array[size]
2025-09-30T23:53:47.3203150Z       |                                       ^~~~
2025-09-30T23:53:47.3203642Z gzip.c:138:13: note: in expansion of macro 'BUFFER_ALIGNED'
2025-09-30T23:53:47.3204203Z   138 | DECLARE(uch BUFFER_ALIGNED, window, 2L*WSIZE);
2025-09-30T23:53:47.3204684Z       |             ^~~~~~~~~~~~~~

- Release announcement:
https://lists.gnu.org/archive/html/info-gnu/2025-04/msg00007.html

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2025-10-02 17:07:06 +03:00
George Sapkin
97e8ac4f66 syncthing: bump to 2.0.10
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.10
Signed-off-by: George Sapkin <george@sapk.in>
2025-10-02 00:50:17 -03:00
Niklas Thorild
a5da0e757b telegraf: update to 1.36.2
- Update Telegraf to v1.36.2
- Remove HOME environment variable in service file

Signed-off-by: Niklas Thorild <niklas@thorild.se>
2025-10-01 18:07:41 +03:00
Josef Schlehofer
9d141eb9d5 mariadb: update to version 11.4.8
Release notes:
https://mariadb.com/docs/release-notes/community-server/mariadb-11-4-series/mariadb-11.4.8-release-notes

Refreshed patch

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2025-10-01 08:39:16 +02:00
Eric Fahlgren
29e614fa86 owut: update to 2025.09.27
Bug fixes:
    efahl/owut@f049043ed7 owut: use installed SSL certs instead of default

Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com>
2025-09-28 13:35:37 +08:00
Javier Marcet
71709b8de9 docker-compose: Update to version 2.39.4
Release notes:
https://github.com/docker/compose/releases/tag/v2.39.4

Signed-off-by: Javier Marcet <javier@marcet.info>
2025-09-27 21:09:10 +08:00
Josef Schlehofer
90d29954df mpack: drop package
The package is ancient, old and not developed anymore.
Project URL on GitLab shows 404, I could find it on Debian GitLab [1].

[1] https://salsa.debian.org/debian/mpack

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2025-09-26 12:11:37 +02:00
Maxim Storchak
2a1e7734ed lvm2: disable readline and interactive shell
remove support of interactive mode in /sbin/lvm

Benefits:
- drop dependency on readline and ncurses (-700kb if there are no other users of these libs)
- shrink the lvm binary itself (-260k)

Drawback:
- lose interactive shell:
lvm> vgchange -ay
  4 logical volume(s) in volume group "vg0" now active
lvm>

"lvm <subcommand> --params" and "<subcommand> --params" entry points are still available

Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2025-09-25 12:54:52 +01:00
Christian Korber
f576054742 ufp: update to 2025.09.23
Update to latest version, which enables ubus calls via uhttpd.

Signed-off-by: Christian Korber <ck@dev.tdt.de>
2025-09-25 09:52:20 +02:00
Josef Schlehofer
15c969af46 dysk: drop unmaintained package here
This package was introduced in https://github.com/openwrt/packages/pull/22592
and it has not received any update in this repository despite
the upstream releases new versions.

Because, we dont have enough man power to keep it updated,
lets drop this.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2025-09-25 07:38:57 +02:00
Alexandru Ardelean
9ab19754f2 stress-ng: bump to version 0.19.04
This change bumps the version of stress-ng to 0.19.04

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2025-09-23 17:50:46 +03:00
Alexandru Ardelean
a1562ef772 squashfs-tools: bump to version 4.7.2
Contains backported patch '0001-print_pager-add-missing-includes.patch'
so we can remove it.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2025-09-23 17:49:42 +03:00
George Sapkin
4c95537060 temperusb: drop package
- unmaintained upstream
- drop confirmed by maintainer
- last local commit:
  commit: 4ca726ae02
  Author: Samuel Progin <samuel.progin@gmail.com>
  Date:   Thu, 2 May 2019 21:46:30 +0200

  temperusb: package upgrade

- no PKG_MAINTAINER in Makefile

Link: https://github.com/openwrt/packages/pull/26400#issuecomment-2847739732
Signed-off-by: George Sapkin <george@sapk.in>
2025-09-23 13:11:55 +02:00
George Sapkin
507c5c91b6 syncthing: bump to 2.0.9
Major version change that switches DB backend from
LevelDB to SQLite. Requires golang 1.24+.

- improve syncthing argument parsing to be more
  robust
- remove unused and add updated config options

Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.0
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.1
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.2
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.3
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.4
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.5
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.6
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.7
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.8
Changelog: https://github.com/syncthing/syncthing/releases/tag/v2.0.9
Signed-off-by: George Sapkin <george@sapk.in>

wip

Signed-off-by: George Sapkin <george@sapk.in>
2025-09-21 14:20:53 +03:00
Nate Robinson
1fd9f95a37 lf: update to r38
https://github.com/gokcehan/lf/releases/tag/r38

Signed-off-by: Nate Robinson <nrobinson2000@me.com>
2025-09-20 17:36:46 -03:00
Luiz Angelo Daros de Luca
513d270e3e sane-backends: update to 1.4.0
Changelog: https://gitlab.com/sane-project/backends/-/releases/1.4.0
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2025-09-20 23:22:57 +08:00
Fabrice Fontaine
98adfcdc0d gnuplot: fix PKG_CPE_ID
gnuplot_project:gnuplot has been deprecated in favour of
gnuplot:gnuplot:
https://nvd.nist.gov/products/cpe/detail/DB68C9F5-3330-4749-A6F5-61FF041037CC

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2025-09-20 23:13:03 +08:00
Ted Hess
578016e5b3 cmdpad: Remove from packages and move to packages-abondoned
Signed-off-by: Ted Hess <thess@kitschensync.net>
2025-09-17 13:20:39 -04:00
Rosen Penev
bd5bc2f1b4 cmdpad: fix compilation with GCC 15
There's no parameter to this function.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2025-09-17 12:58:18 -04:00
Tianling Shen
3d6e7e487f yq: Update to 4.47.2
Release note: https://github.com/mikefarah/yq/releases/tag/v4.47.2

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2025-09-17 16:43:54 +08:00
Niklas Thorild
a213eed10d telegraf: update to 1.36.1
- Update Telegraf to v1.36.1
- Adjust "telegraf.conf" to new defaults
- Set HOME environment variable in service file
- Change maintainer

Signed-off-by: Niklas Thorild <niklas@thorild.se>
2025-09-16 17:13:17 -03:00
Javier Marcet
29b34fa6db docker-compose: Update to version 2.39.3
Release notes:
https://github.com/docker/compose/releases/tag/v2.39.3

Signed-off-by: Javier Marcet <javier@marcet.info>
2025-09-16 22:03:25 +08:00
Tianling Shen
6f6ad3fe1c arp-whisper: do not lock deps
The version specified in Cargo.lock is too old to build.

Trim whitespaces while at it.

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2025-09-12 14:47:16 +08:00
Wesley Gimenes
7de0c8799b dockerd: remove cgroupfs-mount dependency
The package `cgroupfs-mount` has been removed.

Signed-off-by: Wesley Gimenes <wehagy@proton.me>
2025-09-10 19:11:48 -03:00
Wesley Gimenes
3f06a3b775 cgroupfs-mount: remove package
A user opened an issue[1] in the upstream repository to migrate
the package from GitHub to Debian Salsa, but the upstream response[2]
was as follows:

> If any work happens on this package, it should be to deprecate and remove
> it, not migrate it (that's a waste of effort).

[1] https://github.com/tianon/cgroupfs-mount/issues/24
[2] https://github.com/tianon/cgroupfs-mount/issues/24#issuecomment-2663677115

Signed-off-by: Wesley Gimenes <wehagy@proton.me>
2025-09-10 19:11:48 -03:00
Rosen Penev
c2c210fd42 sumo: add missing fmt dependency
Apparently it's used by sumo.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2025-09-08 15:36:13 +03:00
Florian Eckert
f9e7e2db94 unzip: add valid patche headers and missing CVE informations
This commit adds a valid git patch header for each patch, so that
additional information can be stored. This is in this case and 'CVE:' tag.
This can be used by CVE scanner to find out if the patch fixes a CVE.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2025-09-08 09:23:42 +02:00
Carl-Daniel Hailfinger
a80cc41f20 realtek-poe: increase version to 1.3
* Add support for RTL8238B

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
2025-09-06 03:35:17 +08:00
Eric Fahlgren
96ab3378d0 owut: update to 2025.09.03
Bug fixes:
    efahl/owut@5743eea3bc owut: suppress all but json output when using dump
    efahl/owut@efe39e2e38 owut: handle sigint (ctrl-c) properly
Enhancements:
    efahl/owut@49e9bce7b8 owut: provide download progress for slow connections

Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com>
2025-09-03 17:22:53 -03:00
Gregory Gullin
2d05ae0b4e micro: add new package
Modern and intuitive terminal-based text editor

https://micro-editor.github.io

Co-authored-by: Wesley Gimenes <wehagy+github@gmail.com>
Signed-off-by: Gregory Gullin <garuwex@gmail.com>
2025-08-31 14:14:23 +03:00
Aleksey Vasilenko
d52e588182 bc: update to 1.08.2
- Remove autoreconf and GCC 15 workaround
- Remove 3 obsolete/upstreamed patches
- Manually rebase no-doc patch

Signed-off-by: Aleksey Vasilenko <aleksey.vasilenko@gmail.com>
2025-08-31 01:30:45 +03:00
Ulrich Stark
6b27cc5170 lsof: fix compilation issue with "libtirpc"
adding --without-libtirpc to CONFIGURE_ARGS + version bump. Ref.: https://github.com/openwrt/packages/issues/27357

Signed-off-by: Ulrich Stark <pwned-pixel@posteo.de>
2025-08-30 10:35:18 +03:00
Nate Robinson
8705423201 lf: update to r37
https://github.com/gokcehan/lf/releases/tag/r37

Signed-off-by: Nate Robinson <nrobinson2000@me.com>
2025-08-29 18:03:19 -03:00
Niklas Thorild
6f190b4cad telegraf: update to 1.35.4
- Update Telegraf to v1.35.4
- Adjust GO_PKG_LDFLAGS_X to reflect upstream changes in version metadata
- Add default configuration file (Telegraf no longer includes one)
- Drop deprecated tcp_listener and udp_listener plugins from telegraf-small
- Rework how plugins for small variant are specified to reflect upstream changes
- Add -static TARGET_LDFLAGS for MIPS target to avoid R_MIPS_26 relocation errors during build

Signed-off-by: Niklas Thorild <niklas@thorild.se>
2025-08-28 12:24:44 +03:00
John Audia
763f984e4f lm-sensors: fix build with glibc
The lm-sensors build was failing on glibc-based targets with:
  ld: cannot find -liconv: No such file or directory

which occurred because the upstream Makefile unconditionally links
against -liconv, but glibc has iconv functionality built-in and does not
provide a separate libiconv library.

I submitted the new patch upstream to fix this:
https://github.com/hramrach/lm-sensors/pull/14

This change is backward compatible based on my testing building
lm-sensors for x86/64 with glibc and again with musl after having
applied the patch.

Build system: x86/64
Build-tested: x86/64-glibc and x86/64
Run-tested: x86/64-glibc (Intel N150 based box)

Signed-off-by: John Audia <therealgraysky@proton.me>
2025-08-25 17:29:59 +02:00
Sven Eckelmann
d3b2286128 poemgr: update to latest HEAD
f1f093852aba poemgr: drop prefix from json-c include
adfb382a996a poemgr: Fix missing/unused includes
27d53374601b Makefile: compile object files before linking
e07fdec5e1cf Makefile: use LDLIBS to link libraries
1e6659b786e8 Makefile: mark targets without any output
f7f147977891 Makefile: reference output file using variable
aa3ae603099a Makefile: Add missing license header

Signed-off-by: Sven Eckelmann <sven@narfation.org>
2025-08-25 17:29:31 +02:00
Gregory Gullin
ebb0d87450 nnn: update to version 5.1
Release notes: https://github.com/jarun/nnn/compare/v4.9...v5.1

Signed-off-by: Gregory Gullin <garuwex@gmail.com>
2025-08-24 19:50:48 +03:00
Jonas Jelonek
57bc583f75 i2csfp: update to latest Git HEAD
This fixes build with GCC15.

Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
2025-08-24 19:46:17 +03:00
George Sapkin
d75075ce8e syncthing: improve relay argument parsing
Fixes: 47644ba46 ("syncthing: fix discovery and relay extra args")
Signed-off-by: George Sapkin <george@sapk.in>
2025-08-24 19:43:57 +03:00
George Sapkin
6ccb3b6174 syncthing: improve discovery argument parsing
Fixes: 47644ba46 ("syncthing: fix discovery and relay extra args")
Signed-off-by: George Sapkin <george@sapk.in>
2025-08-24 19:43:57 +03:00
Hannu Nyman
d3e4d5549d treewide: adjust local CMakeLists.txt min version to cmake 4.x
cmake 4.x will require 'cmake_minimum_required' defined in cmake
projects to be at least 3.5. Adjust those local sources where that
variable is currently defined with value below 3.5.

Use 3.30 as the value, as 3.30 is currently used in 24.10, the oldest
still supported OpenWrt release branch.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2025-08-23 22:40:53 +03:00