python-yarl: new package

Yet another URL library

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
James Hilliard 2018-10-22 17:31:36 +08:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 5180dddc4a
commit 48f495854d
5 changed files with 31 additions and 0 deletions

View file

@ -978,6 +978,9 @@ F: configs/orangepi_zero_plus2_defconfig
F: configs/pine64_defconfig
F: configs/pine64_sopine_defconfig
N: James Hilliard <james.hilliard1@gmail.com>
F: package/python-yarl/
N: James Knight <james.knight@rockwellcollins.com>
F: package/atkmm/
F: package/cairomm/

View file

@ -1071,6 +1071,7 @@ menu "External python modules"
source "package/python-xlutils/Config.in"
source "package/python-xlwt/Config.in"
source "package/python-xmltodict/Config.in"
source "package/python-yarl/Config.in"
source "package/python-yieldfrom/Config.in"
source "package/python-zeroconf/Config.in"
source "package/python-zope-interface/Config.in"

View file

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_YARL
bool "python-yarl"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON_MULTIDICT
select BR2_PACKAGE_PYTHON_IDNA
help
Yet another URL library.
http://yarl.readthedocs.io/

View file

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.python.org/pypi/yarl/json
md5 43380667129ebc52ac3c442daabb3f6d yarl-1.2.6.tar.gz
sha256 c8cbc21bbfa1dd7d5386d48cc814fe3d35b80f60299cdde9279046f399c3b0d8 yarl-1.2.6.tar.gz
# Locally computed sha256 checksums
sha256 14c0820503ceef15e814a89b037d9efc066870087018294b6ae0f27163872cc5 LICENSE

View file

@ -0,0 +1,13 @@
################################################################################
#
# python-yarl
#
################################################################################
PYTHON_YARL_VERSION = 1.2.6
PYTHON_YARL_SOURCE = yarl-$(PYTHON_YARL_VERSION).tar.gz
PYTHON_YARL_SITE = https://files.pythonhosted.org/packages/43/b8/057c3e5b546ff4b24263164ecda13f6962d85c9dc477fcc0bcdcb3adb658
PYTHON_YARL_LICENSE = Apache-2.0
PYTHON_YARL_LICENSE_FILES = LICENSE
PYTHON_YARL_SETUP_TYPE = setuptools
$(eval $(python-package))