[python-pandas] New release of pandas 0.16.0

Sergio Pascual sergiopr at fedoraproject.org
Tue Mar 24 10:24:49 UTC 2015


commit d99edfbb3859b59f23cb4513185a18834fd20af1
Author: Sergio Pascual <sergiopr at fis.ucm.es>
Date:   Tue Mar 24 11:23:45 2015 +0100

    New release of pandas 0.16.0
    
    - Use license macro
    - Don't use py3dir (ne python guidelines)

 .gitignore         |  1 +
 python-pandas.spec | 42 ++++++++++++++++++++++++++++--------------
 sources            |  2 +-
 3 files changed, 30 insertions(+), 15 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 34aeeda..3f9986a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,4 @@
 /pandas-0.15.0.tar.gz
 /pandas-0.15.1.tar.gz
 /pandas-0.15.2.tar.gz
+/pandas-0.16.0.tar.gz
diff --git a/python-pandas.spec b/python-pandas.spec
index df702ff..83661c8 100644
--- a/python-pandas.spec
+++ b/python-pandas.spec
@@ -1,10 +1,9 @@
 %global with_python3 1
-%global __provides_exclude_from ^(%{python2_sitearch}|%{python3_sitearch})/.*\\.so$
-
+%global pkgname pandas
 
 Name:           python-pandas
-Version:        0.15.2
-Release:        3%{?dist}
+Version:        0.16.0
+Release:        1%{?dist}
 Summary:        Python library providing high-performance data analysis tools
 
 Group:          Development/Languages
@@ -52,21 +51,27 @@ analysis tools for the Python programming language.
 %endif # with_python3
 
 %prep
-%setup -q -n pandas-%{version}
-
-find -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python2}|'
+%setup -qc -n %{pkgname}-%{version}
+mv %{pkgname}-%{version} python2
+pushd python2
+# Common docs
+cp -a LICENSE RELEASE.md ../
+popd
 
 %if 0%{?with_python3}
-rm -rf %{py3dir}
-cp -a . %{py3dir}
-find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
+cp -a python2 python3
+find python3 -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
 %endif # with_python3
 
+find python2 -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python2}|'
+
 %build
+pushd python2
 CFLAGS=$RPM_OPT_FLAGS %{__python2} setup.py build
+popd
 
 %if 0%{?with_python3}
-pushd %{py3dir}
+pushd python3
 CFLAGS=$RPM_OPT_FLAGS %{__python3} setup.py build
 popd
 %endif # with_python3
@@ -74,26 +79,35 @@ popd
 
 %install
 %if 0%{?with_python3}
-pushd %{py3dir}
+pushd python3
 %{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
 popd
 %endif # with_python3
 
+pushd python2
 %{__python2} setup.py install --skip-build --root $RPM_BUILD_ROOT
+popd
 
 %files
-%doc LICENSE RELEASE.md
+%doc RELEASE.md
+%license LICENSE
 %{python2_sitearch}/pandas*
 
 %if 0%{?with_python3}
 %files -n python3-pandas
-%doc LICENSE RELEASE.md
+%doc RELEASE.md
+%license LICENSE
 %{python3_sitearch}/pandas*
 %endif # with_python3
 
 
 
 %changelog
+* Tue Mar 24 2015 Sergio Pascual <sergiopr at 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 at fedoraproject.org> - 0.15.2-3
 - Pandas actually supports dateutil 2
 
diff --git a/sources b/sources
index b64e4de..96dcea0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d74481b57fda726a9ed60b223f0ad4b7  pandas-0.15.2.tar.gz
+bfe311f05dc0c351f8955fbd1e296e73  pandas-0.16.0.tar.gz


More information about the scm-commits mailing list