mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-02-21 22:27:49 +01:00
Add python wheel package
This commit is contained in:
parent
3b8a390b6c
commit
014bbf9653
@ -203,6 +203,7 @@ menu "Additional external python modules"
|
||||
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-uritemplate/Config.in"
|
||||
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-url-normalize/Config.in"
|
||||
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-vlc/Config.in"
|
||||
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-wheel/Config.in"
|
||||
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-wikipedia-api/Config.in"
|
||||
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-wikipedia-for-humans/Config.in"
|
||||
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-xmlrunner/Config.in"
|
||||
|
@ -680,6 +680,7 @@ BR2_PACKAGE_PYTHON_TAILHEAD=y
|
||||
BR2_PACKAGE_PYTHON_TZLOCAL=y
|
||||
BR2_PACKAGE_PYTHON_URL_NORMALIZE=y
|
||||
BR2_PACKAGE_PYTHON_VLC=y
|
||||
BR2_PACKAGE_PYTHON_WHEEL=y
|
||||
BR2_PACKAGE_PYTHON_WIKIPEDIA_FOR_HUMANS=y
|
||||
BR2_PACKAGE_PYTHON_XMLRUNNER=y
|
||||
BR2_PACKAGE_PYTHON_YAGMAIL=y
|
||||
|
8
buildroot-external/package/python-wheel/Config.in
Normal file
8
buildroot-external/package/python-wheel/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_PYTHON_WHEEL
|
||||
bool "python-wheel"
|
||||
help
|
||||
This library is the reference implementation
|
||||
of the Python wheel packaging standard, as
|
||||
defined in PEP 427.
|
||||
|
||||
https://github.com/pypa/wheel
|
@ -0,0 +1,2 @@
|
||||
# sha256 from https://pypi.org/pypi/
|
||||
sha256 e2ef7239991699e3355d54f8e968a21bb940a1dbf34a4d226741e64462516fad wheel-0.37.0.tar.gz
|
12
buildroot-external/package/python-wheel/python-wheel.mk
Normal file
12
buildroot-external/package/python-wheel/python-wheel.mk
Normal file
@ -0,0 +1,12 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-wheel
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_WHEEL_VERSION = 0.37.0
|
||||
PYTHON_WHEEL_SOURCE = wheel-$(PYTHON_WHEEL_VERSION).tar.gz
|
||||
PYTHON_WHEEL_SITE = https://files.pythonhosted.org/packages/4e/be/8139f127b4db2f79c8b117c80af56a3078cc4824b5b94250c7f81a70e03b
|
||||
PYTHON_WHEEL_SETUP_TYPE = setuptools
|
||||
|
||||
$(eval $(python-package))
|
Loading…
x
Reference in New Issue
Block a user