From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] kbd: Update to version 2.7.1
Date: Fri, 03 Jan 2025 15:21:20 +0100 [thread overview]
Message-ID: <20250103142122.13241-2-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20250103142122.13241-1-adolf.belka@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 4755 bytes --]
- Update from version 2.6.4 to 2.7.1
- Update of rootfile
- Changelog
2.7.1
setfont:
Fixed regression in argument parsing. Allow arguments and options to
be mixed.
dumpkeys:
Fixed dumpkeys on pc and non-pc architectures. The value of keycode 0
has a special meaning, but on some architectures (like powerpc)
keyboards may generate keycode zero.
2.7.0
libkeymap:
Add API to get/set keymap keywords.
Export functions to convert the value to kernel code.
Fix double kbdfile open.
Dump action codes for keycode 0.
libkfont:
Fix buffer allocation for doubled font.
Check console mode.
keymaps:
Add hcesar layout, for portuguese speaking countries.
Update Colemak-DH keymaps with upstream changes.
sv-latin1.map: make Ctrl+AltGr+9 act as Ctrl+].
fonts:
Remove non-free Agafari fonts.
build-sys:
Use autoconf 2.72.
Do not substitute variables from configure.
Makefiles cleanup.
Fix build warning.
other:
Add configure option to control keymaps compression.
Update man pages.
Remove deprecated startup scripts.
Remove outdated docs.
Update translations (from translationproject.org)
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/kbd | 10 +++-------
lfs/kbd | 6 +++---
2 files changed, 6 insertions(+), 10 deletions(-)
diff --git a/config/rootfiles/common/kbd b/config/rootfiles/common/kbd
index 98c677a6a..9410706ff 100644
--- a/config/rootfiles/common/kbd
+++ b/config/rootfiles/common/kbd
@@ -13,9 +13,6 @@ bin/setfont
#lib/kbd/consolefonts/880.cp.gz
#lib/kbd/consolefonts/928.cp.gz
#lib/kbd/consolefonts/972.cp.gz
-#lib/kbd/consolefonts/Agafari-12.psfu.gz
-#lib/kbd/consolefonts/Agafari-14.psfu.gz
-#lib/kbd/consolefonts/Agafari-16.psfu.gz
#lib/kbd/consolefonts/Cyr_a8x14.psfu.gz
#lib/kbd/consolefonts/Cyr_a8x16.psfu.gz
#lib/kbd/consolefonts/Cyr_a8x8.psfu.gz
@@ -695,18 +692,17 @@ usr/bin/unicode_stop
#usr/share/locale/el/LC_MESSAGES/kbd.mo
#usr/share/locale/eo/LC_MESSAGES/kbd.mo
#usr/share/locale/es/LC_MESSAGES/kbd.mo
-#usr/share/locale/fr/LC_MESSAGES/kbd.mo
-#usr/share/locale/gr
-#usr/share/locale/gr/LC_MESSAGES
-#usr/share/locale/gr/LC_MESSAGES/kbd.mo
+#usr/share/locale/hu/LC_MESSAGES/kbd.mo
#usr/share/locale/id/LC_MESSAGES/kbd.mo
#usr/share/locale/it/LC_MESSAGES/kbd.mo
+#usr/share/locale/ka/LC_MESSAGES/kbd.mo
#usr/share/locale/nl/LC_MESSAGES/kbd.mo
#usr/share/locale/pl/LC_MESSAGES/kbd.mo
#usr/share/locale/pt/LC_MESSAGES/kbd.mo
#usr/share/locale/pt_BR/LC_MESSAGES/kbd.mo
#usr/share/locale/ro/LC_MESSAGES/kbd.mo
#usr/share/locale/ru/LC_MESSAGES/kbd.mo
+#usr/share/locale/sq/LC_MESSAGES/kbd.mo
#usr/share/locale/sr/LC_MESSAGES/kbd.mo
#usr/share/locale/sv/LC_MESSAGES/kbd.mo
#usr/share/locale/tr/LC_MESSAGES/kbd.mo
diff --git a/lfs/kbd b/lfs/kbd
index 5b250482e..86afd0766 100644
--- a/lfs/kbd
+++ b/lfs/kbd
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2025 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
-VER = 2.6.4
+VER = 2.7.1
THISAPP = kbd-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -42,7 +42,7 @@ $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
kbd-latarcyrheb-16-fixed.tar.bz2 = $(DL_FROM)/kbd-latarcyrheb-16-fixed.tar.bz2
kbd-latsun-fonts.tar.bz2 = $(DL_FROM)/kbd-latsun-fonts.tar.bz2
-$(DL_FILE)_BLAKE2 = 25e55be0210c206c1f5eb0d85045bb1cbb2442cf88fb7eb28f7bbb8dd0d86473f48444fd9d80dfc624ce7ba8b39bfe1152ee6cf1877fab444e09600e93dae0ee
+$(DL_FILE)_BLAKE2 = c817f78a0a377df5fcf2a6ba1608504fa875762db5bda1f061493e68ee6f6ef1fa085c0e440d74daeb6ad990ac48956caf7ab7f2a523b0d3b2480e69a9d810f5
kbd-latarcyrheb-16-fixed.tar.bz2_BLAKE2 = d5c701333b9eae7e0c467aebee5b2217c3225dee615622f77e501569f1464a8c32380b2d4a522730db74a909e1ea746e660ea6849bbf48195af22bda73858d1b
kbd-latsun-fonts.tar.bz2_BLAKE2 = c3def1192331a65f3edcf608ca164370d2db0c61444f71fc83bf35cb86d417ae92582180ace853a3cf93e569a83a42fca054fbadbf7f5986a1abd17e8bb6691f
--
2.47.1
next prev parent reply other threads:[~2025-01-03 14:21 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-03 14:21 [PATCH] dbus: Update to version 1.16.0 Adolf Belka
2025-01-03 14:21 ` Adolf Belka [this message]
2025-01-03 14:21 ` [PATCH] liburcu: Update to version 0.15.0 Adolf Belka
2025-01-03 14:21 ` [PATCH] ppp: Update to version 2.5.2 Adolf Belka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250103142122.13241-2-adolf.belka@ipfire.org \
--to=adolf.belka@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox