#2 Upstream version 1.6.6
Merged 5 years ago by greghellings. Opened 5 years ago by greghellings.
rpms/ greghellings/python-plumbum master  into  master

file modified
+1
@@ -3,3 +3,4 @@ 

  /plumbum-1.1.0.tar.gz

  /plumbum-1.4.2.tar.gz

  /plumbum-1.6.0.tar.gz

+ /plumbum-1.6.6.tar.gz

file modified
+14 -9
@@ -2,13 +2,13 @@ 

  %global with_python3 1

  

  Name:           python-%{pypi_name}

- Version:        1.6.0

- Release:        11%{?dist}

+ Version:        1.6.6

+ Release:        1%{?dist}

  Summary:        Shell combinators library

  

  License:        MIT

  URL:            https://github.com/tomerfiliba/plumbum

- Source0:        http://pypi.python.org/packages/source/p/plumbum/plumbum-%{version}.tar.gz

+ Source0:        %{pypi_source}

  

  BuildArch:      noarch

  BuildRequires:  python2-devel
@@ -60,27 +60,27 @@ 

  %endif # with_python3

  

  %build

- %{__python} setup.py build

+ %{py2_build}

  

  %if 0%{?with_python3}

  pushd %{py3dir}

- %{__python3} setup.py build

+ %{py3_build}

  popd

  %endif # with_python3

  

  %install

  %if 0%{?with_python3}

  pushd %{py3dir}

- %{__python3} setup.py install --skip-build --root %{buildroot}

+ %{py3_install}

  popd

  %endif # with_python3

  

- %{__python} setup.py install -O1 --skip-build --root %{buildroot}

+ %{py2_install}

  

  %files -n python2-%{pypi_name}

  %doc LICENSE README.rst

- %{python_sitelib}/%{pypi_name}

- %{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info

+ %{python2_sitelib}/%{pypi_name}

+ %{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info

  

  %if 0%{?with_python3}

  %files -n python3-%{pypi_name}
@@ -91,6 +91,11 @@ 

  

  

  %changelog

+ * Wed Jul 25 2018 Greg Hellings <greg.hellings@gmail.com> - 1.6.6-1

+ - Upstream version 1.6.6

+ - Fix FTBFS BZ#1605834

+ - Switch to standard Python macros for source URL and building

+ 

  * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-11

  - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild

  

file modified
+1 -1
@@ -1,1 +1,1 @@ 

- eccc71c9f8a8056e41fc24e0d34daa57  plumbum-1.6.0.tar.gz

+ SHA512 (plumbum-1.6.6.tar.gz) = 7312ce7381bf851a8f37e367e874d1b8be142fa78c5b49e8e29a6197e2bb28c20db8775db7da923f6e2ae9801233dcb1670eeb654e2f2b95a0b10449584733f8

Also fixes FTBFS BZ#1605384

Pull-Request has been merged by greghellings

5 years ago