[packages/python-defcon] - new

qboosh qboosh at pld-linux.org
Wed Dec 15 18:09:50 CET 2021


commit 56841c08d15b593ebdce7e669b6f092e26b458d1
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Wed Dec 15 18:10:22 2021 +0100

    - new

 python-defcon.spec | 169 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 169 insertions(+)
---
diff --git a/python-defcon.spec b/python-defcon.spec
new file mode 100644
index 0000000..5e327f0
--- /dev/null
+++ b/python-defcon.spec
@@ -0,0 +1,169 @@
+#
+# Conditional build:
+%bcond_without	doc	# Sphinx documentation
+%bcond_without	tests	# unit tests
+%bcond_without	python2 # CPython 2.x module
+%bcond_with	python3 # CPython 3.x module (built from python3-defcon.spec)
+
+Summary:	Set of flexible objects for representing UFO data
+Summary(pl.UTF-8):	Zbiór elastycznych obiektów reprezentujących dane UFO
+Name:		python-defcon
+# keep 0.6.x here for python2 support
+Version:	0.6.0
+Release:	1
+License:	MIT
+Group:		Libraries/Python
+#Source0Download: https://pypi.org/simple/defcon/
+Source0:	https://files.pythonhosted.org/packages/source/d/defcon/defcon-%{version}.zip
+# Source0-md5:	759cb6897af4fe84f4ca9663a21381e8
+URL:		https://pypi.org/project/defcon/
+%if %{with python2}
+BuildRequires:	python-modules >= 1:2.6
+BuildRequires:	python-setuptools
+%if %{with tests}
+BuildRequires:	python-enum34 >= 1.1.6
+# fonttools[ufo,unicode]
+BuildRequires:	python-fonttools >= 3.31.0
+BuildRequires:	python-fs >= 2.2.0
+BuildRequires:	python-pytest >= 3.0.3
+%endif
+%endif
+%if %{with python3}
+BuildRequires:	python3-modules >= 1:3.2
+BuildRequires:	python3-setuptools
+%if %{with tests}
+BuildRequires:	python3-fonttools >= 3.31.0
+BuildRequires:	python3-fs >= 2.2.0
+BuildRequires:	python3-pytest >= 3.0.3
+%endif
+%endif
+BuildRequires:	rpm-pythonprov
+BuildRequires:	rpmbuild(macros) >= 1.714
+%if %{with doc}
+BuildRequires:	sphinx-pdg-2
+%endif
+Requires:	python-modules >= 1:2.6
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Defcon is a set of UFO based objects optimized for use in font editing
+applications. The objects are built to be lightweight, fast and
+flexible. The objects are very bare-bones and they are not meant to be
+end-all, be-all objects. Rather, they are meant to provide base
+functionality so that you can focus on your application's behavior,
+not object observing or maintaining cached data. Defcon implements
+UFO3 as described by the UFO font format
+<http://unifiedfontobject.org/>.
+
+%description -l pl.UTF-8
+Defcon to zbiór opartych na UFO obiektów zoptymalizowanych do używania
+w aplikacjach modyfikujących fonty. Obiekty są zbudowane jako lekkie,
+szybkie i elastyczne. Są bardzo podstawowe, nie mają służyć do
+wszystkiego naraz. Mają raczej udostępniać podstawową funkcjonalność,
+dzięki czemu można skupić się na zachowaniu aplikacji, a nie
+obserwowaniu obiektów czy utrzymywaniu danych podręcznych. Defcon ma
+zaimplementowane UFO3, opisane w formacie fontów UFO:
+<http://unifiedfontobject.org/>.
+
+%package -n python3-defcon
+Summary:	Set of flexible objects for representing UFO data
+Summary(pl.UTF-8):	Zbiór elastycznych obiektów reprezentujących dane UFO
+Group:		Libraries/Python
+Requires:	python3-modules >= 1:3.2
+
+%description -n python3-defcon
+Defcon is a set of UFO based objects optimized for use in font editing
+applications. The objects are built to be lightweight, fast and
+flexible. The objects are very bare-bones and they are not meant to be
+end-all, be-all objects. Rather, they are meant to provide base
+functionality so that you can focus on your application's behavior,
+not object observing or maintaining cached data. Defcon implements
+UFO3 as described by the UFO font format
+<http://unifiedfontobject.org/>.
+
+%description -n python3-defcon -l pl.UTF-8
+Defcon to zbiór opartych na UFO obiektów zoptymalizowanych do używania
+w aplikacjach modyfikujących fonty. Obiekty są zbudowane jako lekkie,
+szybkie i elastyczne. Są bardzo podstawowe, nie mają służyć do
+wszystkiego naraz. Mają raczej udostępniać podstawową funkcjonalność,
+dzięki czemu można skupić się na zachowaniu aplikacji, a nie
+obserwowaniu obiektów czy utrzymywaniu danych podręcznych. Defcon ma
+zaimplementowane UFO3, opisane w formacie fontów UFO:
+<http://unifiedfontobject.org/>.
+
+%package apidocs
+Summary:	API documentation for Python defcon module
+Summary(pl.UTF-8):	Dokumentacja API modułu Pythona defcon
+Group:		Documentation
+
+%description apidocs
+API documentation for Python defcon module.
+
+%description apidocs -l pl.UTF-8
+Dokumentacja API modułu Pythona defcon.
+
+%prep
+%setup -q -n defcon-%{version}
+
+%build
+%if %{with python2}
+%py_build
+
+%if %{with tests}
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+%{__python} -m pytest Lib/defcon
+%endif
+%endif
+
+%if %{with python3}
+%py3_build
+
+%if %{with tests}
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+%{__python3} -m pytest Lib/defcon
+%endif
+%endif
+
+%if %{with doc}
+%{__make} -C documentation html \
+	SPHINXBUILD=sphinx-build-2
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%py_install
+
+%py_postclean
+%endif
+
+%if %{with python3}
+%py3_install
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%files
+%defattr(644,root,root,755)
+%doc License.txt README.rst
+%{py_sitescriptdir}/defcon
+%{py_sitescriptdir}/defcon-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-defcon
+%defattr(644,root,root,755)
+%doc License.txt README.rst
+%{py3_sitescriptdir}/defcon
+%{py3_sitescriptdir}/defcon-%{version}-py*.egg-info
+%endif
+
+%if %{with doc}
+%files apidocs
+%defattr(644,root,root,755)
+%doc documentation/build/html/{_static,concepts,objects,*.html,*.js}
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-defcon.git/commitdiff/56841c08d15b593ebdce7e669b6f092e26b458d1



More information about the pld-cvs-commit mailing list