1487f74
%global pylib_version 1.5.0
16bbfe7
9c5eb1f
Name:           pytest
1487f74
Version:        3.5.1
1487f74
Release:        1%{?dist}
9c5eb1f
Summary:        Simple powerful testing with Python
9c5eb1f
License:        MIT
9c5eb1f
URL:            http://pytest.org
9914b05
Source0:        https://files.pythonhosted.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
9c5eb1f
38c4b45
# The test in this specfile use pytest-timeout
38c4b45
# When building pytest for the first time with new Python version
38c4b45
# that is not possible as it depends on pytest
23aa297
%bcond_without timeout
38c4b45
e1fdcee
# When building pytest for the first time with new Python version
e1fdcee
# we might not yet have all the BRs, this allows us to build without some that
e1fdcee
# are likely not yet built.
e1fdcee
# Pytest will skip the related tests, so we only conditionalize the BRs
e1fdcee
%bcond_without optional_tests
e1fdcee
f3561b1
# When building pytest for the first time with new Python version
f3561b1
# we also don't have sphinx yet and cannot build docs.
f3561b1
%bcond_without docs
f3561b1
f3561b1
%if %{with docs}
1487f74
BuildRequires:  %{_bindir}/sphinx-build-3
1487f74
BuildRequires:  python3-sphinxcontrib-trio
1487f74
BuildRequires:  %{_bindir}/rst2html
f3561b1
%endif
1487f74
9c5eb1f
BuildArch:      noarch
3a742ba
08b2080
%description
08b2080
py.test provides simple, yet powerful testing for Python.
08b2080
08b2080
%package -n python2-%{name}
08b2080
Summary:        Simple powerful testing with Python
e1fdcee
BuildRequires:  python2-attrs
77ca0cf
BuildRequires:  python2-devel
e1fdcee
BuildRequires:  python2-hypothesis
e1fdcee
BuildRequires:  python2-more-itertools >= 4.0.0
e1fdcee
BuildRequires:  python2-pluggy
e1fdcee
BuildRequires:  python2-py >= %{pylib_version}
c65fe99
BuildRequires:  python2-setuptools
ae3055c
BuildRequires:  python2-setuptools_scm
e1fdcee
BuildRequires:  python2-six
e1fdcee
38c4b45
%if %{with timeout}
111df27
BuildRequires:  python2-pytest-timeout
38c4b45
%endif
e1fdcee
e1fdcee
%if %{with optional_tests}
111df27
BuildRequires:  python2-argcomplete
111df27
BuildRequires:  python2-decorator
e1fdcee
BuildRequires:  python2-jinja2
e1fdcee
BuildRequires:  python2-mock
e1fdcee
BuildRequires:  python2-nose
e1fdcee
BuildRequires:  python2-twisted
e1fdcee
%endif
e1fdcee
447afd7
Requires:       python2-attrs
447afd7
Requires:       python2-funcsigs
1487f74
Requires:       python2-more-itertools >= 4.0.0
e1fdcee
Requires:       python2-pluggy
08b2080
Requires:       python2-py >= %{pylib_version}
e1fdcee
Requires:       python2-setuptools
e1fdcee
Requires:       python2-six
e1fdcee
08b2080
%{?python_provide:%python_provide python2-%{name}}
08b2080
# the python2 package was named pytest up to 2.8.7-2
08b2080
Provides:       %{name} = %{version}-%{release}
08b2080
Obsoletes:      %{name} < 2.8.7-3
08b2080
08b2080
%description -n python2-%{name}
08b2080
py.test provides simple, yet powerful testing for Python.
3a742ba
08b2080
%package -n python3-%{name}
08b2080
Summary:        Simple powerful testing with Python
e1fdcee
BuildRequires:  python3-attrs
3a742ba
BuildRequires:  python3-devel
e1fdcee
BuildRequires:  python3-hypothesis
e1fdcee
BuildRequires:  python3-more-itertools
e1fdcee
BuildRequires:  python3-pluggy
e1fdcee
BuildRequires:  python3-py >= %{pylib_version}
3a742ba
BuildRequires:  python3-setuptools
3a742ba
BuildRequires:  python3-setuptools_scm
e1fdcee
BuildRequires:  python3-six
e1fdcee
3a742ba
%if %{with timeout}
3a742ba
BuildRequires:  python3-pytest-timeout
3a742ba
%endif
e1fdcee
e1fdcee
%if %{with optional_tests}
3a742ba
BuildRequires:  python3-argcomplete
111df27
BuildRequires:  python3-decorator
e1fdcee
BuildRequires:  python3-jinja2
e1fdcee
BuildRequires:  python3-mock
e1fdcee
BuildRequires:  python3-nose
e1fdcee
BuildRequires:  python3-twisted
e1fdcee
%endif
e1fdcee
447afd7
Requires:       python3-attrs
1487f74
Requires:       python3-more-itertools
e1fdcee
Requires:       python3-pluggy
16bbfe7
Requires:       python3-py >= %{pylib_version}
e1fdcee
Requires:       python3-setuptools
e1fdcee
Requires:       python3-six
e1fdcee
Orion Poplawski 13edb5c
%{?python_provide:%python_provide python3-%{name}}
457cd6d
Obsoletes:      platform-python-%{name} < %{version}-%{release}
9c5eb1f
c65fe99
%description -n python3-%{name}
9c5eb1f
py.test provides simple, yet powerful testing for Python.
3a742ba
9c5eb1f
%prep
746b808
%autosetup
9c5eb1f
9c5eb1f
%build
746b808
%py2_build
746b808
%py3_build
f3561b1
f3561b1
%if %{with docs}
c65fe99
for l in doc/* ; do
1487f74
  make -C $l html PYTHONPATH=$(pwd) SPHINXBUILD=%{_bindir}/sphinx-build-3
c65fe99
done
c65fe99
for f in README CHANGELOG CONTRIBUTING ; do
c65fe99
  rst2html ${f}.rst > ${f}.html
c65fe99
done
f3561b1
%endif
3a742ba
9c5eb1f
%install
746b808
%py2_install
111df27
mv %{buildroot}%{_bindir}/pytest %{buildroot}%{_bindir}/pytest-%{python2_version}
111df27
ln -snf pytest-%{python2_version} %{buildroot}%{_bindir}/pytest-2
111df27
mv %{buildroot}%{_bindir}/py.test %{buildroot}%{_bindir}/py.test-%{python2_version}
fb09380
ln -snf py.test-%{python2_version} %{buildroot}%{_bindir}/py.test-2
746b808
%py3_install
111df27
mv %{buildroot}%{_bindir}/pytest %{buildroot}%{_bindir}/pytest-%{python3_version}
111df27
ln -snf pytest-%{python3_version} %{buildroot}%{_bindir}/pytest-3
111df27
mv %{buildroot}%{_bindir}/py.test %{buildroot}%{_bindir}/py.test-%{python3_version}
fb09380
ln -snf py.test-%{python3_version} %{buildroot}%{_bindir}/py.test-3
9c5eb1f
746b808
# use 2.X per default
746b808
ln -snf pytest-%{python2_version} %{buildroot}%{_bindir}/pytest
746b808
ln -snf py.test-%{python2_version} %{buildroot}%{_bindir}/py.test
746b808
f3561b1
%if %{with docs}
c65fe99
mkdir -p _htmldocs/html
c65fe99
for l in doc/* ; do
c65fe99
  # remove hidden file
c65fe99
  rm ${l}/_build/html/.buildinfo
c65fe99
  mv ${l}/_build/html _htmldocs/html/${l##doc/}
c65fe99
done
f3561b1
%endif
c65fe99
9c5eb1f
# remove shebangs from all scripts
746b808
find %{buildroot}{%{python2_sitelib},%{python3_sitelib}} \
c65fe99
     -name '*.py' \
9c5eb1f
     -exec sed -i -e '1{/^#!/d}' {} \;
9c5eb1f
9c5eb1f
%check
71f464f
PATH=%{buildroot}%{_bindir}:${PATH} \
77ca0cf
PYTHONPATH=%{buildroot}%{python2_sitelib} \
38c4b45
  %{buildroot}%{_bindir}/pytest-%{python2_version} -r s testing \
38c4b45
  %if %{with timeout}
08b2080
  --timeout=30
38c4b45
  %endif
38c4b45
71f464f
PATH=%{buildroot}%{_bindir}:${PATH} \
9c5eb1f
PYTHONPATH=%{buildroot}%{python3_sitelib} \
38c4b45
  %{buildroot}%{_bindir}/pytest-%{python3_version} -r s testing \
38c4b45
  %if %{with timeout}
08b2080
  --timeout=30
38c4b45
  %endif
38c4b45
c65fe99
%files -n python2-%{name}
f3561b1
%if %{with docs}
746b808
%doc CHANGELOG.html
746b808
%doc README.html
746b808
%doc CONTRIBUTING.html
746b808
%doc _htmldocs/html
f3561b1
%endif
746b808
%license LICENSE
111df27
%{_bindir}/pytest
111df27
%{_bindir}/pytest-2
111df27
%{_bindir}/pytest-%{python2_version}
9c5eb1f
%{_bindir}/py.test
fb09380
%{_bindir}/py.test-2
f71e7ff
%{_bindir}/py.test-%{python2_version}
b67c85c
%{python2_sitelib}/pytest-*.egg-info/
b67c85c
%{python2_sitelib}/_pytest/
b67c85c
%{python2_sitelib}/pytest.py*
9c5eb1f
c65fe99
%files -n python3-%{name}
f3561b1
%if %{with docs}
746b808
%doc CHANGELOG.html
746b808
%doc README.html
746b808
%doc CONTRIBUTING.html
746b808
%doc _htmldocs/html
f3561b1
%endif
746b808
%license LICENSE
111df27
%{_bindir}/pytest-3
111df27
%{_bindir}/pytest-%{python3_version}
fb09380
%{_bindir}/py.test-3
f71e7ff
%{_bindir}/py.test-%{python3_version}
b67c85c
%{python3_sitelib}/pytest-*.egg-info/
b67c85c
%{python3_sitelib}/_pytest/
b67c85c
%{python3_sitelib}/pytest.py
1f9fdf2
%{python3_sitelib}/__pycache__/pytest.*
3a742ba
9c5eb1f
%changelog
1487f74
* Sat May 19 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.5.1-1
1487f74
- Update to 3.5.1.
1487f74
- Build the documentation with Python3.
1487f74
- Update requirements.
1487f74
447afd7
* Thu Mar 15 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.4.2-2
447afd7
- Add Requires for required modules
447afd7
f8ed9b3
* Wed Mar 14 2018 Charalampos Stratakis <cstratak@redhat.com> - 3.4.2-1
f8ed9b3
- Update to 3.4.2
f8ed9b3
c746165
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.3-4
c746165
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c746165
457cd6d
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.2.3-3
457cd6d
- Use better Obsoletes for platform-python
457cd6d
64d7e62
* Fri Nov 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.2.3-2
64d7e62
- Remove platform-python subpackage
746b808
- Cleanup conditionals
64d7e62
1382133
* Sat Oct  7 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.2.3-1
1382133
- Update to 3.2.3.
1382133
08b2080
* Sat Sep  9 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.2.2-1
1382133
- Update to 3.2.2.
08b2080
- Move BRs to their respective subpackages.
08b2080
- Enable the platform-python subpackage only on F27+.
08b2080
21e4ec5
* Thu Aug 24 2017 Miro Hrončok <mhroncok@redhat.com> - 3.2.1-3
21e4ec5
- Rebuilt for rhbz#1484607
21e4ec5
3a742ba
* Fri Aug 11 2017 Petr Viktorin <pviktori@redhat.com> - 3.2.1-2
3a742ba
- Add subpackage for platform-python (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
3a742ba
ab7a509
* Wed Aug  9 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.2.1-1
ab7a509
- Update to 3.2.1.
ab7a509
4db5422
* Wed Aug 02 2017 Gwyn Ciesla <limburgher@gmail.com> - 3.2.0-1
4db5422
- 3.2.0.
4db5422
415d42f
* Sun Jul 30 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.1.3-1
415d42f
- Update to 3.1.3.
415d42f
- Update BRs.
415d42f
54517ca
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-2
54517ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
54517ca
0dd89af
* Sat Jun  3 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.1.1-1
0dd89af
- Update to 3.1.1.
ae3055c
- Add BR on setuptools_scm.
0dd89af
fc407f8
* Wed Mar 15 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.7-1
fc407f8
- Update to 3.0.7.
fc407f8
4efa42b
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-2
4efa42b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
4efa42b
9ffb2fd
* Sun Jan 29 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.6-1
9ffb2fd
- Update to 3.0.6.
9ffb2fd
- Drop patch applied upstream.
9ffb2fd
38c4b45
* Tue Dec 13 2016 Miro Hrončok <mhroncok@redhat.com> - 3.0.5-2
38c4b45
- Rebuild for Python 3.6
38c4b45
4553282
* Tue Dec  6 2016 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.5-1
4553282
- Update to 3.0.5.
4553282
5b1f793
* Mon Nov 28 2016 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.4-1
5b1f793
- Update to 3.0.4.
5b1f793
111df27
* Fri Sep 30 2016 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.3-1
111df27
- Update to 3.0.3.
111df27
- Update requirements.
111df27
c845a7a
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.2-2
c845a7a
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
c845a7a
4da2211
* Fri Jun  3 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.2-1
4da2211
- Update to 2.9.2.
4da2211
4986f1e
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
4986f1e
- fix source URL
4986f1e
c65fe99
* Sat Apr  9 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.1-1
c65fe99
- Update to 2.9.1.
c65fe99
- Packaging updates.
c65fe99
Orion Poplawski fffc79a
* Tue Feb 2 2016 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-2
Orion Poplawski fffc79a
- Use new python macros
Orion Poplawski fffc79a
- Fix python3 package file ownership
Orion Poplawski fffc79a
add628a
* Sun Jan 24 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.7-1
add628a
- Update to 2.8.7.
add628a
fa2bfbd
* Fri Jan 22 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.6-1
fa2bfbd
- Update to 2.8.6.
fa2bfbd
Orion Poplawski ff2e495
* Wed Dec 30 2015 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-1
Orion Poplawski ff2e495
- Update to 2.8.5
Orion Poplawski ff2e495
Orion Poplawski 9ebb9bd
* Wed Dec 30 2015 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-3
Orion Poplawski 9ebb9bd
- Re-enable pexpect in tests
Orion Poplawski 9ebb9bd
81d05d0
* Wed Nov 11 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.2-2
81d05d0
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
81d05d0
c94cbd4
* Tue Oct 20 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.2-1
c94cbd4
- Update to 2.8.2.
c94cbd4
Robert Kuska e037be8
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 2.7.3-2
Robert Kuska e037be8
- Rebuilt for Python3.5 rebuild
Robert Kuska e037be8
fb09380
* Thu Sep 17 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.3-1
fb09380
- Update to 2.7.3.
fb09380
- Provide additional symlinks to the pytest executables (rhbz#1249891).
fb09380
Orion Poplawski 13edb5c
* Mon Sep 14 2015 Orion Poplawski <orion@cora.nwra.com> - 2.7.2-2
Orion Poplawski 13edb5c
- Provide python2-pytest, use python_provide macro
Orion Poplawski 13edb5c
f71e7ff
* Thu Jun 25 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.2-1
f71e7ff
- Update to 2.7.2.
f71e7ff
- Small fixes.
f71e7ff
2cf870c
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.1-2
2cf870c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2cf870c
68f6d02
* Sat May 23 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.1-1
68f6d02
- Update to 2.7.1.
68f6d02
77ca0cf
* Mon Apr 20 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.0-1
77ca0cf
- Update to 2.7.0.
77ca0cf
- Apply updated Python packaging guidelines.
77ca0cf
- Mark LICENSE with %%license.
77ca0cf
4ac7641
* Tue Dec  2 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.4-1
4ac7641
- Update to 2.6.4.
4ac7641
d55e5ca
* Sat Oct 11 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.3-1
d55e5ca
- Update to 2.6.3.
d55e5ca
ef0eb6b
* Fri Aug  8 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.1-1
ef0eb6b
- Update to 2.6.1.
ef0eb6b
d497904
* Fri Aug  1 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.0-1
d497904
- Update to 2.6.0.
d497904
f2bce57
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.2-3
f2bce57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f2bce57
5e35a10
* Fri May 09 2014 Dennis Gilmore <dennis@ausil.us> - 2.5.2-2
5e35a10
- Redbuild for python 3.4
5e35a10
48eb4ca
* Fri Apr 18 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-1
48eb4ca
- Update to 2.5.2.
48eb4ca
f742f49
* Mon Oct  7 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.2-2
f742f49
- Only run tests from the 'testing' subdir in %%check.
f742f49
71f464f
* Sat Oct  5 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.2-1
71f464f
- Update to 2.4.2.
71f464f
- Add buildroot's bindir to PATH while running the testsuite.
71f464f
d9b4aea
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.5-4
d9b4aea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d9b4aea
ea6a47f
* Thu Jun 13 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-3
ea6a47f
- Disable tests using pexpect for now, fails on F19.
ea6a47f
5c13630
* Wed Jun 12 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-2
0560a6d
- Use python-sphinx for rhel > 6 (rhbz#973318).
5c13630
- Update BR to use python-pexpect instead of pexpect.
5c13630
6e12e2a
* Sat May 25 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-1
6e12e2a
- Update to 2.3.5.
0b8017b
- Docutils needed now to build README.html.
3bf32da
- Add some BR optionally used by the testsuite.
6e12e2a
73bee36
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
73bee36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
73bee36
bb07fc2
* Fri Nov 23 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.4-1
bb07fc2
- Update to 2.3.4.
bb07fc2
388c87f
* Sun Oct 28 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.2-1
388c87f
- Update to 2.3.2.
388c87f
e5fa0a8
* Sun Oct 21 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.1-1
e5fa0a8
- Update to 2.3.1.
e5fa0a8
- Re-enable some tests, ignore others.
e5fa0a8
- Docs are available in English and Japanese now.
e5fa0a8
8205b3a
* Thu Oct 11 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.4-4
8205b3a
- Add conditional for sphinx on rhel.
8205b3a
- Remove rhel logic from with_python3 conditional.
8328a81
- Disable failing tests for Python3.
8205b3a
d1e937b
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.4-3
d1e937b
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
d1e937b
b3fe38d
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-2
b3fe38d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b3fe38d
16bbfe7
* Wed Jun  6 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.4-1
16bbfe7
- Update to 2.2.4.
16bbfe7
f908393
* Wed Feb  8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.3-1
f908393
- Update to 2.2.3.
f908393
ea97d03
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2
ea97d03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ea97d03
281bb38
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
281bb38
- Update to 2.2.1.
281bb38
96521b9
* Tue Dec 13 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.0-1
96521b9
- Update to 2.2.0.
96521b9
6c10783
* Wed Oct 26 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.3-1
6c10783
- Update to 2.1.3.
6c10783
6c10783
* Tue Sep 27 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.2-1
6c10783
- Update to 2.1.2.
6c10783
5cb33d7
* Sat Sep  3 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-2
5cb33d7
- Fix: python3 dependencies.
5cb33d7
fb76f74
* Sun Aug 28 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-1
fb76f74
- Update to 2.1.1.
fb76f74
cc8ea75
* Thu Aug 11 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-2
cc8ea75
- Update Requires and BuildRequires tags.
cc8ea75
9c5eb1f
* Tue Aug  9 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-1
9c5eb1f
- Update to 2.1.0.
9c5eb1f
9c5eb1f
* Mon May 30 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.3-1
9c5eb1f
- Update to 2.0.3.
9c5eb1f
9c5eb1f
* Thu Mar 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.2-1
9c5eb1f
- Update to 2.0.2.
9c5eb1f
9c5eb1f
* Sun Jan 16 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.0-1
9c5eb1f
- New package.