mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-01 17:33:29 +08:00
python-service-identity: new package
Signed-off-by: Mauro Condarelli <mc5686@mclink.it> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
9d552c1997
commit
4753063e28
@ -711,6 +711,7 @@ menu "External python modules"
|
|||||||
source "package/python-requests/Config.in"
|
source "package/python-requests/Config.in"
|
||||||
source "package/python-rtslib-fb/Config.in"
|
source "package/python-rtslib-fb/Config.in"
|
||||||
source "package/python-serial/Config.in"
|
source "package/python-serial/Config.in"
|
||||||
|
source "package/python-service-identity/Config.in"
|
||||||
source "package/python-setuptools/Config.in"
|
source "package/python-setuptools/Config.in"
|
||||||
source "package/python-shutilwhich/Config.in"
|
source "package/python-shutilwhich/Config.in"
|
||||||
source "package/python-simplejson/Config.in"
|
source "package/python-simplejson/Config.in"
|
||||||
|
10
package/python-service-identity/Config.in
Normal file
10
package/python-service-identity/Config.in
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
config BR2_PACKAGE_PYTHON_SERVICE_IDENTITY
|
||||||
|
bool "python-service-identity"
|
||||||
|
select BR2_PACKAGE_PYTHON_CHARACTERISTIC # runtime
|
||||||
|
select BR2_PACKAGE_PYTHON_PYASN # runtime
|
||||||
|
select BR2_PACKAGE_PYTHON_PYASN_MODULES # runtime
|
||||||
|
select BR2_PACKAGE_PYTHON_PYOPENSSL # runtime
|
||||||
|
help
|
||||||
|
Service identity verification for pyOpenSSL.
|
||||||
|
|
||||||
|
https://pypi.python.org/pypi/service_identity
|
@ -0,0 +1,3 @@
|
|||||||
|
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=cea0b0156d73b025ecef660fb51f0d9a, sha256 locally computed.
|
||||||
|
md5 cea0b0156d73b025ecef660fb51f0d9a service_identity-14.0.0.tar.gz
|
||||||
|
sha256 3105a319a7c558490666694f599be0c377ad54824eefb404cde4ce49e74a4f5a service_identity-14.0.0.tar.gz
|
14
package/python-service-identity/python-service-identity.mk
Normal file
14
package/python-service-identity/python-service-identity.mk
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# python-service-identity
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
PYTHON_SERVICE_IDENTITY_VERSION = 14.0.0
|
||||||
|
PYTHON_SERVICE_IDENTITY_SOURCE = service_identity-$(PYTHON_SERVICE_IDENTITY_VERSION).tar.gz
|
||||||
|
PYTHON_SERVICE_IDENTITY_SITE = http://pypi.python.org/packages/source/s/service_identity
|
||||||
|
PYTHON_SERVICE_IDENTITY_LICENSE = MIT
|
||||||
|
PYTHON_SERVICE_IDENTITY_LICENSE_FILES = LICENSE
|
||||||
|
PYTHON_SERVICE_IDENTITY_SETUP_TYPE = setuptools
|
||||||
|
|
||||||
|
$(eval $(python-package))
|
Loading…
Reference in New Issue
Block a user