2018-01-15 18:06:28 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2018 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-hyperlink
|
2021-02-07 20:48:22 +00:00
|
|
|
PKG_VERSION:=21.0.0
|
2020-08-16 16:30:09 +00:00
|
|
|
PKG_RELEASE:=1
|
2018-01-15 18:06:28 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=hyperlink
|
2021-02-07 20:48:22 +00:00
|
|
|
PKG_HASH:=427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b
|
2018-01-15 18:06:28 +00:00
|
|
|
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2018-01-15 18:06:28 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-hyperlink
|
2018-01-15 18:06:28 +00:00
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-02-20 07:19:26 +00:00
|
|
|
TITLE:=Pure-Python immutable URLs
|
2018-01-15 18:06:28 +00:00
|
|
|
URL:=https://github.com/python-hyper/hyperlink
|
2018-06-24 18:30:39 +00:00
|
|
|
DEPENDS:= \
|
2020-04-21 17:27:50 +00:00
|
|
|
+python3-light \
|
2020-08-16 16:30:09 +00:00
|
|
|
+python3-codecs \
|
2020-04-21 17:27:50 +00:00
|
|
|
+python3-idna
|
2018-01-15 18:06:28 +00:00
|
|
|
endef
|
|
|
|
|
2020-04-01 14:21:16 +00:00
|
|
|
define Package/python3-hyperlink/description
|
2018-01-15 18:06:28 +00:00
|
|
|
Hyperlink provides a pure-Python implementation of immutable URLs. Based
|
|
|
|
on RFC 3986 and 3987, the Hyperlink URL makes working with both URIs and
|
|
|
|
IRIs easy.
|
|
|
|
endef
|
|
|
|
|
2020-08-16 16:30:09 +00:00
|
|
|
define Py3Package/python3-hyperlink/filespec
|
|
|
|
+|$(PYTHON3_PKG_DIR)
|
|
|
|
-|$(PYTHON3_PKG_DIR)/hyperlink/hypothesis.py
|
|
|
|
endef
|
|
|
|
|
2018-01-15 18:06:28 +00:00
|
|
|
$(eval $(call Py3Package,python3-hyperlink))
|
|
|
|
$(eval $(call BuildPackage,python3-hyperlink))
|
|
|
|
$(eval $(call BuildPackage,python3-hyperlink-src))
|