diff --git a/python-wrapt.spec b/python-wrapt.spec index b74f93a7a03778a8619a9dd433883772ba2857cf..c0cf1805bc3a2f14300220ca448041ff5e7ae181 100644 --- a/python-wrapt.spec +++ b/python-wrapt.spec @@ -1,12 +1,11 @@ +%global _empty_manifest_terminate_build 0 Name: python-wrapt -Version: 1.12.1 -Release: 4 +Version: 1.13.3 +Release: 1 Summary: A Python module for decorators, wrappers and monkey patching License: BSD-2-Clause URL: https://github.com/GrahamDumpleton/wrapt -Source0: https://github.com/GrahamDumpleton/wrapt/archive/%{version}.tar.gz#/wrapt-%{version}.tar.gz - -BuildRequires: python3-devel python3-sphinx gcc +Source0: https://files.pythonhosted.org/packages/eb/f6/d81ccf43ac2a3c80ddb6647653ac8b53ce2d65796029369923be06b815b8/wrapt-1.13.3.tar.gz %description The aim of the wrapt module is to provide a transparent object proxy for Python, @@ -16,44 +15,77 @@ such as functools.wraps() to ensure that decorators preserve introspectability, type checking abilities etc. The decorators that can be constructed using this module will work in far more scenarios than typical decorators and provide more predictable and consistent behaviour. -%package help -Summary: Documentation for the python-wrapt -BuildRequires: python3-sphinx python3-sphinx_rtd_theme -Provides: %{name}-doc = %{version}-%{release} -Obsoletes: %{name}-doc < %{version}-%{release} - -%description help -Documentation for the python-wrapt. - %package -n python3-wrapt -Summary: Python3 module for wrapt module - +Summary: Module for decorators, wrappers and monkey patching. +Provides: python-wrapt +# Base build requires +BuildRequires: python3-sphinx +BuildRequires: gcc +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pbr +BuildRequires: python3-pip +BuildRequires: python3-wheel %description -n python3-wrapt Python3 module for wrapt module. -%prep -%autosetup -n wrapt-%{version} -p1 +%package help +Summary: Module for decorators, wrappers and monkey patching. +Provides: python3-wrapt-doc +%description help +The aim of the wrapt module is to provide a transparent object proxy for Python, +which can be used as the basis for the construction of function wrappers and decorator functions. +The wrapt module focuses very much on correctness. It therefore goes way beyond existing mechanisms +such as functools.wraps() to ensure that decorators preserve introspectability, signatures, +type checking abilities etc. The decorators that can be constructed using this module will work in +far more scenarios than typical decorators and provide more predictable and consistent behaviour. -rm -rf wrapt.egg-info +%prep +%autosetup -n wrapt-%{version} %build -CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build - -cd docs -sphinx-build -b html -d build/doctrees . build/html -cd - +%py3_build %install -%{__python3} setup.py install --skip-build --root %{buildroot} - -%files -n python3-wrapt -%doc README.rst LICENSE -%{python3_sitearch}/{wrapt,wrapt-%{version}-py*.egg-info} - -%files help -%doc docs/build/html +%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 +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-wrapt -f filelist.lst + +%files help -f doclist.lst +%{_docdir}/* %changelog +* Sat Jun 04 2022 OpenStack_SIG - 1.13.3-1 +- upgrade package python3-wrapt to version 1.13.3 + * Tue May 10 2022 yangping - 1.12.1-4 - License compliance rectification diff --git a/wrapt-1.12.1.tar.gz b/wrapt-1.12.1.tar.gz deleted file mode 100644 index 2695091fbe2b1ccaef88f4831f9a771e2744f28f..0000000000000000000000000000000000000000 Binary files a/wrapt-1.12.1.tar.gz and /dev/null differ diff --git a/wrapt-1.13.3.tar.gz b/wrapt-1.13.3.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..9928660d56e725e3e459c04e97b0e3288f34ead6 Binary files /dev/null and b/wrapt-1.13.3.tar.gz differ