mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 01:44:32 +04:00
Change bumps version to 7.45.7 Adding python-setuptools/host as PKG_BUILD_DEPENDS. Package is no longer needed. Fixes: https://github.com/openwrt/packages/issues/27915 Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
58 lines
1.3 KiB
Makefile
58 lines
1.3 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.7
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
|
PKG_HASH:=9d43013002eab2fd6d0dcc671cd1e9149e2fc1c56d5e796fad94d076d6cb69ef
|
|
|
|
PKG_MAINTAINER:=Waldemar Konik <informatyk74@interia.pl>
|
|
PKG_LICENSE:=LGPL-2.1
|
|
PKG_LICENSE_FILES:=COPYING-LGPL
|
|
|
|
PKG_BUILD_DEPENDS:= \
|
|
python3/host \
|
|
python-setuptools/host
|
|
|
|
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
|
|
|
|
ifdef CONFIG_LIBCURL_OPENSSL
|
|
PYTHON3_PKG_BUILD_VARS:=PYCURL_SSL_LIBRARY=openssl
|
|
endif
|
|
|
|
ifdef CONFIG_LIBCURL_GNUTLS
|
|
PYTHON3_PKG_BUILD_VARS:=PYCURL_SSL_LIBRARY=gnutls
|
|
endif
|
|
|
|
ifdef CONFIG_LIBCURL_MBEDTLS
|
|
PYTHON3_PKG_BUILD_VARS:=PYCURL_SSL_LIBRARY=mbedtls
|
|
endif
|
|
|
|
ifdef CONFIG_LIBCURL_WOLFSSL
|
|
PYTHON3_PKG_BUILD_VARS:=PYCURL_SSL_LIBRARY=wolfssl
|
|
endif
|
|
|
|
$(eval $(call Py3Package,python3-curl))
|
|
$(eval $(call BuildPackage,python3-curl))
|
|
$(eval $(call BuildPackage,python3-curl-src))
|