Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 157759 - pycurl fails to compile against curl-7.16.0 (masked)
Summary: pycurl fails to compile against curl-7.16.0 (masked)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Unspecified (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Python Gentoo Team
URL: https://sourceforge.net/tracker/?func...
Whiteboard:
Keywords:
Depends on:
Blocks: 157718
  Show dependency tree
 
Reported: 2006-12-10 13:18 UTC by Daniel Black (RETIRED)
Modified: 2007-04-15 20:27 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel Black (RETIRED) gentoo-dev 2006-12-10 13:18:48 UTC
I've currently changed the dependencies so this isn't a problem.

Reporting it here for tracking purposes so a corrected version can be added before unmasking curl-7.16.0

Reported upstream as per URL
Comment 1 Daniel Black (RETIRED) gentoo-dev 2007-04-10 21:49:22 UTC
pycurl - 7.16.1 available
http://pycurl.sourceforge.net/
Comment 2 Daniel Black (RETIRED) gentoo-dev 2007-04-15 20:27:48 UTC
added pycurl-7.16.2

Hope to unmask it soon if noone objects.

passes the following testplan shamelessly stolen from /usr/share/doc/pycurl-7.16.2/html/curlobject.html

import pycurl
c = pycurl.Curl()
c.setopt(pycurl.URL, "http://www.python.org/")
c.setopt(pycurl.HTTPHEADER, ["Accept:"])
import StringIO
b = StringIO.StringIO()
c.setopt(pycurl.WRITEFUNCTION, b.write)
c.setopt(pycurl.FOLLOWLOCATION, 1)
c.setopt(pycurl.MAXREDIRS, 5)
c.perform()
print b.getvalue()