This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via de1ded0df790822e345bc7655f4b4f4d26cb82c4 (commit) from fdd425b9a197cf4cc0068eeb2a01ffbf90a821c9 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit de1ded0df790822e345bc7655f4b4f4d26cb82c4 Author: Michael Tremer michael.tremer@ipfire.org Date: Wed Aug 3 12:27:47 2011 +0200
python-pycurl: Fix dependencies for curl.
pycurl checks the version of libcurl when it starts and needs the same or a higher version than it was built with.
-----------------------------------------------------------------------
Summary of changes: pkgs/python-pycurl/python-pycurl.nm | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-)
Difference in files: diff --git a/pkgs/python-pycurl/python-pycurl.nm b/pkgs/python-pycurl/python-pycurl.nm index d78f031..712e906 100644 --- a/pkgs/python-pycurl/python-pycurl.nm +++ b/pkgs/python-pycurl/python-pycurl.nm @@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = pycurl PKG_VER = 7.19.0 -PKG_REL = 2 +PKG_REL = 3
PKG_MAINTAINER = PKG_GROUPS = Development/Languages @@ -38,6 +38,14 @@ CFLAGS += -DHAVE_CURL_OPENSSL
PKG_BUILD_DEPS+= libcurl-devel openssl-devel python-devel
+# During its initialization, PycURL checks that the actual libcurl version +# is not lower than the one used when PycURL was built. +# Yes, that should be handled by library versioning (which would then get +# automatically reflected). +# For now, we have to reflect that dependency. +LIBCURL_VERSION = $(shell curl-config --version | awk '{ print $$NF }') +PKG_DEPS += libcurl>=$(LIBCURL_VERSION) + define PKG_DESCRIPTION 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 \
hooks/post-receive -- IPFire 3.x development tree