mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 07:27:43 +00:00
package/brltty: bump to version 6.0
- Remove first patch (already in version) - Update hash of README: small updates in year, version - Remove --without-viavoice option (not available anymore) - Disable espeak-ng (not available in buildroot yet) Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
d899562f4f
commit
94a65927b2
@ -1,41 +0,0 @@
|
|||||||
From 088666535a045dae71bd2fcc6b3a1553023106ce Mon Sep 17 00:00:00 2001
|
|
||||||
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
|
||||||
Date: Wed, 22 Aug 2018 10:10:19 +0200
|
|
||||||
Subject: [PATCH] buildsys: fix cross-compilation
|
|
||||||
|
|
||||||
Some identifiers for includes and libs paths may contain digit, e.g.
|
|
||||||
X11_PACKAGE or ATSPI2_PACKAGE or GLIB2_PACKAGE...
|
|
||||||
|
|
||||||
Also detect those identifiers when doing cros-compilation, so that the
|
|
||||||
_FOR_BUILD variants are really created and do not clash with the target
|
|
||||||
variants.
|
|
||||||
|
|
||||||
Fixes:
|
|
||||||
http://autobuild.buildroot.org/results/a37/a37782b3cfc1a96cc129db8fade20a36a7b2d470/build-end.log
|
|
||||||
http://autobuild.buildroot.org/results/97e/97edc6a47d2140968e84b409cdc960604e5896f2/build-end.log
|
|
||||||
[...]
|
|
||||||
|
|
||||||
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
|
||||||
---
|
|
||||||
Upstram status: submitted
|
|
||||||
https://github.com/brltty/brltty/pull/142
|
|
||||||
---
|
|
||||||
mk4build | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/mk4build b/mk4build
|
|
||||||
index db90c86a9..551283825 100755
|
|
||||||
--- a/mk4build
|
|
||||||
+++ b/mk4build
|
|
||||||
@@ -112,7 +112,7 @@ fi
|
|
||||||
|
|
||||||
sedScript="${outputName}.${sedExtension}"
|
|
||||||
sed -n -e '
|
|
||||||
-s/^ *\([A-Za-z][A-Za-z_]*\) *=.*$/\1/
|
|
||||||
+s/^ *\([A-Za-z][A-Za-z0-9_]*\) *=.*$/\1/
|
|
||||||
t found
|
|
||||||
d
|
|
||||||
:found
|
|
||||||
--
|
|
||||||
2.14.1
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
|||||||
sha256 6171258aca833bb2012afd9c63928573a48c3daab7b149a3e90001ba53beb80f brltty-5.6.tar.xz
|
sha256 cfa80c2d171a4d92d7a327b1942e6fc463669b1c3bb658bfb3323b723f9096f7 brltty-6.0.tar.xz
|
||||||
sha256 d80c9d084ebfb50ea1ed91bfbc2410d6ce542097a32c43b00781b83adcb8c77f LICENSE-LGPL
|
sha256 d80c9d084ebfb50ea1ed91bfbc2410d6ce542097a32c43b00781b83adcb8c77f LICENSE-LGPL
|
||||||
sha256 42685d8fa420f618e325d423be110c69abd976afdef183dfac385ccd44cb12e9 README
|
sha256 69d7cbb371bcb165ccde6c496f61481a557d17f0afa0aaa86ece214c4bd698cb README
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
BRLTTY_VERSION = 5.6
|
BRLTTY_VERSION = 6.0
|
||||||
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
|
||||||
@ -22,14 +22,14 @@ BRLTTY_CONF_OPTS = \
|
|||||||
--disable-python-bindings \
|
--disable-python-bindings \
|
||||||
--disable-tcl-bindings \
|
--disable-tcl-bindings \
|
||||||
--disable-x \
|
--disable-x \
|
||||||
|
--without-espeak-ng \
|
||||||
--without-midi-package \
|
--without-midi-package \
|
||||||
--without-mikropuhe --without-speechd --without-swift \
|
--without-mikropuhe --without-speechd --without-swift \
|
||||||
--without-theta --without-viavoice
|
--without-theta
|
||||||
|
|
||||||
# Autoreconf is needed because we're patching configure.ac in
|
# Autoreconf is needed because we're patching configure.ac in
|
||||||
# 0002-Check-for-ioperm-to-make-sure-the-platform-supports-.patch. However,
|
# 0001-Fix-linking-error-on-mips64el. However, a plain autoreconf doesn't work,
|
||||||
# a plain autoreconf doesn't work, because this package is only
|
# because this package is only autoconf-based.
|
||||||
# autoconf-based.
|
|
||||||
define BRLTTY_AUTOCONF
|
define BRLTTY_AUTOCONF
|
||||||
cd $(BRLTTY_SRCDIR) && $(AUTOCONF)
|
cd $(BRLTTY_SRCDIR) && $(AUTOCONF)
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user