From 0864ad6c1c3ca0c90795e9b694dc1dad0932cf44 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 28 Mar 2023 13:05:12 +0000 Subject: [PATCH] import python3.11-attrs-22.1.0-1.el8 --- .gitignore | 1 + .python3.11-attrs.metadata | 1 + SPECS/python3.11-attrs.spec | 65 +++++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 .gitignore create mode 100644 .python3.11-attrs.metadata create mode 100644 SPECS/python3.11-attrs.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0e5a90b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/attrs-22.1.0.tar.gz diff --git a/.python3.11-attrs.metadata b/.python3.11-attrs.metadata new file mode 100644 index 0000000..18ce4e5 --- /dev/null +++ b/.python3.11-attrs.metadata @@ -0,0 +1 @@ +75f0b21658106bb8398cfccae8745d06dd41b6f1 SOURCES/attrs-22.1.0.tar.gz diff --git a/SPECS/python3.11-attrs.spec b/SPECS/python3.11-attrs.spec new file mode 100644 index 0000000..92a339d --- /dev/null +++ b/SPECS/python3.11-attrs.spec @@ -0,0 +1,65 @@ +%global __python3 /usr/bin/python3.11 +%global python3_pkgversion 3.11 + +%global modname attrs + +%if 0%{?rhel} && 0%{?rhel} <= 9 +# Can't run tests on RHEL9 due to the need for hypothesis and zope-interface +%bcond_with tests +%else +# Turn the tests off when bootstrapping Python, because pytest requires attrs +%bcond_without tests +%endif + +Name: python%{python3_pkgversion}-attrs +Version: 22.1.0 +Release: 1%{?dist} +Summary: Python attributes without boilerplate + +License: MIT +URL: http://www.attrs.org/ +BuildArch: noarch +Source0: https://github.com/hynek/%{modname}/archive/%{version}/%{modname}-%{version}.tar.gz + +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-rpm-macros +BuildRequires: python%{python3_pkgversion}-setuptools +%if %{with tests} +BuildRequires: python%{python3_pkgversion}-pytest +BuildRequires: python%{python3_pkgversion}-hypothesis +BuildRequires: python%{python3_pkgversion}-six +BuildRequires: python%{python3_pkgversion}-zope-interface +%endif + + +%description -n python%{python3_pkgversion}-%{modname} +attrs is an MIT-licensed Python package with class decorators that +ease the chores of implementing the most common attribute-related +object protocols. + +%prep +%setup -q -n %{modname}-%{version} + +%build +%py3_build + +%install +%py3_install + +%if %{with tests} +%check +PYTHONPATH=%{buildroot}/%{python3_sitelib} py.test-%{python3_pkgversion} -v +%endif + +%files +%license LICENSE +%doc AUTHORS.rst README.rst +%{python3_sitelib}/* + +%changelog +* Wed Oct 19 2022 Charalampos Stratakis - 22.1.0-1 +- Initial package +- Fedora contributions by: + Lumir Balhar + Miro HronĨok + Tomas Hrnciar