|
|
@ -1,71 +1,299 @@
|
|
|
|
%{?python_enable_dependency_generator}
|
|
|
|
## START: Set by rpmautospec
|
|
|
|
%global srcname hypothesis
|
|
|
|
## (rpmautospec version 0.2.5)
|
|
|
|
|
|
|
|
%define autorelease(e:s:pb:) %{?-p:0.}%{lua:
|
|
|
|
Name: python-%{srcname}
|
|
|
|
release_number = 1;
|
|
|
|
Version: 3.44.24
|
|
|
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
|
|
|
Release: 6%{?dist}
|
|
|
|
print(release_number + base_release_number - 1);
|
|
|
|
|
|
|
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{?dist}
|
|
|
|
|
|
|
|
## END: Set by rpmautospec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?el9}
|
|
|
|
|
|
|
|
# Needs pytest-xdist and typing-extensions which pull in a bunch of BRs, see
|
|
|
|
|
|
|
|
# missing-epel9-test-brs.json
|
|
|
|
|
|
|
|
%bcond_with tests
|
|
|
|
|
|
|
|
%bcond_with doc
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%bcond_without tests
|
|
|
|
|
|
|
|
%bcond_without doc
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name: python-hypothesis
|
|
|
|
|
|
|
|
Version: 6.39.1
|
|
|
|
|
|
|
|
Release: %autorelease
|
|
|
|
Summary: Library for property based testing
|
|
|
|
Summary: Library for property based testing
|
|
|
|
|
|
|
|
|
|
|
|
License: MPLv2.0
|
|
|
|
License: MPLv2.0
|
|
|
|
URL: https://github.com/HypothesisWorks/hypothesis-python
|
|
|
|
URL: https://github.com/HypothesisWorks/hypothesis
|
|
|
|
Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz
|
|
|
|
Source0: %{url}/archive/hypothesis-python-%{version}/hypothesis-%{version}.tar.gz
|
|
|
|
# disable Sphinx extensions that require Internet access
|
|
|
|
|
|
|
|
Patch0: %{srcname}-3.12.0-offline.patch
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
|
|
|
|
BuildRequires: pyproject-rpm-macros >= 0-43
|
|
|
|
|
|
|
|
|
|
|
|
# Manpage
|
|
|
|
%if %{with tests}
|
|
|
|
|
|
|
|
# optional test dependencies:
|
|
|
|
|
|
|
|
BuildRequires: %{py3_dist typing_extensions}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with doc}
|
|
|
|
BuildRequires: %{_bindir}/sphinx-build
|
|
|
|
BuildRequires: %{_bindir}/sphinx-build
|
|
|
|
|
|
|
|
BuildRequires: %{py3_dist sphinx-hoverxref}
|
|
|
|
|
|
|
|
BuildRequires: %{py3_dist sphinx-rtd-theme}
|
|
|
|
|
|
|
|
BuildRequires: %{py3_dist sphinx_selective_exclude}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%global _description \
|
|
|
|
%global _description %{expand:
|
|
|
|
Hypothesis is a library for testing your Python code against a much\
|
|
|
|
Hypothesis is a library for testing your Python code against a much
|
|
|
|
larger range of examples than you would ever want to write by\
|
|
|
|
larger range of examples than you would ever want to write by
|
|
|
|
hand. It’s based on the Haskell library, Quickcheck, and is designed\
|
|
|
|
hand. It’s based on the Haskell library, Quickcheck, and is designed
|
|
|
|
to integrate seamlessly into your existing Python unit testing work\
|
|
|
|
to integrate seamlessly into your existing Python unit testing work
|
|
|
|
flow.
|
|
|
|
flow.}
|
|
|
|
|
|
|
|
|
|
|
|
%description %{_description}
|
|
|
|
%description %{_description}
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-%{srcname}
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python%{python3_pkgversion}-hypothesis
|
|
|
|
Summary: %{summary}
|
|
|
|
Summary: %{summary}
|
|
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
|
|
|
|
Obsoletes: platform-python-%{srcname} < %{version}-%{release}
|
|
|
|
%description -n python%{python3_pkgversion}-hypothesis %{_description}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
|
|
|
BuildRequires: python3dist(attrs)
|
|
|
|
%global extras cli,ghostwriter,pytz,dateutil,lark,numpy,pandas,pytest,redis,zoneinfo,django
|
|
|
|
BuildRequires: python3dist(coverage)
|
|
|
|
# extras with missing deps:
|
|
|
|
Suggests: python%{python3_version}dist(pytz)
|
|
|
|
# codemods: libcst
|
|
|
|
Suggests: python%{python3_version}dist(numpy) >= 1.9.0
|
|
|
|
# dpcontracts: dpcontracts
|
|
|
|
Suggests: python%{python3_version}dist(pytest) >= 2.8.0
|
|
|
|
%{pyproject_extras_subpkg -n python%{python3_pkgversion}-hypothesis %{extras}}
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python3-%{srcname} %{_description}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%autosetup -n %{srcname}-python-%{version} -p1
|
|
|
|
%autosetup -n hypothesis-hypothesis-python-%{version}/hypothesis-python -p2
|
|
|
|
|
|
|
|
# disable Sphinx extensions that require Internet access
|
|
|
|
|
|
|
|
sed -i -e '/sphinx.ext.intersphinx/d' docs/conf.py
|
|
|
|
|
|
|
|
# disable Sphinx non-available extensions
|
|
|
|
|
|
|
|
sed -i -e '/sphinx_codeautolink/d' docs/conf.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%generate_buildrequires
|
|
|
|
|
|
|
|
%pyproject_buildrequires %{?with_tests:../requirements/test.in -x %{extras}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
%py3_build
|
|
|
|
%pyproject_wheel
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with doc}
|
|
|
|
PYTHONPATH=src READTHEDOCS=True sphinx-build -b man docs docs/_build/man
|
|
|
|
PYTHONPATH=src READTHEDOCS=True sphinx-build -b man docs docs/_build/man
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
%py3_install
|
|
|
|
%pyproject_install
|
|
|
|
%{__install} -Dpm0644 -t %{buildroot}%{_mandir}/man1 docs/_build/man/hypothesis.1
|
|
|
|
%pyproject_save_files hypothesis
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with doc}
|
|
|
|
|
|
|
|
install -Dpm0644 -t %{buildroot}%{_mandir}/man1 docs/_build/man/hypothesis.1
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python3-%{srcname}
|
|
|
|
|
|
|
|
%license LICENSE.txt
|
|
|
|
%if %{with tests}
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
|
|
k="not test_registered_from_entrypoint"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# https://github.com/HypothesisWorks/hypothesis/issues/3035
|
|
|
|
|
|
|
|
k="$k and not test_recursion_error_is_not_flaky"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# https://github.com/pandas-dev/pandas/commit/95a86a9884e
|
|
|
|
|
|
|
|
%if "%{_arch}" == "s390x"
|
|
|
|
|
|
|
|
k="$k and not test_data_frames_with_timestamp_columns"
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%pytest -v -n auto -k "$k" \
|
|
|
|
|
|
|
|
--ignore tests/codemods \
|
|
|
|
|
|
|
|
--ignore tests/dpcontracts \
|
|
|
|
|
|
|
|
--ignore tests/redis \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The BRP that handles bytecompilation already run at the end of %%install.
|
|
|
|
|
|
|
|
# This autogenerated file gets re-generated during tests,
|
|
|
|
|
|
|
|
# the tests asserts the content is identical, but the mtime is changed anyway.
|
|
|
|
|
|
|
|
# Since %%pytest disables byte-compilation, we need to update the pycs manually:
|
|
|
|
|
|
|
|
%py_byte_compile %{python3} %{buildroot}%{python3_sitelib}/hypothesis/internal/conjecture/shrinking/learned_dfas.py
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python%{python3_pkgversion}-hypothesis -f %{pyproject_files}
|
|
|
|
|
|
|
|
%license ../LICENSE.txt
|
|
|
|
%doc README.rst
|
|
|
|
%doc README.rst
|
|
|
|
%{python3_sitelib}/hypothesis-*.egg-info
|
|
|
|
%{python3_sitelib}/_hypothesis_pytestplugin.py
|
|
|
|
%{python3_sitelib}/hypothesis/
|
|
|
|
%{python3_sitelib}/__pycache__/_hypothesis_pytestplugin*.pyc
|
|
|
|
|
|
|
|
%{_bindir}/hypothesis
|
|
|
|
|
|
|
|
%if %{with doc}
|
|
|
|
%{_mandir}/man1/hypothesis.1*
|
|
|
|
%{_mandir}/man1/hypothesis.1*
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
* Mon Jul 09 2018 Petr Viktorin <pviktori@redhat.com> - 3.44.24-6
|
|
|
|
* Mon Jan 15 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 6.39.1-1
|
|
|
|
- Remove the python2 subpackage
|
|
|
|
- Rebuilt for MSVSphere 9.3
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1590811
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Mar 03 2022 Miro Hrončok <miro@hroncok.cz> 6.39.1-1
|
|
|
|
|
|
|
|
- Update to 6.39.1, fix regression in @proxies
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Mar 02 2022 Michel Alexandre Salim <salimma@fedoraproject.org> 6.39.0-1
|
|
|
|
|
|
|
|
- Update to 6.39.0 (resolves: rhbz#2048882)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Michel Alexandre Salim <salimma@fedoraproject.org> 6.36.0-1
|
|
|
|
|
|
|
|
- Update to 6.36.0 (resolves: rhbz#2022978)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.24.2-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Nov 12 2021 Lumír Balhar <lbalhar@redhat.com> - 6.24.2-1
|
|
|
|
|
|
|
|
- Update to 6.24.2
|
|
|
|
|
|
|
|
Resolves: rhbz#1986184
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jul 19 2021 Miro Hrončok <mhroncok@redhat.com> - 6.14.3-1
|
|
|
|
|
|
|
|
- Update to 6.14.3
|
|
|
|
|
|
|
|
- Fixes: rhbz#1937016
|
|
|
|
|
|
|
|
- Fixes: rhbz#1902285
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 6.6.0-4
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 6.6.0-3
|
|
|
|
|
|
|
|
- Bootstrap for Python 3.10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Mar 11 2021 Miro Hrončok <mhroncok@redhat.com> - 6.6.0-2
|
|
|
|
|
|
|
|
- Skip test_data_frames_with_timestamp_columns on s390x until Pandas is fixed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Mar 08 2021 Miro Hrončok <mhroncok@redhat.com> - 6.6.0-1
|
|
|
|
|
|
|
|
- Update to 6.6.0
|
|
|
|
|
|
|
|
- Add subpackages with extras
|
|
|
|
|
|
|
|
- Fix python-bytecode-inconsistent-mtime of learned_dfas.py
|
|
|
|
|
|
|
|
- Fixes: rhbz#1902400
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Feb 01 2021 Miro Hrončok <mhroncok@redhat.com> - 5.43.9-1
|
|
|
|
|
|
|
|
- Update to 5.43.9
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 25 2018 Petr Viktorin <pviktori@redhat.com> - 3.44.24-5
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.41.3-2
|
|
|
|
- Allow Python 2 for build
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
see https://hurl.corp.redhat.com/rhel8-py2
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Nov 22 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.41.3-1
|
|
|
|
|
|
|
|
- Update to 5.41.3
|
|
|
|
|
|
|
|
- Use py3_dist macro
|
|
|
|
|
|
|
|
- Disable Redis tests (missing dependency)
|
|
|
|
|
|
|
|
- Enable lark-parser tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 5.29.4-2
|
|
|
|
|
|
|
|
- Remove build dependencies on mock and coverage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Aug 28 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.29.4-1
|
|
|
|
|
|
|
|
- Update to 5.29.4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Aug 28 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.29.3-1
|
|
|
|
|
|
|
|
- Update to 5.29.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Aug 25 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.29.0-1
|
|
|
|
|
|
|
|
- Update to 5.29.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.20.3-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jul 21 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.20.3-1
|
|
|
|
|
|
|
|
- Update to 5.20.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 5.15.1-3
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 5.15.1-2
|
|
|
|
|
|
|
|
- Bootstrap for Python 3.9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu May 21 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.15.1-1
|
|
|
|
|
|
|
|
- Update to 5.15.1
|
|
|
|
|
|
|
|
- Upstream now verifies against Python 3.9 pre-releases in CI
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat May 16 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.14.0-1
|
|
|
|
|
|
|
|
- Update to 5.14.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 13 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.13.1-1
|
|
|
|
|
|
|
|
- Update to 5.13.1
|
|
|
|
|
|
|
|
- Python 3.9 fix now upstreamed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue May 12 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.13.0-1
|
|
|
|
|
|
|
|
- Update to 5.13.0
|
|
|
|
|
|
|
|
- Fix NamedTuple detection on Python 3.9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon May 11 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.12.0-1
|
|
|
|
|
|
|
|
- Update to 5.12.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 6 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.10.5-1
|
|
|
|
|
|
|
|
- Update to 5.10.5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Apr 25 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.10.4-1
|
|
|
|
|
|
|
|
- Update to 5.10.4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Apr 22 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.10.3-1
|
|
|
|
|
|
|
|
- Update to 5.10.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Apr 12 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.8.2-1
|
|
|
|
|
|
|
|
- Update to 5.8.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Apr 7 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.8.0-2
|
|
|
|
|
|
|
|
- Manually add requirement on sortedcontainers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Apr 7 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 5.8.0-1
|
|
|
|
|
|
|
|
- Update to 5.8.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.23.8-7
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Nov 11 2019 Miro Hrončok <mhroncok@redhat.com> - 4.23.8-6
|
|
|
|
|
|
|
|
- Drop python2-hypothesis
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 4.23.8-5
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.23.8-4
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 4.23.8-3
|
|
|
|
|
|
|
|
- Bootstrap for Python 3.8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.23.8-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue May 28 2019 Miro Hrončok <mhroncok@redhat.com> - 4.23.8-1
|
|
|
|
|
|
|
|
- Update to 4.23.8 (#1711096)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu May 09 2019 Miro Hrončok <mhroncok@redhat.com> - 4.23.4-1
|
|
|
|
|
|
|
|
- Update to 4.23.4 (#1609770)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Mar 09 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.9.0-1
|
|
|
|
|
|
|
|
- Update to 4.9.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.66.11-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jul 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.66.11-1
|
|
|
|
|
|
|
|
- Update to 3.66.11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.66.0-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jul 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.66.0-1
|
|
|
|
|
|
|
|
- Update to 3.66.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jul 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.56.7-1
|
|
|
|
|
|
|
|
- Update to 3.56.7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 3.49.0-2
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Mar 12 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.49.0-1
|
|
|
|
|
|
|
|
- Update to 3.49.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Mar 12 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.47.0-1
|
|
|
|
|
|
|
|
- Update to 3.47.0
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Feb 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.44.24-4
|
|
|
|
* Sun Feb 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.44.24-4
|
|
|
|
- Pick up automatic dependency from generator
|
|
|
|
- Pick up automatic dependency from generator
|
|
|
@ -202,3 +430,4 @@ PYTHONPATH=src READTHEDOCS=True sphinx-build -b man docs docs/_build/man
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jul 23 2015 Michel Alexandre Salim <salimma@fedoraproject.org> - 1.8.2-1
|
|
|
|
* Thu Jul 23 2015 Michel Alexandre Salim <salimma@fedoraproject.org> - 1.8.2-1
|
|
|
|
- Initial package
|
|
|
|
- Initial package
|
|
|
|
|
|
|
|
|
|
|
|