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>
This commit is contained in:
Bernd Kuhls
2026-01-12 09:29:32 +01:00
committed by Julien Olivain
parent bf3c39af34
commit c77a2eb944
2 changed files with 12 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
# From https://lists.x.org/archives/xorg-announce/2022-April/003139.html
sha256 83cf5dffb1883635fd9c6a8dc48ff9e560f6c6d8ce1a0e929d5f409cba18b6f9 editres-1.0.8.tar.xz
sha512 9a007ed7a02abf61af8b65a163a7289a1e960db390db401bdfad162aa642e0eb887ecf85be14093efd8567c68f5e01450bb8321403a203a00065fa21985c7922 editres-1.0.8.tar.xz
# From https://lists.x.org/archives/xorg-announce/2024-March/003469.html
sha256 cdfc3f7a6f0ecea417af785b1f46469d9c21a3543a765480a3090fd65e3db3c6 editres-1.0.9.tar.xz
sha512 b1abf32cad8f881b8b98c8b4a3280b09f581fc3a86188e86d5d435801676ec75377d8a636b9479a335c5c2321d358841f1194861913b2c17803758b626517230 editres-1.0.9.tar.xz
# Locally computed
sha256 b1049cf96db2c00428b8313541ab333ec4e06f102955f3edd44f88ec43b0acd6 COPYING

View File

@@ -4,12 +4,19 @@
#
################################################################################
XAPP_EDITRES_VERSION = 1.0.8
XAPP_EDITRES_VERSION = 1.0.9
XAPP_EDITRES_SOURCE = editres-$(XAPP_EDITRES_VERSION).tar.xz
XAPP_EDITRES_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_EDITRES_SITE = https://xorg.freedesktop.org/archive/individual/app
XAPP_EDITRES_LICENSE = MIT
XAPP_EDITRES_LICENSE_FILES = COPYING
XAPP_EDITRES_DEPENDENCIES = xlib_libX11 xlib_libXaw xlib_libXmu xlib_libXt
XAPP_EDITRES_CONF_OPTS = --with-appdefaultdir=/usr/share/X11/app-defaults
ifeq ($(BR2_PACKAGE_XLIB_LIBXKBFILE),y)
XAPP_EDITRES_CONF_OPTS += --with-xkb
XAPP_EDITRES_DEPENDENCIES += xlib_libxkbfile
else
XAPP_EDITRES_CONF_OPTS += --without-xkb
endif
$(eval $(autotools-package))