Browse Source

Merge pull request #8266 from BKPepe/urllib3

python-urllib3: add variant for Python3
lilik-openwrt-22.03
Hannu Nyman 5 years ago
committed by GitHub
parent
commit
90bbf7f221
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 12 deletions
  1. +26
    -12
      lang/python/python-urllib3/Makefile

+ 26
- 12
lang/python/python-urllib3/Makefile View File

@ -9,40 +9,54 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=python-urllib3
PKG_VERSION:=1.24.1
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_LICENSE:=MIT
PKG_SOURCE:=urllib3-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/u/urllib3
PKG_HASH:=de9529817c93f27c8ccbfead6985011db27bd0ddfcdb2d86f3f663385c6a9c22
PKG_BUILD_DIR:=$(BUILD_DIR)/urllib3-$(PKG_VERSION)
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-urllib3-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
include ../python-package.mk
include ../python3-package.mk
define Package/python-urllib3
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
define Package/python-urllib3/Default
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
TITLE:=HTTP library with thread-safe connection pooling, file post, and more.
URL:=https://urllib3.readthedocs.io/
DEPENDS:=+python
endef
define Package/python-urllib3
$(call Package/python-urllib3/Default)
DEPENDS:=+PACKAGE_python-urllib3:python
VARIANT:=python
endef
define Package/python-urllib3/description
HTTP library with thread-safe connection pooling, file post, and more.
endef
define Build/Compile
$(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
define Package/python3-urllib3
$(call Package/python-urllib3/Default)
DEPENDS:=+PACKAGE_python3-urllib3:python3
VARIANT:=python3
endef
define Package/python-urllib3/install
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
$(CP) \
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
$(1)$(PYTHON_PKG_DIR)
define Package/python3-urllib3/description
$(call Package/python-urllib3/description)
.
(Variant for Python3)
endef
$(eval $(call PyPackage,python-urllib3))
$(eval $(call BuildPackage,python-urllib3))
$(eval $(call BuildPackage,python-urllib3-src))
$(eval $(call Py3Package,python3-urllib3))
$(eval $(call BuildPackage,python3-urllib3))
$(eval $(call BuildPackage,python3-urllib3-src))

Loading…
Cancel
Save