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
|
2020-11-03 08:55:11 +08:00
|
|
|
PKG_VERSION:=1.25.11
|
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
|
2019-04-23 00:17:41 +08:00
|
|
|
PKG_CPE_ID:=cpe:/a:urllib3_project:urllib3
|
2016-08-31 00:13:03 +08:00
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
PYPI_NAME:=urllib3
|
2020-11-03 08:55:11 +08:00
|
|
|
PKG_HASH:=8d7eaa5a82a1cac232164990f04874c594c9453ec55eef02eab885aa02fc17a2
|
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))
|