Compare commits

..

No commits in common. "596e49eaa778ed35f8c52af967e1b8890fecbb97" and "0e405823cb0a79cc72354a479ce6d33e284bcd56" have entirely different histories.

4 changed files with 23 additions and 18 deletions

BIN
ordered-set-2.0.2.tar.gz Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
Name: python-ordered-set
Version: 4.1.0
Version: 2.0.2
Release: 1
Summary: A mutable data structure
License: MIT
@ -13,10 +13,18 @@ An OrderedSet is a mutable data structure that is a hybrid of a list and a set.
It remembers the order of its entries, and every entry has an index number that
can be looked up.
%package -n python2-ordered-set
Summary: ordered-set for python2
%{?python_provide:%python_provide python2-ordered-set}
BuildRequires: python2-devel python2-setuptools python2-nose
%description -n python2-ordered-set
Ordered-set for python2.
%package -n python3-ordered-set
Summary: ordered-set for python3
%{?python_provide:%python_provide python2-ordered-set}
BuildRequires: python3-devel python3-setuptools python3-pytest
BuildRequires: python3-devel python3-setuptools python3-nose
%description -n python3-ordered-set
Ordered-set for python3.
@ -25,13 +33,16 @@ Ordered-set for python3.
%autosetup -n ordered-set-%{version}
%build
%py2_build
%py3_build
%install
%py2_install
%py3_install
%check
%{__python3} -m pytest
%{__python2} setup.py nosetests
%{__python3} setup.py nosetests
%pre
@ -41,21 +52,19 @@ Ordered-set for python3.
%postun
%files -n python2-ordered-set
%license MIT-LICENSE
%doc README
%{python2_sitelib}/ordered_set-*.egg-info/
%{python2_sitelib}/ordered_set.py*
%files -n python3-ordered-set
%license MIT-LICENSE
%doc README.md
%doc README
%{python3_sitelib}/ordered_set-*.egg-info/
%{python3_sitelib}/ordered_set
%{python3_sitelib}/ordered_set.py
%{python3_sitelib}/__pycache__/ordered_set.*
%changelog
* Thu Nov 03 2022 zhuofeng <zhuofeng2@huawei.com> - 4.1.0-1
- update to 4.1.0
* Wed May 25 2022 renhongxun <renhongxun@h-partners.com> - 4.0.2-2
- replace nosetests with pytest and remove useless python3-nose
* Sat Jul 25 2020 tianwei <tianwei12m@huawei.com> - 4.0.2-1
- Package update to 4.0.2
* Fri Oct 18 2019 openEuler Buildteam <buildteam@openeuler.org> - 2.0.2-1
- Package init

View File

@ -1,4 +0,0 @@
version_control: github
src_repo: LuminosoInsight/ordered-set
tag_prefix: ^release/
seperator: .