package/brltty: bump to version 6.6

- Drop second patch (already in version)
- Update hash of README (DotPadd added with
  5a9288c6bc
  and year updated with
  f21f219916
  6858917969)
- This bump will fix the following build failure raised since bump of
  gettext-gnu to version 0.22 in commit f6a6e3a836
  thanks to
  31061173fd:

/home/thomas/autobuild/instance-2/output-1/host/bin/msgfmt --output-file zh.mo -- ./zh.po
/home/thomas/autobuild/instance-2/output-1/host/bin/msgfmt: input file doesn't contain a header entry with a charset specification
make[3]: *** [Makefile:86: ru.mo] Error 1

https://github.com/brltty/brltty/blob/BRLTTY-6.6/Documents/ChangeLog

Fixes:
 - http://autobuild.buildroot.org/results/29f5ef8a52db4dd717fbaf1ade9d250dfcebe6ff

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2023-11-03 20:08:12 +01:00 committed by Thomas Petazzoni
parent be4347c088
commit 3904d470f7
4 changed files with 3 additions and 33 deletions

View File

@ -217,7 +217,6 @@ package/botan/0002-src-build-data-arch-superh.txt-add-sh4-eb-aeb.patch Upstream
package/brickd/S70brickd Indent Shellcheck Variables package/brickd/S70brickd Indent Shellcheck Variables
package/bridge-utils/0001-fix-build-on-musl.patch Upstream package/bridge-utils/0001-fix-build-on-musl.patch Upstream
package/brltty/0001-Fix-linking-error-on-mips64el.patch Upstream package/brltty/0001-Fix-linking-error-on-mips64el.patch Upstream
package/brltty/0002-shell-prologue-runProgramTerminationCommands-used-a-.patch Upstream
package/brltty/S10brltty Indent Shellcheck Variables package/brltty/S10brltty Indent Shellcheck Variables
package/bsdiff/0001-Add-missing-header-for-u_char.patch Upstream package/bsdiff/0001-Add-missing-header-for-u_char.patch Upstream
package/bustle/0001-Makefile-fix-pcap-config-call.patch Upstream package/bustle/0001-Makefile-fix-pcap-config-call.patch Upstream

View File

@ -1,29 +0,0 @@
From 4503c2cbd3981ba1b50ec7ce287ab48c772b3a7f Mon Sep 17 00:00:00 2001
From: Dave Mielke <Dave@Mielke.cc>
Date: Sat, 15 Oct 2022 15:20:38 -0400
Subject: [PATCH] shell prologue: runProgramTerminationCommands used a bash
command. (dm)
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[james.hilliard1@gmail.com: backport from upstream commit
4503c2cbd3981ba1b50ec7ce287ab48c772b3a7f]
---
brltty-prologue.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/brltty-prologue.sh b/brltty-prologue.sh
index 05b817742..6d1faf983 100644
--- a/brltty-prologue.sh
+++ b/brltty-prologue.sh
@@ -102,7 +102,7 @@ runProgramTerminationCommands() {
while [ "${programTerminationCommandCount}" -gt 0 ]
do
set -- $(getVariable "programTerminationCommand${programTerminationCommandCount}")
- let "programTerminationCommandCount -= 1"
+ programTerminationCommandCount=$((programTerminationCommandCount - 1))
local process="${1}"
local directory="${2}"
--
2.34.1

View File

@ -1,4 +1,4 @@
# Locally computed # Locally computed
sha256 2f173535291ba39b5a9fc8d80c349234333d92042d95d6dd88796c98a02f316b brltty-6.5.tar.xz sha256 ab11cfc5fbd7ef0ec876ffea7e131e424b2fd004b6158064e1a2e46412825529 brltty-6.6.tar.xz
sha256 d80c9d084ebfb50ea1ed91bfbc2410d6ce542097a32c43b00781b83adcb8c77f LICENSE-LGPL sha256 d80c9d084ebfb50ea1ed91bfbc2410d6ce542097a32c43b00781b83adcb8c77f LICENSE-LGPL
sha256 c00c876cb4581a6b54fcc176f7e694896e5b52c4b015615566a787e8bc89fe69 README sha256 72740317768530c60046c591160d4552afb3ac49657b04c7b8452c1bbe7b834e README

View File

@ -4,7 +4,7 @@
# #
################################################################################ ################################################################################
BRLTTY_VERSION = 6.5 BRLTTY_VERSION = 6.6
BRLTTY_SOURCE = brltty-$(BRLTTY_VERSION).tar.xz BRLTTY_SOURCE = brltty-$(BRLTTY_VERSION).tar.xz
BRLTTY_SITE = http://brltty.com/archive BRLTTY_SITE = http://brltty.com/archive
BRLTTY_INSTALL_STAGING_OPTS = INSTALL_ROOT=$(STAGING_DIR) install BRLTTY_INSTALL_STAGING_OPTS = INSTALL_ROOT=$(STAGING_DIR) install