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
|
2019-04-19 08:28:46 +00:00
|
|
|
PKG_VERSION:=19.0.0
|
2020-04-21 17:27:50 +00:00
|
|
|
PKG_RELEASE:=2
|
2018-01-15 18:06:28 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=hyperlink
|
2019-04-19 08:28:46 +00:00
|
|
|
PKG_HASH:=4288e34705da077fada1111a24a0aa08bb1e76699c9ce49876af722441845654
|
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 \
|
|
|
|
+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
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-hyperlink))
|
|
|
|
$(eval $(call BuildPackage,python3-hyperlink))
|
|
|
|
$(eval $(call BuildPackage,python3-hyperlink-src))
|