PycURL changeLog: ----------------------------------------------------------------- PycURL 7.45.2 - 2022-12-16 ----------------------------------------------------------------- This release fixes several minor issues and adds support for several libcurl options. ----------------------------------------------------------------- PycURL 7.45.1 - 2022-03-13 ----------------------------------------------------------------- This release fixes build when libcurl < 7.64.1 is used. ----------------------------------------------------------------- PycURL 7.45.0 - 2022-03-09 ----------------------------------------------------------------- This release adds support for SecureTransport SSL backend (MacOS), adds ability to unset a number of multi options, adds ability to duplicate easy handles and permits pycurl classes to be subclassed. ----------------------------------------------------------------- PycURL 7.44.1 - 2021-08-15 ----------------------------------------------------------------- This release repairs incorrect Python thread initialization logic which caused operations to hang. ----------------------------------------------------------------- Signed-off-by: Waldemar Konik <informatyk74@interia.pl> Compile tested: x86_64
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=pycurl
|
|
PKG_VERSION:=7.45.2
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
|
PKG_HASH:=5730590be0271364a5bddd9e245c9cc0fb710c4cbacbdd95264a3122d23224ca
|
|
|
|
PKG_MAINTAINER:=Waldemar Konik <informatyk74@interia.pl>
|
|
PKG_LICENSE:=LGPL-2.1
|
|
PKG_LICENSE_FILES:=COPYING-LGPL
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-curl
|
|
CATEGORY:=Languages
|
|
SECTION:=lang
|
|
SUBMENU:=Python
|
|
TITLE:=Python module interface to the cURL library
|
|
URL:=http://pycurl.io/
|
|
DEPENDS:=+libcurl +python3
|
|
endef
|
|
|
|
define Package/python3-curl/description
|
|
PycURL is a Python interface to libcurl, the multiprotocol file transfer library.
|
|
endef
|
|
|
|
PYTHON3_PKG_SETUP_ARGS:=
|
|
|
|
ifdef CONFIG_LIBCURL_OPENSSL
|
|
PYTHON3_PKG_SETUP_ARGS+=--with-openssl
|
|
endif
|
|
|
|
ifdef CONFIG_LIBCURL_GNUTLS
|
|
PYTHON3_PKG_SETUP_ARGS+=--with-gnutls
|
|
endif
|
|
|
|
ifdef CONFIG_LIBCURL_MBEDTLS
|
|
PYTHON3_PKG_SETUP_ARGS+=--with-mbedtls
|
|
endif
|
|
|
|
ifdef CONFIG_LIBCURL_WOLFSSL
|
|
PYTHON3_PKG_SETUP_ARGS+=--with-wolfssl
|
|
endif
|
|
|
|
$(eval $(call Py3Package,python3-curl))
|
|
$(eval $(call BuildPackage,python3-curl))
|
|
$(eval $(call BuildPackage,python3-curl-src))
|