python/pycurl: Misc. cleanup and maintainer change

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
LukenShiro 2011-12-14 16:27:46 -06:00 committed by Niels Horn
parent 3f6625a5c8
commit bd13c3c650
3 changed files with 6 additions and 21 deletions

View file

@ -1,19 +1,3 @@
PycURL is a Python interface to libcurl. 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.
Overview
* libcurl is a free and easy-to-use client-side URL transfer library,
supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and
LDAP. libcurl supports HTTPS certificates, HTTP POST, HTTP PUT,
FTP uploading, kerberos, HTTP form based upload, proxies, cookies,
user+password authentication, file transfer resume, http proxy tunneling
and more!
* libcurl is highly portable, it builds and works identically on
numerous platforms, including Solaris, NetBSD, FreeBSD, OpenBSD,
Darwin, HPUX, IRIX, AIX, Tru64, Linux, Windows, Amiga, OS/2, BeOs,
Mac OS X, Ultrix, QNX, OpenVMS, RISC OS, Novell NetWare, DOS and more...
* libcurl is free, thread-safe, IPv6 compatible, feature rich, well
supported and fast.

View file

@ -3,10 +3,11 @@
# Slackware build script for pycurl
# Written by Grissiom chaos.proton@gmail.com
# Updated by LukenShiro <lukenshiro@ngi.it>
PRGNAM=pycurl
VERSION=${VERSION:-7.19.0}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
@ -55,7 +56,7 @@ find . \
python setup.py install --root=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p ${PKG}/usr/doc/$PRGNAM-$VERSION

View file

@ -5,6 +5,6 @@ DOWNLOAD="http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz"
MD5SUM="919d58fe37e69fe87ce4534d8b6a1c7b"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="grissiom"
EMAIL="chaos.proton@gmail.com"
APPROVED="dsomero"
MAINTAINER="LukenShiro"
EMAIL="lukenshiro@ngi.it"
APPROVED="rworkman"