%global _empty_manifest_terminate_build 0 Name: python-cairocffi Version: 1.5.0 Release: 1 Summary: cffi-based cairo bindings for Python License: BSD-3-Clause URL: https://pypi.python.org/pypi/cairocffi/ Source0: https://files.pythonhosted.org/packages/28/d6/59ed0aa7f642142db493744c909a59a45e7350277d8987ccfc56cc5244d9/cairocffi-1.5.0.tar.gz Source1: setup.py BuildArch: noarch %global _description\ cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of\ Python bindings and object-oriented API for cairo. Cairo is a 2D\ vector graphics library with support for multiple backends including\ image buffers, PNG, PostScript, PDF, and SVG file output. %description %_description %package -n python3-cairocffi Summary: cffi-based cairo bindings for Python Provides: python-cairocffi = %{version}-%{release} Provides: python%{python3_pkgversion}dist(cairocffi[xcb]) = %{version} Provides: python%{python3_version}dist(cairocffi[xcb]) = %{version} %{?python_provide:%python_provide python3-cairocffi} Requires: python3-cffi Requires: cairo # required by cairocffi.pixbuf Requires: python3-xcffib >= 0.3.2 BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-cffi BuildRequires: python3-pytest BuildRequires: python3-pytest-cov BuildRequires: python3-pytest-runner BuildRequires: python3-xcffib BuildRequires: cairo-devel BuildRequires: python3-numpy BuildRequires: gdk-pixbuf2 BuildRequires: gdk-pixbuf2-modules BuildRequires: xorg-x11-server-Xvfb %description -n python3-cairocffi %package help Summary: Development documents and examples for cairocffi Provides: python3-cairocffi-doc %description help %prep %autosetup -n cairocffi-%{version} cp %{SOURCE1} ./ %build %py3_build %install %py3_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/lib64 ]; then find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/bin ]; then find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/sbin ]; then find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . mv %{buildroot}/doclist.lst . %files -n python3-cairocffi -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Wed Apr 12 2023 wubijie - 1.5.0-1 - Update package to version 1.5.0 * Tue Nov 8 2022 hkgy - 1.4.0-1 - Upgrade to v1.4.0 * Thu Jun 23 2022 houyingchao - 1.3.0-1 - Upgrade to version 1.3.0 * Wed May 11 2022 yangping - 1.2.0-2 - License compliance rectification * Fri Feb 19 2021 Ge Wang - 1.2.0-1 - Init package