New version 1.2.3 and Python 3 subpackage

This commit is contained in:
Miro Hrončok 2013-11-29 11:57:08 +01:00
parent 3672995a66
commit a594c9c267
3 changed files with 57 additions and 6 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@
/sure-1.0.6-tests.tgz /sure-1.0.6-tests.tgz
/sure-1.1.7-tests.tgz /sure-1.1.7-tests.tgz
/sure-1.1.7.tar.gz /sure-1.1.7.tar.gz
/sure-1.2.3.tar.gz
/sure-1.2.3-tests.tgz

View File

@ -10,11 +10,13 @@
%{!?scl:%global pkg_name %{name}} %{!?scl:%global pkg_name %{name}}
# Created by pyp2rpm-0.5.1 # Created by pyp2rpm-0.5.1
%{!?scl:%global with_python3 1}
%{?scl:%global with_python3 0}
%global pypi_name sure %global pypi_name sure
Name: %{?scl_prefix}python-%{pypi_name} Name: %{?scl_prefix}python-%{pypi_name}
Version: 1.1.7 Version: 1.2.3
Release: 3%{?dist} Release: 1%{?dist}
Summary: Assertion toolbox for python Summary: Assertion toolbox for python
License: GPLv3+ License: GPLv3+
@ -25,7 +27,7 @@ Source0: http://pypi.python.org/packages/source/s/%{pypi_name}/%{pypi_nam
Source1: https://raw.github.com/gabrielfalcao/sure/master/COPYING Source1: https://raw.github.com/gabrielfalcao/sure/master/COPYING
# To get tests: # To get tests:
# git clone https://github.com/gabrielfalcao/sure.git && cd sure # git clone https://github.com/gabrielfalcao/sure.git && cd sure
# git checkout 1.1.7 && tar czf sure-1.1.7-tests.tgz tests/ # git checkout 2d1a71d618 && tar czf sure-1.2.3-tests.tgz tests/
Source2: %{pypi_name}-%{version}-tests.tgz Source2: %{pypi_name}-%{version}-tests.tgz
BuildArch: noarch BuildArch: noarch
@ -33,37 +35,84 @@ BuildRequires: %{?scl_prefix}python2-devel
BuildRequires: %{?scl_prefix}python-nose BuildRequires: %{?scl_prefix}python-nose
BuildRequires: %{?scl_prefix}python-setuptools BuildRequires: %{?scl_prefix}python-setuptools
%if 0%{with_python3}
BuildRequires: %{?scl_prefix}python3-devel
BuildRequires: %{?scl_prefix}python3-nose
BuildRequires: %{?scl_prefix}python3-setuptools
%endif
%description %description
A Python assertion toolbox that works fine with nose. A Python assertion toolbox that works fine with nose.
%if 0%{?with_python3}
%package -n python3-%{pypi_name}
Summary: Assertion toolbox for python 3
%description -n python3-%{pypi_name}
A Python assertion toolbox that works fine with nose.
%endif # with_python3
%prep %prep
%setup -q -n %{pypi_name}-%{version} %setup -q -n %{pypi_name}-%{version}
# Remove bundled egg-info # Remove bundled egg-info
rm -rf %{pypi_name}.egg-info rm -rf %{pypi_name}.egg-info
cp %{SOURCE1} . cp %{SOURCE1} .
tar xzf %{SOURCE2}
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!/bin/env python|#!%{__python3}|'
%endif # with_python3
%build %build
%{?scl:scl enable %{scl} "} %{?scl:scl enable %{scl} "}
%{__python} setup.py build %{__python} setup.py build
%{?scl:"} %{?scl:"}
%if 0%{with_python3}
pushd %{py3dir}
%{__python3} setup.py build
popd
%endif
%install %install
%{?scl:scl enable %{scl} "} %{?scl:scl enable %{scl} "}
%{__python} setup.py install --skip-build --root %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot}
%{?scl:"} %{?scl:"}
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py install --skip-build --root %{buildroot}
popd
%endif # with_python3
%check %check
tar xzf %{SOURCE2}
%{?scl:scl enable %{scl} "} %{?scl:scl enable %{scl} "}
nosetests nosetests
%{?scl:"} %{?scl:"}
%if 0%{?with_python3}
pushd %{py3dir}
/usr/bin/nosetests-3*
popd
%endif # with_python3
%files %files
%doc COPYING %doc COPYING
%{python_sitelib}/%{pypi_name} %{python_sitelib}/%{pypi_name}
%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info %{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
%files -n python3-%{pypi_name}
%doc COPYING
%{python3_sitelib}/%{pypi_name}
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
%changelog %changelog
* Fri Nov 29 2013 Miro Hrončok <mhroncok@redhat.com> - 1.2.3-1
- Updated
- Introduced Python 3 subpackage
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.7-3 * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.7-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

View File

@ -1,2 +1,2 @@
90a83e149c6dd79f109f5b6686027dc2 sure-1.1.7-tests.tgz 33a37b5fda753f44315029391f619abb sure-1.2.3.tar.gz
4d95a2118175b8ca56a82c85505a8ebf sure-1.1.7.tar.gz f179587ecf031671c9b5d1c3e1163d31 sure-1.2.3-tests.tgz