|
|
6d5dc0 |
%if 0%{?fedora} || 0%{?rhel} > 7
|
|
|
6d5dc0 |
%global with_python3 1
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
# https://src.fedoraproject.org/rpms/future/pull-request/8
|
|
|
6d5dc0 |
%if %{python3_pkgversion} != 3
|
|
|
6d5dc0 |
%global _pathfix pathfix%{python3_version}.py
|
|
|
6d5dc0 |
%else
|
|
|
6d5dc0 |
%global _pathfix pathfix.py
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?fedora} && 0%{?fedora} < 31
|
|
|
6d5dc0 |
%global with_python2 1
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?rhel} && 0%{?rhel} == 7
|
|
|
6d5dc0 |
%global with_python3 1
|
|
|
6d5dc0 |
%global with_python2 1
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%global _description \
|
|
|
6d5dc0 |
future is the missing compatibility layer between Python 2 and \
|
|
|
6d5dc0 |
Python 3. It allows you to use a single, clean Python 3.x-compatible \
|
|
|
6d5dc0 |
codebase to support both Python 2 and Python 3 with minimal overhead. \
|
|
|
6d5dc0 |
\
|
|
|
6d5dc0 |
It provides ``future`` and ``past`` packages with backports and forward \
|
|
|
6d5dc0 |
ports of features from Python 3 and 2. It also comes with ``futurize`` and \
|
|
|
6d5dc0 |
``pasteurize``, customized 2to3-based scripts that helps you to convert \
|
|
|
6d5dc0 |
either Py2 or Py3 code easily to support both Python 2 and 3 in a single \
|
|
|
6d5dc0 |
clean Py3-style codebase, module by module.
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
Name: future
|
|
|
6d5dc0 |
Summary: Easy, clean, reliable Python 2/3 compatibility
|
|
|
6d5dc0 |
Version: 0.18.2
|
|
|
6d5dc0 |
Release: 9%{?dist}
|
|
|
6d5dc0 |
License: MIT
|
|
|
6d5dc0 |
URL: http://python-future.org/
|
|
|
6d5dc0 |
Source0: https://files.pythonhosted.org/packages/source/f/%{name}/%{name}-%{version}.tar.gz
|
|
|
6d5dc0 |
BuildArch: noarch
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
# https://github.com/PythonCharmers/python-future/issues/165
|
|
|
6d5dc0 |
Patch0: %{name}-skip_tests_with_connection_errors.patch
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
# Python 3.9 support
|
|
|
6d5dc0 |
# https://github.com/PythonCharmers/python-future/pull/544
|
|
|
6d5dc0 |
Patch1: %{name}-python39.patch
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3_other}
|
|
|
6d5dc0 |
BuildRequires: python%{python3_other_pkgversion}-devel
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%description
|
|
|
6d5dc0 |
%{_description}
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python2}
|
|
|
6d5dc0 |
%package -n python2-%{name}
|
|
|
6d5dc0 |
Summary: Easy, clean, reliable Python 2/3 compatibility
|
|
|
6d5dc0 |
%{?python_provide:%python_provide python2-%{name}}
|
|
|
6d5dc0 |
%if 0%{?el6}
|
|
|
6d5dc0 |
BuildRequires: python-argparse, python-unittest2, python-importlib
|
|
|
6d5dc0 |
Requires: python-importlib
|
|
|
6d5dc0 |
Requires: python-argparse
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
%if 0%{?el7} || 0%{?fedora}
|
|
|
6d5dc0 |
BuildRequires: python2-devel
|
|
|
6d5dc0 |
BuildRequires: python2-setuptools
|
|
|
6d5dc0 |
BuildRequires: python2-numpy
|
|
|
6d5dc0 |
BuildRequires: python2-requests
|
|
|
6d5dc0 |
BuildRequires: python2-pytest
|
|
|
6d5dc0 |
Provides: future = 0:%{version}-%{release}
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
%description -n python2-%{name}
|
|
|
6d5dc0 |
%{_description}
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3}
|
|
|
6d5dc0 |
%package -n python%{python3_pkgversion}-%{name}
|
|
|
6d5dc0 |
Summary: Easy, clean, reliable Python 2/3 compatibility
|
|
|
6d5dc0 |
%{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
|
|
|
6d5dc0 |
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
6d5dc0 |
BuildRequires: python%{python3_pkgversion}-setuptools
|
|
|
6d5dc0 |
BuildRequires: python%{python3_pkgversion}-numpy
|
|
|
6d5dc0 |
BuildRequires: python%{python3_pkgversion}-requests
|
|
|
6d5dc0 |
BuildRequires: python%{python3_pkgversion}-pytest
|
|
|
6d5dc0 |
Provides: future-python3 = 0:%{version}-%{release}
|
|
|
6d5dc0 |
%if 0%{?fedora} && 0%{?fedora} > 30
|
|
|
6d5dc0 |
Obsoletes: python2-%{name} < 0:%{version}-%{release}
|
|
|
6d5dc0 |
Obsoletes: %{name}-python2 < 0:%{version}-%{release}
|
|
|
6d5dc0 |
Provides: future = 0:%{version}-%{release}
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
6d5dc0 |
Obsoletes: python34-%{name} < 0:%{version}-%{release}
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%description -n python%{python3_pkgversion}-%{name}
|
|
|
6d5dc0 |
%{_description}
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
# with_python3
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3_other}
|
|
|
6d5dc0 |
%package -n python%{python3_other_pkgversion}-%{name}
|
|
|
6d5dc0 |
Summary: Easy, clean, reliable Python 2/3 compatibility
|
|
|
6d5dc0 |
%{?python_provide:%python_provide python%{python3_other_pkgversion}-%{name}}
|
|
|
6d5dc0 |
BuildRequires: python%{python3_other_pkgversion}-devel
|
|
|
6d5dc0 |
BuildRequires: python%{python3_other_pkgversion}-setuptools
|
|
|
6d5dc0 |
BuildRequires: python%{python3_other_pkgversion}-numpy
|
|
|
6d5dc0 |
BuildRequires: python%{python3_other_pkgversion}-requests
|
|
|
6d5dc0 |
BuildRequires: python%{python3_other_pkgversion}-pytest
|
|
|
6d5dc0 |
Provides: future-python%{python3_other_pkgversion} = 0:%{version}-%{release}
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%description -n python%{python3_other_pkgversion}-%{name}
|
|
|
6d5dc0 |
%{_description}
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%prep
|
|
|
6d5dc0 |
%setup -qc -n future-%{version}
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
pushd future-%{version}
|
|
|
6d5dc0 |
%patch0 -p0
|
|
|
6d5dc0 |
%patch1 -p1
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python2}
|
|
|
6d5dc0 |
cp -a future-%{version} python2
|
|
|
6d5dc0 |
find python2 -name '*.py' | xargs %{_pathfix} -pn -i "%{__python2}"
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3}
|
|
|
6d5dc0 |
cp -a future-%{version} python3
|
|
|
6d5dc0 |
find python3 -name '*.py' | xargs %{_pathfix} -pn -i "%{__python3}"
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
# with_python3
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3_other}
|
|
|
6d5dc0 |
cp -a future-%{version} python%{python3_other_pkgversion}
|
|
|
6d5dc0 |
find python%{python3_other_pkgversion} -name '*.py' | xargs %{_pathfix} -pn -i "%{__python3}"
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%build
|
|
|
6d5dc0 |
%if 0%{?with_python2}
|
|
|
6d5dc0 |
pushd python2
|
|
|
6d5dc0 |
%py2_build
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3}
|
|
|
6d5dc0 |
pushd python3
|
|
|
6d5dc0 |
%py3_build
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
# with_python3
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3_other}
|
|
|
6d5dc0 |
pushd python%{python3_other_pkgversion}
|
|
|
6d5dc0 |
%py3_other_build
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%install
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3}
|
|
|
6d5dc0 |
pushd python3
|
|
|
6d5dc0 |
%py3_install
|
|
|
6d5dc0 |
mv $RPM_BUILD_ROOT%{_bindir}/futurize $RPM_BUILD_ROOT%{_bindir}/futurize-%{python3_version}
|
|
|
6d5dc0 |
mv $RPM_BUILD_ROOT%{_bindir}/pasteurize $RPM_BUILD_ROOT%{_bindir}/pasteurize-%{python3_version}
|
|
|
6d5dc0 |
ln -sf ./futurize-%{python3_version} $RPM_BUILD_ROOT%{_bindir}/futurize-3
|
|
|
6d5dc0 |
ln -sf ./pasteurize-%{python3_version} $RPM_BUILD_ROOT%{_bindir}/pasteurize-3
|
|
|
6d5dc0 |
%if 0%{?fedora} && 0%{?fedora} > 30
|
|
|
6d5dc0 |
ln -sf ./futurize-%{python3_version} $RPM_BUILD_ROOT%{_bindir}/futurize
|
|
|
6d5dc0 |
ln -sf ./pasteurize-%{python3_version} $RPM_BUILD_ROOT%{_bindir}/pasteurize
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
sed -i -e '/^#!\//, 1d' $RPM_BUILD_ROOT%{python3_sitelib}/future/backports/test/pystone.py
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
chmod a+x $RPM_BUILD_ROOT%{python3_sitelib}/future/backports/test/pystone.py
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3_other}
|
|
|
6d5dc0 |
pushd python%{python3_other_pkgversion}
|
|
|
6d5dc0 |
%py3_other_install
|
|
|
6d5dc0 |
mv $RPM_BUILD_ROOT%{_bindir}/futurize $RPM_BUILD_ROOT%{_bindir}/futurize-%{python3_other_version}
|
|
|
6d5dc0 |
mv $RPM_BUILD_ROOT%{_bindir}/pasteurize $RPM_BUILD_ROOT%{_bindir}/pasteurize-%{python3_other_version}
|
|
|
6d5dc0 |
sed -i -e '/^#!\//, 1d' $RPM_BUILD_ROOT%{python3_other_sitelib}/future/backports/test/pystone.py
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
chmod a+x $RPM_BUILD_ROOT%{python3_other_sitelib}/future/backports/test/pystone.py
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python2}
|
|
|
6d5dc0 |
pushd python2
|
|
|
6d5dc0 |
%py2_install
|
|
|
6d5dc0 |
cp -pr $RPM_BUILD_ROOT%{_bindir}/futurize $RPM_BUILD_ROOT%{_bindir}/futurize-%{python2_version}
|
|
|
6d5dc0 |
cp -pr $RPM_BUILD_ROOT%{_bindir}/pasteurize $RPM_BUILD_ROOT%{_bindir}/pasteurize-%{python2_version}
|
|
|
6d5dc0 |
ln -sf ./futurize-%{python2_version} $RPM_BUILD_ROOT%{_bindir}/futurize-2
|
|
|
6d5dc0 |
ln -sf ./pasteurize-%{python2_version} $RPM_BUILD_ROOT%{_bindir}/pasteurize-2
|
|
|
6d5dc0 |
sed -i -e '/^#!\//, 1d' $RPM_BUILD_ROOT%{python2_sitelib}/future/backports/test/pystone.py
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
chmod a+x $RPM_BUILD_ROOT%{python2_sitelib}/future/backports/test/pystone.py
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
## This packages ships PEM certificates in future/backports/test directory.
|
|
|
6d5dc0 |
## It's for testing purpose, i guess. Ignore them.
|
|
|
6d5dc0 |
%check
|
|
|
6d5dc0 |
%if 0%{?with_python2}
|
|
|
6d5dc0 |
pushd python2
|
|
|
6d5dc0 |
PYTHONPATH=$PWD/build/lib py.test-%{python2_version}
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
# Bugs
|
|
|
6d5dc0 |
# https://github.com/PythonCharmers/python-future/issues/474
|
|
|
6d5dc0 |
# https://github.com/PythonCharmers/python-future/issues/508
|
|
|
6d5dc0 |
%if 0%{?with_python3}
|
|
|
6d5dc0 |
pushd python3
|
|
|
6d5dc0 |
%if 0%{?python3_version_nodots} > 37
|
|
|
6d5dc0 |
PYTHONPATH=$PWD/build/lib py.test-%{python3_version} -k "not test_pow and not test_urllib2"
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
%if 0%{?python3_version_nodots} <= 37
|
|
|
6d5dc0 |
PYTHONPATH=$PWD/build/lib py.test-%{python3_version}
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
# with_python3
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3_other}
|
|
|
6d5dc0 |
pushd python%{python3_other_pkgversion}
|
|
|
6d5dc0 |
PYTHONPATH=$PWD/build/lib py.test-%{python3_other_version}
|
|
|
6d5dc0 |
popd
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
# with_python3
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python2}
|
|
|
6d5dc0 |
%files -n python2-%{name}
|
|
|
6d5dc0 |
%doc python2/README.rst
|
|
|
6d5dc0 |
%license python2/LICENSE.txt
|
|
|
6d5dc0 |
%{_bindir}/futurize
|
|
|
6d5dc0 |
%{_bindir}/futurize-2*
|
|
|
6d5dc0 |
%{_bindir}/pasteurize
|
|
|
6d5dc0 |
%{_bindir}/pasteurize-2*
|
|
|
6d5dc0 |
%{python2_sitelib}/future/
|
|
|
6d5dc0 |
%{python2_sitelib}/past/
|
|
|
6d5dc0 |
%{python2_sitelib}/libfuturize/
|
|
|
6d5dc0 |
%{python2_sitelib}/libpasteurize/
|
|
|
6d5dc0 |
%{python2_sitelib}/tkinter/
|
|
|
6d5dc0 |
%{python2_sitelib}/_dummy_thread/
|
|
|
6d5dc0 |
%{python2_sitelib}/_markupbase/
|
|
|
6d5dc0 |
%{python2_sitelib}/_thread/
|
|
|
6d5dc0 |
%{python2_sitelib}/builtins/
|
|
|
6d5dc0 |
%{python2_sitelib}/copyreg/
|
|
|
6d5dc0 |
%{python2_sitelib}/html/
|
|
|
6d5dc0 |
%{python2_sitelib}/http/
|
|
|
6d5dc0 |
%{python2_sitelib}/queue/
|
|
|
6d5dc0 |
%{python2_sitelib}/reprlib/
|
|
|
6d5dc0 |
%{python2_sitelib}/socketserver/
|
|
|
6d5dc0 |
%{python2_sitelib}/winreg/
|
|
|
6d5dc0 |
%{python2_sitelib}/xmlrpc/
|
|
|
6d5dc0 |
%{python2_sitelib}/*.egg-info
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3}
|
|
|
6d5dc0 |
%files -n python%{python3_pkgversion}-%{name}
|
|
|
6d5dc0 |
%license python3/LICENSE.txt
|
|
|
6d5dc0 |
%doc python3/README.rst
|
|
|
6d5dc0 |
%{_bindir}/futurize-3
|
|
|
6d5dc0 |
%{_bindir}/pasteurize-3
|
|
|
6d5dc0 |
%if 0%{?fedora} && 0%{?fedora} > 30
|
|
|
6d5dc0 |
%{_bindir}/futurize
|
|
|
6d5dc0 |
%{_bindir}/pasteurize
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
%{_bindir}/futurize-%{python3_version}
|
|
|
6d5dc0 |
%{_bindir}/pasteurize-%{python3_version}
|
|
|
6d5dc0 |
%{python3_sitelib}/future/
|
|
|
6d5dc0 |
%{python3_sitelib}/past/
|
|
|
6d5dc0 |
%{python3_sitelib}/libfuturize/
|
|
|
6d5dc0 |
%{python3_sitelib}/libpasteurize/
|
|
|
6d5dc0 |
%{python3_sitelib}/*.egg-info
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%if 0%{?with_python3_other}
|
|
|
6d5dc0 |
%files -n python%{python3_other_pkgversion}-%{name}
|
|
|
6d5dc0 |
%license python3/LICENSE.txt
|
|
|
6d5dc0 |
%doc python3/README.rst
|
|
|
6d5dc0 |
%{_bindir}/futurize-%{python3_other_version}
|
|
|
6d5dc0 |
%{_bindir}/pasteurize-%{python3_other_version}
|
|
|
6d5dc0 |
%{python3_other_sitelib}/future/
|
|
|
6d5dc0 |
%{python3_other_sitelib}/past/
|
|
|
6d5dc0 |
%{python3_other_sitelib}/libfuturize/
|
|
|
6d5dc0 |
%{python3_other_sitelib}/libpasteurize/
|
|
|
6d5dc0 |
%{python3_other_sitelib}/*.egg-info
|
|
|
6d5dc0 |
%endif
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
%changelog
|
|
|
6d5dc0 |
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.2-9
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Mon Aug 10 2020 Antonio Trande <sagitter@fedoraproject.org> - 0.18.2-8
|
|
|
6d5dc0 |
- Merge pull request #8
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.2-7
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 0.18.2-6
|
|
|
6d5dc0 |
- Rebuilt for Python 3.9
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Feb 11 2020 Antonio Trande <sagitter@fedoraproject.org> - 0.18.2-5
|
|
|
6d5dc0 |
- Fix Python 3.9 builds
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.2-4
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Jan 24 2020 Antonio Trande <sagitter@fedoraproject.org> - 0.18.2-3
|
|
|
6d5dc0 |
- Fix Python2 executable on Fedora 30
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Jan 24 2020 Antonio Trande <sagitter@fedoraproject.org> - 0.18.2-2
|
|
|
6d5dc0 |
- Build Python2 version on Fedora 30
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Jan 24 2020 Antonio Trande <sagitter@fedoraproject.org> - 0.18.2-1
|
|
|
6d5dc0 |
- Release 0.18.2
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Sat Oct 12 2019 Antonio Trande <sagitter@fedoraproject.org> - 0.18.0-2
|
|
|
6d5dc0 |
- Use python3_version_nodots macro
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Sat Oct 12 2019 Antonio Trande <sagitter@fedoraproject.org> - 0.18.0-1
|
|
|
6d5dc0 |
- Release 0.18.0
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.17.1-0.5.20190506git23989c4
|
|
|
6d5dc0 |
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 0.17.1-0.4.20190506git23989c4
|
|
|
6d5dc0 |
- Rebuilt for Python 3.8
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.1-0.3.20190506git23989c4
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Jul 23 2019 Antonio Trande <sagitter@fedoraproject.org> - 0.17.1-0.2.20190506git23989c4
|
|
|
6d5dc0 |
- Bump to a pre-release 0.17.1, commit #23989c4
|
|
|
6d5dc0 |
- Unversioned commands point to Python3 on Fedora
|
|
|
6d5dc0 |
- Obsolete Python2 version on Fedora
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Apr 09 2019 Antonio Trande <sagitter@fedoraproject.org> - 0.17.1-0.1.20190313gitc423752
|
|
|
6d5dc0 |
- Bump to a pre-release 0.17.1 (fix rhbz#1698160, upstream bug #488)
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.0-2
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Oct 26 2018 Antonio Trande <sagitter@fedoraproject.org> - 0.17.0-1
|
|
|
6d5dc0 |
- Release 0.17.0
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Oct 24 2018 Antonio Trande <sagitter@fedoraproject.org> - 0.17.0-0.1.20181019gitbee0f3b
|
|
|
6d5dc0 |
- Bump to a pre-release 0.17.0
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Oct 24 2018 Antonio Trande <sagitter@fedoraproject.org> - 0.16.0-13.20181019gitbee0f3b
|
|
|
6d5dc0 |
- Update to the commit #bee0f3b
|
|
|
6d5dc0 |
- Perform all Python3 tests
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Sep 21 2018 Antonio Trande <sagitter@fedoraproject.org> - 0.16.0-12.20180917gitaf02ef6
|
|
|
6d5dc0 |
- Update to the commit #af02ef6
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Sun Aug 26 2018 Antonio Trande <sagitter@fedoraproject.org> - 0.16.0-11
|
|
|
6d5dc0 |
- Prepare SPEC file for deprecation of Python2 on fedora 30+
|
|
|
6d5dc0 |
- Prepare SPEC file for Python3-modules packaging on epel7
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.0-10
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.16.0-9
|
|
|
6d5dc0 |
- Rebuilt for Python 3.7
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.0-8
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Sun Jan 14 2018 Antonio Trande <sagitter@fedoraproject.org> - 0.16.0-7
|
|
|
6d5dc0 |
- Use versioned Python2 packages
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Dec 15 2017 Antonio Trande <sagitter@fedoraproject.org> - 0.16.0-6
|
|
|
6d5dc0 |
- Python3 built on epel7
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.0-5
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.0-4
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.16.0-3
|
|
|
6d5dc0 |
- Rebuild for Python 3.6
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Dec 13 2016 Antonio Trande <sagitter@fedoraproject.org> - 0.16.0-2
|
|
|
6d5dc0 |
- BR Python2 dependencies unversioned on epel6
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Dec 13 2016 Antonio Trande <sagitter@fedoraproject.org> - 0.16.0-1
|
|
|
6d5dc0 |
- Update to 0.16.0
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Aug 17 2016 Antonio Trande <sagitter@fedoraproject.org> - 0.15.2-10
|
|
|
6d5dc0 |
- Rebuild for Python 3.5.2
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.2-9
|
|
|
6d5dc0 |
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.2-8
|
|
|
6d5dc0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Jan 29 2016 Antonio Trande <sagitter@fedoraproject.org> - 0.15.2-7
|
|
|
6d5dc0 |
- Renamed Python2 package
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Thu Dec 10 2015 Antonio Trande <sagitter@fedoraproject.org> - 0.15.2-6
|
|
|
6d5dc0 |
- SPEC file adapted to recent guidelines for Python
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Nov 13 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.2-5
|
|
|
6d5dc0 |
- Rebuild
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Nov 13 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.2-4
|
|
|
6d5dc0 |
- Python3 tests temporarily disabled with Python35
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
|
|
|
6d5dc0 |
- 0.15.2-3 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Mon Sep 14 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.2-2
|
|
|
6d5dc0 |
- Patch0 updated
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Fri Sep 11 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.2-1
|
|
|
6d5dc0 |
- Update to 0.15.2
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Sep 02 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.0-4
|
|
|
6d5dc0 |
- Added patch to exclude failed tests (patch0)
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Wed Aug 26 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.0-3
|
|
|
6d5dc0 |
- Added python-provides macro
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Thu Jul 30 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.0-2
|
|
|
6d5dc0 |
- Fixed Python3 packaging on Fedora
|
|
|
6d5dc0 |
- Removed configparser backport (patch1)
|
|
|
6d5dc0 |
|
|
|
6d5dc0 |
* Tue Jul 28 2015 Antonio Trande <sagitter@fedoraproject.org> 0.15.0-1
|
|
|
6d5dc0 |
- Initial build
|