1178d8
# python3 is not available on RHEL <= 7
1178d8
%if 0%{?fedora} || 0%{?rhel} > 7
1178d8
%bcond_without python3
1178d8
%else
1178d8
%bcond_with python3
1178d8
%endif
1178d8
1178d8
# python2 is not available on Fedora and el8+
1178d8
%if 0%{?fedora} || 0%{?rhel} > 7
1178d8
%bcond_with python2
1178d8
%else
1178d8
%bcond_without python2
1178d8
%endif
1178d8
1178d8
# test dependencies are not available on el9+
1178d8
%if 0%{?fedora}
1178d8
%bcond_without tests
1178d8
%else
1178d8
%bcond_with tests
1178d8
%endif
1178d8
1178d8
%global modname pycurl
1178d8
1178d8
Name:           python-%{modname}
1178d8
Version:        7.43.0.6
1178d8
Release:        8%{?dist}
1178d8
Summary:        A Python interface to libcurl
1178d8
1178d8
License:        LGPLv2+ or MIT
1178d8
URL:            http://pycurl.sourceforge.net/
1178d8
# reported as unavailable: https://github.com/pycurl/pycurl/issues/651
1178d8
# Source0:        https://dl.bintray.com/pycurl/pycurl/pycurl-%%{version}.tar.gz
1178d8
Source0:        https://github.com/pycurl/pycurl/archive/REL_7_43_0_6.tar.gz#/pycurl-%{version}.tar.gz
1178d8
1178d8
# make the code compile against python-3.10.0a1 (#1890442)
1178d8
Patch1:         0001-python-pycurl-7.43.0.6-python-3.10.patch
1178d8
1178d8
# drop link-time vs. run-time TLS backend check (#1446850)
1178d8
Patch2:         0002-python-pycurl-7.43.0-tls-backend.patch
1178d8
1178d8
BuildRequires:  gcc
1178d8
BuildRequires:  libcurl-devel
1178d8
BuildRequires:  openssl-devel
1178d8
BuildRequires:  make
1178d8
BuildRequires:  vsftpd
1178d8
1178d8
# During its initialization, PycURL checks that the actual libcurl version
1178d8
# is not lower than the one used when PycURL was built.
1178d8
# Yes, that should be handled by library versioning (which would then get
1178d8
# automatically reflected by rpm).
1178d8
# For now, we have to reflect that dependency.
1178d8
%global libcurl_sed '/^#define LIBCURL_VERSION "/!d;s/"[^"]*$//;s/.*"//;q'
1178d8
%global curlver_h /usr/include/curl/curlver.h
1178d8
%global libcurl_ver %(sed %{libcurl_sed} %{curlver_h} 2>/dev/null || echo 0)
1178d8
1178d8
%description
1178d8
PycURL is a Python interface to libcurl. PycURL can be used to fetch
1178d8
objects identified by a URL from a Python program, similar to the
1178d8
urllib Python module. PycURL is mature, very fast, and supports a lot
1178d8
of features.
1178d8
1178d8
%if %{with python2}
1178d8
%package -n python2-%{modname}
1178d8
Summary:        Python interface to libcurl for Python 2
1178d8
%{?python_provide:%python_provide python2-%{modname}}
1178d8
BuildRequires:  python2-devel
1178d8
Requires:       libcurl%{?_isa} >= %{libcurl_ver}
1178d8
1178d8
Provides:       %{modname} = %{version}-%{release}
1178d8
1178d8
%description -n python2-%{modname}
1178d8
PycURL is a Python interface to libcurl. PycURL can be used to fetch
1178d8
objects identified by a URL from a Python program, similar to the
1178d8
urllib Python module. PycURL is mature, very fast, and supports a lot
1178d8
of features.
1178d8
1178d8
Python 2 version.
1178d8
%endif
1178d8
1178d8
%if %{with python3}
1178d8
%package -n python3-%{modname}
1178d8
Summary:        Python interface to libcurl for Python 3
1178d8
%{?python_provide:%python_provide python3-%{modname}}
1178d8
BuildRequires:  python3-devel
1178d8
%if %{with tests}
1178d8
BuildRequires:  python3-bottle
1178d8
BuildRequires:  python3-nose
1178d8
%global nosetests nosetests-%{python3_version} -v
1178d8
%else
1178d8
%global nosetests true
1178d8
%endif
1178d8
BuildRequires:  python3-setuptools
1178d8
Requires:       libcurl%{?_isa} >= %{libcurl_ver}
1178d8
1178d8
%description -n python3-%{modname}
1178d8
PycURL is a Python interface to libcurl. PycURL can be used to fetch
1178d8
objects identified by a URL from a Python program, similar to the
1178d8
urllib Python module. PycURL is mature, very fast, and supports a lot
1178d8
of features.
1178d8
1178d8
Python 3 version.
1178d8
%endif
1178d8
1178d8
%prep
1178d8
%autosetup -n %{modname}-REL_7_43_0_6 -p1
1178d8
1178d8
# remove windows-specific build script
1178d8
rm -f winbuild.py
1178d8
sed -e 's| winbuild.py||' -i Makefile
1178d8
1178d8
# remove binaries packaged by upstream
1178d8
rm -f tests/fake-curl/libcurl/*.so
1178d8
1178d8
# temporarily remove a failing test-case (#1927655)
1178d8
# upstream issue: https://github.com/curl/curl/issues/6615
1178d8
rm -f tests/failonerror_test.py
1178d8
1178d8
# remove a test-case that relies on sftp://web.sourceforge.net being available
1178d8
rm -f tests/ssh_key_cb_test.py
1178d8
1178d8
# remove a test-case that fails in Koji
1178d8
rm -f tests/seek_cb_test.py
1178d8
1178d8
# remove tests depending on the 'flaky' nose plug-in (not available in Fedora)
1178d8
grep '^import flaky' -r tests | cut -d: -f1 | xargs rm -fv
1178d8
1178d8
# drop options that are not supported by nose in Fedora
1178d8
sed -e 's/ --show-skipped//' \
1178d8
    -e 's/ --with-flaky//' \
1178d8
    -i tests/run.sh
1178d8
1178d8
# use %%{python3} instead of python to invoke tests, to make them work on f34
1178d8
sed -e 's|python |%{python3} |' -i tests/ext/test-suite.sh
1178d8
sed -e 's|^#! */usr/bin/env python$|#! /usr/bin/env %{python3}|' \
1178d8
    -i tests/*.py tests/bin/* setup.py
1178d8
1178d8
%build
1178d8
%if %{with python2}
1178d8
%{python2} setup.py docstrings
1178d8
%py2_build -- --with-openssl
1178d8
%endif
1178d8
%if %{with python3}
1178d8
%{python3} setup.py docstrings
1178d8
%py3_build -- --with-openssl
1178d8
%endif
1178d8
1178d8
%install
1178d8
export PYCURL_SSL_LIBRARY=openssl
1178d8
%if %{with python2}
1178d8
%py2_install
1178d8
%endif
1178d8
%if %{with python3}
1178d8
%py3_install
1178d8
%endif
1178d8
rm -rf %{buildroot}%{_datadir}/doc/pycurl
1178d8
1178d8
%if %{with python3}
1178d8
%check
1178d8
# relax crypto policy for the test-suite to make it pass again (#1863711)
1178d8
export OPENSSL_SYSTEM_CIPHERS_OVERRIDE=XXX
1178d8
export OPENSSL_CONF=
1178d8
1178d8
export PYTHONPATH=%{buildroot}%{python3_sitearch}
1178d8
export PYCURL_SSL_LIBRARY=openssl
1178d8
export PYCURL_VSFTPD_PATH=vsftpd
1178d8
make test PYTHON=%{__python3} NOSETESTS="%{nosetests}" PYFLAKES=true
1178d8
rm -fv tests/fake-curl/libcurl/*.so
1178d8
%endif
1178d8
1178d8
%if %{with python2}
1178d8
%files -n python2-%{modname}
1178d8
%license COPYING-LGPL COPYING-MIT
1178d8
%doc ChangeLog README.rst examples doc tests
1178d8
%{python2_sitearch}/curl/
1178d8
%{python2_sitearch}/%{modname}.so
1178d8
%{python2_sitearch}/%{modname}-%{version}-*.egg-info
1178d8
%endif
1178d8
1178d8
%if %{with python3}
1178d8
%files -n python3-%{modname}
1178d8
%license COPYING-LGPL COPYING-MIT
1178d8
%doc ChangeLog README.rst examples doc tests
1178d8
%{python3_sitearch}/curl/
1178d8
%{python3_sitearch}/%{modname}.*.so
1178d8
%{python3_sitearch}/%{modname}-%{version}-*.egg-info
1178d8
%endif
1178d8
1178d8
%changelog
1178d8
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 7.43.0.6-8
1178d8
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
1178d8
  Related: rhbz#1991688
1178d8
1178d8
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 7.43.0.6-7
1178d8
- Rebuilt for RHEL 9 BETA for openssl 3.0
1178d8
  Related: rhbz#1971065
1178d8
1178d8
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 7.43.0.6-6
1178d8
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
1178d8
1178d8
* Wed Feb 17 2021 Kamil Dudka <kdudka@redhat.com> - 7.43.0.6-5
1178d8
- temporarily remove a failing test-case (#1927655)
1178d8
1178d8
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0.6-4
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
1178d8
1178d8
* Mon Jan 18 2021 Kamil Dudka <kdudka@redhat.com> - 7.43.0.6-3
1178d8
- make build dependencies for upstream tests optional
1178d8
1178d8
* Tue Oct 27 2020 Kamil Dudka <kdudka@redhat.com> - 7.43.0.6-2
1178d8
- make the code compile against python-3.10.0a1 (#1890442)
1178d8
1178d8
* Thu Sep 03 2020 Kamil Dudka <kdudka@redhat.com> - 7.43.0.6-1
1178d8
- update to 7.43.0.6
1178d8
1178d8
* Tue Aug 04 2020 Kamil Dudka <kdudka@redhat.com> - 7.43.0.5-6
1178d8
- relax crypto policy for the test-suite to make it pass again (#1863711)
1178d8
1178d8
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0.5-5
1178d8
- Second attempt - Rebuilt for
1178d8
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1178d8
1178d8
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0.5-4
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1178d8
1178d8
* Tue Jun 23 2020 Kamil Dudka <kdudka@redhat.com> - 7.43.0.5-3
1178d8
- do not use discontinued %%_python_bytecompile_extra macro
1178d8
- explicitly require python3-setuptools for build
1178d8
1178d8
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 7.43.0.5-2
1178d8
- Rebuilt for Python 3.9
1178d8
1178d8
* Thu Jan 30 2020 Kamil Dudka <kdudka@redhat.com> - 7.43.0.5-1
1178d8
- update to 7.43.0.5
1178d8
1178d8
* Wed Jan 15 2020 Kamil Dudka <kdudka@redhat.com> - 7.43.0.4-1
1178d8
- update to 7.43.0.4
1178d8
1178d8
* Fri Nov 15 2019 Kamil Dudka <kdudka@redhat.com> - 7.43.0.2-10
1178d8
- do not build python2-pycurl on f32+
1178d8
1178d8
* Tue Sep 24 2019 Miro Hrončok <mhroncok@redhat.com> - 7.43.0.2-9
1178d8
- Drop unused Python 2 BuildRequires
1178d8
1178d8
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 7.43.0.2-8
1178d8
- Rebuilt for Python 3.8
1178d8
1178d8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0.2-7
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1178d8
1178d8
* Sun Feb 03 2019 Kamil Dudka <kdudka@redhat.com> - 7.43.0.2-6
1178d8
- reintroduce the python2-pycurl subpackage on Fedora (#1672061)
1178d8
1178d8
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0.2-5
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1178d8
1178d8
* Tue Jan 29 2019 Kamil Dudka <kdudka@redhat.com> - 7.43.0.2-4
1178d8
- fix programming mistakes detected by static analyzers
1178d8
1178d8
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0.2-3
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1178d8
1178d8
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 7.43.0.2-2
1178d8
- Rebuilt for Python 3.7
1178d8
1178d8
* Mon Jun 04 2018 Kamil Dudka <kdudka@redhat.com> - 7.43.0.2-1
1178d8
- update to 7.43.0.2
1178d8
1178d8
* Wed May 30 2018 Kamil Dudka <kdudka@redhat.com> - 7.43.0-17
1178d8
- make the python2 and python3 subpackages optional
1178d8
1178d8
* Wed May 23 2018 Kamil Dudka <kdudka@redhat.com> - 7.43.0-16
1178d8
- fix build failure caused by NotImplemented exceptions in winbuild.py
1178d8
1178d8
* Wed Mar 14 2018 Kamil Dudka <kdudka@redhat.com> - 7.43.0-15
1178d8
- enable vsftpd-based tests
1178d8
- run the test-suite for Python 3 only
1178d8
- do not disable TLS-SRP test because it is now supported by OpenSSL in Fedora
1178d8
1178d8
* Mon Feb 19 2018 Kamil Dudka <kdudka@redhat.com> - 7.43.0-14
1178d8
- add explicit BR for the gcc compiler
1178d8
1178d8
* Fri Feb 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 7.43.0-13
1178d8
- Update Python 2 dependency declarations to new packaging standards
1178d8
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
1178d8
1178d8
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0-12
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1178d8
1178d8
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0-11
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1178d8
1178d8
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0-10
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1178d8
1178d8
* Tue May 02 2017 Kamil Dudka <kdudka@redhat.com> - 7.43.0-9
1178d8
- drop link-time vs. run-time TLS backend check (#1446850)
1178d8
1178d8
* Thu Apr 27 2017 Kamil Dudka <kdudka@redhat.com> - 7.43.0-8
1178d8
- make pycurl compile against libcurl-openssl (#1445153)
1178d8
1178d8
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.43.0-7
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1178d8
1178d8
* Mon Dec 12 2016 Stratakis Charalampos <cstratak@redhat.com> - 7.43.0-6
1178d8
- Rebuild for Python 3.6
1178d8
1178d8
* Tue Nov 29 2016 Charalampos Stratakis <cstratak@redhat.com> - 7.43.0-5
1178d8
- Fix python2 subpackage name
1178d8
1178d8
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.43.0-4
1178d8
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
1178d8
1178d8
* Thu Apr 14 2016 Igor Gnatenko <ignatenko@redhat.com> - 7.43.0-3
1178d8
- Follow new packaging guidelines
1178d8
1178d8
* Fri Feb 26 2016 Kamil Dudka <kdudka@redhat.com> - 7.43.0-2
1178d8
- require libcurl of the same architecture as python-pycurl
1178d8
1178d8
* Sat Feb 06 2016 Kamil Dudka <kdudka@redhat.com> - 7.43.0-1
1178d8
- update to 7.43.0
1178d8
1178d8
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7.21.5-4
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1178d8
1178d8
* Wed Jan 06 2016 Kamil Dudka <kdudka@redhat.com> - 7.21.5-3
1178d8
- remove explicit dependency on keyutils-libs (reported by rpmlint)
1178d8
- update FSF address in COPYING-LGPL (detected by rpmlint)
1178d8
1178d8
* Tue Jan 05 2016 Kamil Dudka <kdudka@redhat.com> - 7.21.5-2
1178d8
- avoid installing binaries generated in %%check to /usr/share
1178d8
1178d8
* Tue Jan 05 2016 Kamil Dudka <kdudka@redhat.com> - 7.21.5-1
1178d8
- update to 7.21.5
1178d8
1178d8
* Sat Nov 14 2015 Toshio Kuratomi <toshio@fedoraproject.org> - - 7.19.5.3-3
1178d8
- Remove build dependency on cherrypy as it's no longer needed for testing
1178d8
1178d8
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.5.3-2
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
1178d8
1178d8
* Tue Nov 03 2015 Kamil Dudka <kdudka@redhat.com> - 7.19.5.3-1
1178d8
- update to 7.19.5.3
1178d8
1178d8
* Mon Nov 02 2015 Kamil Dudka <kdudka@redhat.com> - 7.19.5.2-1
1178d8
- update to 7.19.5.2
1178d8
1178d8
* Mon Sep 07 2015 Kamil Dudka <kdudka@redhat.com> - 7.19.5.1-3
1178d8
- introduce CURL_SSLVERSION_TLSv1_[0-2] (#1260408)
1178d8
1178d8
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.5.1-2
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1178d8
1178d8
* Mon Jan 12 2015 Kamil Dudka <kdudka@redhat.com> - 7.19.5.1-1
1178d8
- update to 7.19.5.1
1178d8
1178d8
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.5-3
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1178d8
1178d8
* Sun Aug  3 2014 Tom Callaway <spot@fedoraproject.org> - 7.19.5-2
1178d8
- fix license handling
1178d8
1178d8
* Mon Jul 14 2014 Kamil Dudka <kdudka@redhat.com> - 7.19.5-1
1178d8
- update to 7.19.5
1178d8
1178d8
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.3.1-3
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1178d8
1178d8
* Mon May 19 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 7.19.3.1-2
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
1178d8
1178d8
* Thu Feb 06 2014 Kamil Dudka <kdudka@redhat.com> - 7.19.3.1-1
1178d8
- update to 7.19.3.1
1178d8
1178d8
* Fri Jan 10 2014 Kamil Dudka <kdudka@redhat.com> - 7.19.3-2
1178d8
- add python3 subpackage (#1014583)
1178d8
1178d8
* Fri Jan 10 2014 Kamil Dudka <kdudka@redhat.com> - 7.19.3-1
1178d8
- update to 7.19.3
1178d8
1178d8
* Thu Jan 02 2014 Kamil Dudka <kdudka@redhat.com> - 7.19.0.3-1
1178d8
- update to 7.19.0.3
1178d8
1178d8
* Tue Oct 08 2013 Kamil Dudka <kdudka@redhat.com> - 7.19.0.2-1
1178d8
- update to 7.19.0.2
1178d8
1178d8
* Wed Sep 25 2013 Kamil Dudka <kdudka@redhat.com> - 7.19.0.1-1
1178d8
- update to 7.19.0.1
1178d8
1178d8
* Thu Aug 08 2013 Kamil Dudka <kdudka@redhat.com> - 7.19.0-18.20130315git8d654296
1178d8
- sync with upstream 8d654296
1178d8
1178d8
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.0-17.20120408git9b8f4e38
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1178d8
1178d8
* Tue Apr 09 2013 Kamil Dudka <kdudka@redhat.com> - 7.19.0-16.20120408git9b8f4e38
1178d8
- sync with upstream 9b8f4e38 (fixes #928370)
1178d8
- add the GLOBAL_ACK_EINTR constant to the list of exported symbols (#920589)
1178d8
- temporarily disable tests/multi_socket_select_test.py
1178d8
1178d8
* Wed Mar 06 2013 Kamil Dudka <kdudka@redhat.com> - 7.19.0-15
1178d8
- allow to return -1 from the write callback (#857875) 
1178d8
- remove the patch for curl-config --static-libs no longer needed
1178d8
- run the tests against the just built pycurl, not the system one
1178d8
1178d8
* Mon Feb 25 2013 Kamil Dudka <kdudka@redhat.com> - 7.19.0-14
1178d8
- apply bug-fixes committed to upstream CVS since 7.19.0 (fixes #896025)
1178d8
1178d8
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.0-13
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1178d8
1178d8
* Wed Aug 22 2012 Jan Synáček <jsynacek@redhat.com> - 7.19.0-12
1178d8
- Improve spec
1178d8
1178d8
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.0-11
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1178d8
1178d8
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.0-10
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1178d8
1178d8
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.0-9
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1178d8
1178d8
* Mon Dec 20 2010 Dennis Gilmore <dennis@ausil.us> - 7.19.0-8
1178d8
- add Missing Requires on keyutils-libs
1178d8
1178d8
* Tue Aug 17 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.19.0-7
1178d8
- Add patch developed by David Malcolm to fix segfaults caused by a missing incref
1178d8
1178d8
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 7.19.0-6
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
1178d8
1178d8
* Tue Mar  2 2010 Karel Klic <kklic@redhat.com> - 7.19.0-5
1178d8
- Package COPYING2 file
1178d8
- Added MIT as a package license
1178d8
1178d8
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.19.0-4
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1178d8
1178d8
* Fri Apr 17 2009 Stepan Kasal <skasal@redhat.com> - 7.19.0-3
1178d8
- fix typo in the previous change
1178d8
1178d8
* Fri Apr 17 2009 Stepan Kasal <skasal@redhat.com> - 7.19.0-2
1178d8
- add a require to reflect a dependency on libcurl version (#496308)
1178d8
1178d8
* Thu Mar  5 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.19.0-1
1178d8
- Update to 7.19.0
1178d8
1178d8
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.18.2-3
1178d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1178d8
1178d8
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 7.18.2-2
1178d8
- Rebuild for Python 2.6
1178d8
1178d8
* Thu Jul  3 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.18.2-1
1178d8
- Update to 7.18.2
1178d8
- Thanks to Ville Skyttä re-enable the tests and fix a minor problem
1178d8
  with the setup.py. (Bug # 45400)
1178d8
1178d8
* Thu Jun  5 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.18.1-1
1178d8
- Update to 7.18.1
1178d8
- Disable tests because it's not testing the built library, it's trying to
1178d8
  test an installed library.
1178d8
1178d8
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 7.16.4-3
1178d8
- Autorebuild for GCC 4.3
1178d8
1178d8
* Thu Jan  3 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.16.4-2
1178d8
- BR openssl-devel
1178d8
1178d8
* Wed Aug 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.16.4-1
1178d8
- Update to 7.16.4
1178d8
- Update license tag.
1178d8
1178d8
* Sat Jun  9 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.16.2.1-1
1178d8
- Update to released version.
1178d8
1178d8
* Thu Dec  7 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.16.0-0.1.20061207
1178d8
- Update to a CVS snapshot since development has a newer version of curl than is in FC <= 6
1178d8
1178d8
* Thu Dec  7 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.15.5.1-4
1178d8
- Add -DHAVE_CURL_OPENSSL to fix PPC build problem.
1178d8
1178d8
* Thu Dec  7 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.15.5.1-3
1178d8
- Don't forget to Provide: pycurl!!!
1178d8
1178d8
* Thu Dec  7 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.15.5.1-2
1178d8
- Remove INSTALL from the list of documentation
1178d8
- Use python_sitearch for all of the files
1178d8
1178d8
* Thu Dec  7 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 7.15.5.1-1
1178d8
- First version for Fedora Extras