File python-FontTools.spec of Package python-FontTools
#
# spec file for package python-FontTools
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-FontTools
Version: 3.24.1
Release: 0
License: MIT and OFL-1.1
Summary: Suite of Tools and Libraries for Manipulating Fonts
Url: http://github.com/fonttools/fonttools
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/F/FontTools/fonttools-%{version}.zip
BuildRequires: %{python_module devel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: unzip
%if %{with test}
BuildRequires: %{python_module brotlipy}
BuildRequires: %{python_module munkres}
BuildRequires: %{python_module numpy}
BuildRequires: %{python_module pytest >= 3.0}
BuildRequires: %{python_module pytest-runner}
BuildRequires: %{python_module reportlab}
BuildRequires: %{python_module scipy}
BuildRequires: %{python_module tox}
BuildRequires: %{python_module setuptools}
%endif
Recommends: python-brotlipy
Recommends: python-munkres
Recommends: python-numpy
Recommends: python-reportlab
Recommends: python-scipy
Recommends: python-sympy
BuildArch: noarch
%ifpython3
Conflicts: fonttools < %{version}
Recommends: fonttools = %{version}
%endif
%python_subpackages
%description
FontTools is a suite of tools and libraries for manipulating fonts
written in Python.
It currently reads and writes TrueType font files, reads PostScript
Type 1 fonts, and more. It contains two command line programs to
convert TrueType fonts to an XML based format (called TTX) and back.
%package -n fonttools
Summary: Suite of Tools and Libraries for Manipulating Fonts
Group: Productivity/Graphics/Vector Editors
Requires: python3-FontTools
%description -n fonttools
FontTools is a suite of tools and libraries for manipulating fonts
written in Python.
It currently reads and writes TrueType font files, reads PostScript
Type 1 fonts, and more. It contains two command line programs to
convert TrueType fonts to an XML based format (called TTX) and back.
%prep
%setup -q -n fonttools-%{version}
# Remove shebang
sed -i -e '/^#!\//, 1d' Lib/fontTools/mtiLib/__init__.py
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%if %{with test}
%check
export LANG=en_US.UTF-8
%python_exec setup.py test
%endif
%files %{python_files}
%doc LICENSE LICENSE.external README.rst NEWS.rst
%{python_sitelib}/*
%files -n fonttools
%doc LICENSE LICENSE.external README.rst NEWS.rst
%{_bindir}/fonttools
%{_bindir}/pyftinspect
%{_bindir}/pyftmerge
%{_bindir}/pyftsubset
%{_bindir}/ttx
%{_mandir}/man1/ttx.1%{ext_man}
%changelog