python-aiohttp/python-aiohttp.spec

76 lines
1.9 KiB
RPMSpec
Raw Normal View History

2014-10-06 20:06:41 +00:00
%global srcname aiohttp
Name: python-aiohttp
Version: 0.16.5
Release: 2%{?dist}
2014-10-06 20:06:41 +00:00
Summary: A Python HTTP client/server for asyncio
License: BSD
URL: https://github.com/KeepSafe/aiohttp/
Source0: https://pypi.python.org/packages/source/a/%{srcname}/%{srcname}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python2-devel
BuildRequires: python-setuptools
%if 0%{?with_python3}
2014-10-06 20:06:41 +00:00
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%endif
2014-10-06 20:06:41 +00:00
%description
A Python HTTP client/server for asyncio
%if 0%{?with_python3}
%package -n python3-%{srcname}
Summary: A Python HTTP client/server for asyncio
%description -n python3-%{srcname}
A Python HTTP client/server for asyncio
%endif
2014-10-06 20:06:41 +00:00
%prep
%setup -q -n %{srcname}-%{version}
rm -rf %{srcname}.egg-info
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
%endif
2014-10-06 20:06:41 +00:00
%build
%if 0%{?with_python3}
pushd %{py3dir}
2014-10-06 20:06:41 +00:00
%{__python3} setup.py build
popd
%endif
2014-10-06 20:06:41 +00:00
%install
%if 0%{?with_python3}
pushd %{py3dir}
2014-10-06 20:06:41 +00:00
%{__python3} setup.py install --skip-build --root %{buildroot}
popd
%endif
2014-10-06 20:06:41 +00:00
%if 0%{?with_python3}
%files -n python3-%{srcname}
2014-10-06 20:06:41 +00:00
%doc CHANGES.txt CONTRIBUTORS.txt LICENSE.txt README.rst
%{python3_sitelib}/*
%endif
2014-10-06 20:06:41 +00:00
%changelog
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Mon Jun 15 2015 Fabian Affolter <mail@fabian-affolter.ch> - 0.10.2-1
- Update to lastest upstream release 0.16.5 (rhbz#1231670)
* Wed Nov 26 2014 Fabian Affolter <mail@fabian-affolter.ch> - 0.10.2-1
- Update to lastest upstream release 0.10.2
* Wed Oct 08 2014 Fabian Affolter <mail@fabian-affolter.ch> - 0.9.1-2
- Build only a py3 package
2014-10-06 20:06:41 +00:00
* Wed Feb 26 2014 Fabian Affolter <mail@fabian-affolter.ch> - 0.9.1-1
- Initial package for Fedora