diff --git a/cairocffi-1.5.0.tar.gz b/cairocffi-1.5.0.tar.gz deleted file mode 100644 index 7a0946a..0000000 Binary files a/cairocffi-1.5.0.tar.gz and /dev/null differ diff --git a/cairocffi-1.5.1.tar.gz b/cairocffi-1.5.1.tar.gz new file mode 100644 index 0000000..eafc1c0 Binary files /dev/null and b/cairocffi-1.5.1.tar.gz differ diff --git a/python-cairocffi.spec b/python-cairocffi.spec index 9a54c09..1d3d2d6 100644 --- a/python-cairocffi.spec +++ b/python-cairocffi.spec @@ -1,12 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-cairocffi -Version: 1.5.0 +Version: 1.5.1 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 +Source0: https://files.pythonhosted.org/packages/9f/d1/b26207d3a93dbdbee3b1492d59668f88953e9f28b74853e376a7a4f04e83/cairocffi-1.5.1.tar.gz BuildArch: noarch %global _description\ @@ -28,7 +27,6 @@ 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 @@ -39,6 +37,8 @@ BuildRequires: python3-numpy BuildRequires: gdk-pixbuf2 BuildRequires: gdk-pixbuf2-modules BuildRequires: xorg-x11-server-Xvfb +BuildRequires: python3-pip +BuildRequires: python3-wheel %description -n python3-cairocffi @@ -50,13 +50,12 @@ Provides: python3-cairocffi-doc %prep %autosetup -n cairocffi-%{version} -cp %{SOURCE1} ./ %build -%py3_build +%pyproject_build %install -%py3_install +%pyproject_install cairocffi==%{version} 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 @@ -65,34 +64,17 @@ 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 -n python3-cairocffi +%{python3_sitelib}/* -%files help -f doclist.lst +%files help %{_docdir}/* %changelog +* Sun Apr 23 2023 Ge Wang - 1.5.1-1 +- Update package to version 1.5.1 + * Wed Apr 12 2023 wubijie - 1.5.0-1 - Update package to version 1.5.0 diff --git a/setup.py b/setup.py deleted file mode 100644 index 8eb7bdd..0000000 --- a/setup.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env python - -import sys - -from setuptools import setup - -if sys.version_info.major < 3: - raise RuntimeError( - 'cairocffi does not support Python 2.x anymore. ' - 'Please use Python 3 or install an older version of cairocffi.') - - - -setup( - cffi_modules=[ - 'cairocffi/ffi_build.py:ffi', - 'cairocffi/ffi_build.py:ffi_pixbuf'], - name = "cairocffi", # name - version = "1.5.0", # version -) -