17
0
Files
python-FontTools/python-FontTools.spec
Marguerite Su 1f317a4220 Accepting request 633722 from home:mcepl:branches:M17N
- Upstream provided fix for the issue with big endian machines. Remove
  fonttools-disable_failing_tests_bigendian.patch and replace with
  349cd94d171cf4e1e7541884df0d12bb6d4e841a.patch
- Upstream fix has a missing import; thus fix-missing-sys.patch

OBS-URL: https://build.opensuse.org/request/show/633722
OBS-URL: https://build.opensuse.org/package/show/M17N/python-FontTools?expand=0&rev=7
2018-09-10 04:04:35 +00:00

116 lines
3.6 KiB
RPMSpec

#
# 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.29.0
Release: 0
Summary: Suite of Tools and Libraries for Manipulating Fonts
License: MIT AND OFL-1.1
Group: Development/Languages/Python
URL: http://github.com/fonttools/fonttools
Source: https://files.pythonhosted.org/packages/source/f/fonttools/fonttools-%{version}.zip
# https://github.com/fonttools/fonttools/commit/349cd94d171cf4e1e7541884df0d12bb6d4e841a
Patch0: 349cd94d171cf4e1e7541884df0d12bb6d4e841a.patch
Patch1: fix-missing-sys.patch
BuildRequires: %{python_module devel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: unzip
Recommends: python-brotlipy
Recommends: python-munkres
Recommends: python-numpy
Recommends: python-reportlab
Recommends: python-scipy
Recommends: python-sympy
BuildArch: noarch
%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 setuptools}
BuildRequires: %{python_module tox}
%endif
%ifpython3
Recommends: fonttools = %{version}
Conflicts: 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}
%autopatch -p1
# 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}
%license LICENSE LICENSE.external
%doc README.rst NEWS.rst
%{python_sitelib}/*
%files -n fonttools
%license LICENSE LICENSE.external
%doc README.rst NEWS.rst
%{_bindir}/fonttools
%{_bindir}/pyftinspect
%{_bindir}/pyftmerge
%{_bindir}/pyftsubset
%{_bindir}/ttx
%{_mandir}/man1/ttx.1%{?ext_man}
%changelog