New release of pandas 0.16.0

- Use license macro
- Don't use py3dir (ne python guidelines)
This commit is contained in:
Sergio Pascual 2015-03-24 11:23:45 +01:00
parent 4fabdbe6e4
commit d99edfbb38
3 changed files with 30 additions and 15 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@
/pandas-0.15.0.tar.gz /pandas-0.15.0.tar.gz
/pandas-0.15.1.tar.gz /pandas-0.15.1.tar.gz
/pandas-0.15.2.tar.gz /pandas-0.15.2.tar.gz
/pandas-0.16.0.tar.gz

View File

@ -1,10 +1,9 @@
%global with_python3 1 %global with_python3 1
%global __provides_exclude_from ^(%{python2_sitearch}|%{python3_sitearch})/.*\\.so$ %global pkgname pandas
Name: python-pandas Name: python-pandas
Version: 0.15.2 Version: 0.16.0
Release: 3%{?dist} Release: 1%{?dist}
Summary: Python library providing high-performance data analysis tools Summary: Python library providing high-performance data analysis tools
Group: Development/Languages Group: Development/Languages
@ -52,21 +51,27 @@ analysis tools for the Python programming language.
%endif # with_python3 %endif # with_python3
%prep %prep
%setup -q -n pandas-%{version} %setup -qc -n %{pkgname}-%{version}
mv %{pkgname}-%{version} python2
find -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python2}|' pushd python2
# Common docs
cp -a LICENSE RELEASE.md ../
popd
%if 0%{?with_python3} %if 0%{?with_python3}
rm -rf %{py3dir} cp -a python2 python3
cp -a . %{py3dir} find python3 -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
%endif # with_python3 %endif # with_python3
find python2 -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python2}|'
%build %build
pushd python2
CFLAGS=$RPM_OPT_FLAGS %{__python2} setup.py build CFLAGS=$RPM_OPT_FLAGS %{__python2} setup.py build
popd
%if 0%{?with_python3} %if 0%{?with_python3}
pushd %{py3dir} pushd python3
CFLAGS=$RPM_OPT_FLAGS %{__python3} setup.py build CFLAGS=$RPM_OPT_FLAGS %{__python3} setup.py build
popd popd
%endif # with_python3 %endif # with_python3
@ -74,26 +79,35 @@ popd
%install %install
%if 0%{?with_python3} %if 0%{?with_python3}
pushd %{py3dir} pushd python3
%{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT %{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
popd popd
%endif # with_python3 %endif # with_python3
pushd python2
%{__python2} setup.py install --skip-build --root $RPM_BUILD_ROOT %{__python2} setup.py install --skip-build --root $RPM_BUILD_ROOT
popd
%files %files
%doc LICENSE RELEASE.md %doc RELEASE.md
%license LICENSE
%{python2_sitearch}/pandas* %{python2_sitearch}/pandas*
%if 0%{?with_python3} %if 0%{?with_python3}
%files -n python3-pandas %files -n python3-pandas
%doc LICENSE RELEASE.md %doc RELEASE.md
%license LICENSE
%{python3_sitearch}/pandas* %{python3_sitearch}/pandas*
%endif # with_python3 %endif # with_python3
%changelog %changelog
* Tue Mar 24 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.0-1
- New release of pandas 0.16.0
- Use license macro
- Don't use py3dir (ne python guidelines)
* Tue Jan 20 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-3 * Tue Jan 20 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-3
- Pandas actually supports dateutil 2 - Pandas actually supports dateutil 2

View File

@ -1 +1 @@
d74481b57fda726a9ed60b223f0ad4b7 pandas-0.15.2.tar.gz bfe311f05dc0c351f8955fbd1e296e73 pandas-0.16.0.tar.gz