%if !( 0%{?rhel} > 0 && 0%{?rhel} <= 7) # 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') %endif Name: liblouis Version: 2.6.2 Release: 6%{?dist} Summary: Braille translation and back-translation library Group: System Environment/Libraries License: LGPLv3+ URL: http://www.abilitiessoft.com/ Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz # Backported upstream patch to fix the build with texinfo 6.0 Patch0: 0001-Update-configure.ac-to-reconize-texi2any.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: chrpath BuildRequires: help2man BuildRequires: texinfo BuildRequires: texinfo-tex BuildRequires: python2-devel # For patch0 BuildRequires: autoconf automake libtool %if !( 0%{?rhel} > 0 && 0%{?rhel} <= 7) BuildRequires: python3-devel %endif Requires(post): info Requires(preun): info # gnulib is a copylib that has been granted an exception from the no-bundled-libraries policy # http://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries#Copylibs Provides: bundled(gnulib) = 20130621 %description 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). 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. Liblouis is based on the translation routines in the BRLTTY screen reader for Linux. It has, however, gone far beyond these routines. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} 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} Group: Applications/Text Requires: %{name}%{?_isa} = %{version}-%{release} Requires: python-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 -n python-louis Summary: Python 2 language bindings for %{name} Group: Development/Languages BuildArch: noarch Requires: %{name} = %{version}-%{release} Obsoletes: %{name}-python < 2.6.2-3 Provides: %{name}-python = %{version}-%{release} %description -n python-louis This package provides Python 2 language bindings for %{name}. %if !( 0%{?rhel} > 0 && 0%{?rhel} <= 7) %package -n python3-louis Summary: Python 3 language bindings for %{name} Group: Development/Languages BuildArch: noarch Requires: %{name} = %{version}-%{release} Obsoletes: %{name}-python3 < 2.6.2-3 Provides: %{name}-python3 = %{version}-%{release} %description -n python3-louis This package provides Python 3 language bindings for %{name}. %endif %package doc Summary: Documentation for %{name} Group: Documentation BuildArch: noarch Requires: %{name} = %{version}-%{release} %description doc This package provides the documentation for liblouis. %prep %setup -q %patch0 -p1 # For patch0 autoreconf -fi %build %configure --disable-static --enable-ucs4 make %{?_smp_mflags} make -C doc %{name}.pdf %check make check %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} rm -f %{buildroot}/%{_infodir}/dir rm -f %{buildroot}/%{_libdir}/%{name}.la rm -rf %{buildroot}/%{_defaultdocdir}/%{name}/ cd python/louis install -d %{buildroot}%{python_sitelib}/louis install -pm 0644 __init__.py %{buildroot}%{python_sitelib}/louis/ %if !( 0%{?rhel} > 0 && 0%{?rhel} <= 7) %py_byte_compile %{__python} %{buildroot}%{python_sitelib}/louis/ install -d %{buildroot}%{python3_sitelib}/louis install -pm 0644 __init__.py %{buildroot}%{python3_sitelib}/louis/ %py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/louis/ %endif # Remove Rpaths from the executables. We must do that in the %%install section # because, otherwise, the test suite wouldn't build. for f in `find %{buildroot}%{_bindir} -exec file {} \; | grep 'ELF.*executable' | cut -d: -f1`; do chrpath --delete $f done %clean rm -rf %{buildroot} %post /sbin/ldconfig /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || : %postun -p /sbin/ldconfig %preun if [ $1 = 0 ] ; then /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || : fi %files %defattr(-,root,root,-) %doc README COPYING.LESSER AUTHORS NEWS ChangeLog TODO %{_libdir}/%{name}.so.* %{_datadir}/%{name}/ %{_infodir}/%{name}.info* %files devel %doc HACKING %defattr(-,root,root,-) %{_includedir}/%{name}/ %{_libdir}/pkgconfig/%{name}.pc %{_libdir}/%{name}.so %files utils %defattr(-,root,root,-) %doc COPYING %{_bindir}/lou_* %{_mandir}/man1/lou_*.1* %files -n python-louis %defattr(-,root,root,-) %doc python/README %{python_sitelib}/louis/ %if !( 0%{?rhel} > 0 && 0%{?rhel} <= 7) %files -n python3-louis %defattr(-,root,root,-) %{python3_sitelib}/louis/ %endif %files doc %doc doc/%{name}.{html,txt,pdf} %changelog * Tue Jul 19 2016 Fedora Release Engineering - 2.6.2-6 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Thu Feb 04 2016 Fedora Release Engineering - 2.6.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Tue Nov 10 2015 Fedora Release Engineering - 2.6.2-4 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 * Sun Aug 23 2015 Kalev Lember - 2.6.2-3 - Rename liblouis-python3 to python3-louis, as per latest packaging guidelines - Fix the build with texinfo 6.0 * Wed Jun 17 2015 Fedora Release Engineering - 2.6.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Wed Apr 08 2015 Martin Gieseking 2.6.2-1 - Updated to new upstream release. * Tue Sep 16 2014 Martin Gieseking 2.6.0-1 - Updated to new upstream release. * Mon Aug 18 2014 Martin Gieseking 2.5.4-5 - Fixed check for ELF binaries to prevent chrpath from failing. * Sun Aug 17 2014 Fedora Release Engineering - 2.5.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Sat Jun 07 2014 Fedora Release Engineering - 2.5.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Tue May 27 2014 Kalev Lember - 2.5.4-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 * Tue May 13 2014 Martin Gieseking 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. * Sat Aug 03 2013 Fedora Release Engineering - 2.5.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Mon Jul 22 2013 Martin Gieseking - 2.5.3-1 - Update to new upstream release. * Thu Jul 18 2013 Matthias Clasen - 2.5.2-7 - Tighten dependencies between subpackages (pointed out by rpmdiff) * Tue Apr 16 2013 Martin Gieseking 2.5.2-6 - Restrict exclusion of Python 3 packages to RHEL <= 7. * Mon Apr 15 2013 Martin Gieseking 2.5.2-5 - Restrict exclusion of Python 3 packages to RHEL < 7. * Mon Apr 15 2013 Rui Matos - 2.5.2-4 - Don't depend on python3 in RHEL. * Tue Feb 26 2013 Martin Gieseking 2.5.2-3 - Added Python 3 language bindings. * Fri Feb 22 2013 Martin Gieseking 2.5.2-2 - Moved documentation to doc subpackage. * Wed Feb 06 2013 Martin Gieseking 2.5.2-1 - Updated to new upstream release. * Thu Jul 19 2012 Fedora Release Engineering - 2.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Sat Mar 10 2012 Martin Gieseking 2.4.1-1 - Updated to upstream release 2.4.1. - Made the devel package's dependency on the base package arch specific. * Fri Jan 13 2012 Fedora Release Engineering - 2.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Mon Dec 12 2011 Martin Gieseking 2.4.0-1 - Updated to upstream release 2.4.0. * Fri May 20 2011 Martin Gieseking 2.3.0-1 - Updated to upstream release 2.3.0. * Mon Feb 28 2011 Martin Gieseking - 2.2.0-2 - Added release date of bundled gnulib to Provides. - Use %%{name} macro consistently. * Tue Feb 15 2011 Martin Gieseking - 2.2.0-1 - Updated to upstream release 2.2.0. - Added Python bindings. * Mon Jul 5 2010 Lars Bjørndal - 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 . * Wed Jun 30 2010 Lars Bjørndal - 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 . * Sun Jun 20 2010 Lars Bjørndal - 1.8.0-3 - Fixed some small problems, among them wrong destination directory for documentation. See for further details. * Thu Jun 17 2010 Lars Bjørndal 1.8.0-2 - Created the tools sub package and did a lot of clean ups, see . * Sat May 29 2010 Lars Bjørndal 1.8.0-1 - Create the RPM for Fedora.