Thomas Petazzoni
3e4e261a16
package/gconf: remove package, broken
...
gconf has not seen any release since 2013, and the last commit in
https://gitlab.gnome.org/Archive/gconf is from 2015.
The package example application basic-gconf-app fails to build with a
recent compiler such as GCC 14.x:
basic-gconf-app.c:458:60: error: passing argument 1 of ‘gtk_dialog_get_content_area’ from incompatible pointer type [-Wincompatible-pointer-types]
It is not entirely clear since when this breakage takes place, but
most likely since GCC 14.x was introduced. This issue can be
reproduced including on 2025.02.x with the following defconfig:
BR2_aarch64=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
BR2_PACKAGE_MESA3D=y
BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST=y
BR2_PACKAGE_MESA3D_OPENGL_EGL=y
BR2_PACKAGE_MESA3D_OPENGL_ES=y
BR2_PACKAGE_LIBGTK3=y
BR2_PACKAGE_GCONF=y
However, for the build issue to happen you need to run:
$ make libgtk3
$ make
So that libgtk3 gets built before gconf. Indeed, there's a hidden
dependency between the two, and the example programs of gconf only get
build if libgtk3 is built before. We've however encountered the
problem in a (real) bigger build where the dependency relationship of
packages have caused libgtk3 to get built before gconf.
Note that we could perhaps have fixed the problem by disabling the
examples, but gconf is anyway so old and deprecated that it isn't
worth the effort.
There are no known autobuilder issues.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2026-01-16 21:54:38 +01:00
Thomas Petazzoni
81bc8bbd5b
package/libsvg: remove package
...
This package is no longer maintained, no release since 2005, and it
has build issues as it uses too old XML APIs:
/home/thomas/projets/buildroot/output/host/bin/../aarch64-buildroot-linux-gnu/sysroot/usr/include/libxml2/libxml/SAX.h:18:4: warning: #warning "libxml/SAX.h is deprecated" [-Wcpp]
18 | #warning "libxml/SAX.h is deprecated"
| ^~~~~~~
svgint.h:42:9: error: unknown type name 'xmlParserCtxtPtr'
42 | typedef xmlParserCtxtPtr svg_xml_parser_context_t;
| ^~~~~~~~~~~~~~~~
Fixes:
https://autobuild.buildroot.net/results/895fdba2f3fcaa42aa93946f2532351d39b16647/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2026-01-16 21:54:36 +01:00
Thomas Petazzoni
8680db4582
package/libsvg-cairo: remove package
...
This package is no longer maintained, no release since 2005, and its
dependency libsvg has build issues as it uses too old XML APIs:
/home/thomas/projets/buildroot/output/host/bin/../aarch64-buildroot-linux-gnu/sysroot/usr/include/libxml2/libxml/SAX.h:18:4: warning: #warning "libxml/SAX.h is deprecated" [-Wcpp]
18 | #warning "libxml/SAX.h is deprecated"
| ^~~~~~~
svgint.h:42:9: error: unknown type name 'xmlParserCtxtPtr'
42 | typedef xmlParserCtxtPtr svg_xml_parser_context_t;
| ^~~~~~~~~~~~~~~~
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2026-01-16 21:54:21 +01:00
Julien Olivain
598237cb15
package/gnupg2: bump to version 2.5.16
...
For release announce, see:
https://lists.gnupg.org/pipermail/gnupg-announce/2025q4/000500.html
Quoting the announce:
"""
Note that the 2.5 series is now declared the stable version of GnuPG.
The oldstable 2.4 series will reach end-of-life in just 6 months.
"""
Also, an important feature in the 2.5 series is the introduction of
Kyber (aka ML-KEM or FIPS-203) as PQC (Post-Quantum Cryptography)
encryption algorithm.
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2026-01-16 21:34:08 +01:00
Julien Olivain
9868f67d38
boot/edk2: add a new Kconfig option to pass arbitrary build options
...
EDK2 build may include extra options. Those are usually in the form
of "-D SOMEFLAG_ENABLE" and might be specific for a processor
architecture or a platform. For example:
"-D NETWORK_HTTP_BOOT_ENABLE", "-D NETWORK_TLS_ENABLE", ...
Those options are generally documented in their respective packages.
See for example:
https://github.com/tianocore/edk2/blob/master/OvmfPkg/README
This commit adds a new Kconfig string option to let the use define
arbitrary build flags.
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2026-01-16 21:25:30 +01:00
Julien Olivain
99b4067859
package/ddrescue: bump version to 1.30
...
For release announce, see:
https://lists.gnu.org/archive/html/info-gnu/2026-01/msg00001.html
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2026-01-16 21:20:53 +01:00
Bernd Kuhls
85fa070335
package/libpng: security bump version to 1.6.54
...
Release notes:
https://raw.githubusercontent.com/pnggroup/libpng/v1.6.54/ANNOUNCE
* Fixed CVE-2026-22695 (medium severity):
Heap buffer over-read in `png_image_read_direct_scaled.
(Reported and fixed by Petr Simecek.)
* Fixed CVE-2026-22801 (medium severity):
Integer truncation causing heap buffer over-read in `png_image_write_*`
Updated license hash due to copyright year bump:
9e4e247afb
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-15 23:13:35 +01:00
Waldemar Brodkorb
f594f86f9d
package/ruby: bump to 4.0.0
...
See here for a Changelog:
https://www.ruby-lang.org/en/news/2025/12/25/ruby-4-0-0-released
License files were updated. Apache and Boost License were added.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org >
[Julien: update link in hash file comment]
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-14 21:49:56 +01:00
Gilles Talis
2e382cea6a
package/xapian: bump to version 1.4.30
...
ChangeLog:
https://xapian.org/docs/xapian-core-1.4.30/NEWS
Signed-off-by: Gilles Talis <gilles.talis@gmail.com >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-14 21:30:07 +01:00
Gilles Talis
c183602cb3
package/tesseract-ocr: bump to version 5.5.2
...
Change logs, since version 5.5.0:
https://github.com/tesseract-ocr/tesseract/releases/tag/5.5.1
https://github.com/tesseract-ocr/tesseract/releases/tag/5.5.2
Signed-off-by: Gilles Talis <gilles.talis@gmail.com >
[Julien: update change log links]
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-14 21:29:55 +01:00
Gilles Talis
517af4da01
package/leptonica: bump to version 1.87.0
...
Release notes:
http://www.leptonica.org/source/version-notes.html
Signed-off-by: Gilles Talis <gilles.talis@gmail.com >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-14 21:24:46 +01:00
Bernd Kuhls
5b748550e5
package/stellarium: bump version to 25.4
...
https://stellarium.org/release/2025/12/29/stellarium-25.4.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-14 21:21:23 +01:00
Bernd Kuhls
73ab737a25
package/privoxy: bump version to 4.1.0
...
https://www.privoxy.org/gitweb/?p=privoxy.git;a=blob;f=ChangeLog;h=4a45820271febac332f183dd763749393dc97adf;hb=ad5cec777f1180c28f6fa229f4b587a2f245adf1
"- Removed support for pcre1."
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-14 21:16:40 +01:00
Bernd Kuhls
2f4d619a4c
package/bitcoin: bump to version 30.2
...
https://bitcoincore.org/en/releases/30.2/
Note: this version fixes an important wallet migration bug present in
version 30.0 and 30.1. See:
https://bitcoincore.org/en/2026/01/05/wallet-migration-bug/
Updated license hash due to copyright year bump:
ed0774bd08
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
[Julien: add note about wallet migration bug]
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-14 20:58:24 +01:00
Bernd Kuhls
63a49b514d
package/x11r7/xdriver_xf86-input-mouse: remove package
...
In version 2.0.0 Linux support was removed:
https://lists.x.org/archives/xorg-announce/2025-August/003624.html
"This mouse driver is primarily used with BSD, GNU Hurd, illumos, &
Solaris systems. Linux systems should instead use either xf86-input-
libinput or xf86-input-evdev.
While versions 1.9.5 and earlier had rudimentary support for Linux as
well, that has been removed in this release."
Alternative packages can not be selected due to udev dependencies.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
[Julien: add extra info in Config.in.legacy comment]
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
ab8fdd0b90
package/x11r7/xutil_makedepend: bump version to 1.0.9
...
https://lists.x.org/archives/xorg-announce/2024-February/003457.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
59b504e03d
package/x11r7/xlib_libXvMC: bump version to 1.0.14
...
https://lists.x.org/archives/xorg-announce/2024-February/003456.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
51c0505365
package/x11r7/xdriver_xf86-video-amdgpu: bump version to 25.0.0
...
https://lists.freedesktop.org/archives/amd-gfx/2025-July/127936.html
Switched build system to meson after autotools removal.
Added optional dependency to udev provided by meson build system.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
0193daf7a5
package/x11r7/xfont_font-adobe-utopia-75dpi: bump version to 1.0.5
...
https://lists.x.org/archives/xorg-announce/2023-February/003344.html
Used tarball hashes provided by upstream.
Switched tarball to xz.
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
b66fb7264e
package/x11r7/xdriver_xf86-input-libinput: bump version to 1.5.0
...
https://lists.x.org/archives/xorg-announce/2024-October/003543.html
https://lists.x.org/archives/xorg-announce/2023-August/003417.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
e828e6a926
package/x11r7/xfont_font-util: bump version to 1.4.1
...
https://lists.x.org/archives/xorg-announce/2023-September/003418.html
Updated license hash due to upstream commits:
c28d8ca618
5a9e7c7d3c
ecbf1fa15e
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
dec410c636
package/x11r7/xdriver_xf86-video-siliconmotion: bump version to 1.7.10
...
https://lists.x.org/archives/xorg-announce/2023-September/003421.html
Switched tarball to xz.
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
88d6e75a53
package/x11r7/xlib_libXrandr: bump version to 1.5.4
...
https://lists.x.org/archives/xorg-announce/2023-October/003427.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
965a86b38a
package/x11r7/xapp_xbiff: bump version to 1.0.5
...
https://lists.x.org/archives/xorg-announce/2024-January/003445.html
Switched tarball to xz.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
fdd7607b53
package/x11r7/xapp_bitmap: bump version to 1.1.1
...
https://lists.x.org/archives/xorg-announce/2024-February/003447.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
e3619e4cfa
package/x11r7/xapp_xditview: bump version to 1.0.7
...
https://lists.x.org/archives/xorg-announce/2024-February/003449.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
025a32d63b
package/x11r7/xapp_xmore: bump version to 1.0.4
...
https://lists.x.org/archives/xorg-announce/2024-February/003451.html
Updated license hash due to upstream commit:
f1d979d7a3
Switched tarball to xz.
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
789649b288
package/x11r7/xlib_libXext: bump version to 1.3.6
...
https://lists.x.org/archives/xorg-announce/2024-February/003454.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
e55fa54460
package/x11r7/xlib_libxkbfile: bump version to 1.1.3
...
https://lists.x.org/archives/xorg-announce/2024-February/003455.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
c727b80125
package/x11r7/xlib_libfontenc: bump version to 1.1.8
...
https://lists.x.org/archives/xorg-announce/2024-March/003462.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
2dd99a0163
package/x11r7/xfont_encodings: bump version to 1.1.0
...
https://lists.x.org/archives/xorg-announce/2024-March/003466.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
ff31dba5f7
package/x11r7/xlib_libXdmcp: bump version to 1.1.5
...
https://lists.x.org/archives/xorg-announce/2024-March/003467.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
c77a2eb944
package/x11r7/xapp_editres: bump version to 1.0.9
...
https://lists.x.org/archives/xorg-announce/2024-March/003469.html
Switched _SITE to URL mentioned in latest release notes.
Added optional dependency to xlib_libxkbfile which was introduced by
upstream commit:
80959deec6
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
bf3c39af34
package/x11r7/xapp_listres: bump version to 1.0.6
...
https://lists.x.org/archives/xorg-announce/2024-March/003470.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
016e6041c0
package/x11r7/xapp_mkfontscale: bump version to 1.2.3
...
https://lists.x.org/archives/xorg-announce/2024-March/003471.html
Updated license hash due to upstream commit:
a631117eb3
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
86177c0682
package/x11r7/xapp_xev: bump version to 1.2.6
...
https://lists.x.org/archives/xorg-announce/2024-March/003473.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
e4dbca7a9c
package/x11r7/xapp_xfontsel: bump version to 1.1.1
...
https://lists.x.org/archives/xorg-announce/2024-March/003474.html
Updated license hash due to upstream commit:
f286ef347d
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
bbe10c784a
package/x11r7/xapp_xmessage: bump version to 1.0.7
...
https://lists.x.org/archives/xorg-announce/2024-March/003475.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
ff0e43faa9
package/x11r7/xapp_xmh: bump version to 1.0.5
...
https://lists.x.org/archives/xorg-announce/2024-March/003476.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
112cb83455
package/x11r7/xapp_xpr: bump version to 1.2.0
...
https://lists.x.org/archives/xorg-announce/2024-March/003477.html
Updated license hash due to upstream commit:
6f34ba3a67
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
aab82b4649
package/x11r7/xapp_xrefresh: bump version to 1.1.0
...
https://lists.x.org/archives/xorg-announce/2024-March/003478.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
4e59dc19d7
package/x11r7/xapp_xsm: bump version to 1.0.6
...
https://lists.x.org/archives/xorg-announce/2024-March/003479.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
d7c2ce79a1
package/x11r7/xlib_libXaw: bump version to 1.0.16
...
https://lists.x.org/archives/xorg-announce/2024-March/003481.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
735bd8bd9f
package/x11r7/xapp_iceauth: bump version to 1.0.10
...
https://lists.x.org/archives/xorg-announce/2024-March/003480.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
4dfa4f609c
package/x11r7/xapp_xedit: bump version to 1.2.4
...
https://lists.x.org/archives/xorg-announce/2024-March/003484.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
b27bb47324
package/x11r7/xapp_xload: bump version to 1.2.0
...
https://lists.x.org/archives/xorg-announce/2024-March/003485.html
Updated license hash due to upstream commit:
ef450fb996
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
82c681bcc8
package/x11r7/xapp_xman: bump version to 1.2.0
...
https://lists.x.org/archives/xorg-announce/2024-March/003486.html
Switched tarball to xz.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
4ff5dd0106
package/x11r7/xlib_libXmu: bump version to 1.2.1
...
https://lists.x.org/archives/xorg-announce/2024-April/003508.html
https://lists.x.org/archives/xorg-announce/2024-March/003493.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
87b18e6308
package/x11r7/xapp_xconsole: bump version to 1.1.0
...
https://lists.x.org/archives/xorg-announce/2024-April/003512.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Cc: Yegor Yefremov <yegorslists@googlemail.com >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00
Bernd Kuhls
509fa5fd55
package/x11r7/xapp_appres: bump version to 1.0.7
...
https://lists.x.org/archives/xorg-announce/2024-June/003517.html
Switched _SITE to URL mentioned in latest release notes.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Julien Olivain <ju.o@free.fr >
2026-01-13 21:37:23 +01:00