%global srcname requests-ftp Name: python-%{srcname} Version: 0.3.1 Release: 2%{?dist} Summary: FTP transport adapter for python-requests License: ASL 2.0 URL: https://github.com/Lukasa/requests-ftp Source0: https://pypi.python.org/packages/source/r/%{srcname}/%{srcname}-%{version}.tar.gz BuildArch: noarch %description Requests-FTP is an implementation of a very stupid FTP transport adapter for use with the awesome Requests Python library. %package -n python2-%{srcname} Summary: FTP transport adapter for python-requests %{?python_provide:%python_provide python2-%{srcname}} BuildRequires: python2-devel BuildRequires: python-setuptools Requires: python-requests %description -n python2-%{srcname} Requests-FTP is an implementation of a very stupid FTP transport adapter for use with the awesome Requests Python library. This is the Python 2 version of the transport adapter module. %package -n python3-%{srcname} Summary: FTP transport adapter for python3-requests %{?python_provide:%python_provide python3-%{srcname}} BuildRequires: python3-devel BuildRequires: python3-setuptools Requires: python3-requests %description -n python3-requests-ftp Requests-FTP is an implementation of a very stupid FTP transport adapter for use with the awesome Requests Python library. This is the Python 3 version of the transport adapter module. %prep %autosetup -n %{srcname}-%{version} rm -rf requests_ftp.egg-info %build %py2_build %py3_build %install %py2_install %py3_install %files -n python2-%{srcname} %doc README.rst %license LICENSE %{python2_sitelib}/requests_ftp/ %{python2_sitelib}/requests_ftp*.egg-info* %files -n python3-%{srcname} %doc README.rst %license LICENSE %{python3_sitelib}/requests_ftp/ %{python3_sitelib}/requests_ftp*.egg-info* %changelog * Tue Nov 03 2015 Robert Kuska - 0.3.1-2 - Rebuilt for Python3.5 rebuild * Mon Sep 14 2015 David Shea - 0.3.1-1 - Update to requests-ftp-0.3.1, which fixes the LIST command - Switch to the new python packaging guidelines, which renames python-requests-ftp to python2-requests-ftp * Thu Jun 18 2015 Fedora Release Engineering - 0.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Fri Apr 10 2015 David Shea - 0.3.0-1 - New upstream version 0.3.0 - Adds proxy support and improves compatibility with HTTP requests * Thu Mar 12 2015 David Shea - 0.2.0-1 - Initial package