2016-08-31 00:13:03 +08:00
|
|
|
#
|
2017-02-14 05:03:14 +08:00
|
|
|
# Copyright (C) 2007-2017 OpenWrt.org
|
2016-08-31 00:13:03 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-urllib3
|
2023-08-29 11:46:35 +08:00
|
|
|
PKG_VERSION:=2.0.4
|
2020-07-03 07:40:52 +08:00
|
|
|
PKG_RELEASE:=1
|
2019-04-22 01:08:07 +08:00
|
|
|
|
2019-04-30 03:53:04 +08:00
|
|
|
PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
|
2016-08-31 00:13:03 +08:00
|
|
|
PKG_LICENSE:=MIT
|
2019-04-22 01:08:07 +08:00
|
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
2024-02-03 01:09:46 +08:00
|
|
|
PKG_CPE_ID:=cpe:/a:python:urllib3
|
2016-08-31 00:13:03 +08:00
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
PYPI_NAME:=urllib3
|
2023-08-29 11:46:35 +08:00
|
|
|
PKG_HASH:=8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11
|
|
|
|
|
|
|
|
PKG_BUILD_DEPENDS:=python-hatchling/host
|
2019-04-22 01:08:07 +08:00
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
include ../pypi.mk
|
2016-08-31 00:13:03 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-02-19 21:53:18 +08:00
|
|
|
include ../python3-package.mk
|
2016-08-31 00:13:03 +08:00
|
|
|
|
2020-04-22 01:27:50 +08:00
|
|
|
define Package/python3-urllib3
|
2016-08-31 00:13:03 +08:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
2019-04-22 01:08:07 +08:00
|
|
|
TITLE:=Sanity-friendly HTTP client
|
2016-08-31 00:13:03 +08:00
|
|
|
URL:=https://urllib3.readthedocs.io/
|
2020-04-22 01:27:50 +08:00
|
|
|
DEPENDS:=+python3
|
2016-08-31 00:13:03 +08:00
|
|
|
endef
|
|
|
|
|
2019-02-19 21:53:18 +08:00
|
|
|
define Package/python3-urllib3/description
|
2020-04-01 22:21:16 +08:00
|
|
|
HTTP library with thread-safe connection pooling, file post, and more.
|
2016-08-31 00:13:03 +08:00
|
|
|
endef
|
|
|
|
|
2019-02-19 21:53:18 +08:00
|
|
|
$(eval $(call Py3Package,python3-urllib3))
|
|
|
|
$(eval $(call BuildPackage,python3-urllib3))
|
|
|
|
$(eval $(call BuildPackage,python3-urllib3-src))
|