Blame SPECS/python-urllib3.spec

ed7a15
%{?scl:%scl_package python-%{srcname}}
ed7a15
%{!?scl:%global pkg_name %{name}}
ed7a15
%global python3_pkgversion %{nil}
ed7a15
ed7a15
%global srcname urllib3
ed7a15
ed7a15
%bcond_with tests
ed7a15
ed7a15
Name:           %{?scl_prefix}python-%{srcname}
ed7a15
Version:        1.25.7
53b174
Release:        7%{?dist}
ed7a15
Summary:        Python HTTP library with thread-safe connection pooling and file post
ed7a15
ed7a15
License:        MIT
ed7a15
URL:            https://github.com/urllib3/urllib3
ed7a15
Source0:        %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz
ed7a15
# Unbundle ssl_match_hostname since we depend on it
ed7a15
Source1:        ssl_match_hostname_py3.py
ed7a15
BuildArch:      noarch
ed7a15
f57d24
Patch0:         CVE-2020-26137.patch
f57d24
53b174
# CVE-2021-33503 Catastrophic backtracking in URL authority parser
53b174
# Tracking bug: https://bugzilla.redhat.com/show_bug.cgi?id=1968074
53b174
# Upstream fix: https://github.com/urllib3/urllib3/commit/2d4a3fee6de2fa45eb82169361918f759269b4ec
53b174
Patch1:         CVE-2021-33503.patch
53b174
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-devel
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-setuptools
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-rpm-macros
ed7a15
%if %{with tests}
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-nose
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-mock
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-six
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-pysocks
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-pytest
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-tornado
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-trustme
ed7a15
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-idna
ed7a15
%endif
ed7a15
ed7a15
%{?scl:Requires: %{scl}-runtime}
ed7a15
%{?scl:BuildRequires: %{scl}-runtime}
ed7a15
Requires:       ca-certificates
ed7a15
Requires:       %{?scl_prefix}python%{python3_pkgversion}-idna
ed7a15
Requires:       %{?scl_prefix}python%{python3_pkgversion}-six
ed7a15
Requires:       %{?scl_prefix}python%{python3_pkgversion}-pysocks
ed7a15
ed7a15
%description
ed7a15
Python HTTP module with connection pooling and file POST abilities.
ed7a15
ed7a15
ed7a15
%prep
ed7a15
%{?scl:scl enable %{scl} - << \EOF}
ed7a15
set -ex
ed7a15
%autosetup -p1 -n %{srcname}-%{version}
53b174
# Make sure that the RECENT_DATE value doesn't get too far behind what the current date is.
53b174
# RECENT_DATE must not be older that 2 years from the build time, or else test_recent_date
53b174
# (from test/test_connection.py) would fail. However, it shouldn't be to close to the build time either,
53b174
# since a user's system time could be set to a little in the past from what build time is (because of timezones,
53b174
# corner cases, etc). As stated in the comment in src/urllib3/connection.py:
53b174
#   When updating RECENT_DATE, move it to within two years of the current date,
53b174
#   and not less than 6 months ago.
53b174
#   Example: if Today is 2018-01-01, then RECENT_DATE should be any date on or
53b174
#   after 2016-01-01 (today - 2 years) AND before 2017-07-01 (today - 6 months)
53b174
# There is also a test_ssl_wrong_system_time test (from test/with_dummyserver/test_https.py) that tests if
53b174
# user's system time isn't set as too far in the past, because it could lead to SSL verification errors.
53b174
# That is why we need RECENT_DATE to be set at most 2 years ago (or else test_ssl_wrong_system_time would
53b174
# result in false positive), but before at least 6 month ago (so this test could tolerate user's system time being
53b174
# set to some time in the past, but not to far away from the present).
53b174
# Next few lines update RECENT_DATE dynamically.
53b174
recent_date=$(date --date "7 month ago" +"%Y, %_m, %_d")
53b174
sed -i "s/^RECENT_DATE = datetime.date(.*)/RECENT_DATE = datetime.date($recent_date)/" src/urllib3/connection.py
53b174
ed7a15
# Drop the dummyserver tests in koji.  They fail there in real builds, but not
ed7a15
# in scratch builds (weird).
ed7a15
rm -rf test/with_dummyserver/
ed7a15
# Don't run the Google App Engine tests
ed7a15
rm -rf test/appengine/
ed7a15
# Lots of these tests started failing, even for old versions, so it has something
ed7a15
# to do with Fedora in particular. They don't fail in upstream build infrastructure
ed7a15
rm -rf test/contrib/
ed7a15
ed7a15
# Tests for Python built without SSL, but Fedora builds with SSL. These tests
ed7a15
# fail when combined with the unbundling of backports-ssl_match_hostname
ed7a15
rm -f test/test_no_ssl.py
ed7a15
%{?scl:EOF}
ed7a15
ed7a15
ed7a15
%build
ed7a15
%{?scl:scl enable %{scl} - << \EOF}
ed7a15
set -ex
ed7a15
%py3_build
ed7a15
%{?scl:EOF}
ed7a15
ed7a15
ed7a15
%install
ed7a15
%{?scl:scl enable %{scl} - << \EOF}
ed7a15
set -ex
ed7a15
%py3_install
ed7a15
ed7a15
# Unbundle the Python 3 build
ed7a15
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/six.py*
ed7a15
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/six*
ed7a15
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/ssl_match_hostname/
ed7a15
ed7a15
mkdir -p %{buildroot}/%{python3_sitelib}/urllib3/packages/
ed7a15
cp -a %{SOURCE1} %{buildroot}/%{python3_sitelib}/urllib3/packages/ssl_match_hostname.py
ed7a15
ln -s %{python3_sitelib}/six.py %{buildroot}/%{python3_sitelib}/urllib3/packages/six.py
ed7a15
ln -s %{python3_sitelib}/__pycache__/six.cpython-%{python3_version_nodots}.opt-1.pyc \
ed7a15
      %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/
ed7a15
ln -s %{python3_sitelib}/__pycache__/six.cpython-%{python3_version_nodots}.pyc \
ed7a15
      %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/
ed7a15
ed7a15
ed7a15
%{?scl:EOF}
ed7a15
ed7a15
%if %{with tests}
ed7a15
%check
ed7a15
%{?scl:scl enable %{scl} - << \EOF}
ed7a15
set -ex
ed7a15
pushd test
ed7a15
PYTHONPATH=%{buildroot}%{python3_sitelib}:%{python3_sitelib} %{__python3} -m pytest -v
ed7a15
popd
ed7a15
ed7a15
%{?scl:EOF}
ed7a15
%endif
ed7a15
ed7a15
%files
ed7a15
%license LICENSE.txt
ed7a15
%doc CHANGES.rst README.rst CONTRIBUTORS.txt
ed7a15
%{python3_sitelib}/urllib3/
ed7a15
%{python3_sitelib}/urllib3-*.egg-info/
ed7a15
ed7a15
ed7a15
%changelog
53b174
* Tue Jun 29 2021 Lumír Balhar <lbalhar@redhat.com> - 1.25.7-7
53b174
- Fix for CVE-2021-33503 Catastrophic backtracking in URL authority parser
53b174
Resolves: rhbz#1968074
53b174
- Update RECENT_DATE dynamically
53b174
f57d24
* Tue Oct 06 2020 Charalampos Stratakis <cstratak@redhat.com> - 1.25.7-6
f57d24
- Security fix for CVE-2020-26137: CRLF injection via HTTP request method
53b174
Resolves: rhbz#1883895
f57d24
ed7a15
* Tue Feb 04 2020 Lumír Balhar <lbalhar@redhat.com> - 1.25.7-5
ed7a15
- Import from the python38 module and modified for rh-python38 RHSCL
ed7a15
Resolves: rhbz#1671025
ed7a15
ed7a15
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 1.25.7-4
ed7a15
- Exclude unsupported i686 arch
ed7a15
ed7a15
* Wed Nov 20 2019 Lumír Balhar <lbalhar@redhat.com> - 1.25.7-3
ed7a15
- Adjusted for Python 3.8 module in RHEL 8
ed7a15
ed7a15
* Mon Nov 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.7-2
ed7a15
- Subpackage python2-urllib3 has been removed
ed7a15
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
ed7a15
ed7a15
* Tue Oct 15 2019 Jeremy Cline <jcline@redhat.com> - 1.25.6-1
ed7a15
- Update to v1.25.6
ed7a15
ed7a15
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-7
ed7a15
- Rebuilt for Python 3.8.0rc1 (#1748018)
ed7a15
ed7a15
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-6
ed7a15
- Rebuilt for Python 3.8
ed7a15
ed7a15
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-5
ed7a15
- Bootstrap for Python 3.8
ed7a15
ed7a15
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.3-4
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
ed7a15
ed7a15
* Mon Jul 08 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-3
ed7a15
- Set RECENT_DATE not to be older than 2 years (#1727796)
ed7a15
ed7a15
* Tue May 28 2019 Jeremy Cline <jcline@redhat.com> - 1.25.3-2
ed7a15
- Drop the Python 2 tests since Tornado is going away
ed7a15
ed7a15
* Tue May 28 2019 Jeremy Cline <jcline@redhat.com> - 1.25.3-1
ed7a15
- Update to 1.25.3
ed7a15
ed7a15
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.24.1-3
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
ed7a15
ed7a15
* Tue Nov 13 2018 Jeremy Cline <jeremy@jcline.org> - 1.24.1-2
ed7a15
- Adjust unbundling of ssl_match_hostname
ed7a15
ed7a15
* Mon Oct 29 2018 Jeremy Cline <jeremy@jcline.org> - 1.24.1-1
ed7a15
- Update to v1.24.1
ed7a15
ed7a15
* Wed Jun 20 2018 Lumír Balhar <lbalhar@redhat.com> - 1.23-4
ed7a15
- Removed unneeded dependency python[23]-psutil
ed7a15
ed7a15
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 1.23-3
ed7a15
- Rebuilt for Python 3.7
ed7a15
ed7a15
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 1.23-2
ed7a15
- Bootstrap for Python 3.7
ed7a15
ed7a15
* Tue Jun 05 2018 Jeremy Cline <jeremy@jcline.org> - 1.23-1
ed7a15
- Update to the latest upstream release (rhbz 1586072)
ed7a15
ed7a15
* Wed May 30 2018 Jeremy Cline <jeremy@jcline.org> - 1.22-10
ed7a15
- Backport patch to support Python 3.7 (rhbz 1584112)
ed7a15
ed7a15
* Thu May 03 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.22-9
ed7a15
- Do not lowercase hostnames with custom-protocol (rhbz 1567862)
ed7a15
- upstream: https://github.com/urllib3/urllib3/issues/1267
ed7a15
ed7a15
* Wed Apr 18 2018 Jeremy Cline <jeremy@jcline.org> - 1.22-8
ed7a15
- Drop the dependency on idna and cryptography (rhbz 1567862)
ed7a15
ed7a15
* Mon Apr 16 2018 Jeremy Cline <jeremy@jcline.org> - 1.22-7
ed7a15
- Drop the dependency on PyOpenSSL, it's not needed (rhbz 1567862)
ed7a15
ed7a15
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-6
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ed7a15
ed7a15
* Wed Jan 31 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.22-5
ed7a15
- Update Python 2 dependency declarations to new packaging standards
ed7a15
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
ed7a15
ed7a15
* Thu Jan 25 2018 Tomas Hoger <thoger@redhat.com> - 1.22-4
ed7a15
- Fix FTBFS - Move RECENT_DATE to 2017-06-30
ed7a15
ed7a15
* Fri Dec 01 2017 Jeremy Cline <jeremy@jcline.org> - 1.22-3
ed7a15
- Symlink the Python 3 bytecode for six (rbhz 1519147)
ed7a15
ed7a15
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-2
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ed7a15
ed7a15
* Fri Jul 21 2017 Jeremy Cline <jeremy@jcline.org> - 1.22-1
ed7a15
- Update to 1.22 (#1473293)
ed7a15
ed7a15
* Wed May 17 2017 Jeremy Cline <jeremy@jcline.org> - 1.21.1-1
ed7a15
- Update to 1.21.1 (#1445280)
ed7a15
ed7a15
* Thu Feb 09 2017 Jeremy Cline <jeremy@jcline.org> - 1.20-1
ed7a15
- Update to 1.20 (#1414775)
ed7a15
ed7a15
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 1.19.1-2
ed7a15
- Rebuild for Python 3.6
ed7a15
ed7a15
* Thu Nov 17 2016 Jeremy Cline <jeremy@jcline.org> 1.19.1-1
ed7a15
- Update to 1.19.1
ed7a15
- Clean up the specfile to only support Fedora 26
ed7a15
ed7a15
* Wed Aug 10 2016 Kevin Fenzi <kevin@scrye.com> - 1.16-3
ed7a15
- Rebuild now that python-requests is ready to update.
ed7a15
ed7a15
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-2
ed7a15
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
ed7a15
ed7a15
* Wed Jun 15 2016 Kevin Fenzi <kevin@scrye.com> - 1.16-1
ed7a15
- Update to 1.16
ed7a15
ed7a15
* Thu Jun 02 2016 Ralph Bean <rbean@redhat.com> - 1.15.1-3
ed7a15
- Create python2 subpackage to comply with guidelines.
ed7a15
ed7a15
* Wed Jun 01 2016 Ralph Bean <rbean@redhat.com> - 1.15.1-2
ed7a15
- Remove broken symlinks to unbundled python3-six files
ed7a15
  https://bugzilla.redhat.com/show_bug.cgi?id=1295015
ed7a15
ed7a15
* Fri Apr 29 2016 Ralph Bean <rbean@redhat.com> - 1.15.1-1
ed7a15
- Removed patch for ipv6 support, now applied upstream.
ed7a15
- Latest version.
ed7a15
- New dep on pysocks.
ed7a15
ed7a15
* Fri Feb 26 2016 Ralph Bean <rbean@redhat.com> - 1.13.1-3
ed7a15
- Apply patch from upstream to fix ipv6.
ed7a15
ed7a15
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.1-2
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
ed7a15
ed7a15
* Mon Dec 21 2015 Ralph Bean <rbean@redhat.com> - 1.13.1-1
ed7a15
- new version
ed7a15
ed7a15
* Fri Dec 18 2015 Ralph Bean <rbean@redhat.com> - 1.13-1
ed7a15
- new version
ed7a15
ed7a15
* Mon Dec 14 2015 Ralph Bean <rbean@redhat.com> - 1.12-1
ed7a15
- new version
ed7a15
ed7a15
* Thu Oct 15 2015 Robert Kuska <rkuska@redhat.com> - 1.10.4-7
ed7a15
- Rebuilt for Python3.5 rebuild
ed7a15
ed7a15
* Sat Oct 10 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-6
ed7a15
- Sync from PyPI instead of a git checkout.
ed7a15
ed7a15
* Tue Sep 08 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-5.20150503gita91975b
ed7a15
- Drop requirement on python-backports-ssl_match_hostname on F22 and newer.
ed7a15
ed7a15
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.4-4.20150503gita91975b
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
ed7a15
ed7a15
* Mon Jun 08 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-3.20150503gita91975b
ed7a15
- Apply pyopenssl injection for an outdated cpython as per upstream advice
ed7a15
  https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning
ed7a15
  https://urllib3.readthedocs.org/en/latest/security.html#pyopenssl
ed7a15
ed7a15
* Tue May 19 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-2.20150503gita91975b
ed7a15
- Specify symlinks for six.py{c,o}, fixing rhbz #1222142.
ed7a15
ed7a15
* Sun May 03 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-1.20150503gita91975b
ed7a15
- Latest release for python-requests-2.7.0
ed7a15
ed7a15
* Wed Apr 29 2015 Ralph Bean <rbean@redhat.com> - 1.10.3-2.20150429git585983a
ed7a15
- Grab a git snapshot to get around this chunked encoding failure.
ed7a15
ed7a15
* Wed Apr 22 2015 Ralph Bean <rbean@redhat.com> - 1.10.3-1
ed7a15
- new version
ed7a15
ed7a15
* Thu Feb 26 2015 Ralph Bean <rbean@redhat.com> - 1.10.2-1
ed7a15
- new version
ed7a15
ed7a15
* Wed Feb 18 2015 Ralph Bean <rbean@redhat.com> - 1.10.1-1
ed7a15
- new version
ed7a15
ed7a15
* Wed Feb 18 2015 Ralph Bean <rbean@redhat.com> - 1.10.1-1
ed7a15
- new version
ed7a15
ed7a15
* Mon Jan 05 2015 Ralph Bean <rbean@redhat.com> - 1.10-2
ed7a15
- Copy in a shim for ssl_match_hostname on python3.
ed7a15
ed7a15
* Sun Dec 14 2014 Ralph Bean <rbean@redhat.com> - 1.10-1
ed7a15
- Latest upstream 1.10, for python-requests-2.5.0.
ed7a15
- Re-do unbundling without patch, with symlinks.
ed7a15
- Modernize python2 macros.
ed7a15
- Remove the with_dummyserver tests which fail only sometimes.
ed7a15
ed7a15
* Wed Nov 05 2014 Ralph Bean <rbean@redhat.com> - 1.9.1-1
ed7a15
- Latest upstream, 1.9.1 for latest python-requests.
ed7a15
ed7a15
* Mon Aug  4 2014 Tom Callaway <spot@fedoraproject.org> - 1.8.2-4
ed7a15
- fix license handling
ed7a15
ed7a15
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.2-3
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
ed7a15
ed7a15
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 1.8.2-2
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
ed7a15
ed7a15
* Mon Apr 21 2014 Arun S A G <sagarun@gmail.com> - 1.8.2-1
ed7a15
- Update to latest upstream version
ed7a15
ed7a15
* Mon Oct 28 2013 Ralph Bean <rbean@redhat.com> - 1.7.1-2
ed7a15
- Update patch to find ca_certs in the correct location.
ed7a15
ed7a15
* Wed Sep 25 2013 Ralph Bean <rbean@redhat.com> - 1.7.1-1
ed7a15
- Latest upstream with support for a new timeout class and py3.4.
ed7a15
ed7a15
* Wed Aug 28 2013 Ralph Bean <rbean@redhat.com> - 1.7-3
ed7a15
- Bump release again, just to push an unpaired update.
ed7a15
ed7a15
* Mon Aug 26 2013 Ralph Bean <rbean@redhat.com> - 1.7-2
ed7a15
- Bump release to pair an update with python-requests.
ed7a15
ed7a15
* Thu Aug 22 2013 Ralph Bean <rbean@redhat.com> - 1.7-1
ed7a15
- Update to latest upstream.
ed7a15
- Removed the accept-header proxy patch which is included in upstream now.
ed7a15
- Removed py2.6 compat patch which is included in upstream now.
ed7a15
ed7a15
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-7
ed7a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
ed7a15
ed7a15
* Tue Jun 11 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-6
ed7a15
- Fix Requires of python-ordereddict to only apply to RHEL
ed7a15
ed7a15
* Fri Mar  1 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-5
ed7a15
- Unbundling finished!
ed7a15
ed7a15
* Fri Mar 01 2013 Ralph Bean <rbean@redhat.com> - 1.5-4
ed7a15
- Upstream patch to fix Accept header when behind a proxy.
ed7a15
- Reorganize patch numbers to more clearly distinguish them.
ed7a15
ed7a15
* Wed Feb 27 2013 Ralph Bean <rbean@redhat.com> - 1.5-3
ed7a15
- Renamed patches to python-urllib3-*
ed7a15
- Fixed ssl check patch to use the correct cert path for Fedora.
ed7a15
- Included dependency on ca-certificates
ed7a15
- Cosmetic indentation changes to the .spec file.
ed7a15
ed7a15
* Tue Feb  5 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-2
ed7a15
- python3-tornado BR and run all unittests on python3
ed7a15
ed7a15
* Mon Feb 04 2013 Toshio Kuratomi <toshio@fedoraproject.org> 1.5-1
ed7a15
- Initial fedora build.