Update to 0.6.0
modernize spec file, adjust python2 requirements
This commit is contained in:
parent
5c021fa551
commit
eb8f273c59
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
/pluggy-0.3.0.tar.gz
|
/pluggy-0.3.0.tar.gz
|
||||||
/pluggy-0.3.1.tar.gz
|
/pluggy-0.3.1.tar.gz
|
||||||
|
/python-pluggy-0.6.0.tar.gz
|
||||||
|
|||||||
@ -1,10 +1,5 @@
|
|||||||
%global pypiname pluggy
|
%global pypiname pluggy
|
||||||
|
|
||||||
%{!?__python2:%global __python2 %{__python}}
|
|
||||||
%{!?python2_sitelib: %global python2_sitelib %{python_sitelib}}
|
|
||||||
%{!?python2_sitearch: %global python2_sitearch %{python_sitearch}}
|
|
||||||
%{!?python2_version: %global python2_version %{python_version}}
|
|
||||||
|
|
||||||
%if 0%{?fedora} || 0%{?rhel} > 7
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
||||||
%global with_python3 1
|
%global with_python3 1
|
||||||
%else
|
%else
|
||||||
@ -12,19 +7,19 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: python-pluggy
|
Name: python-pluggy
|
||||||
Version: 0.3.1
|
Version: 0.6.0
|
||||||
Release: 10%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The plugin manager stripped of pytest specific details
|
Summary: The plugin manager stripped of pytest specific details
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/hpk42/pluggy
|
URL: https://github.com/pytest-dev/pluggy
|
||||||
Source0: http://pypi.python.org/packages/source/p/%{pypiname}/%{pypiname}-%{version}.tar.gz
|
Source0: https://github.com/pytest-dev/%{pypiname}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: python2-devel
|
BuildRequires: python2-devel
|
||||||
BuildRequires: pytest
|
BuildRequires: python2-pytest
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python2-setuptools
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-pytest
|
BuildRequires: python3-pytest
|
||||||
@ -53,71 +48,44 @@ The plugin manager stripped of pytest specific details.
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -qc
|
%autosetup -n %{pypiname}-%{version}
|
||||||
mv %{pypiname}-%{version} python2
|
|
||||||
|
|
||||||
pushd python2
|
|
||||||
cp -a LICENSE ..
|
|
||||||
cp -a README.rst ..
|
|
||||||
|
|
||||||
rm -rf {pypiname}.egg-info
|
|
||||||
popd
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
cp -a python2 python3
|
|
||||||
%endif # with python3
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
pushd python2
|
%py2_build
|
||||||
%{__python2} setup.py build
|
|
||||||
popd
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
pushd python3
|
%py3_build
|
||||||
%{__python3} setup.py build
|
|
||||||
popd
|
|
||||||
%endif # with python3
|
%endif # with python3
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
pushd python3
|
%py3_install
|
||||||
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
|
|
||||||
popd
|
|
||||||
%endif # with python3
|
%endif # with python3
|
||||||
|
|
||||||
pushd python2
|
%py2_install
|
||||||
%{__python2} setup.py install -O1 --skip-build --root %{buildroot}
|
|
||||||
popd
|
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
pushd python2
|
|
||||||
export PYTHONPATH=.:$PYTHONPATH
|
export PYTHONPATH=.:$PYTHONPATH
|
||||||
py.test testing/test_pluggy.py
|
py.test testing
|
||||||
popd
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
pushd python3
|
py.test-%{python3_version} testing
|
||||||
py.test-%{python3_version} testing/test_pluggy.py
|
|
||||||
popd
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%files -n python2-%{pypiname}
|
%files -n python2-%{pypiname}
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python2_sitelib}/%{pypiname}.py
|
%{python2_sitelib}/%{pypiname}
|
||||||
%{python2_sitelib}/%{pypiname}.pyc
|
|
||||||
%{python2_sitelib}/%{pypiname}.pyo
|
|
||||||
%{python2_sitelib}/%{pypiname}-%{version}-py%{python2_version}.egg-info
|
%{python2_sitelib}/%{pypiname}-%{version}-py%{python2_version}.egg-info
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%files -n python3-%{pypiname}
|
%files -n python3-%{pypiname}
|
||||||
%{python3_sitelib}/%{pypiname}.py
|
%{python3_sitelib}/%{pypiname}
|
||||||
%{python3_sitelib}/__pycache__/%{pypiname}.cpython-%{python3_version_nodots}*.pyc
|
|
||||||
%{python3_sitelib}/%{pypiname}-%{version}-py%{python3_version}.egg-info
|
%{python3_sitelib}/%{pypiname}-%{version}-py%{python3_version}.egg-info
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
@ -125,6 +93,10 @@ popd
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 29 2018 Matthias Runge <mrunge@redhat.com> - 0.6.0-1
|
||||||
|
- update to 0.6.0
|
||||||
|
- requirement renames to meet python2 names
|
||||||
|
|
||||||
* Tue Jan 23 2018 Karsten Hopp <karsten@redhat.com> - 0.3.1-10
|
* Tue Jan 23 2018 Karsten Hopp <karsten@redhat.com> - 0.3.1-10
|
||||||
- fix conditional
|
- fix conditional
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user