liblouis/liblouis.spec

137 lines
4.1 KiB
RPMSpec

%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
Name: liblouis
Version: 3.7.0
Release: 6
Summary: Braille translation and back-translation library
License: LGPLv3+ and GPLv3+
URL: http://liblouis.org
Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
Patch0000: 0001-fix-memory-issue-introduced-with-GCC9.patch
Patch0001: CVE-2023-26769.patch
Patch0002: CVE-2022-26981.patch
Patch0003: CVE-2022-31783.patch
Patch0004: CVE-2023-26767.patch
Patch0005: CVE-2023-26768.patch
BuildRequires: chrpath gcc help2man texinfo texinfo-tex texlive-eurosym
BuildRequires: texlive-xetex python3-devel
Provides: bundled(gnulib) = 20130621
%description
The Liblouis software suite provides an open-source braille translator,
back-translator and formatter for a large number of languages and braille codes.
It is a set of libraries designed for use in any of a number of applications,
both free and commercial. It is written in C so that it does not require a runtime environment
and hence can be used in applications written in high-level languages such as Java and Python.
%package devel
Summary: Development files for liblouis
Requires: %{name} = %{version}-%{release} pkgconfig
%description devel
The liblouis-devel package contains libraries and header files for developing applications that use liblouis.
%package utils
Summary: Command-line utilities to test liblouis
Requires: %{name} = %{version}-%{release}
Requires: python3-louis = %{version}-%{release}
License: GPLv3+
%description utils
Six test programs are provided as part of the liblouis package.They are intended for testing liblouis and for debugging tables.
None of them is suitable for braille transcription.
%package help
Summary: Help documents for liblouis
BuildArch: noarch
Requires: %{name} = %{version}-%{release}
Provides: liblouis-doc = %{version}-%{release}
Obsoletes: liblouis-doc < %{version}-%{release}
%description help
The liblouis-help package conatins manual pages and documents for liblouis.
%package -n python3-louis
Summary: Python 3 language bindings for %{name}
BuildArch: noarch
Requires: %{name} = %{version}-%{release}
Obsoletes: %{name}-python3 < 2.6.2-3
Provides: %{name}-python3 = %{version}-%{release}
%{?python_provide:%python_provide python3-louis}
%description -n python3-louis
This package provides Python 3 language bindings for %{name}.
%prep
%autosetup -p1
%build
%configure --disable-static --enable-ucs4
make
cd doc; xetex %{name}.texi
%check
make check
%install
%make_install
%delete_la
rm -rf %{buildroot}/%{_bindir}/lou_maketable*
rm -rf %{buildroot}/%{_defaultdocdir}/%{name}/
cd python/louis
install -d %{buildroot}%{python3_sitelib}/louis
install -pm 0644 __init__.py %{buildroot}%{python3_sitelib}/louis/
%py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/louis/
for f in %{buildroot}%{_bindir}/lou_* ; do
chrpath --delete $f
done
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
%files
%doc COPYING.LESSER AUTHORS
%{_libdir}/%{name}.so.*
%{_datadir}/%{name}/
%{_infodir}/%{name}.info*
%exclude %{_infodir}/dir
%files devel
%doc HACKING
%{_includedir}/%{name}/
%{_libdir}/pkgconfig/%{name}.pc
%{_libdir}/%{name}.so
%files utils
%doc COPYING
%{_bindir}/lou_*
%files help
%doc README NEWS ChangeLog TODO doc/%{name}.{html,txt,pdf}
%{_mandir}/man1/lou_*.1*
%files -n python3-louis
%{python3_sitelib}/louis/
%changelog
* Mon Dec 11 2023 wangkai <13474090681@163.com> - 3.7.0-6
- Fix CVE-2022-26981,CVE-2022-31783,CVE-2023-26767,CVE-2023-26768
* Wed Mar 22 2023 yaoxin <yaoxin30@h-partners.com> - 3.7.0-5
- Fix CVE-2023-26769
* Wed Oct 21 2020 Ge Wang <wangge20@huawei.com> - 3.7.0-4
- remove python2
* Thu May 21 2020 yanan li <liyanan032@huawei.com> - 3.7.0-3
- Fixed memory leaks created by block scope compound literals.
* Thu Nov 28 2019 liujing<liujing144@huawei.com> - 3.7.0-2
- Package init