]> git.pld-linux.org Git - packages/python-decorator.git/blobdiff - python-decorator.spec
- rebuild with python 3.8
[packages/python-decorator.git] / python-decorator.spec
index f628fd1fbfca1d7bbf12bc2ad883eb8e259181d4..2259fa6141a1bbfa1d081482cfe6e48eb8f67a19 100644 (file)
-%define module decorator
-Summary:       Bunch of nice decorators for Python
+#
+# Conditional build:
+%bcond_without python2 # CPython 2.x module
+%bcond_without python3 # CPython 3.x module
+%bcond_without tests   # test suite
+
+%define                module decorator
+Summary:       Bunch of nice decorators for Python 2
+Summary(pl.UTF-8):     Zbiór ładnych dekoratorów dla Pythona 2
 Name:          python-%{module}
-Version:       2.2.0
-Release:       1
+Version:       4.4.0
+Release:       2
 License:       BSD
-Group:         Python/Libraries
-Source0:       http://www.phyast.pitt.edu/~micheles/python/%{module}-%{version}.zip
-# Source0-md5: 4732d42d7b9f1b19de960a84b57a63da
-URL:           http://www.phyast.pitt.edu/~micheles/python/documentation.html
-BuildRequires: python-devel
-%pyrequires_eq python-libs
-Requires:      python-pygtk-gtk >= 2.8.4
+Group:         Libraries/Python
+#Source0Download: https://pypi.org/simple/decorator/
+Source0:       https://files.pythonhosted.org/packages/source/d/decorator/%{module}-%{version}.tar.gz
+# Source0-md5: a565a98581c0d110bc247323e89df9b1
+Source1:       https://raw.githubusercontent.com/micheles/decorator/%{version}/docs/documentation.md
+# Source1-md5: 854f55d03fd6453846d079f22693f45c
+URL:           https://pypi.org/project/decorator/
+%if %{with python2}
+BuildRequires: python-devel >= 1:2.6
+BuildRequires: python-modules >= 1:2.6
+BuildRequires: python-setuptools
+%endif
+%if %{with python3}
+BuildRequires: python3-devel >= 1:3.2
+BuildRequires: python3-modules >= 1:3.2
+BuildRequires: python3-setuptools
+%endif
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.714
 BuildArch:     noarch
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-Bunch of nice decorators for Python like memoize, tracing,
+Bunch of nice decorators for Python 2 like memoize, tracing,
+redirecting_stdout, locked.
+
+%description -l pl.UTF-8
+Zbiór ładnych dekoratorów dla Pythona 2: memoize, tracing,
+redirecting_stdout, locked...
+
+%package -n python3-%{module}
+Summary:       Bunch of nice decorators for Python 3
+Summary(pl.UTF-8):     Zbiór ładnych dekoratorów dla Pythona 3
+Group:         Libraries/Python
+
+%description -n python3-%{module}
+Bunch of nice decorators for Python 3 like memoize, tracing,
 redirecting_stdout, locked.
 
+%description -n python3-%{module} -l pl.UTF-8
+Zbiór ładnych dekoratorów dla Pythona 3: memoize, tracing,
+redirecting_stdout, locked...
+
+%package doc
+Summary:       Documentation for decorator module in PDF format
+Summary(pl.UTF-8):     Dokumentacja modułu decorator w formacie PDF
+Group:         Documentation
+
+%description doc
+Documentation for decorator module in PDF format.
+
+%description doc -l pl.UTF-8
+Dokumentacja modułu decorator w formacie PDF.
+
 %prep
-%setup -qc
+%setup -q -n %{module}-%{version}
+
+cp -p %{SOURCE1} .
 
 %build
-%{__python} setup.py build
+%if %{with python2}
+%py_build %{?with_tests:test}
+%endif
+
+%if %{with python3}
+%py3_build %{?with_tests:test}
+%endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
-%{__python} setup.py install \
-               --optimize=2 \
-               --root=$RPM_BUILD_ROOT
+%if %{with python2}
+%py_install
 
 %py_postclean
+%endif
+
+%if %{with python3}
+%py3_install
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%if %{with python2}
 %files
 %defattr(644,root,root,755)
-%doc documentation.* README.txt
-%{py_sitescriptdir}/%{module}*
+%doc CHANGES.md LICENSE.txt README.md
+%{py_sitescriptdir}/decorator.py[co]
+%{py_sitescriptdir}/decorator-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc CHANGES.md LICENSE.txt README.md
+%{py3_sitescriptdir}/decorator.py
+%{py3_sitescriptdir}/__pycache__/decorator.cpython-*.py[co]
+%{py3_sitescriptdir}/decorator-%{version}-py*.egg-info
+%endif
+
+%files doc
+%defattr(644,root,root,755)
+%doc documentation.md
This page took 0.038695 seconds and 4 git commands to generate.