2013-02-26 21:58:27 +00:00
|
|
|
# Turn off the brp-python-bytecompile script
|
|
|
|
%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
|
2013-04-15 14:57:59 +00:00
|
|
|
|
2011-03-11 19:47:05 +00:00
|
|
|
Name: liblouis
|
2022-12-06 14:11:23 +00:00
|
|
|
Version: 3.24.0
|
2022-09-12 08:08:43 +00:00
|
|
|
Release: 1%{?dist}
|
2011-03-11 19:47:05 +00:00
|
|
|
Summary: Braille translation and back-translation library
|
|
|
|
|
|
|
|
License: LGPLv3+
|
2017-11-03 11:45:47 +00:00
|
|
|
URL: http://liblouis.org
|
2015-04-08 15:50:14 +00:00
|
|
|
Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
2018-07-09 15:16:52 +00:00
|
|
|
|
2014-05-16 09:25:56 +00:00
|
|
|
BuildRequires: chrpath
|
2021-12-20 11:23:32 +00:00
|
|
|
BuildRequires: fdupes
|
2018-07-09 15:16:52 +00:00
|
|
|
BuildRequires: gcc
|
2011-03-11 19:47:05 +00:00
|
|
|
BuildRequires: help2man
|
2018-10-13 07:44:35 +00:00
|
|
|
BuildRequires: libyaml-devel
|
2021-12-20 11:23:32 +00:00
|
|
|
BuildRequires: make
|
2015-08-23 10:35:50 +00:00
|
|
|
BuildRequires: texinfo
|
2011-03-11 19:47:05 +00:00
|
|
|
BuildRequires: texinfo-tex
|
2018-07-09 15:16:52 +00:00
|
|
|
BuildRequires: texlive-eurosym
|
|
|
|
BuildRequires: texlive-xetex
|
2017-11-03 11:45:47 +00:00
|
|
|
BuildRequires: python3-devel
|
2013-04-15 14:57:59 +00:00
|
|
|
|
2020-01-20 14:00:35 +00:00
|
|
|
Provides: bundled(gnulib)
|
2011-03-11 19:47:05 +00:00
|
|
|
|
|
|
|
%description
|
2014-05-16 09:25:56 +00:00
|
|
|
Liblouis is an open-source braille translator and back-translator named in
|
|
|
|
honor of Louis Braille. It features support for computer and literary braille,
|
|
|
|
supports contracted and uncontracted translation for many languages and has
|
|
|
|
support for hyphenation. New languages can easily be added through tables that
|
|
|
|
support a rule- or dictionary based approach. Liblouis also supports math
|
|
|
|
braille (Nemeth and Marburg).
|
2011-03-11 19:47:05 +00:00
|
|
|
|
2014-05-16 09:25:56 +00:00
|
|
|
Liblouis has features to support screen-reading programs. This has led to its
|
|
|
|
use in two open-source screen readers, NVDA and Orca. It is also used in some
|
|
|
|
commercial assistive technology applications for example by ViewPlus.
|
2011-03-11 19:47:05 +00:00
|
|
|
|
2014-05-16 09:25:56 +00:00
|
|
|
Liblouis is based on the translation routines in the BRLTTY screen reader for
|
|
|
|
Linux. It has, however, gone far beyond these routines.
|
2011-03-11 19:47:05 +00:00
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
2012-03-10 11:14:11 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2011-03-11 19:47:05 +00:00
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%package utils
|
|
|
|
Summary: Command-line utilities to test %{name}
|
2013-07-19 00:42:26 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2011-03-11 19:47:05 +00:00
|
|
|
License: GPLv3+
|
|
|
|
|
|
|
|
%description utils
|
2014-05-16 09:25:56 +00:00
|
|
|
Six test programs are provided as part of the liblouis package. They
|
2011-03-11 19:47:05 +00:00
|
|
|
are intended for testing liblouis and for debugging tables. None of
|
|
|
|
them is suitable for braille transcription.
|
|
|
|
|
2013-02-26 21:58:27 +00:00
|
|
|
|
2015-08-23 10:19:33 +00:00
|
|
|
%package -n python3-louis
|
2013-02-26 21:58:27 +00:00
|
|
|
Summary: Python 3 language bindings for %{name}
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2015-08-23 10:19:33 +00:00
|
|
|
Obsoletes: %{name}-python3 < 2.6.2-3
|
|
|
|
Provides: %{name}-python3 = %{version}-%{release}
|
2017-12-23 22:46:02 +00:00
|
|
|
%{?python_provide:%python_provide python3-louis}
|
2013-02-26 21:58:27 +00:00
|
|
|
|
2015-08-23 10:19:33 +00:00
|
|
|
%description -n python3-louis
|
2013-02-26 21:58:27 +00:00
|
|
|
This package provides Python 3 language bindings for %{name}.
|
2011-03-11 19:47:05 +00:00
|
|
|
|
|
|
|
|
2013-02-22 13:44:01 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
This package provides the documentation for liblouis.
|
|
|
|
|
|
|
|
|
2011-03-11 19:47:05 +00:00
|
|
|
%prep
|
2021-03-11 10:51:36 +00:00
|
|
|
%autosetup
|
2022-09-12 08:08:43 +00:00
|
|
|
chmod 664 tables/*
|
2011-03-11 19:47:05 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static --enable-ucs4
|
2018-07-09 15:16:52 +00:00
|
|
|
# parallel builds fail
|
|
|
|
make
|
|
|
|
cd doc; xetex %{name}.texi
|
2014-05-16 09:25:56 +00:00
|
|
|
|
2020-12-01 14:07:20 +00:00
|
|
|
|
2014-05-16 09:25:56 +00:00
|
|
|
%check
|
|
|
|
make check
|
2011-03-11 19:47:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2020-09-07 07:49:55 +00:00
|
|
|
%make_install
|
2011-03-11 19:47:05 +00:00
|
|
|
rm -f %{buildroot}/%{_infodir}/dir
|
|
|
|
rm -f %{buildroot}/%{_libdir}/%{name}.la
|
2018-07-09 15:16:52 +00:00
|
|
|
rm -rf %{buildroot}/%{_bindir}/lou_maketable*
|
2011-03-11 19:47:05 +00:00
|
|
|
rm -rf %{buildroot}/%{_defaultdocdir}/%{name}/
|
2021-12-20 11:23:32 +00:00
|
|
|
|
|
|
|
# Replace table files with identical content by symlinks
|
|
|
|
%fdupes -s %{buildroot}%{_datadir}/%{name}/tables/
|
|
|
|
|
2011-03-11 19:47:05 +00:00
|
|
|
cd python/louis
|
2013-02-26 21:58:27 +00:00
|
|
|
|
|
|
|
install -d %{buildroot}%{python3_sitelib}/louis
|
|
|
|
install -pm 0644 __init__.py %{buildroot}%{python3_sitelib}/louis/
|
|
|
|
%py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/louis/
|
2011-03-11 19:47:05 +00:00
|
|
|
|
2014-05-16 09:25:56 +00:00
|
|
|
# Remove Rpaths from the executables. We must do that in the %%install section
|
|
|
|
# because, otherwise, the test suite wouldn't build.
|
2018-07-09 15:16:52 +00:00
|
|
|
for f in %{buildroot}%{_bindir}/lou_* ; do
|
2015-04-08 15:50:14 +00:00
|
|
|
chrpath --delete $f
|
2014-05-16 09:25:56 +00:00
|
|
|
done
|
|
|
|
|
2011-03-11 19:47:05 +00:00
|
|
|
|
2018-07-28 08:23:06 +00:00
|
|
|
%ldconfig_scriptlets
|
2011-03-11 19:47:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
2019-06-03 15:38:10 +00:00
|
|
|
%doc README AUTHORS NEWS ChangeLog TODO
|
|
|
|
%license COPYING.LESSER
|
2011-03-11 19:47:05 +00:00
|
|
|
%{_libdir}/%{name}.so.*
|
|
|
|
%{_datadir}/%{name}/
|
|
|
|
%{_infodir}/%{name}.info*
|
|
|
|
|
|
|
|
%files devel
|
2014-05-16 09:25:56 +00:00
|
|
|
%doc HACKING
|
2011-03-11 19:47:05 +00:00
|
|
|
%{_includedir}/%{name}/
|
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%{_libdir}/%{name}.so
|
|
|
|
|
|
|
|
%files utils
|
2019-06-03 15:38:10 +00:00
|
|
|
%license COPYING
|
2011-03-11 19:47:05 +00:00
|
|
|
%{_bindir}/lou_*
|
|
|
|
%{_mandir}/man1/lou_*.1*
|
|
|
|
|
2015-08-23 10:19:33 +00:00
|
|
|
%files -n python3-louis
|
2013-02-26 21:58:27 +00:00
|
|
|
%{python3_sitelib}/louis/
|
|
|
|
|
2013-02-22 13:44:01 +00:00
|
|
|
%files doc
|
|
|
|
%doc doc/%{name}.{html,txt,pdf}
|
|
|
|
|
2011-03-11 19:47:05 +00:00
|
|
|
|
|
|
|
%changelog
|
2022-12-06 14:11:23 +00:00
|
|
|
* Tue Dec 06 2022 Martin Gieseking <martin.gieseking@uos.de> - 3.24.0-1
|
|
|
|
- Update to 3.24.0
|
|
|
|
|
2022-09-12 08:08:43 +00:00
|
|
|
* Mon Sep 12 2022 Martin Gieseking <martin.gieseking@uos.de> - 3.23.0-1
|
|
|
|
- Update to 3.23.0
|
|
|
|
|
2022-07-21 18:16:47 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.22.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-13 13:09:30 +00:00
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 3.22.0-2
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
2022-06-09 09:18:05 +00:00
|
|
|
* Thu Jun 09 2022 Martin Gieseking <martin.gieseking@uos.de> - 3.22.0-1
|
|
|
|
- Update to 3.22.0
|
|
|
|
|
2022-03-09 18:59:52 +00:00
|
|
|
* Wed Mar 09 2022 Martin Gieseking <martin.gieseking@uos.de> - 3.21.0-1
|
|
|
|
- Update to 3.21.0
|
|
|
|
|
2022-01-20 16:37:21 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.20.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-12-20 11:23:32 +00:00
|
|
|
* Mon Dec 20 2021 Martin Gieseking <martin.gieseking@uos.de> - 3.20.0-1
|
|
|
|
- Update to 3.20.0
|
|
|
|
|
2021-09-16 12:58:04 +00:00
|
|
|
* Thu Sep 16 2021 Martin Gieseking <martin.gieseking@uos.de> - 3.19.0-1
|
|
|
|
- Update to 3.19.0
|
|
|
|
|
2021-07-22 11:46:04 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.18.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-06-09 08:02:45 +00:00
|
|
|
* Wed Jun 09 2021 Martin Gieseking <martin.gieseking@uos.de> - 3.18.0-1
|
|
|
|
- Update to 3.18.0
|
|
|
|
|
2021-06-04 18:09:31 +00:00
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 3.17.0-2
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-03-11 10:51:36 +00:00
|
|
|
* Thu Mar 11 2021 Martin Gieseking <martin.gieseking@uos.de> - 3.17.0-1
|
|
|
|
- Update to 3.17.0
|
|
|
|
|
2021-01-26 17:26:17 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.16.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-12-02 08:00:50 +00:00
|
|
|
* Wed Dec 02 2020 Martin Gieseking <martin.gieseking@uos.de> - 3.16.1-1
|
|
|
|
- Update to 3.16.1
|
|
|
|
|
2020-12-01 14:07:20 +00:00
|
|
|
* Tue Dec 01 2020 Martin Gieseking <martin.gieseking@uos.de> - 3.16.0-1
|
|
|
|
- Update to 3.16.0
|
|
|
|
|
2020-09-07 07:49:55 +00:00
|
|
|
* Mon Sep 07 2020 Martin Gieseking <martin.gieseking@uos.de> - 3.15.0-2
|
|
|
|
- Use make_install macro.
|
|
|
|
|
2020-09-01 08:14:02 +00:00
|
|
|
* Tue Sep 01 2020 Martin Gieseking <martin.gieseking@uos.de> - 3.15.0-1
|
|
|
|
- Updated to 3.15.0
|
|
|
|
|
2020-07-28 05:01:19 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-26 00:50:48 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 3.12.0-3
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-01-29 09:37:06 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-20 14:00:35 +00:00
|
|
|
* Mon Jan 20 2020 Martin Gieseking <martin.gieseking@uos.de> - 3.12.0-1
|
|
|
|
- Updated to 3.12.0.
|
|
|
|
- Dropped date from Provides(gnulib).
|
|
|
|
|
2019-10-03 11:55:49 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.10.0-4
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-19 08:18:07 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.10.0-3
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-25 13:42:01 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-03 15:38:10 +00:00
|
|
|
* Mon Jun 03 2019 Martin Gieseking <martin.gieseking@uos.de> - 3.10.0-1
|
|
|
|
- Updated to 3.10.0.
|
|
|
|
- Use %%license tag to add the file containing the license text.
|
|
|
|
|
2019-03-04 15:20:51 +00:00
|
|
|
* Mon Mar 04 2019 Martin Gieseking <martin.gieseking@uos.de> - 3.9.0-1
|
|
|
|
- Updated to 3.9.0.
|
|
|
|
- Dropped GCC 9 related patch since changes have been applied upstream.
|
|
|
|
|
2019-02-11 10:17:25 +00:00
|
|
|
* Fri Feb 08 2019 Martin Gieseking <martin.gieseking@uos.de> - 3.8.0-3
|
|
|
|
- Fixed memory issue introduced with GCC 9 (changed semantics of block scope compound literals).
|
|
|
|
|
2019-02-01 07:32:52 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-10 11:11:23 +00:00
|
|
|
* Mon Dec 10 2018 Martin Gieseking <martin.gieseking@uos.de> - 3.8.0-1
|
|
|
|
- Updated to 3.8.0
|
|
|
|
|
2018-10-13 07:44:35 +00:00
|
|
|
* Sat Oct 13 2018 Martin Gieseking <martin.gieseking@uos.de> - 3.7.0-2
|
|
|
|
- Dropped Python 2 language bindings according to
|
|
|
|
https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
|
- Dropped Python dependency from utils package because it doesn't contain Python scripts any longer
|
|
|
|
- Added BR:libyaml-devel to enable YAML support
|
|
|
|
|
2018-09-26 08:57:07 +00:00
|
|
|
* Wed Sep 26 2018 Martin Gieseking <martin.gieseking@uos.de> - 3.7.0-1
|
|
|
|
- Updated to 3.7.0, fixes CVE-2018-17294 (BZ #1632834).
|
|
|
|
|
2018-07-31 13:09:43 +00:00
|
|
|
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 3.6.0-4
|
|
|
|
- Rebuild with fixed binutils
|
|
|
|
|
2018-07-28 08:23:06 +00:00
|
|
|
* Sat Jul 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.6.0-3
|
|
|
|
- Replace obsolete scriptlets
|
|
|
|
|
2018-07-13 08:22:51 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-09 15:16:52 +00:00
|
|
|
* Mon Jul 09 2018 Martin Gieseking <martin.gieseking@uos.de> - 3.6.0-1
|
|
|
|
- Updated to 3.6.0.
|
|
|
|
- Added patch to fix CVE-2018-12085.
|
|
|
|
- Create liblouis.pdf with XeTeX rather than texi2pdf to prevent build errors.
|
|
|
|
|
2018-06-19 08:46:09 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.6.2-16
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-02-07 22:35:31 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-09 17:55:23 +00:00
|
|
|
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.6.2-14
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2017-12-17 18:05:14 +00:00
|
|
|
* Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.6.2-13
|
|
|
|
- Python 2 binary package renamed to python2-louis
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-11-03 11:45:47 +00:00
|
|
|
* Fri Nov 03 2017 Martin Gieseking <martin.gieseking@uos.de> - 2.6.2-12
|
|
|
|
- Applied security fixes from EL 7.4 (CVE-2014-8184, CVE-2017-13738, CVE-2017-13740, CVE-2017-13741, CVE-2017-13742, CVE-2017-13743, CVE-2017-13744)
|
|
|
|
- Dropped redundant parts of the spec file.
|
|
|
|
- Updated URL.
|
|
|
|
|
2017-08-03 01:47:20 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 19:12:24 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-15 16:40:47 +00:00
|
|
|
* Wed Feb 15 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.6.2-9
|
|
|
|
- Rebuild for brp-python-bytecompile
|
|
|
|
|
2017-02-10 18:59:33 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-19 17:20:36 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.6.2-7
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-07-19 07:42:04 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.2-6
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-02-04 03:28:58 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-10 14:40:19 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-08-23 10:19:33 +00:00
|
|
|
* Sun Aug 23 2015 Kalev Lember <klember@redhat.com> - 2.6.2-3
|
|
|
|
- Rename liblouis-python3 to python3-louis, as per latest packaging guidelines
|
2015-08-23 10:58:10 +00:00
|
|
|
- Fix the build with texinfo 6.0
|
2015-08-23 10:19:33 +00:00
|
|
|
|
2015-06-17 16:01:51 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-08 15:50:14 +00:00
|
|
|
* Wed Apr 08 2015 Martin Gieseking <martin.gieseking@uos.de> 2.6.2-1
|
|
|
|
- Updated to new upstream release.
|
|
|
|
|
2014-09-16 13:40:07 +00:00
|
|
|
* Tue Sep 16 2014 Martin Gieseking <martin.gieseking@uos.de> 2.6.0-1
|
|
|
|
- Updated to new upstream release.
|
|
|
|
|
2014-08-18 10:06:52 +00:00
|
|
|
* Mon Aug 18 2014 Martin Gieseking <martin.gieseking@uos.de> 2.5.4-5
|
|
|
|
- Fixed check for ELF binaries to prevent chrpath from failing.
|
|
|
|
|
2014-08-17 04:24:38 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 04:16:41 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-27 15:49:37 +00:00
|
|
|
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 2.5.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2014-05-16 09:25:56 +00:00
|
|
|
* Tue May 13 2014 Martin Gieseking <martin.gieseking@uos.de> 2.5.4-1
|
|
|
|
- Updated to new upstream release.
|
|
|
|
- Activated the bundled test suite which has been adapted to work correctly with the recent release.
|
|
|
|
- Remove Rpaths from the utility programs.
|
|
|
|
- Updated the description according to the upstream website.
|
|
|
|
|
2013-08-03 06:04:14 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-22 08:58:19 +00:00
|
|
|
* Mon Jul 22 2013 Martin Gieseking <martin.gieseking@uos.de> - 2.5.3-1
|
|
|
|
- Update to new upstream release.
|
|
|
|
|
2013-07-19 00:42:26 +00:00
|
|
|
* Thu Jul 18 2013 Matthias Clasen <mclasen@redhat.com> - 2.5.2-7
|
|
|
|
- Tighten dependencies between subpackages (pointed out by rpmdiff)
|
|
|
|
|
2013-04-22 11:22:48 +00:00
|
|
|
* Tue Apr 16 2013 Martin Gieseking <martin.gieseking@uos.de> 2.5.2-6
|
|
|
|
- Restrict exclusion of Python 3 packages to RHEL <= 7.
|
|
|
|
|
2013-04-15 14:57:59 +00:00
|
|
|
* Mon Apr 15 2013 Martin Gieseking <martin.gieseking@uos.de> 2.5.2-5
|
|
|
|
- Restrict exclusion of Python 3 packages to RHEL < 7.
|
|
|
|
|
2013-04-15 14:01:33 +00:00
|
|
|
* Mon Apr 15 2013 Rui Matos <rmatos@redhat.com> - 2.5.2-4
|
2013-04-15 14:57:59 +00:00
|
|
|
- Don't depend on python3 in RHEL.
|
2013-04-15 14:01:33 +00:00
|
|
|
|
2013-02-26 21:58:27 +00:00
|
|
|
* Tue Feb 26 2013 Martin Gieseking <martin.gieseking@uos.de> 2.5.2-3
|
|
|
|
- Added Python 3 language bindings.
|
|
|
|
|
2013-02-22 13:44:01 +00:00
|
|
|
* Fri Feb 22 2013 Martin Gieseking <martin.gieseking@uos.de> 2.5.2-2
|
|
|
|
- Moved documentation to doc subpackage.
|
|
|
|
|
2013-02-06 19:45:40 +00:00
|
|
|
* Wed Feb 06 2013 Martin Gieseking <martin.gieseking@uos.de> 2.5.2-1
|
|
|
|
- Updated to new upstream release.
|
|
|
|
|
2012-07-19 20:21:36 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-10 11:14:11 +00:00
|
|
|
* Sat Mar 10 2012 Martin Gieseking <martin.gieseking@uos.de> 2.4.1-1
|
|
|
|
- Updated to upstream release 2.4.1.
|
|
|
|
- Made the devel package's dependency on the base package arch specific.
|
|
|
|
|
2012-01-13 07:58:32 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-12 21:05:26 +00:00
|
|
|
* Mon Dec 12 2011 Martin Gieseking <martin.gieseking@uos.de> 2.4.0-1
|
|
|
|
- Updated to upstream release 2.4.0.
|
|
|
|
|
2011-05-20 09:18:23 +00:00
|
|
|
* Fri May 20 2011 Martin Gieseking <martin.gieseking@uos.de> 2.3.0-1
|
|
|
|
- Updated to upstream release 2.3.0.
|
|
|
|
|
2011-03-11 19:47:05 +00:00
|
|
|
* Mon Feb 28 2011 Martin Gieseking <martin.gieseking@uos.de> - 2.2.0-2
|
|
|
|
- Added release date of bundled gnulib to Provides.
|
|
|
|
- Use %%{name} macro consistently.
|
|
|
|
|
|
|
|
* Tue Feb 15 2011 Martin Gieseking <martin.gieseking@uos.de> - 2.2.0-1
|
|
|
|
- Updated to upstream release 2.2.0.
|
|
|
|
- Added Python bindings.
|
|
|
|
|
|
|
|
* Mon Jul 5 2010 Lars Bjørndal <lars.bjorndal@broadpark.no> - 1.9.0-2
|
|
|
|
- In advice from Martin Gieseking: Removed some garbage from the file section, and added a PDF version of the liblouis documentation. See <https://bugzilla.redhat.com/show_bug.cgi?id=597597>.
|
|
|
|
|
|
|
|
* Wed Jun 30 2010 Lars Bjørndal <lars.bjorndal@broadpark.no> - 1.9.0-1
|
|
|
|
- A new version was up to day. At the same time, fixed a minor spec issue according to a comment from Martin Gieseking, see <https://bugzilla.redhat.com/show_bug.cgi?id=597597>.
|
|
|
|
|
|
|
|
* Sun Jun 20 2010 Lars Bjørndal <lars.bjorndal@broadpark.no> - 1.8.0-3
|
|
|
|
- Fixed some small problems, among them wrong destination directory for documentation. See <https://bugzilla.redhat.com/show_bug.cgi?id=597597> for further details.
|
|
|
|
|
|
|
|
* Thu Jun 17 2010 Lars Bjørndal <lars.bjorndal@broadpark.no> 1.8.0-2
|
|
|
|
- Created the tools sub package and did a lot of clean ups, see <https://bugzilla.redhat.com/show_bug.cgi?id=597597>.
|
|
|
|
|
|
|
|
* Sat May 29 2010 Lars Bjørndal <lars.bjorndal@broadpark.no> 1.8.0-1
|
|
|
|
- Create the RPM for Fedora.
|