2016-08-30 16:13:03 +00:00
|
|
|
#
|
2017-02-13 21:03:14 +00:00
|
|
|
# Copyright (C) 2007-2017 OpenWrt.org
|
2016-08-30 16:13:03 +00: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 03:46:35 +00:00
|
|
|
PKG_VERSION:=2.0.4
|
2020-07-02 23:40:52 +00:00
|
|
|
PKG_RELEASE:=1
|
2019-04-21 17:08:07 +00:00
|
|
|
|
2019-04-29 19:53:04 +00:00
|
|
|
PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
|
2016-08-30 16:13:03 +00:00
|
|
|
PKG_LICENSE:=MIT
|
2019-04-21 17:08:07 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
2019-04-22 16:17:41 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:urllib3_project:urllib3
|
2016-08-30 16:13:03 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=urllib3
|
2023-08-29 03:46:35 +00:00
|
|
|
PKG_HASH:=8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11
|
|
|
|
|
|
|
|
PKG_BUILD_DEPENDS:=python-hatchling/host
|
2019-04-21 17:08:07 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2016-08-30 16:13:03 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-02-19 13:53:18 +00:00
|
|
|
include ../python3-package.mk
|
2016-08-30 16:13:03 +00:00
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-urllib3
|
2016-08-30 16:13:03 +00:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
2019-04-21 17:08:07 +00:00
|
|
|
TITLE:=Sanity-friendly HTTP client
|
2016-08-30 16:13:03 +00:00
|
|
|
URL:=https://urllib3.readthedocs.io/
|
2020-04-21 17:27:50 +00:00
|
|
|
DEPENDS:=+python3
|
2016-08-30 16:13:03 +00:00
|
|
|
endef
|
|
|
|
|
2019-02-19 13:53:18 +00:00
|
|
|
define Package/python3-urllib3/description
|
2020-04-01 14:21:16 +00:00
|
|
|
HTTP library with thread-safe connection pooling, file post, and more.
|
2016-08-30 16:13:03 +00:00
|
|
|
endef
|
|
|
|
|
2019-02-19 13:53:18 +00:00
|
|
|
$(eval $(call Py3Package,python3-urllib3))
|
|
|
|
$(eval $(call BuildPackage,python3-urllib3))
|
|
|
|
$(eval $(call BuildPackage,python3-urllib3-src))
|