python-ufoLib2/python-ufoLib2.spec
Dirk Mueller 561fd60fe0 Accepting request 874378 from home:bnavigator:branches:devel:languages:python
- update to v0.11.1
 * Component.move: apply delta to offset directly rather than 
   translating, which fixes moving of flipped components.
 * Typing: add GlyphSet protocol. More elegant than referring to 
   Layer and Glyph explicitly, which nicely avoids circular 
   imports.
 * Some small typing fixes to circumvent microsoft/pyright#1297.
 * Add APIs Font.object_lib(obj) and Glyph.object_lib(obj) to 
   explicitly handle the new public.objectLibs mechanism of 
   attaching libs to anchors, guidelines, contours, components and 
   points.
- Reinstate python36 build. FontTools does not need scipy anymore.

OBS-URL: https://build.opensuse.org/request/show/874378
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ufoLib2?expand=0&rev=8
2021-02-23 10:10:39 +00:00

76 lines
2.2 KiB
RPMSpec

#
# spec file for package python-ufoLib2
#
# Copyright (c) 2021 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-ufoLib2
Version: 0.11.1
Release: 0
Summary: UFO font processing library
License: Apache-2.0
URL: https://github.com/fonttools/ufoLib2
Source: https://files.pythonhosted.org/packages/source/u/ufoLib2/ufoLib2-%{version}.zip
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: unzip
# SECTION install_requires
BuildRequires: %{python_module FontTools >= 4.0.0}
BuildRequires: %{python_module attrs >= 19.2.0}
# via fonttools[ufo]
BuildRequires: %{python_module fs >= 2.2.0}
BuildRequires: %{python_module typing_extensions if %python-base < 3.8}
Requires: python-FontTools >= 4.0.0
Requires: python-attrs >= 19.2.0
Requires: python-fs >= 2.2.0
%if 0%{?python_version_nodots} < 38
Requires: python-typing_extensions
%endif
# /SECTION
# SECTION test requirements
BuildRequires: %{python_module lxml}
BuildRequires: %{python_module pytest}
# /SECTION
Suggests: python-lxml
BuildArch: noarch
%python_subpackages
%description
ufoLib2 is a UFO font processing library.
%prep
%setup -q -n ufoLib2-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/*
%changelog