From 5fe8e72f037355587ff90ba0944ac30e91e3518c Mon Sep 17 00:00:00 2001 From: wubijie Date: Tue, 25 Apr 2023 14:52:06 +0800 Subject: [PATCH] compiling package with pyproject --- python-cairocffi.spec | 43 ++++++++++++------------------------------- setup.py | 21 --------------------- 2 files changed, 12 insertions(+), 52 deletions(-) delete mode 100644 setup.py diff --git a/python-cairocffi.spec b/python-cairocffi.spec index 9a54c09..905ef26 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 -Release: 1 +Release: 2 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\ @@ -28,7 +27,7 @@ Requires: cairo # required by cairocffi.pixbuf Requires: python3-xcffib >= 0.3.2 BuildRequires: python3-devel -BuildRequires: python3-setuptools +BuildRequires: python3-pip python3-wheel python3-flit BuildRequires: python3-cffi BuildRequires: python3-pytest BuildRequires: python3-pytest-cov @@ -50,13 +49,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 +63,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 help -f doclist.lst + +%files -n python3-cairocffi +%{python3_sitelib}/* + +%files help %{_docdir}/* %changelog +* Tue Apr 25 2023 wubijie - 1.5.0-2 +- Update package to version 1.5.0 + * 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 -) - -- Gitee