richardphibel / rpms / librepo

Forked from rpms/librepo 2 years ago
Clone
9816b0
%if 0%{?rhel} != 0 && 0%{?rhel} <= 7
9816b0
# Do not build bindings for python3 for RHEL <= 7
9816b0
%bcond_with python3
9816b0
# python-flask is not in RHEL7
9816b0
%bcond_with tests
9816b0
%else
9816b0
%bcond_without python3
9816b0
%bcond_without tests
9816b0
%endif
9816b0
9816b0
Name:           librepo
9816b0
Version:        1.8.1
9816b0
Release:        7%{?dist}
9816b0
Summary:        Repodata downloading library
9816b0
9816b0
Group:          System Environment/Libraries
9816b0
License:        LGPLv2+
9816b0
URL:            https://github.com/rpm-software-management/librepo
9816b0
Source0:        %{url}/archive/%{name}-%{version}/%{name}-%{version}.tar.gz
9816b0
9816b0
BuildRequires:  check-devel
9816b0
BuildRequires:  cmake
9816b0
BuildRequires:  gcc
9816b0
BuildRequires:  doxygen
9816b0
BuildRequires:  expat-devel
9816b0
BuildRequires:  glib2-devel >= 2.26.0
9816b0
BuildRequires:  gpgme-devel
9816b0
BuildRequires:  libattr-devel
9816b0
BuildRequires:  libcurl-devel >= 7.19.0
9816b0
BuildRequires:  openssl-devel
9816b0
9816b0
# prevent provides from nonstandard paths:
9816b0
%filter_provides_in %{python_sitearch}/.*\.so$
9816b0
%if %{with python3}
9816b0
%filter_provides_in %{python3_sitearch}/.*\.so$
9816b0
%endif
9816b0
%filter_setup
9816b0
9816b0
%description
9816b0
A library providing C and Python (libcURL like) API to downloading repository
9816b0
metadata.
9816b0
9816b0
%package devel
9816b0
Summary:        Repodata downloading library
9816b0
Group:          Development/Libraries
9816b0
Requires:       %{name}%{?_isa} = %{version}-%{release}
9816b0
9816b0
%description devel
9816b0
Development files for librepo.
9816b0
9816b0
%package -n python-%{name}
9816b0
Summary:        Python bindings for the librepo library
9816b0
Group:          Development/Languages
9816b0
BuildRequires:  pygpgme
9816b0
BuildRequires:  python2-devel
9816b0
%if %{with tests}
9816b0
BuildRequires:  python-flask
9816b0
BuildRequires:  python-nose
9816b0
%endif
9816b0
BuildRequires:  python-sphinx
9816b0
BuildRequires:  pyxattr
9816b0
Requires:       %{name}%{?_isa} = %{version}-%{release}
9816b0
9816b0
%description -n python-%{name}
9816b0
Python bindings for the librepo library.
9816b0
9816b0
%if %{with python3}
9816b0
%package -n python3-%{name}
9816b0
Summary:        Python 3 bindings for the librepo library
9816b0
Group:          Development/Languages
9816b0
BuildRequires:  python3-pygpgme
9816b0
BuildRequires:  python3-devel
9816b0
%if %{with tests}
9816b0
BuildRequires:  python3-flask
9816b0
BuildRequires:  python3-nose
9816b0
%endif
9816b0
BuildRequires:  python3-sphinx
9816b0
BuildRequires:  python3-pyxattr
9816b0
Requires:       %{name}%{?_isa} = %{version}-%{release}
9816b0
9816b0
%description -n python3-%{name}
9816b0
Python 3 bindings for the librepo library.
9816b0
%endif
9816b0
9816b0
%prep
9816b0
%autosetup -p1
9816b0
9816b0
mkdir build build-py3
9816b0
9816b0
%build
9816b0
pushd build
9816b0
  %cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
9816b0
  %make_build
9816b0
popd
9816b0
9816b0
%if %{with python3}
9816b0
pushd build-py3
9816b0
  %cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DPYTHON_DESIRED:str=3 ..
9816b0
  %make_build
9816b0
popd
9816b0
%endif
9816b0
9816b0
%check
9816b0
%if %{with tests}
9816b0
pushd build
9816b0
  make ARGS="-V" test
9816b0
popd
9816b0
9816b0
%if %{with python3}
9816b0
pushd build-py3
9816b0
  make ARGS="-V" test
9816b0
popd
9816b0
%endif
9816b0
%endif
9816b0
9816b0
%install
9816b0
pushd build
9816b0
  %make_install
9816b0
popd
9816b0
%if %{with python3}
9816b0
pushd build-py3
9816b0
  %make_install
9816b0
popd
9816b0
%endif
9816b0
9816b0
%post -p /sbin/ldconfig
9816b0
9816b0
%postun -p /sbin/ldconfig
9816b0
9816b0
%files
9816b0
%doc COPYING README.md
9816b0
%{_libdir}/%{name}.so.*
9816b0
9816b0
%files devel
9816b0
%{_libdir}/%{name}.so
9816b0
%{_libdir}/pkgconfig/%{name}.pc
9816b0
%{_includedir}/%{name}/
9816b0
9816b0
%files -n python-%{name}
9816b0
%{python_sitearch}/%{name}/
9816b0
9816b0
%if %{with python3}
9816b0
%files -n python3-%{name}
9816b0
%{python3_sitearch}/
9816b0
%endif
9816b0
9816b0
%changelog
9816b0
* Fri Jun 08 2018 Marek Blaha <mblaha@redhat.com> - 1.8.1-1
9816b0
- Add yumrecord substitution mechanism (mluscon)
9816b0
- Fix a memory leak in signature verification (cwalters)
9816b0
- Add new option LRO_FTPUSEEPSV
9816b0
- downloader prepare_next_transfer(): simplify long line
9816b0
- downloader prepare_next_transfer(): add missing error check
9816b0
- downloader prepare_next_transfer(): cleanup error path
9816b0
- downloader prepare_next_transfer() - fix memory leak on error path (Alan Jenkins)
9816b0
- handle: Don't use proxy cache for downloads of metalink/mirrorlist
9816b0
- handle: Don't set CURLOPT_HTTPHEADER into curl handle immediately when specified
9816b0
- downloader: Implement logic for no_cache param in LrDownloadTarget (RhBug: 1297762)
9816b0
- Add no_cache param to LrDownloadTarget and lr_downloadtarget_new()
9816b0
- New test: always try to download from the fastest mirror (Alexander Todorov)
9816b0
9816b0
* Fri May 29 2015 Colin Walters <tmlcoch@redhat.com> - 1.7.16-1
9816b0
- Add LRI_LOWSPEEDTIME and LRI_LOWSPEEDLIMIT
9816b0
- downloader: Don't consider CURLE_RECV_ERROR and CURLE_SEND_ERROR as fatal errors (RhBug: 1219817)
9816b0
- test_repoconf: Fix SIGSEGV in repoconf_assert_na (RhBug: 1222471)
9816b0
- repoconf: Proper handling of gint64 and guint64 types
9816b0
- build: Be compatible with cmake 2.8
9816b0
- handle: Do not free temporary error msg if there is no one (RhBug: 1219822)
9816b0
- utils/make_rpm.sh: Accept rpmbuild options as second argument (Issue #49)
9816b0
- Python: call lr_global_init() during module initialization
9816b0
- Add global function log_set_file that allow user to set a file where logs will be written (Issue #53)
9816b0
- util: Honor RFC 3986 (Issue #55)
9816b0
9816b0
* Tue May 12 2015 Colin Walters <walters@redhat.com> - 1.7.15-2
9816b0
- Disable tests and drop python-flask build dependency on RHEL7, as
9816b0
  it is not in the core
9816b0
9816b0
* Tue Apr   14 2015 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.15-1
9816b0
- Do not inlude header in the body output (RhBug: 1207685)
9816b0
- metalink: Proper error handling
9816b0
- New LRR_RPMMD_* contants
9816b0
- Support for client certificates
9816b0
- Use 'metadata in the rpm-md format' instead of 'yum metadata' (Issue #51)
9816b0
- CMakeLists.txt: do not check for CXX
9816b0
- build: Use solely pkg-config to find glib
9816b0
9816b0
* Wed Feb   25 2015 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.14-2
9816b0
- compat: fix ck_assert_msg() segfault in rhel-7
9816b0
9816b0
* Wed Feb   25 2015 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.14-1
9816b0
- tests: Use g_assert_cmpuint instead of ck_assert_uint_eq (Pullrequest #43)
9816b0
- Add LRO_OFFLINE
9816b0
- Python: Handle: Raise ValueError instead of TypeError when an unknown option is specified
9816b0
- Python: Result: Use ValueError instead of TypeError when an unknown option value is specified
9816b0
- Add LR_VERSION constant with version string
9816b0
- python: Import contants from C librepo module in a loop
9816b0
- repoconf: Add support for failover and skip_if_unavailable options
9816b0
- handle: Change of LRO_LOCAL causes invalidation of internal mirrorlist (related to RhBug: 1188600)
9816b0
- Load local mirrorlists when LRO_LOCAL is on (related to RhBug: 1188600)
9816b0
- util: Add lr_is_local_path()
9816b0
- New module repoconf for reading *.repo files
9816b0
- Add LRO_HTTPHEADER option (RhBug: 1181123)
9816b0
9816b0
* Fri Jan   23 2015 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.13-1
9816b0
- Fix ABI compatibility (RhBug: 1185180)
9816b0
- fastestmirror: Add LRO_FASTESTMIRRORTIMEOUT option
9816b0
- downloader: Move broken mirror at the end of the list of mirrors (RhBug: 1183998)
9816b0
- Make building tests and docs optional
9816b0
- librepo: Don't download remote mirrorlist/metalink when LRO_LOCAL is specified (Resolves #41)
9816b0
9816b0
* Fri Jan   16 2015 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.12-1
9816b0
- downloader: Allow max one resume + nicer message if xattr cannot be set (RhBug: 1130685)
9816b0
- downloader: Resume only files that were originaly downloaded by Librepo (RhBug: 1130685)
9816b0
- downloader: Show also calculated checksums in error message about bad checksum
9816b0
- Python: Return all strings in unicode
9816b0
9816b0
* Mon Dec   22 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.11-2
9816b0
- Make tests port agnostic
9816b0
9816b0
* Fri Dec   19 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.11-1
9816b0
- Substitute vars in URL in the lr_downloadtarget_new()
9816b0
- New module repoconf for reading of *.repo files
9816b0
- Add LRE_VALUE code + LR_REPOCONF_ERROR error domain
9816b0
- Fail if gpgcheck enabled but repomd.xml signature is not available
9816b0
- Support for RHEL6
9816b0
- Add LRO_GNUPGHOMEDIR option
9816b0
- Refactoring to prevent RhBug: 1144741
9816b0
- fastest_mirror: Use <0.0 (-1.0) instead of DBL_MAX when a connection time wasn't measured
9816b0
- Add sanity checks in order to avoid bugs like: 1166533, 1160087
9816b0
- Refactoring
9816b0
9816b0
* Mon Dec   1 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.10-1
9816b0
- repomd: Add error reporting support to lr_yum_repomd_get_highest_timestamp()
9816b0
  (RhBug: 1149436)
9816b0
9816b0
* Thu Nov  20 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.9-1
9816b0
- handle: Fix memory leak when looking for local metalink/mirrorlist (Issue #33)
9816b0
- Return -1 for LRR_YUM_TIMESTAMP if no repomd is available
9816b0
- Use CURLOPT_ERRORBUFFER to get more useful error messages
9816b0
- repoutil_yum: lr_repoutil_yum_check_repo: fix path handling
9816b0
9816b0
* Wed Sep  24 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.7-1
9816b0
- Initialize struct sigaction vars correctly (RhBug: 1145656 )
9816b0
9816b0
* Tue Aug  12 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.6-1
9816b0
- New option LRO_ADAPTIVEMIRRORSORTING
9816b0
- Increase limits to make librepo more robust (RhBug: 1124349)
9816b0
- New option LRO_ALLOWEDMIRRORFAILURES
9816b0
- Refactoring
9816b0
- Default value of LRO_MAXDOWNLOADSPERMIRROR changed from 2 to 3
9816b0
9816b0
* Tue Jul  8 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.5-1
9816b0
- accepts unicoded destination as UTF-8 string (Related: RhBug:1108908)
9816b0
- downloader: Do not print debug message about preparing internal mirror list
9816b0
  if no internal mirror is available
9816b0
- fastestmirror: subtract name lookup (dns) time from plain connect time
9816b0
- fastestmirror: Small refactoring
9816b0
9816b0
* Thu Jun 26 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.4-3
9816b0
- Increase default value of LRO_LOWSPEEDTIME from 10 to 30 (RhBug: 1109189)
9816b0
9816b0
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.4-2
9816b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
9816b0
9816b0
* Mon Jun   2 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.4-1
9816b0
- Add LRO_IPRESOLVE option to set a kind of IP addresses to use when resolving host names
9816b0
- Relicenced from GPLv2 to LGPLv2+
9816b0
- error mesage is in unicode (RhBug:1096452)
9816b0
9816b0
* Tue May   6 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.3-1
9816b0
- Fix some issues which were found by coverity scan
9816b0
- Add missing support for Handle Mirror Failure Callback (hmfcb)
9816b0
  while downloading repomd.xml (related to RhBug: 1093014)
9816b0
- Add LRO_SSLVERIFYPEER and LRO_SSLVERIFYHOST options (RhBug: 1093014)
9816b0
9816b0
* Wed Apr  23 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.2-1
9816b0
- Fix segfault in headercb if only base_url and no mirrolist is used (RhBug: 1090325)
9816b0
- Set environmental variable LIBREPO_DEBUG enables librepo debug output to stderr
9816b0
9816b0
* Mon Apr   7 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.1-1
9816b0
- Don't try to call cb if no cb is set (RhBug: 1083659)
9816b0
9816b0
* Mon Mar  31 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.7.0-1
9816b0
- Support for xml:base tag in repomd.xml.
9816b0
- Downloader: If checksums don't match, include the expected values and types
9816b0
  in the error message.
9816b0
- Handle: Add LRO_HMFCB and LRI_HMFCB options.
9816b0
- API CHANGE: lr_download_single_cb() new param mfcb (LrMirrorFailureCb)
9816b0
- API CHANGE: Removed cbdata param from lr_download_single_cb(). Use specific
9816b0
  data for each target.
9816b0
- New callback LrHandleMirrorFailureCb
9816b0
- Python doc update (Check it out: http://tojaj.github.io/librepo/)
9816b0
9816b0
* Thu Mar 27 2014 Matěj Cepl <mcepl@redhat.com> - 1.6.0-2
9816b0
- Make building of python3 components conditional
9816b0
- replace all TABs with spaces
9816b0
9816b0
* Thu Feb  20 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.6.0-1
9816b0
- Small API change: End callback now must return integer and not void)
9816b0
- downloader: Check for the lr_interrupt regularly
9816b0
- Handle exceptions in python callbacks as return values (RhBug: 1066321)
9816b0
- Support for byterange of download (RhBug: 1058777)
9816b0
9816b0
* Tue Jan  28 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.5.2-2
9816b0
- Ignore rsyc mirrors silently.
9816b0
9816b0
* Thu Jan  16 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.5.2-1
9816b0
- Better download resume logic
9816b0
9816b0
* Fri Jan   3 2014 Tomas Mlcoch <tmlcoch at redhat.com> - 1.5.1-1
9816b0
-  Downloading: LRO_MAXSPEED has effect over whole downloading, it is not
9816b0
   per target max speed anymore.
9816b0
-  Sanitize progresscb (GitHub issue 24) (Thanks zde/zpavlas)
9816b0
9816b0
* Tue Dec  17 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.5.0-1
9816b0
- Extend C example
9816b0
- Add LRR_YUM_TIMESTAMP (GitHub issue #25)
9816b0
- Close the correct file when using a metalink.xml file
9816b0
- Add lr_check_packages()
9816b0
- Enable checksum caching for already existing local packages
9816b0
- Library: Call LR_PROGRESSCB with zeroized values, when total_to_download
9816b0
  value is changed
9816b0
- Skip fastestmirror detection of only one mirror is present
9816b0
9816b0
* Tue Nov  19 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.4.0-1
9816b0
- Add LRO_FASTESTMIRRORCB
9816b0
- Add LRO_LOWSPEEDTIME and LRO_LOWSPEEDLIMIT options. (RhBug: 1028444)
9816b0
- Default connection timeout changed to 30sec instead of 300sec.
9816b0
- unittests: Fix expired key (RhBug: 1031825)
9816b0
9816b0
* Thu Oct  31 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.3.0-1
9816b0
- Some CURL error codes should be considered as fatal (RhBug: 1022994)
9816b0
- fastestmirror: Add support for cache - New options: LRO_FASTESTMIRRORCACHE
9816b0
  and LRO_FASTESTMIRRORMAXAGE
9816b0
- fastestmirror: For download_packages() do fastestmirror detection for
9816b0
  all handles in one shot
9816b0
- Use <mm0:alternates> during repomd.xml download (RhBug: 1019103)
9816b0
- Don't perform fastest mirror test if file already exists locally.
9816b0
- fastestmirror.h:26:24: fatal error: mirrorlist.h: No such file
9816b0
  or directory (#1018006)
9816b0
9816b0
* Mon Oct  07 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.2.1-1
9816b0
- Open fd right before downloading and close them immediately after
9816b0
  download. (RhBug: 1015957)
9816b0
9816b0
* Thu Oct  03 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.2.0-2
9816b0
- Add target for Python 3 to the spec file
9816b0
- Fix few python3 related issues
9816b0
9816b0
* Tue Oct  01 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.2.0-1
9816b0
- Better detection of bad content of repomd.xml
9816b0
- Close files properly (RhBug: 1012290)
9816b0
- Add fastestmirror module + LRO_FASTESTMIRROR option
9816b0
- downloader: Fix uninitialized total to download variable (GitHub issue 22)
9816b0
- Add LRO_MIRRORLISTURL and LRO_METALINKURL. LRO_MIRRORLIST is deprecated.
9816b0
- Few other small fixes
9816b0
9816b0
* Mon Sep  16 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.1.0-1
9816b0
- New librepo.download_url(url, fd, handle=None) function in Python API.
9816b0
- Low-level downloader interface is now public in C API.
9816b0
- Small change of API lr_download_packages() and lr_packagetarget_new
9816b0
  functions.
9816b0
- In python download_packages() changed from method of Handle() to
9816b0
  librepo module function without handle param.
9816b0
  Param handle was moved to the PackageTarget class that takes handle
9816b0
  as a optional param during constrution.
9816b0
- Implements checking size of downloaded files (expectedsize
9816b0
  param of downloading functions).
9816b0
9816b0
* Wed Aug  28 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 1.0.0-1
9816b0
- Huge API changes
9816b0
- Library starts to use GLib2
9816b0
- Support for parallel downloads
9816b0
- Better error reporting
9816b0
- More GLib2 style C api
9816b0
- More descriptive Python exception messages
9816b0
- A lot of bugfixes
9816b0
- Updated examples
9816b0
9816b0
* Thu Jul  25 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.5-3
9816b0
- python: Raise exception if handle has bad repo type configured
9816b0
  (RhBug: 988013)
9816b0
9816b0
* Mon Jul  22 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.5-2
9816b0
- Bump version in versioh.h to 0.0.5
9816b0
- Python: Fix Handle.mirrors to return empty list instead of None if
9816b0
  no mirrors available (RhBug: 986228)
9816b0
9816b0
* Wed Jul  17 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.5-1
9816b0
- Return LRE_ALREADYDOWNLOADED if the file exists even if no resume
9816b0
  is specified. (GitHub issue 15)
9816b0
- downloadtarget: New module, future replacement for curltarget module.
9816b0
- Librepo migrated to lr_LrMirrorlist from lr_InternalMirrorlist.
9816b0
- test: Run python unittest verbosely
9816b0
- lrmirrorlis: New module. GLib2 ready replacement for the internal_mirrorlist
9816b0
  module.
9816b0
- package_downloader: Add LRE_ALREADYDOWNLOADED rc code. (GitHub issue 15)
9816b0
- handle: After set python SIGINT handler back, check if librepo was
9816b0
  interrupted by CTRL+C. (RhBug: 977803)
9816b0
- cmake: Set required python version to 2. (GitHub issue 10)
9816b0
- Fix missing VAR substitution for mirrorlist. (GitHub issue 11)
9816b0
- cmake: Add FindXattr module.
9816b0
- Add support for caching checksum as extended file attribute. (GitHub issue 8)
9816b0
- util: Add lr_asprintf().
9816b0
- util: Add lr_vasprintf().
9816b0
- handle: Fix funky logic in internal error handling. (GitHub issue 9)
9816b0
- Add lr_yum_repomd_get_age() function. (GitHub issue 6)
9816b0
- test: Add test for LR_VERSION_CHECK macro.
9816b0
- Add a LR_VERSION_CHECK macro
9816b0
9816b0
* Wed Jun 12 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.4-2
9816b0
- examples: Add C example of usage.
9816b0
- Fix predefined lists in types.h (GitHub issue 4). Thank you hughsie
9816b0
- Add LRO_VARSUB and LRI_VARSUB. (RhBug: 965131)
9816b0
- py: Change reported name from _librepo.Exception to librepo.LibrepoException
9816b0
9816b0
* Thu May  2 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.4-1
9816b0
- Fix type conversion long long -> long.(RhBug: 957656)
9816b0
- python: Handle.perfrom() could be called without Result().
9816b0
- Add LRI_MAXMIRRORTRIES option. (RhBug: 954736)
9816b0
- py: unittests: Add metalink.xml and mirrorlist files. (RhBug: 954294)
9816b0
- Fix double free and memory leak. (RhBug: 954294)
9816b0
- New option LRO_MAXMIRRORTRIES. (RhBug: 949517)
9816b0
- LRI_MIRRORS return only content of mirrorlist file (without LRO_URL as first item).
9816b0
- Add LRO_FETCHMIRRORS option.
9816b0
9816b0
* Mon Apr  8 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.2-3.git720d68d
9816b0
- Add CURL_GLOBAL_ACK_EINTR flag to curl init.
9816b0
- Proper multi handle cleanup. (RhBug: 947388)
9816b0
- Support for read 'useragent' attr. (RhBug: 947346)
9816b0
- Add valgrind supress files. (RhBug: 923214)
9816b0
- Make python bindings interruptible (LRO_INTERRUPTIBLE) (RhBug: 919125)
9816b0
- Add LRI_MIRRORS option (RhBug: 923198)
9816b0
- Add LRI_METALINK option. (BzBug: 947767)
9816b0
9816b0
* Mon Mar 18 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.2-2.gitb3c3323
9816b0
- py: Use standard python exception while accessing bad attrs. (RhBug: 920673)
9816b0
- Default mask for newly created files is 0666. (RhBug: 922557)
9816b0
9816b0
* Thu Mar 14 2013 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.2-1.git714e828
9816b0
- Add LRI_PROGRESSCB and LRI_PROGRESSDATA options (RhBug: 919123)
9816b0
- Bindings: More pythonic operations with handle's attributes (RhBug: 919124)
9816b0
9816b0
* Tue Oct  9 2012 Tomas Mlcoch <tmlcoch at redhat.com> - 0.0.1-1.gitc69642e
9816b0
- Initial package