automatic update by autodist [release 7.19.0.3-1mamba;Sun Dec 29 2013]
This commit is contained in:
parent
15b73258f0
commit
800fe2b28b
@ -1,2 +1,10 @@
|
|||||||
# pycurl
|
# pycurl
|
||||||
|
|
||||||
|
PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module.
|
||||||
|
PycURL is mature, very fast, and supports a lot of features.
|
||||||
|
PycURL is targeted at the advanced developer - if you need dozens of concurrent fast and reliable connections or any of the sophisiticated features as listed above then PycURL is for you.
|
||||||
|
The main drawback with PycURL is that it is a relative thin layer over libcurl without any of those nice Pythonic class hierarchies.
|
||||||
|
This means it has a somewhat steep learning curve unless you are already familiar with libcurl's C API.
|
||||||
|
To sum up, PycURL is very fast (esp. for multiple concurrent operations) and very feature complete, but has a somewhat complex interface.
|
||||||
|
If you need something simpler or prefer a pure Python module you might want to check out urllib2 and urlgrabber.
|
||||||
|
|
||||||
|
111
pycurl.spec
Normal file
111
pycurl.spec
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
Name: pycurl
|
||||||
|
Version: 7.19.0.3
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: PycURL is a Python interface to libcurl
|
||||||
|
Group: Development/Libraries/Python
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://pycurl.sourceforge.net/
|
||||||
|
Source: http://pycurl.sourceforge.net/download/pycurl-%{version}.tar.gz
|
||||||
|
License: LGPL
|
||||||
|
Requires: python >= %{pyver}
|
||||||
|
Requires: libcurl >= 7.15.3
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: libcares-devel
|
||||||
|
BuildRequires: libcurl-devel
|
||||||
|
BuildRequires: libe2fs-devel
|
||||||
|
BuildRequires: libidn-devel
|
||||||
|
%if "%{stage1}" != "1"
|
||||||
|
BuildRequires: libkrb5-devel
|
||||||
|
BuildRequires: libopenldap-devel
|
||||||
|
%endif
|
||||||
|
BuildRequires: libopenssl-devel
|
||||||
|
BuildRequires: libssh2-devel
|
||||||
|
BuildRequires: libz-devel
|
||||||
|
BuildRequires: python
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module.
|
||||||
|
PycURL is mature, very fast, and supports a lot of features.
|
||||||
|
PycURL is targeted at the advanced developer - if you need dozens of concurrent fast and reliable connections or any of the sophisiticated features as listed above then PycURL is for you.
|
||||||
|
The main drawback with PycURL is that it is a relative thin layer over libcurl without any of those nice Pythonic class hierarchies.
|
||||||
|
This means it has a somewhat steep learning curve unless you are already familiar with libcurl's C API.
|
||||||
|
To sum up, PycURL is very fast (esp. for multiple concurrent operations) and very feature complete, but has a somewhat complex interface.
|
||||||
|
If you need something simpler or prefer a pure Python module you might want to check out urllib2 and urlgrabber.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Group: Documentation
|
||||||
|
Summary: Documentation package for %{name}
|
||||||
|
Requires: %{name} = %{version}
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module.
|
||||||
|
PycURL is mature, very fast, and supports a lot of features.
|
||||||
|
PycURL is targeted at the advanced developer - if you need dozens of concurrent fast and reliable connections or any of the sophisiticated features as listed above then PycURL is for you.
|
||||||
|
The main drawback with PycURL is that it is a relative thin layer over libcurl without any of those nice Pythonic class hierarchies.
|
||||||
|
This means it has a somewhat steep learning curve unless you are already familiar with libcurl's C API.
|
||||||
|
To sum up, PycURL is very fast (esp. for multiple concurrent operations) and very feature complete, but has a somewhat complex interface.
|
||||||
|
If you need something simpler or prefer a pure Python module you might want to check out urllib2 and urlgrabber.
|
||||||
|
This is the documentation package.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
CFLAGS="%{optflags} -DHAVE_CURL_OPENSSL" %{__python} setup.py build
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
%{__python} setup.py install \
|
||||||
|
-O1 --skip-build \
|
||||||
|
--root="%{buildroot}" \
|
||||||
|
--install-headers=%{_includedir}/python \
|
||||||
|
--install-lib=%{python_sitearch} \
|
||||||
|
--record=%{name}.filelist
|
||||||
|
|
||||||
|
rm -fr %{buildroot}%{_defaultdocdir}/%{name}
|
||||||
|
mv doc html
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{python_sitearch}/curl
|
||||||
|
%{python_sitearch}/pycurl.so
|
||||||
|
%{python_sitearch}/pycurl-*-py*.egg-info
|
||||||
|
%doc COPYING
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc ChangeLog TODO examples html tests
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Dec 29 2013 Automatic Build System <autodist@mambasoft.it> 7.19.0.3-1mamba
|
||||||
|
- automatic update by autodist
|
||||||
|
|
||||||
|
* Mon Sep 30 2013 Automatic Build System <autodist@mambasoft.it> 7.19.0.1-1mamba
|
||||||
|
- automatic update by autodist
|
||||||
|
|
||||||
|
* Sat May 18 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 7.19.0-5mamba
|
||||||
|
- python 2.7 mass rebuild
|
||||||
|
|
||||||
|
* Sun Oct 09 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 7.19.0-4mamba
|
||||||
|
- documentation moved to -doc package
|
||||||
|
|
||||||
|
* Wed Aug 18 2010 Davide Madrisan <davide.madrisan@gmail.com> 7.19.0-3mamba
|
||||||
|
- do not build twice the python modules
|
||||||
|
|
||||||
|
* Tue Jul 07 2009 Davide Madrisan <davide.madrisan@gmail.com> 7.19.0-2mamba
|
||||||
|
- rebuilt with python 2.6
|
||||||
|
- install all the files in the %%{python_sitearch} directory
|
||||||
|
|
||||||
|
* Tue Oct 14 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 7.19.0-1mamba
|
||||||
|
- update to 7.19.0
|
||||||
|
|
||||||
|
* Wed May 03 2006 Stefano Cotta Ramusino <stefano.cotta@qilinux.it> 7.15.2-1qilnx
|
||||||
|
- package created by autospec
|
Loading…
Reference in New Issue
Block a user