bonzini / rpms / brltty

Forked from rpms/brltty 6 years ago
Clone
ac2c526
%define pkg_version 6.6
ac2c526
%define api_version 0.8.5
Tomas Janousek e2b1266
387902c
# minimal means brltty-minimal subpackage with minimal deps for
387902c
# braille support in Anaconda installer
387902c
# https://bugzilla.redhat.com/show_bug.cgi?id=1584679
387902c
%bcond_without minimal
387902c
f27e5a7
%if 0%{?rhel} && 0%{?rhel} <= 7
859c30f
# disable python3 by default
859c30f
%bcond_with python3
859c30f
%else
859c30f
%bcond_without python3
859c30f
%endif
859c30f
859c30f
%if 0%{?rhel} > 7 || 0%{?fedora} > 28
859c30f
# disable python2 by default
859c30f
%bcond_with python2
859c30f
%else
859c30f
%bcond_without python2
3aece1c
%endif
3aece1c
f1f8f1e
%{!?tcl_version: %global tcl_version %(echo 'puts $tcl_version' | tclsh)}
81241b8
%{!?tcl_sitearch: %global tcl_sitearch %{_prefix}/%{_lib}/tcl%{tcl_version}}
e966baa
ab22ab3
# with speech dispatcher iff on Fedora:
ab22ab3
%define with_speech_dispatcher 0%{?fedora}
ab22ab3
Ondřej Lysoněk 04792bc
# with espeak support iff on Fedora:
Ondřej Lysoněk 04792bc
%define with_espeak 0%{?fedora}
Ondřej Lysoněk 04792bc
395b963
# OCaml packages not built on i686 since OCaml 5 / Fedora 39.
395b963
%ifnarch %{ix86}
d425b4f
%global with_ocaml 1
395b963
%endif
d425b4f
67c232b
%ifarch %{java_arches}
67c232b
%global JAVA 1
67c232b
%else
67c232b
%global JAVA 0
67c232b
%endif
67c232b
a4b0aba
# Filter private libraries
a4b0aba
%global _privatelibs libbrltty.+\.so.*
a4b0aba
%global __provides_exclude ^(%{_privatelibs})$
a4b0aba
%global __requires_exclude ^(%{_privatelibs})$
a4b0aba
cvsdist a88e837
Name: brltty
ac2c526
Version: 6.6
95904b9
Release: 16%{?dist}
088d011
License: LGPL-2.0-or-later AND LGPL-2.1-or-later AND GPL-2.0-or-later
1e04762
URL: http://brltty.app/
1e04762
Source0: http://brltty.app/archive/%{name}-%{version}.tar.xz
f1f8f1e
Source1: brltty.service
ce8b3f6
Source2: brlapi-config.h
ce8b3f6
Source3: brlapi-forbuild.h
302820f
Source4: brltty.sysusers
b952485
Patch1: brltty-6.3-loadLibrary.patch
cb57906
# libspeechd.h moved in latest speech-dispatch (NOT sent upstream)
b952485
Patch2: brltty-6.3-libspeechd.patch
ee571d6
# https://brltty.app/pipermail/brltty/2023-August/020048.html
ee571d6
# thanks to Lukáš Tyrychtr for the diagnosis and initial patch, and
ee571d6
# Samuel Thibault for this improved patch
ee571d6
Patch3: brltty-6.6-cython3.patch
6cc4c5d
Summary: Braille display driver for Linux/Unix
025861e
BuildRequires: byacc
025861e
BuildRequires: glibc-kernheaders
fafd51c
BuildRequires: gcc
025861e
BuildRequires: bluez-libs-devel
025861e
BuildRequires: systemd
302820f
BuildRequires: systemd-rpm-macros
302820f
%{?sysusers_requires_compat}
302820f
BuildRequires: lua-devel
025861e
BuildRequires: gettext
025861e
BuildRequires: at-spi2-core-devel
025861e
BuildRequires: alsa-lib-devel
Ondřej Lysoněk 04792bc
%if %{with_espeak}
Ondřej Lysoněk 04792bc
BuildRequires: espeak-devel
Ondřej Lysoněk 04792bc
%endif
Ondřej Lysoněk 04792bc
BuildRequires: espeak-ng-devel
025861e
BuildRequires: autoconf
025861e
BuildRequires: automake
b952485
BuildRequires: polkit-devel
b952485
BuildRequires: libicu-devel
b952485
BuildRequires: doxygen
b952485
BuildRequires: linuxdoc-tools
b952485
%if %{with python2}
b952485
BuildRequires: python2-docutils
025861e
BuildRequires: python2-setuptools
b952485
%endif
b952485
%if %{with python3}
b952485
BuildRequires: python3-docutils
025861e
BuildRequires: python3-setuptools
b952485
%endif
387902c
Conflicts: brltty-minimal
37841c0
110bba7
# work around a bug in the install process:
110bba7
Requires(post): coreutils
f1f8f1e
Requires(post): systemd
f1f8f1e
Requires(preun): systemd
f1f8f1e
Requires(postun): systemd
cvsdist a88e837
cvsdist a88e837
%description
cvsdist a88e837
BRLTTY is a background process (daemon) which provides
cvsdist a88e837
access to the Linux/Unix console (when in text mode)
cvsdist a88e837
for a blind person using a refreshable braille display.
ef909a2
It drives the braille display and provides complete
ef909a2
screen review functionality.
ab22ab3
%if %{with_speech_dispatcher}
Jon Ciesla ff381fe
BRLTTY can also work with speech synthesizers; if you want to use it with
e966baa
Speech Dispatcher, please install also package %{name}-speech-dispatcher.
e966baa
e966baa
%package speech-dispatcher
e966baa
Summary: Speech Dispatcher driver for BRLTTY
e966baa
BuildRequires: speech-dispatcher-devel
a54e8f3
Requires: %{name}%{?_isa} = %{pkg_version}-%{release}
e966baa
%description speech-dispatcher
e966baa
This package provides the Speech Dispatcher driver for BRLTTY.
ab22ab3
%endif
cvsdist a88e837
81241b8
%package docs
81241b8
Summary: Documentation for BRLTTY
81241b8
BuildArch: noarch
81241b8
%description docs
81241b8
This package provides the documentation for BRLTTY.
81241b8
Tomas Janousek b3f626f
%package xw
6cc4c5d
Summary: XWindow driver for BRLTTY
Tomas Janousek b3f626f
BuildRequires: libSM-devel libICE-devel libX11-devel libXaw-devel libXext-devel libXt-devel libXtst-devel
a54e8f3
Requires: %{name}%{?_isa} = %{pkg_version}-%{release}
e49c30a
Requires: xorg-x11-fonts-misc, ucs-miscfixed-fonts
Tomas Janousek b3f626f
%description xw
Tomas Janousek b3f626f
This package provides the XWindow driver for BRLTTY.
Tomas Janousek b3f626f
a4b0aba
%package at-spi2
a4b0aba
Summary: AtSpi2 driver for BRLTTY
a54e8f3
Requires: %{name}%{?_isa} = %{pkg_version}-%{release}
a4b0aba
%description at-spi2
a4b0aba
This package provides the AtSpi2 driver for BRLTTY.
a4b0aba
Ondřej Lysoněk 04792bc
%if %{with_espeak}
a4b0aba
%package espeak
a4b0aba
Summary: eSpeak driver for BRLTTY
a54e8f3
Requires: %{name}%{?_isa} = %{pkg_version}-%{release}
a4b0aba
%description espeak
a4b0aba
This package provides the eSpeak driver for BRLTTY.
Ondřej Lysoněk 04792bc
%endif
a4b0aba
Ondřej Lysoněk 45bfd20
%package espeak-ng
Ondřej Lysoněk 45bfd20
Summary: eSpeak-NG driver for BRLTTY
Ondřej Lysoněk 45bfd20
Requires: %{name}%{?_isa} = %{pkg_version}-%{release}
Ondřej Lysoněk 04792bc
%if ! %{with_espeak}
Ondřej Lysoněk 04792bc
Obsoletes: brltty-espeak <= 5.6-5
Ondřej Lysoněk 04792bc
%endif
Ondřej Lysoněk 45bfd20
%description espeak-ng
Ondřej Lysoněk 45bfd20
This package provides the eSpeak-NG driver for BRLTTY.
Ondřej Lysoněk 45bfd20
prockai c95485f
%package -n brlapi
da6c957
Version: %{api_version}
Jon Ciesla ff381fe
Summary: Application Programming Interface for BRLTTY
3b4e139
Requires(pre): glibc-common, shadow-utils
3b4e139
Requires(post): coreutils, util-linux
prockai c95485f
%description -n brlapi
prockai c95485f
This package provides the run-time support for the Application
prockai c95485f
Programming Interface to BRLTTY.
prockai c95485f
prockai c95485f
Install this package if you have an application which directly accesses
prockai c95485f
a refreshable braille display.
prockai c95485f
prockai c95485f
%package -n brlapi-devel
da6c957
Version: %{api_version}
a54e8f3
Requires: brlapi%{?_isa} = %{api_version}-%{release}
6cc4c5d
Summary: Headers, static archive, and documentation for BrlAPI
prockai c95485f
prockai c95485f
%description -n brlapi-devel
prockai c95485f
This package provides the header files, static archive, shared object
prockai c95485f
linker reference, and reference documentation for BrlAPI (the
prockai c95485f
Application Programming Interface to BRLTTY).  It enables the
prockai c95485f
implementation of applications which take direct advantage of a
prockai c95485f
refreshable braille display in order to present information in ways
prockai c95485f
which are more appropriate for blind users and/or to provide user
Jon Ciesla ff381fe
interfaces which are more specifically attuned to their needs.
prockai c95485f
prockai c95485f
Install this package if you are developing or maintaining an application
prockai c95485f
which directly accesses a refreshable braille display.
prockai c95485f
Tomas Janousek e2b1266
%package -n tcl-brlapi
da6c957
Version: %{api_version}
a54e8f3
Requires: brlapi%{?_isa} = %{api_version}-%{release}
e966baa
BuildRequires: tcl-devel
6cc4c5d
Summary: Tcl binding for BrlAPI
Tomas Janousek e2b1266
%description -n tcl-brlapi
Tomas Janousek e2b1266
This package provides the Tcl binding for BrlAPI.
Tomas Janousek e2b1266
859c30f
%if %{with python2}
fd21067
%package -n python2-brlapi
fd21067
%{?python_provide:%python_provide python2-brlapi}
da6c957
Version: %{api_version}
a54e8f3
Requires: brlapi%{?_isa} = %{api_version}-%{release}
ee571d6
BuildRequires: Cython
452dc0b
BuildRequires: python2-devel
8b6808e
BuildRequires: python2-setuptools
6cc4c5d
Summary: Python binding for BrlAPI
fd21067
%description -n python2-brlapi
859c30f
This package provides the Python 2 binding for BrlAPI.
859c30f
%endif
Tomas Janousek e2b1266
859c30f
%if %{with python3}
24e84ce
%package -n python3-brlapi
859c30f
%{?python_provide:%python_provide python3-brlapi}
da6c957
Version: %{api_version}
a54e8f3
Requires: brlapi%{?_isa} = %{api_version}-%{release}
ee571d6
BuildRequires: python3-Cython
24e84ce
BuildRequires: python3-devel
859c30f
%if %{without python2}
859c30f
Obsoletes:     python2-brlapi < %{api_version}-%{release}
859c30f
Obsoletes:     python-brlapi < %{api_version}-%{release}
859c30f
%endif
24e84ce
Summary: Python 3 binding for BrlAPI
24e84ce
%description -n python3-brlapi
24e84ce
This package provides the Python 3 binding for BrlAPI.
3aece1c
%endif
24e84ce
67c232b
%if %{JAVA}
Tomas Janousek 7eecaf9
%package -n brlapi-java
da6c957
Version: %{api_version}
a54e8f3
Requires: brlapi%{?_isa} = %{api_version}-%{release}
Stanislav Ochotnicky d5cc6e7
BuildRequires: jpackage-utils
Jon Ciesla a4ac388
BuildRequires: java-devel
6cc4c5d
Summary: Java binding for BrlAPI
Tomas Janousek 7eecaf9
%description -n brlapi-java
Tomas Janousek 7eecaf9
This package provides the Java binding for BrlAPI.
67c232b
%endif
Tomas Janousek 7eecaf9
d425b4f
%if 0%{?with_ocaml}
244c368
%package -n ocaml-brlapi
da6c957
Version: %{api_version}
a54e8f3
Requires: brlapi%{?_isa} = %{api_version}-%{release}
244c368
BuildRequires: ocaml
a75870d
BuildRequires: ocaml-findlib
0d4c36b
BuildRequires: make
244c368
Summary: OCaml binding for BrlAPI
244c368
%description -n ocaml-brlapi
244c368
This package provides the OCaml binding for BrlAPI.
d425b4f
%endif
244c368
5f009fa
%package dracut
5f009fa
Summary: brltty module for Dracut
e9a26ef
Requires: %{name}%{?_isa} = %{pkg_version}-%{release}
5f009fa
Requires: dracut
0d114cc
%description dracut
5f009fa
This package provides brltty module for Dracut.
244c368
387902c
%if %{with minimal}
387902c
%package minimal
387902c
Summary: Stripped down brltty version for Anaconda installer
387902c
Conflicts: brltty
387902c
%description minimal
387902c
This package provides stripped down brltty version for Anaconda
387902c
installer.
387902c
%endif
387902c
Tomas Janousek e2b1266
%define version %{pkg_version}
Tomas Janousek e2b1266
cvsdist a88e837
%prep
Ondřej Lysoněk d01cd09
%setup -qc
Ondřej Lysoněk d01cd09
mv %{name}-%{version} python2
Ondřej Lysoněk d01cd09
Ondřej Lysoněk d01cd09
pushd python2
ac2c526
%patch -P 1 -p1 -b .loadLibrary
ac2c526
%patch -P 2 -p1 -b .libspeechd
ee571d6
%patch -P 3 -p1 -b .cython3
40500d1
40500d1
# remove packaged binary file
40500d1
rm -f Programs/brltty-ktb
a75870d
a75870d
# produce debuginfo for the OCaml interface
a75870d
sed -i 's/@OCAMLC@/& -g/;s/@OCAMLOPT@/& -g/;s/@OCAMLMKLIB@/& -g/' \
a75870d
    Bindings/OCaml/Makefile.in
Ondřej Lysoněk d01cd09
popd
cvsdist a88e837
24e84ce
# Make a copy of the source tree for building the Python 3 module
859c30f
# Make it all time, we just gonna ignore python2 or python3 when not needed
Ondřej Lysoněk d01cd09
cp -a python2 python3
859c30f
387902c
%if %{with minimal}
387902c
cp -a python2 minimal
387902c
%endif
387902c
24e84ce
cvsdist a88e837
%build
2d62c19
# If MAKEFLAGS=-jN is set it would break local builds.
2d62c19
unset MAKEFLAGS
2d62c19
67c232b
%if %{JAVA}
9373cfb
# Add the openjdk include directories to CPPFLAGS
f51fa9b
for i in -I/usr/lib/jvm/java/include{,/linux}; do
f51fa9b
      java_inc="$java_inc $i"
f51fa9b
done
2e9a5ee
export CPPFLAGS="$java_inc"
67c232b
%endif
9373cfb
86624e8
export LDFLAGS="%{?build_ldflags}"
b61d907
export CFLAGS="%{optflags} -fno-strict-aliasing $LDFLAGS"
b61d907
export CXXFLAGS="%{optflags} -fno-strict-aliasing $LDFLAGS"
9373cfb
f51fa9b
# there is no curses packages in BuildRequires, so the package builds
f51fa9b
# without them in mock; let's express this decision explicitly
24e84ce
configure_opts=" \
9373cfb
  --disable-stripping \
9373cfb
  --without-curses \
ab22ab3
%if %{with_speech_dispatcher}
ab22ab3
  --with-speechd=%{_prefix} \
ab22ab3
%endif
Ondřej Lysoněk 04792bc
%if ! %{with_espeak}
Ondřej Lysoněk 04792bc
  --without-espeak \
Ondřej Lysoněk 04792bc
%endif
67c232b
%if %{JAVA}
387902c
  --with-install-root=%{buildroot} \
Stanislav Ochotnicky d5cc6e7
  JAVA_JAR_DIR=%{_jnidir} \
Stanislav Ochotnicky d5cc6e7
  JAVA_JNI_DIR=%{_libdir}/brltty \
24e84ce
  JAVA_JNI=yes"
67c232b
%else
67c232b
  --with-install-root=%{buildroot}"
67c232b
%endif
0589a5f
387902c
configure_opts_minimal=" \
387902c
  --disable-stripping \
387902c
  --without-curses \
387902c
  --without-speechd \
387902c
  --without-espeak \
387902c
  --disable-icu \
387902c
  --disable-polkit \
387902c
  --disable-java-bindings \
387902c
  --disable-ocaml-bindings \
387902c
  --disable-python-bindings \
387902c
  --disable-tcl-bindings \
387902c
  --disable-speech-support \
387902c
  --without-pcm-package \
387902c
  --without-midi-package \
387902c
  --with-install-root=%{buildroot} \
387902c
  --with-configuration-file=brltty-minimal.conf \
387902c
  --with-drivers-directory=%{_libdir}/brltty-minimal \
387902c
  --with-tables-directory=%{_sysconfdir}/brltty-minimal \
387902c
  --with-scripts-directory=%{_libexecdir}/brltty-minimal \
387902c
  JAVA_JNI=no"
387902c
20d0c57
export PYTHONCOERCECLOCALE=0
20d0c57
859c30f
PYTHONS=
859c30f
859c30f
%if %{with python2}
24e84ce
# First build everything with Python 2 support
Ondřej Lysoněk d01cd09
pushd python2
Ondřej Lysoněk 45bfd20
./autogen
24e84ce
%configure $configure_opts PYTHON=%{__python2}
ae8b056
# Parallel build seems broken, thus disabling it
Ondřej Lysoněk 7ab3214
make
b952485
b952485
# documents
b952485
pushd Documents
b952485
make
b952485
popd
b952485
Ondřej Lysoněk d01cd09
popd
859c30f
PYTHONS="$PYTHONS python2"
859c30f
%endif
Stanislav Ochotnicky d5cc6e7
387902c
387902c
%if %{with minimal}
387902c
# ... and then do it again for minimal
387902c
pushd minimal
387902c
./autogen
387902c
%configure $configure_opts_minimal
387902c
make
387902c
387902c
popd
387902c
%endif
387902c
387902c
859c30f
%if %{with python3}
24e84ce
# ... and then do it again for the Python 3 module
Ondřej Lysoněk d01cd09
pushd python3
Ondřej Lysoněk 45bfd20
./autogen
281f6b7
%configure $configure_opts PYTHON=%{__python3} CYTHON=%{_bindir}/cython
Ondřej Lysoněk 7ab3214
make
b952485
b952485
# documents
b952485
pushd Documents
b952485
make
b952485
popd
b952485
24e84ce
popd
859c30f
PYTHONS="$PYTHONS python3"
3aece1c
%endif
cvsdist a88e837
859c30f
for python in $PYTHONS
859c30f
  do pushd $python
859c30f
    find . -name '*.sgml' |
859c30f
    while read file; do
859c30f
       iconv -f iso8859-1 -t utf-8 $file > $file.conv && mv -f $file.conv $file
859c30f
    done
859c30f
    find . -name '*.txt' |
859c30f
    while read file; do
859c30f
       iconv -f iso8859-1 -t utf-8 $file > $file.conv && mv -f $file.conv $file
859c30f
    done
859c30f
    find . -name 'README*' |
859c30f
    while read file; do
859c30f
       iconv -f iso8859-1 -t utf-8 $file > $file.conv && mv -f $file.conv $file
859c30f
    done
859c30f
859c30f
    find . \( -path ./doc -o -path ./Documents \) -prune -o \
859c30f
      \( -name 'README*' -o -name '*.txt' -o -name '*.html' -o \
859c30f
         -name '*.sgml' -o -name '*.patch' -o \
859c30f
         \( -path './Bootdisks/*' -type f -perm /ugo=x \) \) -print |
859c30f
    while read file; do
859c30f
       mkdir -p ../doc/${file%/*} && cp -rp $file ../doc/$file || exit 1
859c30f
    done
859c30f
  popd
Ondřej Lysoněk d01cd09
done
1ab2e77
cvsdist a88e837
%install
2d62c19
%if 0%{?with_ocaml}
387902c
mkdir -p %{buildroot}%{_libdir}/ocaml/stublibs
2d62c19
%endif
2d62c19
859c30f
%if %{with python2}
24e84ce
# Python 2
Ondřej Lysoněk d01cd09
pushd python2
Stanislav Ochotnicky d5cc6e7
make install JAVA_JAR_DIR=%{_jnidir} \
Stanislav Ochotnicky d5cc6e7
             JAVA_JNI_DIR=%{_libdir}/brltty \
Stanislav Ochotnicky d5cc6e7
             JAVA_JNI=yes
Ondřej Lysoněk d01cd09
popd
859c30f
%endif
24e84ce
387902c
387902c
%if %{with minimal}
387902c
# minimal
387902c
pushd minimal
387902c
make install
387902c
387902c
# drop extra drivers
387902c
pushd %{buildroot}%{_libdir}/brltty-minimal
387902c
rm -f libbrlttybba.so libbrlttybxw.so libbrlttyxa2.so libbrlttysen.so \
387902c
  libbrlttyses.so libbrlapi_java.so
387902c
popd
387902c
387902c
# rename brltty to brltty-minimal
387902c
mv %{buildroot}%{_bindir}/brltty %{buildroot}%{_bindir}/brltty-minimal
387902c
387902c
# install config
387902c
install -d -m 755 "%{buildroot}%{_sysconfdir}"
387902c
install -p -m 644 Documents/brltty.conf "%{buildroot}%{_sysconfdir}/brltty-minimal.conf"
387902c
popd
387902c
%endif
387902c
387902c
859c30f
%if %{with python3}
24e84ce
# Python 3
Ondřej Lysoněk d01cd09
pushd python3
24e84ce
make install JAVA_JAR_DIR=%{_jnidir} \
24e84ce
             JAVA_JNI_DIR=%{_libdir}/brltty \
24e84ce
             JAVA_JNI=yes
24e84ce
popd
3aece1c
%endif
24e84ce
859c30f
%if %{with python3}
859c30f
# just use the higher number here
859c30f
pushd python3
859c30f
%else
Ondřej Lysoněk d01cd09
pushd python2
859c30f
%endif
859c30f
b952485
# install polkit rules
b952485
pushd Authorization/Polkit
b952485
make install
b952485
popd
b952485
387902c
install -d -m 755 "%{buildroot}%{_sysconfdir}" "%{buildroot}%{_mandir}/man5"
387902c
install -p -m 644 Documents/brltty.conf "%{buildroot}%{_sysconfdir}"
387902c
echo ".so man1/brltty.1" > %{buildroot}%{_mandir}/man5/brltty.conf.5
cvsdist a88e837
387902c
install -Dpm 644 %{SOURCE1} %{buildroot}%{_unitdir}/brltty.service
f1f8f1e
Ondřej Lysoněk d01cd09
cp -p LICENSE* ../
Ondřej Lysoněk d01cd09
ef909a2
# clean up the manuals:
ef909a2
rm Documents/Manual-*/*/{*.mk,*.made,Makefile*}
e966baa
mv Documents/BrlAPIref/{html,BrlAPIref}
Tomas Janousek b3f626f
Ondřej Lysoněk d01cd09
for i in Drivers/Speech/SpeechDispatcher/README \
Ondřej Lysoněk d01cd09
         Documents/ChangeLog Documents/TODO \
Ondřej Lysoněk d01cd09
         Documents/Manual-BRLTTY \
Ondřej Lysoněk d01cd09
         Drivers/Braille/XWindow/README \
Ondřej Lysoněk d01cd09
         Drivers/Braille/XWindow/README \
Ondřej Lysoněk d01cd09
         Documents/Manual-BrlAPI \
Ondřej Lysoněk d01cd09
         Documents/BrlAPIref/BrlAPIref \
Ondřej Lysoněk d01cd09
; do
Ondřej Lysoněk d01cd09
   mkdir -p ../${i%/*} && cp -rp $i ../$i || exit 1
Ondřej Lysoněk d01cd09
done
Ondřej Lysoněk d01cd09
387902c
# don't want static lib
387902c
rm -rf %{buildroot}/%{_libdir}/libbrlapi.a
1015788
e83eee0
# create /var/lib/brltty directory
e83eee0
mkdir -p %{buildroot}%{_localstatedir}/lib/brltty
e83eee0
3b4e139
# ghost brlapi.key
387902c
touch %{buildroot}%{_sysconfdir}/brlapi.key
387902c
chmod 0640 %{buildroot}%{_sysconfdir}/brlapi.key
3b4e139
eb7213d
# disable xbrlapi gdm autostart, there is already orca
387902c
rm -f %{buildroot}%{_datadir}/gdm/greeter/autostart/xbrlapi.desktop
eb7213d
a9ee1f4
# make brltty-config executable
387902c
chmod 755 %{buildroot}%{_bindir}/brltty-config.sh
a9ee1f4
ce8b3f6
# fix multilib
387902c
pushd %{buildroot}%{_includedir}/brltty
ce8b3f6
for f in config forbuild
ce8b3f6
do
ce8b3f6
  mv ./$f.h ./$f-$(getconf LONG_BIT).h
ce8b3f6
done
ce8b3f6
install -p -m 0644 %{SOURCE2} ./config.h
ce8b3f6
install -p -m 0644 %{SOURCE3} ./forbuild.h
ce8b3f6
popd
ce8b3f6
eb7213d
# handle locales
eb7213d
%find_lang %{name}
Ondřej Lysoněk d01cd09
cp -p %{name}.lang ../
eb7213d
52dfc3d
# install dracut module
a9ca373
make install-dracut
5f009fa
a9ca373
popd
5f009fa
52dfc3d
# drop documentation already instaled by the dracut subpackage
52dfc3d
rm -f doc/Initramfs/Dracut/README*
52dfc3d
rmdir doc/Initramfs/Dracut doc/Initramfs
52dfc3d
302820f
# Install group creation file
302820f
install -p -D -m 0644 %{SOURCE4} %{buildroot}%{_sysusersdir}/brltty.conf
67c232b
67c232b
%if %{!JAVA}
67c232b
find . -type d -name 'Java' | xargs rm -rf
67c232b
find %{buildroot}%{_datadir} -type d -name 'Java' | xargs rm -rf
67c232b
%endif
67c232b
cvsdist a88e837
%post
f1f8f1e
%systemd_post brltty.service
f1f8f1e
f1f8f1e
%preun
f1f8f1e
%systemd_preun brltty.service
f1f8f1e
f1f8f1e
%postun
f1f8f1e
%systemd_postun_with_restart brltty.service
f1f8f1e
3b4e139
%pre -n brlapi
302820f
%sysusers_create_compat %{SOURCE4}
3b4e139
3b4e139
%post -n brlapi
3b4e139
if [ ! -e %{_sysconfdir}/brlapi.key ]; then
3b4e139
  mcookie > %{_sysconfdir}/brlapi.key
3b4e139
  chgrp brlapi %{_sysconfdir}/brlapi.key
3b4e139
  chmod 0640 %{_sysconfdir}/brlapi.key
3b4e139
fi
f6038c4
%{?ldconfig}
3b4e139
f6038c4
%ldconfig_postun -n brlapi
e966baa
eb7213d
%files -f %{name}.lang
e83eee0
%dir %{_localstatedir}/lib/brltty
ef909a2
%config(noreplace) %{_sysconfdir}/brltty.conf
e966baa
%{_sysconfdir}/brltty/
a9ca373
%exclude %{_sysconfdir}/brltty/Initramfs
f1f8f1e
%{_unitdir}/brltty.service
prockai c95485f
%{_bindir}/brltty
prockai c95485f
%{_bindir}/brltty-*
387902c
%exclude %{_bindir}/brltty-minimal
e966baa
%{_libdir}/brltty/
67c232b
%if %{!JAVA}
e966baa
%exclude %{_libdir}/brltty/libbrlttybba.so
e966baa
%exclude %{_libdir}/brltty/libbrlttybxw.so
a4b0aba
%exclude %{_libdir}/brltty/libbrlttyxa2.so
Ondřej Lysoněk 45bfd20
%exclude %{_libdir}/brltty/libbrlttysen.so
a4b0aba
%exclude %{_libdir}/brltty/libbrlttyses.so
Stanislav Ochotnicky d5cc6e7
%exclude %{_libdir}/brltty/libbrlapi_java.so
ab22ab3
%if %{with_speech_dispatcher}
e966baa
%exclude %{_libdir}/brltty/libbrlttyssd.so
ab22ab3
%endif
67c232b
%endif
27ad075
%license LICENSE-LGPL
243c6e3
%doc %{_mandir}/man[15]/brltty.*
0ffa604
%{_sysconfdir}/X11/Xsession.d/90xbrlapi
20d0c57
%{_datadir}/polkit-1/actions/org.a11y.brlapi.policy
b952485
%{_datadir}/polkit-1/rules.d/org.a11y.brlapi.rules
20d0c57
387902c
%if %{with minimal}
387902c
%files minimal -f %{name}.lang
387902c
%config(noreplace) %{_sysconfdir}/brltty-minimal.conf
387902c
%{_sysconfdir}/brltty-minimal/
387902c
%{_bindir}/brltty-minimal
387902c
%{_libdir}/brltty-minimal/
387902c
%license LICENSE-LGPL
387902c
%endif
e966baa
ab22ab3
%if %{with_speech_dispatcher}
e966baa
%files speech-dispatcher
e966baa
%doc Drivers/Speech/SpeechDispatcher/README
e966baa
%{_libdir}/brltty/libbrlttyssd.so
ab22ab3
%endif
prockai c95485f
81241b8
%files docs
81241b8
%doc Documents/ChangeLog Documents/TODO
81241b8
%doc Documents/Manual-BRLTTY/
67c232b
#%doc doc/*
81241b8
Tomas Janousek b3f626f
%files xw
e966baa
%doc Drivers/Braille/XWindow/README
Tomas Janousek b3f626f
%{_libdir}/brltty/libbrlttybxw.so
Tomas Janousek b3f626f
a4b0aba
%files at-spi2
a4b0aba
%{_libdir}/brltty/libbrlttyxa2.so
a4b0aba
Ondřej Lysoněk 04792bc
%if %{with_espeak}
a4b0aba
%files espeak
a4b0aba
%{_libdir}/brltty/libbrlttyses.so
Ondřej Lysoněk 04792bc
%endif
a4b0aba
Ondřej Lysoněk 45bfd20
%files espeak-ng
Ondřej Lysoněk 45bfd20
%{_libdir}/brltty/libbrlttysen.so
Ondřej Lysoněk 45bfd20
prockai c95485f
%files -n brlapi
e966baa
%{_bindir}/vstp
eb7213d
%{_bindir}/eutp
243c6e3
%{_bindir}/xbrlapi
e966baa
%{_libdir}/brltty/libbrlttybba.so
prockai c95485f
%{_libdir}/libbrlapi.so.*
bdffcfe
%ghost %verify(not group) %{_sysconfdir}/brlapi.key
e966baa
%doc Drivers/Braille/XWindow/README
ef909a2
%doc Documents/Manual-BrlAPI/
243c6e3
%doc %{_mandir}/man1/xbrlapi.*
e966baa
%doc %{_mandir}/man1/vstp.*
eb7213d
%doc %{_mandir}/man1/eutp.*
302820f
%{_sysusersdir}/brltty.conf
302820f
%{lua_libdir}/brlapi.so
prockai c95485f
prockai c95485f
%files -n brlapi-devel
d6b5519
%{_libdir}/libbrlapi.so
prockai c95485f
%{_includedir}/brltty
Tomas Janousek e2b1266
%{_includedir}/brlapi*.h
b952485
%{_libdir}/pkgconfig/brltty.pc
243c6e3
%doc %{_mandir}/man3/brlapi_*.3*
e966baa
%doc Documents/BrlAPIref/BrlAPIref/
Tomas Janousek e2b1266
Tomas Janousek e2b1266
%files -n tcl-brlapi
f51fa9b
%{tcl_sitearch}/brlapi-%{api_version}
Tomas Janousek e2b1266
859c30f
%if %{with python2}
fd21067
%files -n python2-brlapi
Ondřej Lysoněk 255c830
%{python2_sitearch}/brlapi.so
Ondřej Lysoněk 255c830
%{python2_sitearch}/Brlapi-%{api_version}-*.egg-info
859c30f
%endif
Tomas Janousek 7eecaf9
859c30f
%if %{with python3}
24e84ce
%files -n python3-brlapi
24e84ce
%{python3_sitearch}/brlapi.cpython-*.so
24e84ce
%{python3_sitearch}/Brlapi-%{api_version}-*.egg-info
3aece1c
%endif
24e84ce
67c232b
%if %{JAVA}
Tomas Janousek 7eecaf9
%files -n brlapi-java
Stanislav Ochotnicky d5cc6e7
%{_libdir}/brltty/libbrlapi_java.so
Stanislav Ochotnicky d5cc6e7
%{_jnidir}/brlapi.jar
67c232b
%endif
cvsdist a88e837
d425b4f
%if 0%{?with_ocaml}
244c368
%files -n ocaml-brlapi
d6b5519
%{_libdir}/ocaml/brlapi/
d6b5519
%{_libdir}/ocaml/stublibs/
d425b4f
%endif
Tomas Janousek b3f626f
0d114cc
%files dracut
5f009fa
%{_prefix}/lib/dracut/modules.d/99brltty/
a9ca373
%dir %{_sysconfdir}/brltty/Initramfs
a9ca373
%config(noreplace) %verify(not size md5 mtime) %{_sysconfdir}/brltty/Initramfs/dracut.conf
a9ca373
%config(noreplace) %verify(not size md5 mtime) %{_sysconfdir}/brltty/Initramfs/cmdline
5f009fa
cvsdist a88e837
%changelog
95904b9
* Thu Jun 18 2024 Paolo Bonzini <pbonzini@redhat.com> - 6.6-16
95904b9
- Remove unnecessary dependency from brlapi and brltty-docs to brltty
95904b9
887c5f4
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 6.6-15
887c5f4
- Rebuilt for Python 3.13
887c5f4
b4ac46c
* Wed May 29 2024 Richard W.M. Jones <rjones@redhat.com> - 6.6-14
b4ac46c
- OCaml 5.2.0 for Fedora 41
b4ac46c
b9e9ca5
* Wed Jan 31 2024 Pete Walter <pwalter@fedoraproject.org> - 6.6-13
b9e9ca5
- Rebuild for ICU 74
b9e9ca5
c70db22
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.6-12
c70db22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
c70db22
d7e4d27
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.6-11
d7e4d27
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
d7e4d27
088d011
* Wed Jan 17 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 6.6-10
088d011
- Added SPDX licenses found by ScanCode
088d011
- Dropped redundant license tags from subpackages
088d011
302820f
* Wed Dec 20 2023 Gwyn Ciesla <gwync@protonmail.com> - 6.6-9
302820f
- Migrate group creation to sysusers
302820f
0e18fd0
* Mon Dec 18 2023 Richard W.M. Jones <rjones@redhat.com> - 6.6-8
0e18fd0
- Bump release and rebuild
0e18fd0
269cb02
* Mon Dec 18 2023 Richard W.M. Jones <rjones@redhat.com> - 6.6-7
269cb02
- OCaml 5.1.1 + s390x code gen fix for Fedora 40
269cb02
669ced9
* Tue Dec 12 2023 Richard W.M. Jones <rjones@redhat.com> - 6.6-6
669ced9
- OCaml 5.1.1 rebuild for Fedora 40
669ced9
05077bd
* Thu Oct 05 2023 Richard W.M. Jones <rjones@redhat.com> - 6.6-5
05077bd
- OCaml 5.1 rebuild for Fedora 40
05077bd
ee571d6
* Tue Aug 15 2023 Adam Williamson <awilliam@redhat.com> - 6.6-4
ee571d6
- Fix the Cython 3 crash and build with Cython 3 again
ee571d6
7aab348
* Mon Aug 14 2023 Adam Williamson <awilliam@redhat.com> - 6.6-3
7aab348
- Build with Cython 0.29, it crashes when built with Cython 3 (#2231865)
7aab348
da6c957
* Tue Jul 25 2023 Gwyn Ciesla <gwync@protonmail.com> - 6.6-2
da6c957
- Correct apiversioning
da6c957
ac2c526
* Mon Jul 24 2023 Gwyn Ciesla <gwync@protonmail.com> - 6.6-1
ac2c526
- 6.6
ac2c526
bc9ce96
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 6.5-20
bc9ce96
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
bc9ce96
8e17a87
* Thu Jul 13 2023 František Zatloukal <fzatlouk@redhat.com> - 6.5-19
8e17a87
- Rebuilt for ICU 73.2
8e17a87
31e7816
* Wed Jul 12 2023 Richard W.M. Jones <rjones@redhat.com> - 6.5-18
31e7816
- OCaml 5.0 rebuild for Fedora 39
31e7816
fafd51c
* Wed Jul 12 2023 Frantisek Zatloukal <fzatlouk@redhat.com> - 6.5-17
fafd51c
- Add BR: gcc (ocaml no longer pulls it indirectly on i686)
fafd51c
181319e
* Tue Jul 11 2023 František Zatloukal <fzatlouk@redhat.com> - 6.5-15
181319e
- Rebuilt for ICU 73.2
181319e
a75870d
* Mon Jul 10 2023 Jerry James <loganjerry@gmail.com> - 6.5-14
a75870d
- OCaml 5.0.0 rebuild
a75870d
- Produce debuginfo for the OCaml interface
a75870d
3d875ed
* Tue Jun 27 2023 Gwyn Ciesla <gwync@protonmail.com> - 6.5-13
3d875ed
- Fix build with gettext-0.22 (yselkowitz)
3d875ed
3fc9264
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 6.5-12
3fc9264
- Rebuilt for Python 3.12
3fc9264
d1dec50
* Wed Mar 08 2023 Gwyn Ciesla <gwync@protonmail.com> - 6.5-11
d1dec50
- migrated to SPDX license
d1dec50
99b25bc
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 6.5-10
99b25bc
- Rebuild OCaml packages for F38
99b25bc
7fecff4
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 6.5-9
7fecff4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
7fecff4
ff62c38
* Sat Dec 31 2022 Pete Walter <pwalter@fedoraproject.org> - 6.5-8
ff62c38
- Rebuild for ICU 72
ff62c38
67c232b
* Mon Aug 01 2022 Gwyn Ciesla <gwync@protonmail.com> - 6.5-7
67c232b
- Build Java only on supported platforms.
67c232b
9140180
* Mon Aug 01 2022 Frantisek Zatloukal <fzatlouk@redhat.com> - 6.5-6
9140180
- Rebuilt for ICU 71.1
9140180
9b34e7e
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.5-5
9b34e7e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
9b34e7e
d9e6be4
* Mon Jun 20 2022 Python Maint <python-maint@redhat.com> - 6.5-4
d9e6be4
- Rebuilt for Python 3.11
d9e6be4
6273750
* Sat Jun 18 2022 Richard W.M. Jones <rjones@redhat.com> - 6.5-3
6273750
- OCaml 4.14.0 rebuild
6273750
bf52054
* Thu Jun 16 2022 Python Maint <python-maint@redhat.com> - 6.5-2
bf52054
- Rebuilt for Python 3.11
bf52054
025861e
* Tue Jun 14 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 6.5-1
025861e
- New version
025861e
  Resolves: rhbz#2095460
025861e
9cd576f
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 6.4-7
9cd576f
- Rebuilt for Python 3.11
9cd576f
24da57f
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 6.4-6
24da57f
- Rebuilt for java-17-openjdk as system jdk
24da57f
31c2d65
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 6.4-5
31c2d65
- OCaml 4.13.1 rebuild to remove package notes
31c2d65
e83eee0
* Thu Jan 20 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 6.4-4
e83eee0
- Installed /var/lib/brltty directory
e83eee0
  Related: rhbz#2042412
e83eee0
c64e069
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.4-3
c64e069
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
c64e069
18edea1
* Mon Oct 04 2021 Richard W.M. Jones <rjones@redhat.com> - 6.4-2
18edea1
- OCaml 4.13.1 build
18edea1
0b21674
* Fri Sep 24 2021 Gwyn Ciesla <gwync@protonmail.com> - 6.4-1
0b21674
- 6.4
0b21674
fd37f4e
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.3-10
fd37f4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
fd37f4e
d1781c0
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 6.3-9
d1781c0
- Rebuilt for Python 3.10
d1781c0
48fd0b4
* Tue Jun  1 2021 Jaroslav Škarvada <jskarvad@redhat.com> - 6.3-8
48fd0b4
- Fixed requirements for brltty-minimal
48fd0b4
  Related: rhbz#1584679
48fd0b4
0480116
* Wed May 19 2021 Pete Walter <pwalter@fedoraproject.org> - 6.3-7
0480116
- Rebuild for ICU 69
0480116
387902c
* Wed May 19 2021 Jaroslav Škarvada <jskarvad@redhat.com> - 6.3-6
387902c
- Added brltty-minimal subpackage for braille support in Anaconda installer
387902c
  Related: rhbz#1584679
387902c
ce8b3f6
* Thu May 13 2021 Jaroslav Škarvada <jskarvad@redhat.com> - 6.3-5
ce8b3f6
- Fixed brlapi multilib
ce8b3f6
97c8620
* Fri Apr 16 2021 Gwyn Ciesla <gwync@protonmail.com> - 6.3-4
97c8620
- Upstream patch to support Python 3.10.
97c8620
9bbed42
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 6.3-3
9bbed42
- Rebuilt for updated systemd-rpm-macros
9bbed42
  See https://pagure.io/fesco/issue/2583.
9bbed42
4ab95f1
* Mon Mar  1 13:12:00 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 6.3-2
4ab95f1
- OCaml 4.12.0 build
4ab95f1
b952485
* Mon Feb  1 2021 Jaroslav Škarvada <jskarvad@redhat.com> - 6.3-1
b952485
- New version
b952485
  Resolves: rhbz#1910328
b952485
66fe0b9
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-13
66fe0b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
66fe0b9
bdffcfe
* Tue Oct 20 2020 Jaroslav Škarvada <jskarvad@redhat.com> - 6.1-12
bdffcfe
- Fixed brlapi.key to pass the RPM verification
bdffcfe
1aef630
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 6.1-11
1aef630
- OCaml 4.11.1 rebuild
1aef630
91e6eb2
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 6.1-10
91e6eb2
- OCaml 4.11.0 rebuild
91e6eb2
63ebfc4
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-9
63ebfc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
63ebfc4
6d92a84
* Thu Jul 16 2020 Jaroslav Škarvada <jskarvad@redhat.com> - 6.1-8
6d92a84
- Dropped explicit brlapi dependency (brltty) and relaxed brltty
6d92a84
  dependency (brlapi)
6d92a84
  Related: rhbz#1765611
6d92a84
5648ca5
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 6.1-7
5648ca5
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
5648ca5
f8934b7
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 6.1-6
f8934b7
- Rebuilt for Python 3.9
f8934b7
6f98324
* Wed May 20 2020 Jaroslav Škarvada <jskarvad@redhat.com> - 6.1-5
6f98324
- Added missing missing -o option to the brltty man page
6f98324
5d7a90b
* Mon May 04 2020 Richard W.M. Jones <rjones@redhat.com> - 6.1-4
5d7a90b
- OCaml 4.11.0+dev2-2020-04-22 rebuild
5d7a90b
087cf53
* Tue Apr 21 2020 Richard W.M. Jones <rjones@redhat.com> - 6.1-3
087cf53
- OCaml 4.11.0 pre-release attempt 2
087cf53
3b8b978
* Fri Apr 17 2020 Richard W.M. Jones <rjones@redhat.com> - 6.1-2
3b8b978
- OCaml 4.11.0 pre-release
3b8b978
0ffa604
* Mon Apr 06 2020 Gwyn Ciesla <gwync@protonmail.com> - 6.1-1
0ffa604
- 6.1
0ffa604
2d1c7a6
* Thu Apr 02 2020 Richard W.M. Jones <rjones@redhat.com> - 6.0-14
2d1c7a6
- Update all OCaml dependencies for RPM 4.16.
2d1c7a6
a8de6a8
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 6.0-13
a8de6a8
- OCaml 4.10.0 final.
a8de6a8
8601753
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-12
8601753
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8601753
2dbc1ef
* Sat Jan 18 2020 Richard W.M. Jones <rjones@redhat.com> - 6.0-11
2dbc1ef
- OCaml 4.10.0+beta1 rebuild.
2dbc1ef
affd535
* Wed Jan 08 2020 Richard W.M. Jones <rjones@redhat.com> - 6.0-10
affd535
- OCaml 4.09.0 for riscv64
affd535
b4da9d1
* Fri Dec 06 2019 Richard W.M. Jones <rjones@redhat.com> - 6.0-9
b4da9d1
- OCaml 4.09.0 (final) rebuild.
b4da9d1
5a05c46
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 6.0-8
5a05c46
- Rebuilt for Python 3.8
5a05c46
a552b05
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 6.0-7
a552b05
- OCaml 4.08.1 (final) rebuild.
a552b05
fb83b72
* Wed Jul 31 2019 Richard W.M. Jones <rjones@redhat.com> - 6.0-6
fb83b72
- OCaml 4.08.1 (rc2) rebuild.
fb83b72
62dd8e3
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-5
62dd8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
62dd8e3
586951f
* Thu Jun 27 2019 Richard W.M. Jones <rjones@redhat.com> - 6.0-4
586951f
- OCaml 4.08.0 (final) rebuild.
586951f
897ad85
* Fri Jun  7 2019 Jaroslav Škarvada <jskarvad@redhat.com> - 6.0-3
897ad85
- Fixed build with alsa-1.1.9
897ad85
  Resolves: rhbz#1716389
897ad85
d6448fb
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 6.0-2
d6448fb
- OCaml 4.08.0 (beta 3) rebuild.
d6448fb
a4fcab7
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.6-32
a4fcab7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a4fcab7
52dfc3d
* Tue Dec 11 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-31
52dfc3d
- Do not package documentation for dracut module twice
52dfc3d
a9ca373
* Tue Dec 11 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-30
a9ca373
- Rebased dracut support to upstream version
a9ca373
- Added requires to subpackages
a9ca373
cf9159d
* Wed Dec  5 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-29
cf9159d
- Improved CFLAGS handling when building Ocaml bindings
cf9159d
281f6b7
* Wed Dec  5 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-28
281f6b7
- Built OCaml bindings with distribution CFLAGS and consolidated patches
281f6b7
- Fixed Cython build requires
281f6b7
- Used macro for python3 path
281f6b7
18fd5df
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.6-27
18fd5df
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
18fd5df
dd719f2
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 5.6-26
dd719f2
- OCaml 4.07.0 (final) rebuild.
dd719f2
a642559
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 5.6-25
a642559
- Rebuilt for Python 3.7
a642559
b92fd13
* Thu Jun 21 2018 Paolo Bonzini <pbonzini@redhat.com> - 5.6-24
b92fd13
- Remove unnecessary dependency from brlapi and brltty-docs to brltty
b92fd13
c012853
* Wed Jun 20 2018 Richard W.M. Jones <rjones@redhat.com> - 5.6-23
c012853
- OCaml 4.07.0-rc1 rebuild.
c012853
786e384
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 5.6-22
786e384
- Rebuilt for Python 3.7
786e384
4222e83
* Mon Jun 11 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-21
4222e83
- Improved brltty service to start before display manager and getty
4222e83
18d2682
* Fri Jun  8 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-20
18d2682
- Fixed installation of multiple drivers and text tables in Dracut module
18d2682
  if environment variables are used
18d2682
e9a26ef
* Mon Jun  4 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-19
e9a26ef
- Fixed Dracut module requirements
e9a26ef
1b13628
* Mon Jun  4 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-18
1b13628
- Improved Dracut module to support more boot command line arguments
1b13628
1e04762
* Fri Jun  1 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-17
1e04762
- Updated URL and Source
1e04762
5f009fa
* Thu May 31 2018 Tomas Korbar <tomas.korb@seznam.cz> - 5.6-16
5f009fa
- Added Dracut module
5f009fa
008619e
* Tue May 29 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-15
008619e
- Added support for ALSA
008619e
c8fb8ab
* Thu May 24 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-14
c8fb8ab
- Also enabled systemd service in rescue target
c8fb8ab
fd3f818
* Thu May 24 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-13
fd3f818
- Systemd service is now installed to default and emergency targets,
fd3f818
  because assistive technology should be available there
fd3f818
1b08bec
* Tue May 22 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-12
1b08bec
- Switched to upstream patch adding LDFLAGS to more libraries
1b08bec
  Related: rhbz#1543490
1b08bec
e338b00
* Mon May 21 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-11
e338b00
- Added LDFLAGS to more libraries
e338b00
  Related: rhbz#1543490
e338b00
bbd11dc
* Thu Apr 26 2018 Richard W.M. Jones <rjones@redhat.com> - 5.6-10
bbd11dc
- OCaml 4.07.0-beta2 rebuild.
bbd11dc
08856a3
* Wed Apr 25 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-9
08856a3
- Switched to upstream patch fixing building with distro's LDFLAGS
08856a3
  Related: rhbz#1543490
08856a3
86624e8
* Tue Apr 24 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 5.6-8
86624e8
- Build with distro's LDFLAGS
86624e8
  Related: rhbz#1543490
86624e8
859c30f
* Fri Mar 16 2018 Miro Hrončok <mhroncok@redhat.com> - 5.6-7
859c30f
- Don't build Python 2 subpackage on EL > 7 and Fedora > 28
859c30f
- Use bconditionals
859c30f
Ondřej Lysoněk 04792bc
* Thu Mar 08 2018 Ondřej Lysoněk <olysonek@redhat.com> - 5.6-6
Ondřej Lysoněk 04792bc
- Build with espeak support only on Fedora
Ondřej Lysoněk 04792bc
Ondřej Lysoněk 45bfd20
* Tue Mar 06 2018 Ondřej Lysoněk <olysonek@redhat.com> - 5.6-5
Ondřej Lysoněk 45bfd20
- Add support for eSpeak-NG
Ondřej Lysoněk 45bfd20
Ondřej Lysoněk 67fa972
* Tue Mar 06 2018 Ondřej Lysoněk <olysonek@redhat.com> - 5.6-4
Ondřej Lysoněk 67fa972
- Fix the License tags. The license of whole brltty is LGPLv2+ since
Ondřej Lysoněk 67fa972
  the 5.6 release.
Ondřej Lysoněk 67fa972
Ondřej Lysoněk d01cd09
* Mon Feb 26 2018 Ondřej Lysoněk <olysonek@redhat.com> - 5.6-3
Ondřej Lysoněk d01cd09
- Fix generating the brltty-debugsource package
Ondřej Lysoněk d01cd09
b61d907
* Mon Feb 12 2018 Gwyn Ciesla <limburgher@gmail.com> - 5.6-2
b61d907
- Flag fixes.
b61d907
89acc4a
* Tue Feb 06 2018 Gwyn Ciesla <limburgher@gmail.com> - 5.6-1
89acc4a
- 5.6
89acc4a
8b6808e
* Fri Dec 15 2017 Iryna Shcherbina <ishcherb@redhat.com> - 5.5-12
8b6808e
- Update Python 2 dependency declarations to new packaging standards
8b6808e
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
8b6808e
2b1a65a
* Fri Nov 17 2017 Richard W.M. Jones <rjones@redhat.com> - 5.5-11
2b1a65a
- OCaml 4.06.0 rebuild.
2b1a65a
f27e5a7
* Wed Oct 04 2017 Troy Dawson <tdawson@redhat.com> - 5.5-10
f27e5a7
- Cleanup spec file conditionals
f27e5a7
fd21067
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5.5-9
fd21067
- Python 2 binary package renamed to python2-brltty
fd21067
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
fd21067
7987d84
* Tue Aug 08 2017 Richard W.M. Jones <rjones@redhat.com> - 5.5-8
7987d84
- OCaml 4.05.0 rebuild.
7987d84
b73caf3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5-7
b73caf3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b73caf3
d082711
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5-6
d082711
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d082711
1ab2e77
* Tue Jul 11 2017 Gwyn Ciesla <limburgher@gmail.com> - 5.5-5
1ab2e77
- Use python 3 for latex-access, BZ 1465657.
1ab2e77
222fb87
* Tue Jun 27 2017 Gwyn Ciesla <limburgher@gmail.com> - 5.5-4
222fb87
- OCaml 4.04.2 rebuild.
222fb87
20d0c57
* Thu Jun 22 2017 Gwyn Ciesla <limburgher@gmail.com> - 5.5-3
20d0c57
- Fix Python-related FTBFS.
20d0c57
04e0161
* Fri May 12 2017 Richard W.M. Jones <rjones@redhat.com> - 5.5-2
04e0161
- OCaml 4.04.1 rebuild.
04e0161
2cb1453
* Wed Apr 19 2017 Gwyn Ciesla <limburgher@gmail.com> - 5.5-1
2cb1453
- 5.5, BZ 1443262.
2cb1453
0b88ce9
* Fri Mar 17 2017 Stephen Gallagher <sgallagh@redhat.com> - 5.4-8
0b88ce9
- Don't pass unnecessary -Wno-format to Python bindings
0b88ce9
- Fixes FTBFS on gcc7
0b88ce9
1451207
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.4-7
1451207
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1451207
f678f5f
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 5.4-6
f678f5f
- Rebuild for Python 3.6
f678f5f
0a5a917
* Wed Nov  9 2016 Jaroslav Škarvada <jskarvad@redhat.com> - 5.4-5
0a5a917
- Used upstream fix for OCaml 4.04
0a5a917
5af3e75
* Tue Nov 08 2016 Richard W.M. Jones <rjones@redhat.com> - 5.4-4
5af3e75
- Add fix for OCaml 4.04 (thanks: Jaroslav Škarvada).
5af3e75
152e55c
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 5.4-3
152e55c
- Rebuild for OCaml 4.04.0.
152e55c
fb5ae68
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4-2
fb5ae68
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
fb5ae68
40500d1
* Wed Jun 29 2016 Jaroslav Škarvada <jskarvad@redhat.com> - 5.4-1
40500d1
- New version
40500d1
  Resolves: rhbz#1350990
40500d1
- Dropped xw-fonts-fix and async-wait patches (both upstreamed)
40500d1
2fce83b
* Fri May 13 2016 Jaroslav Škarvada <jskarvad@redhat.com> - 5.3.1-8
2fce83b
- Fixed async wait to handle zero timeouts (by async-wait patch)
2fce83b
a9ee1f4
* Wed May  4 2016 Jaroslav Škarvada <jskarvad@redhat.com> - 5.3.1-7
a9ee1f4
- Made brltty-config executable, currently useless, but FHS compliant
a9ee1f4
  Resolves: rhbz#1332981
a9ee1f4
f1c9977
* Mon Apr 11 2016 Jaroslav Škarvada <jskarvad@redhat.com> - 5.3.1-6
f1c9977
- Improved fix for XW driver not showing Braille characters
f1c9977
  Related: rhbz#1324669
f1c9977
a54e8f3
* Thu Apr  7 2016 Jaroslav Škarvada <jskarvad@redhat.com> - 5.3.1-5
a54e8f3
- Fixed XW driver to show Braille characters
a54e8f3
  Related: rhbz#1324669
a54e8f3
- No need to explicitly harden
a54e8f3
- Added architecture to subpackages requirements
a54e8f3
- Made brltty main package to explicitly requires specific brlapi version
a54e8f3
- Renumbered patches
a54e8f3
ab3a2f6
* Tue Apr  5 2016 Jaroslav Škarvada <jskarvad@redhat.com> - 5.3.1-4
ab3a2f6
- Dropped man-fix patch (upstreamed)
ab3a2f6
- Hardened build
ab3a2f6
  Related: rhbz#1092547
ab3a2f6
64d27ff
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-3
64d27ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
64d27ff
c07fc8a
* Wed Dec 23 2015 Jon Ciesla <limburgher@gmail.com> - 5.3.1-2
c07fc8a
- Bump rel, api is the same.
c07fc8a
0a639bb
* Wed Dec 23 2015 Jon Ciesla <limburgher@gmail.com> - 5.3.1-1
0a639bb
- 5.3.1, BZ 1293612.
0a639bb
39983df
* Tue Dec 15 2015 Jon Ciesla <limburgher@gmail.com> - 5.3-1
39983df
- 5.3, BZ 1291657.
39983df
- Man fix upstreamed.
39983df
3840640
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2-12
3840640
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
3840640
a0dca49
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 5.2-11
a0dca49
- OCaml 4.02.3 rebuild.
a0dca49
21feee1
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 5.2-10
21feee1
- ocaml-4.02.2 final rebuild.
21feee1
2d092f3
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 5.2-9
2d092f3
- ocaml-4.02.2 rebuild.
2d092f3
25b1cc9
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2-8
25b1cc9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
25b1cc9
cc6548a
* Mon May 25 2015 Jaroslav Škarvada <jskarvad@redhat.com> - 5.2-7
cc6548a
- Fixed manual page
cc6548a
  Resolves: rhbz#1224661
cc6548a
2634aa9
* Mon Mar 23 2015 Jaroslav Škarvada <jskarvad@redhat.com> - 5.2-6
2634aa9
- Dropped AtSpi driver
2634aa9
  Related: rhbz#1204462
2634aa9
a4b0aba
* Mon Mar 23 2015 Jaroslav Škarvada <jskarvad@redhat.com> - 5.2-5
a4b0aba
- Added support for AtSpi2 driver
a4b0aba
  Resolves: rhbz#1204462
a4b0aba
- Added support for eSpeak driver
a4b0aba
- Filtered private libraries from provides/requires
a4b0aba
7484f70
* Tue Feb 17 2015 Richard W.M. Jones <rjones@redhat.com> - 5.2-4
7484f70
- ocaml-4.02.1 rebuild.
7484f70
28c5595
* Tue Feb 17 2015 Jaroslav Škarvada <jskarvad@redhat.com> - 5.2-3
28c5595
- Rebuilt for new ocaml
28c5595
5c39094
* Mon Jan 26 2015 David Tardon <dtardon@redhat.com> - 5.2-2
5c39094
- rebuild for ICU 54.1
5c39094
4a37f23
* Wed Nov 12 2014 Jon Ciesla <limburgher@gmail.com> - 5.2-1
4a37f23
- 5.2, BZ 1163112.
4a37f23
c5da85c
* Sun Aug 31 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1-12
c5da85c
- ocaml-4.02.0 final rebuild.
c5da85c
bd98975
* Tue Aug 26 2014 David Tardon <dtardon@redhat.com> - 5.1-11
bd98975
- rebuild for ICU 53.1
bd98975
92d36d9
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1-10
92d36d9
- ocaml-4.02.0+rc1 rebuild.
92d36d9
ce319ca
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1-9
ce319ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
ce319ca
29d734e
* Sat Aug 02 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1-8
29d734e
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
29d734e
efce742
* Mon Jul 21 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1-7
efce742
- OCaml 4.02.0 beta rebuild (with fixed compiler).
efce742
d04265d
* Mon Jul 14 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 5.1-6
d04265d
- Rebuilt for new ocaml
d04265d
9957557
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1-5
9957557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
9957557
222ff77
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 5.1-4
222ff77
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
222ff77
9c0de6e
* Tue May 20 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 5.1-3
9c0de6e
- Rebuilt for tcl/tk8.6
9c0de6e
aa38740
* Tue Apr 15 2014 Richard W.M. Jones <rjones@redhat.com> - 5.1-2
aa38740
- Remove ocaml_arches macro (RHBZ#1087794).
aa38740
b85ec55
* Thu Mar 27 2014 Jon Ciesla <limburgher@gmail.com> - 5.1-1
b85ec55
- 5.1, BZ 1081459.
b85ec55
- Fixed Source URL.
b85ec55
eb7213d
* Thu Feb 20 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 5.0-1
eb7213d
- New version
eb7213d
  Resolves: rhbz#1067337
eb7213d
- Dropped man-fix patch (upstreamed)
eb7213d
- De-fuzzified libspeechd patch
eb7213d
- Handled locales
eb7213d
- Switched to xz compressed sources
eb7213d
75dfa18
* Thu Feb 13 2014 Jon Ciesla <limburgher@gmail.com> - 4.5-10
75dfa18
- libicu rebuild.
b8db404
- Add python-setuptools BR.
75dfa18
3b4e139
* Mon Sep 23 2013 Jaroslav Škarvada <jskarvad@redhat.com> - 4.5-9
3b4e139
- The brlapi.key is now preset, users in the brlapi group have access
3b4e139
  Resolves: rhbz#1010656
3b4e139
2a91182
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 4.5-8
2a91182
- Rebuild for OCaml 4.01.0.
2d62c19
- Create stublibs directory for OCaml, else install fails.
2d62c19
- Unset MAKEFLAGS so that MAKEFLAGS=-j<N> does not break local builds.
cb57906
- In new speech-dispatcher, <libspeechd.h> has moved to a subdirectory.
2a91182
e2c40c2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5-7
e2c40c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e2c40c2
ae8b056
* Mon Jul 15 2013 Jaroslav Škarvada <jskarvad@redhat.com> - 4.5-6
ae8b056
- Updated man page
ae8b056
81241b8
* Fri May 10 2013 Jon Ciesla <limburgher@gmail.com> - 4.5-5
f1f8f1e
- Add systemd unit file, BZ 916628.
81241b8
- Drop spurious post scripts.
81241b8
- Move eveything but man pages and license files top -docs.
81241b8
3aece1c
* Thu May  9 2013 Jaroslav Škarvada <jskarvad@redhat.com> - 4.5-4
3aece1c
- Conditionally build python3
f1f8f1e
3f153e7
* Tue Apr 30 2013 Jon Ciesla <limburgher@gmail.com> - 4.5-3
3f153e7
- Add bluetooth support, BZ 916628.
3f153e7
d6b5519
* Thu Apr 04 2013 Kalev Lember <kalevlember@gmail.com> - 4.5-2
d6b5519
- Don't install the library in /lib now that we have UsrMove
d6b5519
452dc0b
* Thu Apr 04 2013 Kalev Lember <kalevlember@gmail.com> - 4.5-1
452dc0b
- Update to 4.5
24e84ce
- Add Python 3 support (python3-brlapi)
452dc0b
3922541
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-13
3922541
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3922541
0589a5f
* Tue Jan  8 2013 Jaroslav Škarvada <jskarvad@redhat.com> - 4.3-12
0589a5f
- Build with -fno-strict-aliasing
0589a5f
Stanislav Ochotnicky 019dbcf
* Wed Dec 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.3-11
Stanislav Ochotnicky 019dbcf
- revbump after jnidir change
Stanislav Ochotnicky 019dbcf
edcff8c
* Wed Dec 12 2012 Jaroslav Škarvada <jskarvad@redhat.com> - 4.3-10
edcff8c
- Fixed directories, install to /usr prefix
edcff8c
Stanislav Ochotnicky d5cc6e7
* Wed Dec 12 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.3-9
Stanislav Ochotnicky d5cc6e7
- Fix up java subpackage installation directories
Stanislav Ochotnicky d5cc6e7
- Fix java JNI loading code
Stanislav Ochotnicky d5cc6e7
030cad3
* Wed Oct 17 2012 Jon Ciesla <limburgher@gmail.com> - 4.3-8
030cad3
- Bump and rebuild for new ocaml.
030cad3
a94c283
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-7
a94c283
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a94c283
84cd55d
* Fri Jun 08 2012 Jon Ciesla <limburgher@gmail.com> - 4.3-6
84cd55d
- Bump and rebuild for ocaml 4.00.0.
84cd55d
d425b4f
* Fri Mar 23 2012 Dan Horák <dan[at]danny.cz> - 4.3-5
d425b4f
- conditionalize ocaml support
d425b4f
- fix build on 64-bit arches
d425b4f
244c368
* Mon Feb 06 2012 Jon Ciesla <limburgher@gmail.com> - 4.3-4
244c368
- Added ocaml subpackage, BZ 702724.
244c368
6b948c0
* Fri Feb 03 2012 Jon Ciesla <limburgher@gmail.com> - 4.3-3
6b948c0
- Fixed libbrlapi.so symlink, BZ 558132.
6b948c0
fb914ca
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-2
fb914ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fb914ca
Jon Ciesla ff381fe
* Tue Oct 18 2011 Jon Ciesla <limb@jcomserv.net> - 4.3-1
Jon Ciesla ff381fe
- New upstream.
Jon Ciesla ff381fe
- S_ISCHR patch upstreamed.
Jon Ciesla ff381fe
- parallel patch updated.
Jon Ciesla ff381fe
- Cleaned up some file encodings.
Jon Ciesla ff381fe
4dae1f4
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2-4
4dae1f4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4dae1f4
63b65e8
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 4.2-3
63b65e8
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
63b65e8
e2eb4d1
* Fri May 21 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 4.2-2
e2eb4d1
- rework parallel patch slightly and reapply
e2eb4d1
1015788
* Fri May 21 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 4.2-1
1015788
- update to 4.2
1015788
- drop static lib (bz 556041)
1015788
- fix undefined S_ISCHR call
1015788
110bba7
* Wed Jan 20 2010 Stepan Kasal <skasal@redhat.com> - 4.1-5
110bba7
- requires(post): coreutils to work around an installator bug
110bba7
- Resolves: #540437
110bba7
ab22ab3
* Wed Jan 13 2010 Stepan Kasal <skasal@redhat.com> - 4.1-4
ab22ab3
- limit building against speech-dispatcher to Fedora
ab22ab3
- Resolves: rhbz#553795
ab22ab3
e966baa
* Sun Nov  1 2009 Stepan Kasal <skasal@redhat.com> - 4.1-3
e966baa
- build the TTY driver (it was disabled since it first appered in 3.7.2-1)
e966baa
- build with speech-dispatcher, packed into a separate sub-package
e966baa
e966baa
* Fri Oct 30 2009 Stepan Kasal <skasal@redhat.com> - 4.1-2
e966baa
- move data-directory back to default: /etc/brltty
e966baa
- move brltty to /bin and /lib, so that it can be used to repair the system
e966baa
  without /usr mounted (#276181)
e966baa
- move vstp and libbrlttybba.so to brlapi
e966baa
- brltty no longer requires brlapi
e966baa
- brlapi now requires brltty from the same build
e966baa
ef909a2
* Wed Oct 28 2009 Stepan Kasal <skasal@redhat.com> - 4.1-1
ef909a2
- new upstream version
ef909a2
- use --disable-stripping instead of make variable override
ef909a2
- install the default brltty-pm.conf to docdir only (#526168)
ef909a2
- remove the duplicate copies of rhmkboot and rhmkroot from docdir
ef909a2
- patch configure so that the dirs in summary are not garbled:
ef909a2
  brltty-autoconf-quote.patch
e966baa
- move data-directory to ${datadir}/brltty
ef909a2
46757b8
* Tue Oct 20 2009 Stepan Kasal <skasal@redhat.com> - 4.0-2
46757b8
- escape rpm macros in the rpm change log
ef909a2
- add requires to bind subpackages from one build together
46757b8
243c6e3
* Wed Oct  7 2009 Stepan Kasal <skasal@redhat.com> - 4.0-1
243c6e3
- new upstream version
ef909a2
- drop upstreamed patches; ./autogen not needed anymore
243c6e3
- pack the xbrlapi server; move its man page to brlapi package
ef909a2
- add man-page for brltty.conf (#526168)
243c6e3
ba73242
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-6
ba73242
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ba73242
6d8a274
* Tue May 12 2009 Stepan Kasal <skasal@redhat.com> - 3.10-5
6d8a274
- rebuild after java-1.5.0-gcj rebuild
6d8a274
f51fa9b
* Thu Apr 30 2009 Stepan Kasal <skasal@redhat.com> - 3.10-4
f51fa9b
- own the tcl subdirectory (#474032)
f51fa9b
- set CPPFLAGS to java include dirs, so that the java bindings build with
f51fa9b
  any java implementation (#498964)
f51fa9b
- add --without-curses; there is no curses package BuildRequired anyway
f51fa9b
6c9a6db
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-3
6c9a6db
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6c9a6db
3c99a8f
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 3.10-2
3c99a8f
- Rebuild for Python 2.6
3c99a8f
f326de9
* Sat Sep 13 2008 Stepan Kasal <skasal@redhat.com> - 3.10-1
f326de9
- new upstream release
f326de9
- drop brltty-3.9-java-svn.patch, brltty-3.9-tcl85path.patch,
f326de9
  and brltty-3.9-pyxfix.patch, they are upstream
f326de9
- fix BuildRoot
f326de9
- fix many sub-packages' Requires on brlapi
f326de9
6cc4c5d
* Wed Sep 10 2008 Stepan Kasal <skasal@redhat.com> - 3.9-3
6cc4c5d
- add brltty-3.9-autoconf.patch to fix to build with Autoconf 2.62
6cc4c5d
- add brltty-3.9-parallel.patch to fix race condition with parallel make
6cc4c5d
- add brltty-3.9-pyxfix.patch to fix build with current pyrex
6cc4c5d
- Summary lines shall not end with a dot
6cc4c5d
Tomas Janousek 37c9aa8
* Thu Feb 28 2008 Tomas Janousek <tjanouse@redhat.com> - 3.9-2.2
Tomas Janousek 37c9aa8
- glibc build fixes
Tomas Janousek 37c9aa8
- applied java reorganisations from svn
Tomas Janousek 37c9aa8
f4dcdca
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.9-2.1
f4dcdca
- Autorebuild for GCC 4.3
f4dcdca
Tomas Janousek ae11bd2
* Wed Jan 09 2008 Tomas Janousek <tjanouse@redhat.com> - 3.9-1.1
Tomas Janousek ae11bd2
- specfile update to comply with tcl packaging guidelines
Tomas Janousek ae11bd2
Tomas Janousek 7eecaf9
* Mon Jan 07 2008 Tomas Janousek <tjanouse@redhat.com> - 3.9-1
Tomas Janousek 7eecaf9
- update to latest upstream (3.9)
Tomas Janousek 7eecaf9
Tomas Janousek 7eecaf9
* Tue Sep 18 2007 Tomas Janousek <tjanouse@redhat.com> - 3.8-2.svn3231
Tomas Janousek 7eecaf9
- update to r3231 from svn
Tomas Janousek 7eecaf9
- added java binding subpackage
Tomas Janousek 7eecaf9
Tomas Janousek 7eecaf9
* Wed Aug 29 2007 Tomas Janousek <tjanouse@redhat.com> - 3.8-2.svn3231
Tomas Janousek 7eecaf9
- update to r3231 from svn
Tomas Janousek 7eecaf9
Tomas Janousek e2b1266
* Tue Aug 21 2007 Tomas Janousek <tjanouse@redhat.com> - 3.8-1
Tomas Janousek e2b1266
- update to latest upstream
Tomas Janousek e2b1266
- added the at-spi driver, tcl and python bindings
Tomas Janousek e2b1266
- fixed the license tags
Tomas Janousek e2b1266
Tomas Janousek b3f626f
* Mon Mar 05 2007 Tomas Janousek <tjanouse@redhat.com> - 3.7.2-3
Tomas Janousek b3f626f
- added the XWindow driver
Tomas Janousek b3f626f
- build fix for newer byacc
Tomas Janousek b3f626f
Tomas Janousek 68de005
* Tue Jan 30 2007 Tomas Janousek <tjanouse@redhat.com> - 3.7.2-2.1
Tomas Janousek 68de005
- quiet postinstall scriptlet, really fixes #224570
Tomas Janousek 68de005
Tomas Janousek 57b8547
* Tue Jan 30 2007 Tomas Janousek <tjanouse@redhat.com> - 3.7.2-2
Tomas Janousek 57b8547
- failsafe postinstall script, fixes #224570
Tomas Janousek 57b8547
- makefile fix - debuginfo extraction now works
Tomas Janousek 57b8547
Tomas Janousek 96dcaf2
* Thu Jan 25 2007 Tomas Janousek <tjanouse@redhat.com> - 3.7.2-1.1
Tomas Janousek 96dcaf2
- fix building with newer kernel-headers (#224149)
Tomas Janousek 96dcaf2
prockai c95485f
* Wed Jul 12 2006 Petr Rockai <prockai@redhat.com> - 3.7.2-1
prockai c95485f
- upgrade to latest upstream version
prockai c95485f
- split off brlapi and brlapi-devel packages
prockai c95485f
3afcccb
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.2-12.1
3afcccb
- rebuild
3afcccb
Florian La Roche 6bd36d0
* Sun Jul 02 2006 Florian La Roche <laroche@redhat.com>
Florian La Roche 6bd36d0
- for the post script require coreutils
Florian La Roche 6bd36d0
b834fbc
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> - 3.2-11
b834fbc
- Added byacc BuildRequires, removed prereq, coreutils is always there
b834fbc
619a25d
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.2-10.2.1
619a25d
- bump again for double-long bug on ppc(64)
619a25d
e015911
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.2-10.2
e015911
- rebuilt for new gcc4.1 snapshot and glibc changes
e015911
522edf5
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
522edf5
- rebuilt
522edf5
2e92d4c
* Wed Mar 16 2005 Bill Nottingham <notting@redhat.com> 3.2-10
2e92d4c
- rebuild
2e92d4c
Florian La Roche 0fc1e5b
* Fri Nov 26 2004 Florian La Roche <laroche@redhat.com>
Florian La Roche 0fc1e5b
- add a %%clean into .spec
Florian La Roche 0fc1e5b
havill 7d6c3ee
* Thu Oct 14 2004 Adrian Havill <havill@redhat.com> 3.2-5
havill 7d6c3ee
- chmod a-x for conf file (#116244)
havill 7d6c3ee
cvsdist 90cebf5
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 90cebf5
- rebuilt
cvsdist 90cebf5
cvsdist b66bebe
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist b66bebe
- rebuilt
cvsdist b66bebe
cvsdist b66bebe
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist b66bebe
- rebuilt
cvsdist b66bebe
cvsdist 0818a33
* Tue Sep 30 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 0818a33
- prereq coreutils for mknod/chown/chmod
cvsdist a88e837
cvsdist a88e837
* Mon Jul 07 2003 Adrian Havill <havill@redhat.com> 3.2-2
cvsdist a88e837
- changed spec "Copyright" to "License"
46757b8
- use %%configure macro, %%{_libdir} for non-ia32 archs
cvsdist a88e837
- removed unnecessary set and unset, assumed/default spec headers
cvsdist a88e837
- fixed unpackaged man page, duplicate /bin and /lib entries
cvsdist a88e837
- use plain install vs scripts for non-i386 buildsys