!3 Upgrade to 4.7.2 to remove deprecated use of setuptools features
Merge pull request !3 from jpzhang187/master
This commit is contained in:
commit
d8c301c42b
@ -1,14 +1,11 @@
|
|||||||
%global with_python2 1
|
|
||||||
%global with_python3 1
|
|
||||||
|
|
||||||
Name: python-zope-interface
|
Name: python-zope-interface
|
||||||
Version: 4.5.0
|
Version: 4.7.2
|
||||||
Release: 3
|
Release: 1
|
||||||
Summary: Zope 3 Interface Infrastructure
|
Summary: Zope 3 Interface Infrastructure
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: ZPLv2.1
|
License: ZPLv2.1
|
||||||
URL: https://pypi.io/project/zope.interface
|
URL: https://pypi.org/project/zope.interface
|
||||||
Source0: https://pypi.io/packages/source/z/zope.interface/zope.interface-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/f8/44/8531e65de6fde76e6055f5ce93e8a482dff534cea9bebcac7845e2273efd/zope.interface-%{version}.tar.gz
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Interfaces are a mechanism for labeling objects as conforming to a given API
|
Interfaces are a mechanism for labeling objects as conforming to a given API
|
||||||
@ -16,23 +13,6 @@ or contract.
|
|||||||
|
|
||||||
This is a separate distribution of the zope.interface package used in Zope 3.
|
This is a separate distribution of the zope.interface package used in Zope 3.
|
||||||
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%package -n python2-zope-interface
|
|
||||||
Summary: Zope 3 Interface Infrastructure
|
|
||||||
%{?python_provide:%python_provide python2-zope-interface}
|
|
||||||
|
|
||||||
BuildRequires: gcc python2-devel python2-setuptools python2-nose python2-zope-event
|
|
||||||
Requires: python2-zope-event
|
|
||||||
Obsoletes: python-zope-filesystem <= 1-8
|
|
||||||
|
|
||||||
%description -n python2-zope-interface
|
|
||||||
Interfaces are a mechanism for labeling objects as conforming to a given API
|
|
||||||
or contract.
|
|
||||||
|
|
||||||
This is a separate distribution of the zope.interface package used in Zope 3.
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%package -n python3-zope-interface
|
%package -n python3-zope-interface
|
||||||
Summary: Zope 3 Interface Infrastructure
|
Summary: Zope 3 Interface Infrastructure
|
||||||
%{?python_provide:%python_provide python3-zope-interface}
|
%{?python_provide:%python_provide python3-zope-interface}
|
||||||
@ -45,68 +25,36 @@ Interfaces are a mechanism for labeling objects as conforming to a given API
|
|||||||
or contract.
|
or contract.
|
||||||
|
|
||||||
This is a separate distribution of the zope.interface package used in Zope 3.
|
This is a separate distribution of the zope.interface package used in Zope 3.
|
||||||
%endif
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n zope.interface-%{version}
|
%autosetup -n zope.interface-%{version}
|
||||||
rm -rf %{modname}.egg-info
|
rm -rf %{modname}.egg-info
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if 0%{?with_python2}
|
|
||||||
%py2_build
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%py3_build
|
%py3_build
|
||||||
%endif
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if 0%{?with_python2}
|
|
||||||
%py2_install
|
|
||||||
%{__rm} -f %{buildroot}%{python2_sitearch}/zope/interface/{,tests/}*.txt
|
|
||||||
%{__rm} -f %{buildroot}%{python2_sitearch}/zope/interface/_zope_interface_coptimizations.c
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%py3_install
|
%py3_install
|
||||||
%{__rm} -f %{buildroot}%{python3_sitearch}/zope/interface/{,tests/}*.txt
|
%{__rm} -f %{buildroot}%{python3_sitearch}/zope/interface/{,tests/}*.txt
|
||||||
%{__rm} -f %{buildroot}%{python3_sitearch}/zope/interface/_zope_interface_coptimizations.c
|
%{__rm} -f %{buildroot}%{python3_sitearch}/zope/interface/_zope_interface_coptimizations.c
|
||||||
%endif
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if 0%{?with_python3}
|
|
||||||
PYTHONPATH=$(pwd) nosetests-2
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
PYTHONPATH=$(pwd) nosetests-3
|
PYTHONPATH=$(pwd) nosetests-3
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%files -n python2-zope-interface
|
|
||||||
%doc README.rst CHANGES.rst COPYRIGHT.txt docs/
|
|
||||||
%license LICENSE.txt
|
|
||||||
%{python2_sitearch}/zope/interface/
|
|
||||||
%dir %{python2_sitearch}/zope/
|
|
||||||
%exclude %{python2_sitearch}/zope/interface/tests/
|
|
||||||
%exclude %{python2_sitearch}/zope/interface/common/tests/
|
|
||||||
%{python2_sitearch}/zope.interface-*.egg-info
|
|
||||||
%{python2_sitearch}/zope.interface-*-nspkg.pth
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%files -n python3-zope-interface
|
%files -n python3-zope-interface
|
||||||
%doc README.rst CHANGES.rst COPYRIGHT.txt docs/
|
%doc README.rst CHANGES.rst COPYRIGHT.txt docs/
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%{python3_sitearch}/zope/interface/
|
%{python3_sitearch}/zope/interface/
|
||||||
# Co-own %%{python3_sitearch}/zope/
|
|
||||||
%dir %{python3_sitearch}/zope/
|
%dir %{python3_sitearch}/zope/
|
||||||
%exclude %{python3_sitearch}/zope/interface/tests/
|
%exclude %{python3_sitearch}/zope/interface/tests/
|
||||||
%exclude %{python3_sitearch}/zope/interface/common/tests/
|
%exclude %{python3_sitearch}/zope/interface/common/tests/
|
||||||
%{python3_sitearch}/zope.interface-*.egg-info
|
%{python3_sitearch}/zope.interface-*.egg-info
|
||||||
%{python3_sitearch}/zope.interface-*-nspkg.pth
|
%{python3_sitearch}/zope.interface-*-nspkg.pth
|
||||||
%endif
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 5 2020 zhangjiapeng <zhangjiapeng9@huawei.com> - 4.7.2-1
|
||||||
|
- Upgrade to 4.7.2 to remove deprecated use of setuptools features
|
||||||
|
|
||||||
* Wed Feb 12 2020 openEuler Buildteam <buildteam@openeuler.org> - 4.5.0-3
|
* Wed Feb 12 2020 openEuler Buildteam <buildteam@openeuler.org> - 4.5.0-3
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
Binary file not shown.
BIN
zope.interface-4.7.2.tar.gz
Normal file
BIN
zope.interface-4.7.2.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user